.open-sans {
  font-family: 'Open Sans', sans-serif;
}

.trans1 {
  transition: color 0.25s ease-in-out;
}

.trans2 {
  transition: background-color 0.25s ease-in-out, color 0.25s ease-in-out;
}

.trans3 {
  transition: opacity 0.25s ease-in-out;
}

.trans4 {
  transition: left 0.25s ease-in-out, opacity 0.25s ease-in-out;
}

@-webkit-keyframes hiddenPlusOpacity {
  0% {
    display: none;
    opacity: 0;
  }

  1% {
    display: block;
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes hiddenPlusOpacity {
  0% {
    display: none;
    opacity: 0;
  }

  1% {
    display: block;
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/*
LESS variables are information about icon's compiled state, stored under its original file name

.icon-home {
  width: @icon-home-width;
}

The large array-like variables contain all information about a single icon
@icon-home: x y offset_x offset_y width height total_width total_height image_path name;

At the bottom of this section, we provide information about the spritesheet itself
@spritesheet: width height image @spritesheet-sprites;
*/
/*
These "retina group" variables are mappings for the naming and pairing of normal and retina sprites.

The list formatted variables are intended for mixins like `retina-sprite` and `retina-sprites`.
*/
/*
The provided classes are intended to be used with the array-like variables

.icon-home {
  .sprite-width(@icon-home);
}
.icon-email {
  .sprite(@icon-email);
}

Here are example usages in HTML:

`display: block` sprite:
<div class="icon-home"></div>

`display: inline-block` sprite:
<img class="icon-home" />
*/
/*
The `retina-sprite` class sets up rules and a media query for a sprite/retina sprite.
  It should be used with a "retina group" variable.

The media query is from CSS Tricks: https://css-tricks.com/snippets/css/retina-display-media-query/

@icon-home-group: 'icon-home' @icon-home @icon-home-2x;

.icon-home {
  .retina-sprite(@icon-home-group);
}
*/
/*
The `.sprites` mixin generates identical output to the CSS template
  but can be overridden inside of LESS

This must be run when you have at least 2 sprites.
  If run with a single sprite, then there will be reference errors.

.sprites(@spritesheet-sprites);
*/
/*
The `.retina-sprites` mixin generates a CSS rule and media query for retina groups
  This yields the same output as CSS retina template but can be overridden in LESS

.retina-sprites(@retina-groups);
*/
/* ==========================================================================
    normalize.css modified for EM.com at 16px
    normalize.css 2012-03-11T12:53 UTC - http://github.com/necolas/normalize.css
   ========================================================================== */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section,
summary {
  display: block;
}

audio,
canvas,
video {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden] {
  display: none;
}

html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

html,
button,
input,
select,
textarea {
  font-family: sans-serif;
}

body {
  margin: 0;
}

a:focus {
  outline: thin dotted;
}

a:hover,
a:active {
  outline: 0;
}

abbr[title] {
  border-bottom: 1px dotted;
}

dfn {
  font-style: italic;
}

mark {
  background: #ff0;
  color: #000;
}

pre,
code,
kbd,
samp {
  font-family: monospace, serif;
  _font-family: 'courier new', monospace;
  font-size: 100%;
}

pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}

code {
  border-radius: 3px;
  margin: 0;
  padding: 0 5px;
  background: #748b85;
  color: #fff;
  word-wrap: break-word;
  font-size: 14px;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

nav ul,
nav ol {
  list-style: none;
  list-style-image: none;
}

img {
  border: 0;
  -ms-interpolation-mode: bicubic;
}

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

/*
 * Addresses margin not present in IE6/7/8/9, S5, O11
 */
figure {
  margin: 0;
}

form {
  margin: 0;
}

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

legend {
  border: 0;
  padding: 0;
  white-space: normal;
  *margin-left: -7px;
}

input[type=text],
input[type=password],
textarea {
  -webkit-appearance: none;
  transition: border 0.25s ease-in-out;
}

button,
input,
select,
textarea {
  font-size: 100%;
  margin: 0;
  vertical-align: baseline;
  *vertical-align: middle;
  border-radius: none;
  box-shadow: none;
  border-radius: 0;
}

button,
input {
  line-height: normal;
}

button,
input[type=button],
input[type=reset],
input[type=submit] {
  cursor: pointer;
  /* 1 */
  -webkit-appearance: button;
  /* 2 */
  *overflow: visible;
  /* 3 */
}

button[disabled],
input[disabled] {
  cursor: default;
}

input[type=checkbox],
input[type=radio] {
  box-sizing: border-box;
  padding: 0;
  *height: 13px;
  *width: 13px;
}

input[type=search] {
  -webkit-appearance: textfield;
  box-sizing: content-box;
}

input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
  vertical-align: top;
}

label {
  cursor: default;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}

caption {
  caption-side: top;
  text-align: left;
}

th {
  text-align: left;
}

.left {
  float: left;
}

.right {
  float: right;
}

.js .jsHide {
  display: none;
}

.clear {
  height: 0 !important;
  font-size: 0;
  clear: both;
  overflow: hidden;
  visibility: hidden;
  display: block;
  margin: 0 !important;
  padding: 0 !important;
  width: 100% !important;
}

.out {
  position: absolute;
  left: -999em;
}

.main-row:before,
.main-row:after {
  content: '';
  display: table;
}

.main-row:after {
  clear: both;
}

.img:before,
.img-before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.img {
  text-align: center;
}

.img img {
  vertical-align: middle;
}

::-webkit-input-placeholder {
  color: #ccc;
  font-style: normal;
  opacity: 1;
}

:-moz-placeholder {
  color: #ccc;
  font-style: normal;
  opacity: 1;
}

::-moz-placeholder {
  color: #ccc;
  font-style: normal;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #ccc;
  font-style: normal;
  opacity: 1;
}

input:focus::-moz-placeholder,
textarea:focus::-moz-placeholder {
  color: rgba(0, 0, 0, 0);
}

input:focus::-webkit-input-placeholder,
textarea:focus::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0);
}

input::-ms-clear {
  display: none;
}

.reset {
  margin: 0;
  padding: 0;
  background: none;
  border: 0;
  box-shadow: none;
}

.reset>li,
.reset>dt,
.reset>dd {
  float: none;
  width: auto;
  margin: 0;
  padding: 0;
  background: none;
  border: 0;
  box-shadow: none;
  list-style: none;
}

.reset>li:before {
  display: none;
}

.no-svg .reset>li,
.no-svg .reset>dt,
.no-svg .reset>dd {
  background: none;
}

.video {
  position: relative;
  overflow: hidden;
  margin: 0 0 15px 0;
  padding-bottom: 56.25%;
  height: 0;
}

.video iframe,
.video object,
.video embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hide-svg {
  position: absolute;
  width: 0;
  height: 0;
  visibility: hidden;
}

/* ==========================================================================
    LAYOUT
   ========================================================================== */
html {
  height: 100%;
}

body {
  height: 100%;
  background: #434f51;
  color: #fff;
  font-family: Arial, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
}

.section {
  box-sizing: border-box;
  width: 100%;
  max-width: 1160px;
  margin: auto;
  padding: 0 10px;
}

#header .section {
  position: relative;
}

.main {
  padding: 15px 0;
  text-align: center;
  background-position: 50% 0;
  background-attachment: fixed;
}

.main-light {
  background: #fff;
  color: #58585a;
}

.date {
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
}

.red {
  color: #c90119;
}

.mobile .cover-bg {
  background-attachment: inherit !important;
}

.wf-active body {
  font-family: 'Open Sans', sans-serif;
}

@media (max-width: 767px) {
  body {
    font-size: 15px;
  }
}

@media (min-width: 768px) {
  .main {
    padding: 20px 0;
  }
}

/* ==========================================================================
    TYPOGRAPHY
   ========================================================================== */
p {
  margin: 0;
  padding: 7px 0;
}

strong {
  font-weight: 700;
}

a {
  transition: color 0.25s ease-in-out;
  color: #c90119;
  text-decoration: underline;
}

a:hover {
  text-decoration: none;
}

a:focus {
  text-decoration: none;
}

a:active {
  text-decoration: none;
}

a[href^="tel"],
a[href^="sms"] {
  color: #fff;
  text-decoration: none;
}

h1,
h2 {
  margin: 0;
  padding: 12px 0 9px 0;
  color: #9eaeaa;
  font-weight: 400;
  font-size: 30px;
  line-height: 1;
  font-style: italic;
}

h1 a,
h2 a {
  color: #9eaeaa;
  text-decoration: none;
}

h1 a:hover,
h2 a:hover {
  color: #c90119;
}

h3 {
  margin: 0;
  padding: 12px 0 9px 0;
  color: #c90119;
  font-weight: 400;
  font-size: 18px;
  line-height: 1;
  font-style: italic;
}

h4,
h5,
h6 {
  margin: 0;
  padding: 12px 0 9px 0;
  color: #c90119;
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  font-style: italic;
}

ul {
  margin: 0;
  padding: 5px 0;
}

ul li {
  position: relative;
  margin: 0;
  padding: 3px 0 3px 15px;
  line-height: 1.3;
  list-style: none;
}

ul li:before {
  content: '';
  position: absolute;
  top: 10px;
  left: 0;
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 3px;
}

.main-light ul li:before {
  background: #58585a;
}

ul ul {
  padding: 5px 0 2px 10px;
}

ol {
  margin: 0;
  padding: 5px 0 5px 20px;
}

ol li {
  margin: 0;
  padding: 3px 0 3px 0;
  line-height: 1.3;
  list-style: decimal outside;
}

ol ol {
  padding: 5px 0 2px 20px;
}

dl {
  margin: 0;
  padding: 10px 0 5px 0;
  line-height: 1.3;
}

dt {
  margin: 0;
  padding: 0 0 5px 0;
  font-weight: 700;
}

dd {
  margin: 0;
  padding: 0 0 5px 5px;
}

table {
  margin: 7px 0;
  text-align: left;
  border: 1px solid #9eaeaa;
  line-height: 1.3;
}

table th,
table thead td {
  padding: 7px 10px;
  background: #9eaeaa;
  color: #fff;
  font-weight: 700;
  text-align: left;
  vertical-align: middle;
}

table td {
  padding: 7px 10px;
  border: 1px solid #9eaeaa;
  vertical-align: middle;
}

table p {
  padding-bottom: 0;
}

table.width-100 {
  width: 100%;
}

table.no-border {
  border: 0;
}

table.no-border th,
table.no-border td {
  border: 0;
}

cite {
  box-sizing: border-box;
  float: left;
  width: 100%;
  clear: both;
  margin: 7px 0;
  padding: 7px 0 5px 7px;
  border-left: 2px solid #c90119;
}

blockquote {
  position: relative;
  margin: 10px 0;
  padding: 46px 16px 5px 16px;
  background: #9eaeaa;
}

blockquote:after {
  content: '“';
  position: absolute;
  top: 18px;
  left: 50%;
  width: 28px;
  height: 19px;
  margin-left: -14px;
  color: #fff;
  font-family: Georgia, serif;
  font-size: 56px;
  line-height: 38px;
  font-weight: bold;
  text-align: center;
}

hr {
  height: 1px;
  margin: 20px 0;
  background: #9eaeaa;
  border: 0;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 3px auto 10px auto;
}

img.left {
  display: block;
  margin: 3px 20px 10px 0;
}

img.right {
  display: block;
  margin: 3px 0 10px 20px;
}

@media (max-width: 767px) {

  h1,
  h2 {
    font-size: 24px;
  }

  img.left {
    float: none;
    margin: 3px auto 10px auto;
  }

  img.right {
    float: none;
    margin: 3px auto 10px auto;
  }
}

/* ==========================================================================
    HEADER
   ========================================================================== */
#header {
  position: absolute;
  z-index: 5;
  top: 0;
  left: 0;
  width: 100%;
  text-align: center;
}

#header.fixed {
  transition: all 1s ease;
  position: fixed;
  top: 0;
  padding-bottom: 3rem;
  background: rgba(42, 54, 56, 0.7);
}

@media(max-width:767px) {
  #header.fixed {
    padding-bottom: 0;
  }
}

#header .section {
  max-width: 1130px;
}

#logo {
  float: left;
  padding: 20px 10px;
}

#logo img {
  width: 120px;
  margin: auto;
}

#lang-switch {
  position: absolute;
  top: 5px;
  left: 50%;
  margin-left: -9px;
  transition: all 1s ease;
}

#lang-switch a {
  transition: background-color 0.25s ease-in-out, color 0.25s ease-in-out;
  display: block;
  background: #c90119;
  padding: 3px 10px;
  color: #fff;
  font-size: 12px;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
}

#lang-switch a:hover,
#lang-switch a:focus {
  background-color: #fff;
  color: #c90119;
}

@media (min-width: 768px) {
  #logo {
    float: none;
  }

  #logo img {
    width: 148px;
  }

  #lang-switch {
    left: auto;
    right: 10px;
    margin-left: 0;
  }
}

/* ==========================================================================
    MAIN NAV
   ========================================================================== */
@media (max-width: 767px) {
  #main-nav {
    overflow: hidden;
    z-index: 6;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(42, 54, 56, 0.7);
    display: none;
    opacity: 0;
    filter: alpha(opacity=0);
  }

  #main-nav ul {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }

  #main-nav li {
    padding: 12px 0;
    text-transform: uppercase;
    font-weight: 700;
  }

  #main-nav a {
    color: #fff;
    text-decoration: none;
  }

  #main-nav a:hover {
    color: #c90119;
  }

  .nav-open #main-nav {
    -webkit-animation: hiddenPlusOpacity 0.25s ease-in-out;
    animation: hiddenPlusOpacity 0.25s ease-in-out;
    display: block;
    opacity: 1;
    filter: alpha(opacity=100);
  }
}

@media (min-width: 768px) {
  #main-nav {
    float: left;
    width: 100%;
  }

  #main-nav li {
    display: inline-block;
    padding: 5px 10px;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 700;
  }

  #main-nav a {
    color: #fff;
    text-decoration: none;
  }

  #main-nav a:hover {
    color: #c90119;
  }
}

@media (min-width: 1024px) {
  #header.fixed #logo {
    padding: 10px 0 0 0;
  }

  #logo {
    float: left;
    padding: 50px 0 0 0;
    transition: all 1s ease;
  }

  #header.fixed #main-nav {
    top: 40px;
  }

  #main-nav {
    position: absolute;
    top: 80px;
    right: 10px;
    width: auto;
    transition: all 1s ease;
  }

  #main-nav li {
    padding: 10px 20px;
  }

  #main-nav li:last-child {
    padding-right: 0;
  }
}

/* ==========================================================================
    HERO
   ========================================================================== */
#hero {
  position: relative;
  width: 100%;

  background-position: 50% 0;
  background-size: cover;
  background-attachment: fixed;
}

@media(min-width:768px) {
  #hero {
    height: 100%;
  }
}

#hero .section {
  position: relative;
  height: 100%;
  max-width: 1130px;
}

.hero-article {
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  right: 5%;
  width: 90%;
  padding: 20px 15px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background: rgba(42, 54, 56, 0.7);
  color: #f6e9da;
  font-style: italic;
}

.hero-video__btn {
  top: 65%;
  padding: 17px 30px;
  width: 27%;
  text-decoration: none;
  min-width: 170px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.hero-article p {
  padding: 0;
}

.hero-article .quote {
  font-weight: 700;
}

.hero-article .quote:before {
  content: '„';
}

.hero-article .quote:after {
  content: '”';
}

.hero-video__btn:after {
  position: absolute;
  content: " ";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 15px;
  border-color: transparent transparent transparent #f6e9da;
  top: 18px;
  right: 10%;
}

@media (max-width: 767px) {
  .hero-article br {
    display: none;
  }
}

@media (min-width: 768px) {
  .hero-article {
    top: 70%;
    width: 60%;
    right: 20px;
    padding: 30px 25px;
    font-size: 20px;
  }

  .hero-video__btn {
    top: calc(70% + 120px);
    padding: 17px 30px;
    width: 27%;
    margin-right: 33%;
    text-decoration: none;
    left: auto;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }

  .hero-video__btn::after {
    top: 20px;
  }
}

@media (min-width: 1024px) {
  .hero-article {
    top: 55%;
    right: 10px;
    width: 55%;
    padding: 35px 30px;
    font-size: 25px;
  }

  .hero-video__btn {
    top: calc(55% + 150px);
    padding: 17px 30px;
    width: 24%;
    margin-right: 31%;
    text-decoration: none;
  }

  .hero-video__btn::after {
    top: 25px;
  }
}

#nav-fb {
  position: absolute;
  top: 32px;
  margin-left: 0;
  transition: all 1s ease;
  left: calc(50% + 4px);
}

#nav-fb a,
#nav-fb svg {
  display: block;
}

@media (min-width: 1024px) {
  #lang-switch {
    top: 27px;
  }

  #header.fixed #lang-switch {
    top: 5px;
  }

  #nav-fb {
    left: auto;
    right: 70px;
    top: 27px;
  }

  #header.fixed #nav-fb {
    top: 5px;
  }
}

/* ==========================================================================
    NEWS GRID
   ========================================================================== */
.news-grid {
  width: 100%;
  padding: 20px 0 0 0;
  text-align: left;
}

.news-grid .item {
  box-sizing: border-box;
  float: left;
  width: 100%;
  padding: 0 0 20px 0;
}

.news-grid h3 {
  text-transform: uppercase;
}

.news-grid h3 a {
  text-decoration: none;
}

.news-grid__video {
  width: 100%;
  padding-right: 0;
  padding-left: 0;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .news-grid {
    padding-top: 30px;
  }

  .news-grid .item {
    width: 50%;
    padding-right: 15px;
    padding-bottom: 30px;
  }

  .news-grid .item:nth-child(2n) {
    padding-left: 15px;
    padding-right: 0;
  }

  .news-grid .item:nth-child(2n+1) {
    clear: left;
  }

  .news-grid__video {
    width: calc(100% - 30px);
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (min-width: 1024px) {
  .news-grid {
    padding-top: 38px;
  }

  .news-grid .item {
    width: 25%;
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 30px;
  }

  .news-grid .item:nth-child(4n+1) {
    clear: left;
  }

  .news-grid__video {
    float: left;
    width: 47%;
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 30px;
  }

  .project-video {
    width: 22%;
  }
}

/* ==========================================================================
    NEWS LIST
   ========================================================================== */
.news-list {
  width: 100%;
}

.news-list .item {
  float: left;
  width: 100%;
  padding: 15px 0 10px 0;
  border-top: 1px solid #e8e8e8;
}

.news-list .item:first-child {
  padding-top: 0;
  border-top: 0;
}

.news-list h3 {
  text-transform: uppercase;
}

.news-list h3 a {
  text-decoration: none;
}

/* ==========================================================================
    SUB NAV
   ========================================================================== */
.sub-nav {
  float: left;
  width: 100%;
  padding: 5px 0 15px 0;
  text-align: center;
}

.sub-nav li {
  position: relative;
  display: inline-block;
  padding: 10px 10px 10px 20px;
  color: #fff;
  text-transform: uppercase;
  font-size: 16px;
  line-height: 1;
}

.sub-nav li:before {
  content: '/';
  position: absolute;
  top: 10px;
  left: 0;
  display: block;
  width: auto;
  height: auto;
  background: transparent !important;
  border-radius: 0;
}

.sub-nav li:first-child {
  padding-left: 10px;
}

.sub-nav li:first-child:before {
  display: none;
}

.sub-nav a {
  color: #fff;
  text-decoration: none;
  outline: none;
}

.sub-nav a:hover,
.sub-nav a.active {
  color: #9eaeaa;
}

.main-light .sub-nav li {
  color: #434f51;
}

.main-light .sub-nav a {
  color: #434f51;
}

.main-light .sub-nav a:hover {
  color: #c90119;
}

@media (min-width: 1024px) {
  .sub-nav li {
    padding: 10px 15px 10px 25px;
    font-size: 18px;
  }

  .sub-nav li:first-child {
    padding-left: 15px;
  }
}

/* ==========================================================================
    TAB FRAGMENT
   ========================================================================== */
.tab-fragment {
  position: relative;
  float: left;
  width: 100%;
  padding: 0 0 20px 0;
}

/* ==========================================================================
    P LIST
   ========================================================================== */
.p-list {
  float: left;
  width: 100%;
  margin-bottom: -30px;
  padding: 20px 0 0 0;
}

.p-list .carousel {
  float: left;
  width: 100%;
}

.p-list .item {
  box-sizing: border-box;
  float: left;
  width: 100%;
  padding: 0 0 20px 0;
}

.p-list .link {
  display: block;
  color: #fff;
  text-decoration: none;
  outline: none;
}

.p-list .image {
  display: block;
  padding: 0 0 15px 0;
}

.p-list .image img {
  margin: auto;
  border-radius: 50%;
}

.p-list .txt {
  display: block;
  text-transform: uppercase;
  line-height: 1;
}

.p-list small {
  text-transform: none;
  font-style: italic;
}

.p-list .slick-dots {
  float: left;
  width: 100%;
  margin: 0;
  padding: 20px 0 0 0;
}

.p-list .slick-dots li {
  display: inline-block;
  line-height: 1;
  margin: 0;
  padding: 5px;
}

.p-list .slick-dots li:before {
  display: none;
}

.p-list .slick-dots button {
  transition: background-color 0.25s ease-in-out, color 0.25s ease-in-out;
  overflow: hidden;
  display: block;
  width: 8px;
  height: 8px;
  margin: 0;
  padding: 0;
  background: #fff;
  border-radius: 50%;
  border: 0;
  text-indent: 20px;
  outline: none;
}

.p-list .slick-dots .slick-active button {
  background-color: #9eaeaa;
}

.p-list .slick-prev,
.p-list .slick-next {
  overflow: hidden;
  position: absolute;
  top: 30px;
  width: 36px;
  height: 153px;
  background: transparent;
  border: 0;
  text-indent: 40px;
  outline: none;
}

.p-list .slick-prev:before,
.p-list .slick-next:before {
  transition: opacity 0.25s ease-in-out;
  content: '';
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
}

.p-list .slick-prev:after,
.p-list .slick-next:after {
  transition: opacity 0.25s ease-in-out;
  content: '';
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  opacity: 0;
  filter: alpha(opacity=0);
}

.p-list .slick-prev:hover:before,
.p-list .slick-next:hover:before {
  opacity: 0;
  filter: alpha(opacity=0);
}

.p-list .slick-prev:hover:after,
.p-list .slick-next:hover:after {
  opacity: 1;
  filter: alpha(opacity=100);
}

.p-list .slick-prev {
  left: 1%;
}

.p-list .slick-prev:before {
  background-image: url(../images/sprite.png);
  background-position: -258px 0px;
  width: 36px;
  height: 153px;
}

@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
  .p-list .slick-prev:before {
    background-image: url(../images/sprite-2x.png);
    background-size: 438px 354px;
  }
}

.p-list .slick-prev:after {
  background-image: url(../images/sprite.png);
  background-position: 0px 0px;
  width: 36px;
  height: 153px;
}

@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
  .p-list .slick-prev:after {
    background-image: url(../images/sprite-2x.png);
    background-size: 438px 354px;
  }
}

.p-list .slick-next {
  right: 1%;
}

.p-list .slick-next:before {
  background-image: url(../images/sprite.png);
  background-position: -172px 0px;
  width: 36px;
  height: 153px;
}

@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
  .p-list .slick-next:before {
    background-image: url(../images/sprite-2x.png);
    background-size: 438px 354px;
  }
}

.p-list .slick-next:after {
  background-image: url(../images/sprite.png);
  background-position: -86px 0px;
  width: 36px;
  height: 153px;
}

@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
  .p-list .slick-next:after {
    background-image: url(../images/sprite-2x.png);
    background-size: 438px 354px;
  }
}

@media (min-width: 768px) {
  .p-list {
    padding-top: 40px;
  }

  .p-list .item {
    padding-bottom: 30px;
  }

  .p-list .image {
    padding-bottom: 22px;
  }

  .p-list .txt {
    font-size: 18px;
  }

  .p-list .slick-prev,
  .p-list .slick-next {
    top: 60px;
  }
}

@media (min-width: 1024px) {
  .p-list .item {
    padding-bottom: 40px;
  }

  .p-list .slick-prev {
    left: 5%;
  }

  .p-list .slick-next {
    right: 5%;
  }
}

/*@media (min-width: 1240px) {
	.p-list .slick-prev {
		left: -5%;
	}

	.p-list .slick-next {
		right: -5%;
	}
}

@media (min-width: 1600px) {
	.p-list .slick-prev {
		left: -15%;
	}

	.p-list .slick-next {
		right: -15%;
	}
}*/
/* ==========================================================================
    VISION
   ========================================================================== */
.vision {
  width: 100%;
  max-width: 1110px;
  margin: auto;
  padding: 20px 0 0 0;
  text-align: justify;
}

@media (min-width: 768px) {
  .vision {
    padding-top: 40px;
  }
}

/* ==========================================================================
    GALLERY LIST
   ========================================================================== */
.gallery-list {
  width: 100%;
}

.gallery-list .reset {
  float: left;
  width: 100%;
}

.gallery-list .item {
  box-sizing: border-box;
  float: left;
  width: 100%;
  padding: 20px 0 10px 0;
}

.gallery-list a {
  overflow: hidden;
  position: relative;
  display: block;
  color: #fff;
  text-transform: uppercase;
  text-decoration: none;
}

.gallery-list .image {
  position: relative;
  display: block;
}

.gallery-list img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  margin: 0;
}

.gallery-list .cover {
  transition: opacity 0.25s ease-in-out;
  content: '';
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0;
  filter: alpha(opacity=0);
}

.gallery-list .txt {
  transition: left 0.25s ease-in-out, opacity 0.25s ease-in-out;
  box-sizing: border-box;
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 100%;
  width: 100%;
  padding: 0 10px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 0;
  filter: alpha(opacity=0);
}

.gallery-list a:hover .cover {
  opacity: .6;
  filter: alpha(opacity=60);
}

.gallery-list a:hover .txt {
  left: 0;
  opacity: 1;
  filter: alpha(opacity=100);
}

@media (min-width: 480px) and (max-width: 767px) {
  .gallery-list .item {
    width: 50%;
    padding-right: 15px;
  }

  .gallery-list .item:nth-child(2n) {
    width: 50%;
    padding-left: 15px;
    padding-right: 0;
  }

  .gallery-list .item:nth-child(2n+1) {
    clear: left;
  }
}

@media (min-width: 768px) {
  .gallery-list .item {
    width: 25%;
    padding-left: 15px;
    padding-right: 15px;
  }

  .gallery-list .item:nth-child(4n+1) {
    clear: left;
  }
}

/* ==========================================================================
    CHART
   ========================================================================== */
.chart {
  float: left;
  width: 100%;
  padding: 0 0 20px 0;
}

.chart .chart-container {
  height: 240px;
  padding: 20px 0 30px 0;
}

.chart .chart-wrap {
  height: 240px;
  width: 240px;
  display: inline-block;
  position: relative;
}

.chart .chart-wrap:before {
  content: '';
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 120px;
  box-shadow: inset 0 3px 3px rgba(0, 0, 0, 0.3);
}

.chart .pie {
  position: relative;
  z-index: 0;
  width: 240px;
  height: 240px;
  display: inline-block;
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.chart svg {
  background: #d3dad9;
  border-radius: 50%;
}

.chart circle {
  transition: all 1.5s ease-in-out;
  fill: #d3dad9;
  stroke: #434f51;
  stroke-width: 32;
}

.chart .pie-over {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  display: block;
  width: 200px;
  height: 200px;
  left: 20px;
  top: 20px;
  background-color: #fff;
  border-radius: 100px;
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.3);
}

.chart .pie-over .txt {
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  padding: 0 10px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #c90119;
  font-size: 70px;
  line-height: 1;
}

.chart .pie-over small {
  display: block;
  padding: 10px 0 0 0;
  color: #434f51;
  font-size: 18px;
}

/* ==========================================================================
    XL SLIDER
   ========================================================================== */
.xl-slider {
  position: relative;
  padding: 0;
  height: 100%;
}

.xl-slider-header {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0;
  background: rgba(0, 0, 0, 0.7);
}

.xl-slider-nav {
  padding: 3px 0;
  text-align: center;
}

.xl-slider-nav .slick-list {
  height: auto !important;
  padding: 0 !important;
}

.xl-slider-nav .slick-track {
  height: auto !important;
}

.xl-slider-nav .item {
  position: relative;
  float: none !important;
  display: inline-block !important;
  width: auto !important;
  padding: 4px 10px 4px 20px;
  color: #fff;
  text-transform: uppercase;
  font-size: 16px;
  line-height: 1;
  outline: none;
}

.xl-slider-nav .item:before {
  content: '/';
  position: absolute;
  top: 4px;
  left: 0;
  display: block;
  width: auto;
  height: auto;
  background: transparent;
  border-radius: 0;
}

.xl-slider-nav .item:first-child {
  padding-left: 10px;
}

.xl-slider-nav .item:first-child:before {
  display: none;
}

.xl-slider-nav .item span {
  transition: color 0.25s ease-in-out;
  cursor: pointer;
}

.xl-slider-nav .item span:hover {
  color: #9eaeaa;
}

.xl-slider-nav .slick-active span {
  color: #9eaeaa;
}

.xl-slider-content {
  position: relative;
  z-index: 1;
  height: 100%;
}

.xl-slider-content .carousel,
.xl-slider-content .slick-list,
.xl-slider-content .slick-track {
  height: 100% !important;
}

.xl-slider-content .item {
  position: relative;
}

.xl-slider-content .item img {
  margin: auto;
}

.xl-slider-content .bg {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.xl-slider .slick-dots {
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 100%;
  margin: 0;
  padding: 0;
  text-align: center;
}

.xl-slider .slick-dots li {
  display: inline-block;
  line-height: 1;
  margin: 0;
  padding: 5px;
}

.xl-slider .slick-dots li:before {
  display: none;
}

.xl-slider .slick-dots button {
  transition: background-color 0.25s ease-in-out, color 0.25s ease-in-out;
  overflow: hidden;
  display: block;
  width: 8px;
  height: 8px;
  margin: 0;
  padding: 0;
  background: #fff;
  border-radius: 50%;
  border: 0;
  text-indent: 20px;
  outline: none;
}

.xl-slider .slick-dots .slick-active button {
  background-color: #9eaeaa;
}

.xl-slider .slick-prev,
.xl-slider .slick-next {
  overflow: hidden;
  position: absolute;
  top: 50%;
  width: 36px;
  height: 153px;
  margin-top: -76px;
  background: transparent;
  border: 0;
  text-indent: 40px;
  outline: none;
}

.xl-slider .slick-prev:before,
.xl-slider .slick-next:before {
  transition: opacity 0.25s ease-in-out;
  content: '';
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
}

.xl-slider .slick-prev:after,
.xl-slider .slick-next:after {
  transition: opacity 0.25s ease-in-out;
  content: '';
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  opacity: 0;
  filter: alpha(opacity=0);
}

.xl-slider .slick-prev:hover:before,
.xl-slider .slick-next:hover:before {
  opacity: 0;
  filter: alpha(opacity=0);
}

.xl-slider .slick-prev:hover:after,
.xl-slider .slick-next:hover:after {
  opacity: 1;
  filter: alpha(opacity=100);
}

.xl-slider .slick-prev {
  left: 5%;
}

.xl-slider .slick-prev:before {
  background-image: url(../images/sprite.png);
  background-position: -258px 0px;
  width: 36px;
  height: 153px;
}

@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
  .xl-slider .slick-prev:before {
    background-image: url(../images/sprite-2x.png);
    background-size: 438px 354px;
  }
}

.xl-slider .slick-prev:after {
  background-image: url(../images/sprite.png);
  background-position: 0px 0px;
  width: 36px;
  height: 153px;
}

@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
  .xl-slider .slick-prev:after {
    background-image: url(../images/sprite-2x.png);
    background-size: 438px 354px;
  }
}

.xl-slider .slick-next {
  right: 5%;
}

.xl-slider .slick-next:before {
  background-image: url(../images/sprite.png);
  background-position: -172px 0px;
  width: 36px;
  height: 153px;
}

@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
  .xl-slider .slick-next:before {
    background-image: url(../images/sprite-2x.png);
    background-size: 438px 354px;
  }
}

.xl-slider .slick-next:after {
  background-image: url(../images/sprite.png);
  background-position: -86px 0px;
  width: 36px;
  height: 153px;
}

@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
  .xl-slider .slick-next:after {
    background-image: url(../images/sprite-2x.png);
    background-size: 438px 354px;
  }
}

.xl-slider .article {
  box-sizing: border-box;
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 15px 10px 30px 10px;
  background: rgba(0, 0, 0, 0.7);
  font-size: 12px;
  line-height: 1.4;
  text-align: left;
}

@media (max-width: 767px) {

  .xl-slider .slick-prev,
  .xl-slider .slick-next {
    top: 200px;
    margin-top: 0;
    display: none !important;
  }

  .xl-slider-nav .item {
    width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .xl-slider-nav .item:before {
    display: none;
  }
}

@media (min-width: 768px) {
  .xl-slider-header {
    padding: 12px 0;
  }

  .xl-slider-nav {
    padding: 10px 0;
  }
}

@media (min-width: 1024px) {
  .xl-slider-nav .item {
    padding: 4px 15px 4px 25px;
    font-size: 18px;
  }

  .xl-slider-nav .item:first-child {
    padding-left: 15px;
  }

  .xl-slider .article-container {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 50%;
    width: 100%;
    max-width: 1110px;
    height: 100%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }

  .xl-slider .article {
    font-size: 14px;
    width: 55%;
    padding: 15px 20px 15px 20px;
  }

  .xl-slider .item-1 .article {
    bottom: auto;
    left: auto;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }

  .xl-slider .item-2 .article {
    bottom: auto;
    top: 30%;
    left: 0;
  }

  .xl-slider .item-3 .article {
    bottom: auto;
    left: auto;
    top: 50%;
    right: 20%;
    width: 35%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}

/* ==========================================================================
    TEXT NARROW
   ========================================================================== */
.text-narrow {
  width: 100%;
  max-width: 410px;
  margin: auto;
  padding: 20px 0;
  font-size: 14px;
}

@media (min-width: 768px) {
  .text-narrow {
    padding: 30px 0;
  }
}

/* ==========================================================================
    E-MARKET
   ========================================================================== */
.e-market {
  text-align: center;
}

.e-market li {
  display: inline-block;
  padding: 0 5px 10px 5px;
}

.e-market a {
  overflow: hidden;
  position: relative;
  display: block;
  width: 118px;
  height: 38px;
  text-indent: 120px;
  white-space: nowrap;
}

.e-market a:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
}

.e-market .app-store:before {
  background-image: url(../images/sprite.png);
  background-position: -168px -203px;
  width: 118px;
  height: 37px;
}

@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
  .e-market .app-store:before {
    background-image: url(../images/sprite-2x.png);
    background-size: 438px 354px;
  }
}

.e-market .google-play:before {
  background-image: url(../images/sprite.png);
  background-position: 0px -203px;
  width: 118px;
  height: 38px;
}

@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
  .e-market .google-play:before {
    background-image: url(../images/sprite-2x.png);
    background-size: 438px 354px;
  }
}

@media (min-width: 768px) {
  .e-market {
    text-align: left;
  }

  .e-market li {
    padding-left: 0;
  }
}

/* ==========================================================================
    DIALOG ARTICLE
   ========================================================================== */
.dialog-article {
  width: 100%;
}

.dialog-article .col.left {
  width: 100%;
  padding: 0 0 10px 0;
}

.dialog-article .col.right {
  width: 100%;
}

.dialog-article h3 {
  text-transform: uppercase;
}

.dialog-article table,
.dialog-article table td {
  border: none;
}

@media (min-width: 768px) {
  .dialog-article .col.left {
    width: 47%;
  }

  .dialog-article .col.right {
    width: 48%;
    padding-top: 35px;
  }
}

/* ==========================================================================
    SLIDE GALLERY
   ========================================================================== */
.slide-gallery {
  width: 100%;
  max-width: 537px;
  margin: auto;
}

.slide-gallery .carousel {
  position: relative;
  float: left;
  width: 100%;
}

.slide-gallery .main-img {
  float: left;
  width: 100%;
  padding: 0 0 27px 0;
}

.slide-gallery .main-img img {
  margin: auto;
}

.slide-gallery .main-img .item {
  display: none;
}

.slide-gallery .main-img .item:first-child,
.slide-gallery .main-img .item.slick-slide {
  display: block;
}

.slide-gallery .slick-prev,
.slide-gallery .slick-next {
  overflow: hidden;
  position: absolute;
  z-index: 2;
  top: 50%;
  width: 16px;
  height: 63px;
  margin: -32px 0 0 0;
  padding: 0;
  background: transparent;
  border: 0;
  outline: none;
  text-indent: 20px;
  white-space: nowrap;
}

.slide-gallery .slick-prev:before,
.slide-gallery .slick-next:before {
  transition: opacity 0.25s ease-in-out;
  content: '';
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
}

.slide-gallery .slick-prev:after,
.slide-gallery .slick-next:after {
  transition: opacity 0.25s ease-in-out;
  content: '';
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  opacity: 0;
  filter: alpha(opacity=0);
}

.slide-gallery .slick-prev:hover:before,
.slide-gallery .slick-next:hover:before {
  opacity: 0;
  filter: alpha(opacity=0);
}

.slide-gallery .slick-prev:hover:after,
.slide-gallery .slick-next:hover:after {
  opacity: 1;
  filter: alpha(opacity=100);
}

.slide-gallery .slick-prev {
  left: 3%;
}

.slide-gallery .slick-prev:before {
  background-image: url(../images/sprite.png);
  background-position: -344px 0px;
  width: 16px;
  height: 63px;
}

@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
  .slide-gallery .slick-prev:before {
    background-image: url(../images/sprite-2x.png);
    background-size: 438px 354px;
  }
}

.slide-gallery .slick-prev:after {
  background-image: url(../images/sprite.png);
  background-position: 0px -291px;
  width: 16px;
  height: 63px;
}

@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
  .slide-gallery .slick-prev:after {
    background-image: url(../images/sprite-2x.png);
    background-size: 438px 354px;
  }
}

.slide-gallery .slick-next {
  right: 3%;
}

.slide-gallery .slick-next:before {
  background-image: url(../images/sprite.png);
  background-position: -66px -291px;
  width: 16px;
  height: 63px;
}

@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
  .slide-gallery .slick-next:before {
    background-image: url(../images/sprite-2x.png);
    background-size: 438px 354px;
  }
}

.slide-gallery .slick-next:after {
  background-image: url(../images/sprite.png);
  background-position: -344px -113px;
  width: 16px;
  height: 63px;
}

@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
  .slide-gallery .slick-next:after {
    background-image: url(../images/sprite-2x.png);
    background-size: 438px 354px;
  }
}

.slide-gallery-nav {
  float: left;
  width: 100%;
}

.slide-gallery-nav .reset {
  float: left;
  width: 100%;
  padding: 0 0 22px 0;
}

.slide-gallery-nav li {
  float: left;
  padding: 0 5px 5px 0;
}

.slide-gallery-nav a {
  display: block;
  outline: none;
}

.slide-gallery-nav img {
  margin: auto;
}

/* ==========================================================================
    SPONSOR LIST
   ========================================================================== */
.sponsor-list {
  width: 100%;
  padding: 10px 0;
}

.sponsor-list .reset {
  float: left;
  width: 100%;
}

.sponsor-list li {
  float: left;
  width: 50%;
  padding: 15px 0;
}

.sponsor-list .img {
  display: block;
  width: 90%;
  padding: 0 5%;
}

.sponsor-list .img img {
  display: inline-block;
  margin: auto;
  width: auto;
}

@media (max-width: 479px) {
  .sponsor-list li:nth-child(2n+1) {
    clear: left;
  }

  .sponsor-list .img {
    height: 130px;
  }

  .sponsor-list .img img {
    max-height: 130px;
  }
}

@media (min-width: 480px) and (max-width: 1023px) {
  .sponsor-list li {
    width: 33.333%;
  }

  .sponsor-list li:nth-child(3n+1) {
    clear: left;
  }

  .sponsor-list .img {
    height: 130px;
  }

  .sponsor-list .img img {
    max-height: 130px;
  }
}

@media (min-width: 1024px) {
  .sponsor-list li {
    width: 25%;
  }

  .sponsor-list li:nth-child(4n+1) {
    clear: left;
  }

  .sponsor-list .img {
    height: 155px;
  }

  .sponsor-list .img img {
    max-height: 155px;
  }
}

/* ==========================================================================
    MEMBER LIST
   ========================================================================== */
.member-list {
  width: 100%;
  padding: 0 0 10px 0;
}

.member-list .list {
  float: left;
  width: 100%;
  padding-top: 5px;
}

.member-list .list li {
  float: left;
  width: 100%;
  padding: 3px 0;
}

@media (min-width: 480px) and (max-width: 767px) {
  .member-list .list li {
    width: 50%;
  }

  .member-list .list li:nth-child(2n+1) {
    clear: left;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .member-list .list li {
    width: 33.333%;
  }

  .member-list .list li:nth-child(3n+1) {
    clear: left;
  }
}

@media (min-width: 1024px) {
  .member-list .list li {
    width: 25%;
  }

  .member-list .list li:nth-child(4n+1) {
    clear: left;
  }
}

/* ==========================================================================
    CONTRIBUTE
   ========================================================================== */
.contribute {
  padding: 0 0 15px 0;
  text-align: center;
  font-size: 22px;
}

.contribute p {
  padding: 20px 0;
}

/* ==========================================================================
    FOOTER
   ========================================================================== */
#footer {
  padding: 16px 0 0 0;
  text-align: center;
}

#footer .col {
  box-sizing: border-box;
  float: left;
  width: 100%;
  padding: 0 0 16px 0;
  color: #9eaeaa;
  font-size: 14px;
}

#footer a {
  color: #9eaeaa;
  text-decoration: none;
}

#footer a:hover,
#footer a:focus {
  color: #fff;
}

@media (min-width: 768px) {
  #footer .col {
    width: 20%;
    text-align: left;
  }
}

/* ==========================================================================
    FOOTER SOCIALS
   ========================================================================== */
.footer-socials li {
  display: inline-block;
  padding: 0 5px;
  line-height: 1;
}

.footer-socials a {
  overflow: hidden;
  position: relative;
  display: block;
  width: 28px;
  height: 28px;
  text-indent: 56px;
  outline: none;
}

.footer-socials a:before {
  transition: opacity 0.25s ease-in-out;
  content: '';
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
}

.footer-socials a:after {
  transition: opacity 0.25s ease-in-out;
  content: '';
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  opacity: 0;
  filter: alpha(opacity=0);
}

.footer-socials a:hover:before,
.footer-socials a:focus:before {
  opacity: 0;
  filter: alpha(opacity=0);
}

.footer-socials a:hover:after,
.footer-socials a:focus:after {
  opacity: 1;
  filter: alpha(opacity=100);
}

.footer-socials .yt {
  width: 40px;
}

.footer-socials .yt:before {
  background-image: url(../images/sprite.png);
  background-position: -222px -291px;
  width: 40px;
  height: 28px;
}

@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
  .footer-socials .yt:before {
    background-image: url(../images/sprite-2x.png);
    background-size: 438px 354px;
  }
}

.footer-socials .yt:after {
  background-image: url(../images/sprite.png);
  background-position: -132px -291px;
  width: 40px;
  height: 28px;
}

@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
  .footer-socials .yt:after {
    background-image: url(../images/sprite-2x.png);
    background-size: 438px 354px;
  }
}

.footer-socials .fb:before {
  background-image: url(../images/sprite.png);
  background-position: -410px -312px;
  width: 28px;
  height: 28px;
}

@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
  .footer-socials .fb:before {
    background-image: url(../images/sprite-2x.png);
    background-size: 438px 354px;
  }
}

.footer-socials .fb:after {
  background-image: url(../images/sprite.png);
  background-position: -410px -156px;
  width: 28px;
  height: 28px;
}

@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
  .footer-socials .fb:after {
    background-image: url(../images/sprite-2x.png);
    background-size: 438px 354px;
  }
}

.footer-socials .pin:before {
  background-image: url(../images/sprite.png);
  background-position: -410px -78px;
  width: 28px;
  height: 28px;
}

@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
  .footer-socials .pin:before {
    background-image: url(../images/sprite-2x.png);
    background-size: 438px 354px;
  }
}

.footer-socials .pin:after {
  background-image: url(../images/sprite.png);
  background-position: -312px -291px;
  width: 28px;
  height: 28px;
}

@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
  .footer-socials .pin:after {
    background-image: url(../images/sprite-2x.png);
    background-size: 438px 354px;
  }
}

.footer-socials .insta:before {
  background-image: url(../images/sprite.png);
  background-position: -410px -234px;
  width: 28px;
  height: 28px;
}

@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
  .footer-socials .insta:before {
    background-image: url(../images/sprite-2x.png);
    background-size: 438px 354px;
  }
}

.footer-socials .insta:after {
  background-image: url(../images/sprite.png);
  background-position: -410px 0px;
  width: 28px;
  height: 28px;
}

@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
  .footer-socials .insta:after {
    background-image: url(../images/sprite-2x.png);
    background-size: 438px 354px;
  }
}

.footer-socials .tw:before {
  background-image: url(../images/sprite.png);
  background-position: -410px -78px;
  width: 28px;
  height: 28px;
}

@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
  .footer-socials .tw:before {
    background-image: url(../images/sprite-2x.png);
    background-size: 438px 354px;
  }
}

.footer-socials .tw:after {
  background-image: url(../images/sprite.png);
  background-position: -312px -291px;
  width: 28px;
  height: 28px;
}

@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
  .footer-socials .tw:after {
    background-image: url(../images/sprite-2x.png);
    background-size: 438px 354px;
  }
}

@media (min-width: 768px) {
  .footer-socials li {
    float: left;
    padding: 0 10px 10px 0;
  }
}

/* ==========================================================================
    Magnific Popup 1.0.0 - custom
   ========================================================================== */
.mfpOverlayOpacity {
  opacity: 0.8;
  filter: alpha(opacity=80);
}

.galleryArrow {
  background: #2c3435;
  opacity: .5;
  filter: alpha(opacity=50);
}

.mfpSprite {
  background-image: url(../images/magnific-popup.png);
  background-size: 160px 40px;
  background-color: transparent;
}

.mfpSprite-old {
  background-image: url(../images/magnific-popup-ie.png);
  background-size: inherit;
  background-color: transparent;
}

.mfp-bg {
  opacity: 0.8;
  filter: alpha(opacity=80);
  overflow: hidden;
  position: fixed;
  z-index: 10000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #2c3435;
}

.mfp-wrap {
  position: fixed;
  z-index: 10100;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  outline: none !important;
  -webkit-backface-visibility: hidden;
}

.mfp-container {
  box-sizing: border-box;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  text-align: center;
}

.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
  display: none;
}

.mfp-content {
  position: relative;
  z-index: 10500;
  display: inline-block;
  margin: 0 auto;
  vertical-align: middle;
  text-align: left;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.mfp-loading.mfp-figure {
  display: none;
}

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

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044;
}

.mfp-preloader a {
  color: #CCC;
}

.mfp-preloader a:hover {
  color: #FFF;
}

.mfp-s-ready .mfp-preloader {
  display: none;
}

.mfp-s-error .mfp-content {
  display: none;
}

button.mfp-close,
button.mfp-arrow {
  overflow: hidden;
  z-index: 10600;
  display: block;
  padding: 0;
  border: 0;
  background-color: transparent;
  -webkit-appearance: none;
  outline: none;
  box-shadow: none;
  cursor: pointer;
  text-align: left;
  text-indent: -100px;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

button.mfp-close {
  background-image: url(../images/magnific-popup.png);
  background-size: 160px 40px;
  background-color: transparent;
  position: absolute;
  right: 0;
  top: 0;
  width: 40px;
  height: 40px;
  margin: 0;
  padding: 0;
  background-position: -40px 0;
}

.no-backgroundsize button.mfp-close {
  background-image: url(../images/magnific-popup-ie.png);
  background-size: inherit;
  background-color: transparent;
}

.mfp-close-btn-in .mfp-close {
  background-position: 0 0;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  width: 40px;
}

.mfp-close-btn-in .mfp-image-holder .mfp-close,
.mfp-close-btn-in .mfp-iframe-holder .mfp-close {
  margin-right: -12px;
  background-position: -40px 0;
}

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #fff;
  font-size: 13px;
  line-height: 18px;
  white-space: nowrap;
}

.mfp-arrow {
  position: absolute;
  top: 50%;
  width: 90px;
  height: 200px;
  margin: 0;
  margin-top: -100px;
  padding: 0;
}

.mfp-arrow-left {
  left: 0;
}

.mfp-arrow-left:before {
  background-image: url(../images/magnific-popup.png);
  background-size: 160px 40px;
  background-color: transparent;
  content: '';
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 10px;
  display: block;
  width: 40px;
  height: 40px;
  margin: -20px 0 0 0;
  background-position: -80px 0;
}

.no-backgroundsize .mfp-arrow-left:before {
  background-image: url(../images/magnific-popup-ie.png);
  background-size: inherit;
  background-color: transparent;
}

.mfp-arrow-left:after {
  content: '';
  position: absolute;
  z-index: 1;
  text-indent: 50%;
  left: 10px;
  width: 40px;
  height: 40px;
  margin: -20px 0 0 0;
  background: #2c3435;
  opacity: .5;
  filter: alpha(opacity=50);
}

.mfp-arrow-right {
  right: 0;
}

.mfp-arrow-right:before {
  background-image: url(../images/magnific-popup.png);
  background-size: 160px 40px;
  background-color: transparent;
  content: '';
  position: absolute;
  z-index: 2;
  top: 50%;
  right: 10px;
  display: block;
  width: 40px;
  height: 40px;
  margin: -20px 0 0 0;
  background-position: -120px 0;
}

.no-backgroundsize .mfp-arrow-right:before {
  background-image: url(../images/magnific-popup-ie.png);
  background-size: inherit;
  background-color: transparent;
}

.mfp-arrow-right:after {
  content: '';
  position: absolute;
  z-index: 1;
  text-indent: 50%;
  right: 10px;
  width: 40px;
  height: 40px;
  margin: -20px 0 0 0;
  background: #2c3435;
  opacity: .5;
  filter: alpha(opacity=50);
}

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px;
}

.mfp-iframe-holder .mfp-close {
  top: -40px;
}

.mfp-iframe-scaler {
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #2c3435;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
}

img.mfp-img {
  box-sizing: border-box;
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  padding: 40px 0;
  line-height: 0;
}

.mfp-figure {
  line-height: 0;
}

.mfp-figure:after {
  content: '';
  position: absolute;
  z-index: -1;
  right: 0;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  width: auto;
  height: auto;
  background: #444;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
}

.mfp-figure small {
  display: block;
  color: #bdbdbd;
  font-size: 12px;
  line-height: 14px;
}

.mfp-figure figure {
  margin: 0;
}

.mfp-bottom-bar {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  margin-top: -36px;
  cursor: auto;
}

.mfp-title {
  padding-right: 36px;
  color: #fff;
  font-size: 15px;
  line-height: 18px;
  text-align: left;
  word-wrap: break-word;
}

.mfp-image-holder .mfp-content {
  max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape),
screen and (max-height: 300px) {
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }

  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }

  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0;
  }

  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
  }

  .mfp-img-mobile .mfp-bottom-bar {
    box-sizing: border-box;
    position: fixed;
    top: auto;
    bottom: 0;
    margin: 0;
    padding: 3px 5px;
    background: rgba(0, 0, 0, 0.6);
  }

  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0;
  }

  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px;
  }

  .mfp-img-mobile .mfp-close {
    position: fixed;
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    padding: 0;
    background: rgba(0, 0, 0, 0.6);
    line-height: 35px;
    text-align: center;
  }
}

@media all and (max-width: 900px) {
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px;
  }
}

@media (min-width: 768px) {
  .mfp-close-btn-in .mfp-close {
    top: 10px;
    right: 22px;
  }

  .mfp-close-btn-in .mfp-iframe-holder .mfp-close {
    top: -40px;
    right: 0;
  }

  .mfp-close-btn-in .mfp-image-holder .mfp-close {
    top: 0;
    right: 0;
  }
}

/* ANIMATION
    ========================================================================== */
.mfp-fade.mfp-bg {
  opacity: 0;
  filter: alpha(opacity=0);
  transition: all 0.25s ease-out;
}

.mfp-fade.mfp-bg.mfp-ready {
  opacity: 0.8;
  filter: alpha(opacity=80);
}

.mfp-fade.mfp-bg.mfp-removing {
  opacity: 0;
  filter: alpha(opacity=0);
}

.mfp-fade.mfp-wrap .mfp-content {
  opacity: 0;
  filter: alpha(opacity=0);
  transition: all 0.25s ease-out;
}

.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
  filter: alpha(opacity=100);
}

.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
  filter: alpha(opacity=0);
}

/* ==========================================================================
    DIALOG
   ========================================================================== */
.dialog {
  position: relative;
  width: auto;
  max-width: 1110px;
  margin: 20px auto;
  padding: 20px 10px 10px 10px;
  background: #fff;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.75);
  color: #58585a;
  font-size: 14px;
}

.dialog .date {
  font-size: 14px;
}

.dialog ul li:before {
  width: 4px;
  height: 4px;
  background: #58585a;
  border-radius: 2px;
}

.dialog hr {
  background: #e8e8e8;
}

@media (min-width: 768px) {
  .dialog {
    padding: 32px 30px 15px 30px;
  }
}

/* ==========================================================================
    HAMBURGER
   ========================================================================== */
.transHamburger {
  transition: all 0.25s ease-in-out;
}

.hamburger {
  position: absolute;
  z-index: 7;
  top: 22px;
  right: 15px;
  width: 46px;
  height: 46px;
  text-align: left;
}

.hamburger a {
  transition: all 0.25s ease-in-out;
  box-sizing: border-box;
  position: relative;
  display: block;
  width: 100%;
  height: 46px;
  padding: 0 0 0 50px;
  line-height: 46px;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  outline: none;
}

.hamburger a:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  line-height: 100%;
}

.hamburger .lines {
  transition: all 0.25s ease-in-out;
  position: absolute;
  top: 50%;
  left: 15px;
  width: 24px;
  height: 2px;
  margin-top: -1px;
  background: #fff;
  border-radius: 1px;
}

.hamburger .lines:before {
  transition: all 0.25s ease-in-out;
  content: '';
  position: absolute;
  top: -7px;
  left: 0;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 1px;
}

.hamburger .lines:after {
  transition: all 0.25s ease-in-out;
  content: '';
  position: absolute;
  top: 7px;
  left: 0;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 1px;
}

.nav-open .hamburger {
  position: fixed;
}

.nav-open .hamburger .lines {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.nav-open .hamburger .lines:before {
  opacity: 0;
}

.nav-open .hamburger .lines:after {
  top: 0;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

@media (min-width: 768px) {
  .hamburger {
    display: none;
  }
}

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

.slick-list {
  overflow: hidden;
  position: relative;
  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 {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 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 {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[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;
}

/* Global items
   ========================================================================== */

.dialog-payment {
  max-width: 500px;
  font-weight: bold;
  text-align: center;
}

.form {
  font-size: 14px;
  margin-top: -25px;
}

.form .payment-info p {
  padding: 5px 0;
}

.form .form__item {
  max-width: 300px;
  text-align: left;
  margin: 0px auto 10px;
}

.form .form__item label {
  display: block;
  margin-bottom: 3px;
}

.form .form__item input {
  outline: none;
  width: 100%;
  padding: 5px 10px;
  border: 1px solid #c5c5c5;
  box-sizing: border-box;
}

.form .form__item input:focus {
  border: 1px solid #e49aa3;
}

.form .form__item--checkbox label {
  display: inline-block;
  margin-top: -2px;
  margin-bottom: 0px;
}

.form .form__item--checkbox input {
  width: auto;
}

.form .form__item--amount {
  margin-top: 10px;
  margin-bottom: 10px;
}

.form .form__item--amount label {
  display: inline-block;
}

.form .form__item--amount input {
  display: inline-block;
  width: 40%;
  height: 35px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  margin: 0 5px;
}

.form .form__item--amount .currency {
  display: inline-block;
}

.form .btn--submit {
  transition: background-color 0.25s ease-in-out, color 0.25s ease-in-out;
  display: inline-block;
  background: #c90119;
  padding: 16px 10px;
  color: #fff;
  font-size: 20px;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
  margin-top: 10px;
  margin-bottom: 25px;
  border: 2px solid #c90119;
  width: 100%;
}

.form .btn--submit:hover {
  background: #fff;
  color: #c90119;
}

.form .errorMessage,
.form .form__item label.error {
  color: #dc0d0d;
}

.form input.error {
  border: 1px solid #dc0d0d;
}

.gopay_logo img {
  margin-top: 5px;
}

.qr {
  display: none;
  background-color: #fff;
  color: #000;
  max-width: 500px;
  margin: 0 auto;
  padding: 40px;
  text-align: center;
}

.qr h2 {
  margin-bottom: 40px;
}

.qr p {
  font-size: 14px;
  line-height: 1.6;
}

.mfp-content .qr {
  display: block;
}

.qr img {
  max-width: 400px;
  margin: 0 auto;
}