@charset "UTF-8";
*, *::before, *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

ul, ol {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

a {
  display: inline-block;
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: black;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: black;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

input, select {
  vertical-align: middle;
}

/*!
 * 
 *         SimpleBar.js - v2.6.1
 *         Scrollbars, simpler.
 *         https://grsmto.github.io/simplebar/
 *         
 *         Made by Adrien Grsmto from a fork by Jonathan Nicol
 *         Under MIT License
 *       
 */
[data-simplebar] {
  position: relative;
  z-index: 0;
  overflow: hidden !important;
  max-height: inherit;
  -webkit-overflow-scrolling: touch;
  /* Trigger native scrolling for mobile, if not supported, plugin is used. */
}

[data-simplebar="init"] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.simplebar-scroll-content {
  overflow-x: hidden !important;
  overflow-y: scroll;
  min-width: 100% !important;
  max-height: inherit !important;
  -webkit-box-sizing: content-box !important;
  box-sizing: content-box !important;
}

.simplebar-content {
  overflow-y: hidden !important;
  overflow-x: scroll;
  -webkit-box-sizing: border-box !important;
  box-sizing: border-box !important;
  min-height: 100% !important;
}

.simplebar-track {
  z-index: 1;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 11px;
}

.simplebar-scrollbar {
  position: absolute;
  right: 2px;
  width: 7px;
  min-height: 10px;
}

.simplebar-scrollbar:before {
  position: absolute;
  content: "";
  background: black;
  border-radius: 7px;
  left: 0;
  right: 0;
  opacity: 0;
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}

.simplebar-track:hover .simplebar-scrollbar:before,
.simplebar-track .simplebar-scrollbar.visible:before {
  /* When hovered, remove all transitions from drag handle */
  opacity: 0.5;
  -webkit-transition: opacity 0 linear;
  transition: opacity 0 linear;
}

.simplebar-track.vertical {
  top: 0;
}

.simplebar-track.vertical .simplebar-scrollbar:before {
  top: 2px;
  bottom: 2px;
}

.simplebar-track.horizontal {
  left: 0;
  width: auto;
  height: 11px;
}

.simplebar-track.horizontal .simplebar-scrollbar:before {
  height: 100%;
  left: 2px;
  right: 2px;
}

.horizontal.simplebar-track .simplebar-scrollbar {
  right: auto;
  top: 2px;
  height: 7px;
  min-height: 0;
  min-width: 10px;
  width: auto;
}

html {
  background-color: black;
}

html, body {
  overflow-x: hidden;
  line-height: 1.5;
  color: #1e1e1e;
  font-family: "Saira Semi Condensed", "Helvetica Neue", "Roboto", sans-serif;
  font-size: 10px;
  font-weight: 600;
}

@media (max-width: 1365px) {
  html, body {
    font-size: 9px;
  }
}

button, input, textarea {
  font-family: "Saira Semi Condensed", "Helvetica Neue", "Roboto", sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
}

input, textarea {
  -webkit-appearance: none;
  border-radius: 0;
  border: 1px solid #7d7d7d;
  outline: none;
  padding: 1rem 2rem;
}

input:focus, textarea:focus {
  border: 1px solid #ffd300;
}

textarea {
  width: 100%;
  resize: vertical;
}

button {
  border: none;
  outline: none;
  -webkit-appearance: none;
  cursor: pointer;
  background: none;
  padding: 0;
  -webkit-transition: 0.24s ease;
  transition: 0.24s ease;
}

button:focus, button:active {
  outline: none;
}

a {
  color: #f1b204;
  font-weight: 700;
  text-decoration: none;
  -webkit-text-decoration-color: rgba(30, 30, 30, 0);
          text-decoration-color: rgba(30, 30, 30, 0);
  -webkit-transition: 0.18s ease;
  transition: 0.18s ease;
}

a:hover {
  text-decoration: none;
}

a:focus {
  outline: none;
}

h1, h2, h3, h4, h5, h6 {
  margin: 1em 0 0.4em;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
}

h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
  font-weight: inherit;
  color: inherit;
}

h1 {
  font-size: 3.7rem;
  line-height: 1.1;
}

@media (max-width: 1199px) {
  h1 {
    font-size: 3rem;
  }
}

h2 {
  font-size: 3rem;
  line-height: 1.1;
}

@media (max-width: 1199px) {
  h2 {
    font-size: 2.5rem;
  }
}

h3 {
  font-size: 2rem;
  line-height: 1.2;
  color: #464646;
}

h4, h5, h6 {
  font-weight: 800;
}

h4 {
  font-size: 1.8rem;
  line-height: 1.3;
}

h5, h6 {
  line-height: 1.4;
}

h5 {
  font-size: 1.6rem;
}

h6 {
  text-transform: uppercase;
  font-size: 1.4rem;
}

p {
  margin: 0.6em 0 0.4em;
  font-size: 1.6rem;
}

a {
  font-weight: 700;
}

em {
  font-weight: 600;
}

strong {
  font-weight: 700;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 2px dashed #bdbdbd;
  margin: 2rem 0;
  padding: 0;
}

body.layout-full hr {
  border-color: rgba(255, 255, 255, 0.5);
}

sup {
  vertical-align: super;
  font-size: smaller;
  line-height: 0;
}

sub {
  vertical-align: sub;
  font-size: smaller;
  line-height: 0;
}

.footnotes {
  font-size: 1.2rem;
  line-height: 1.8rem;
}

.wysiwyg-content a,
.mce-content-body a {
  display: initial;
  text-transform: uppercase;
  color: #f1b204;
}

.wysiwyg-content a:hover, .wysiwyg-content a:focus, .wysiwyg-content a:active,
.mce-content-body a:hover,
.mce-content-body a:focus,
.mce-content-body a:active {
  color: #7d7d7d;
}

.wysiwyg-content p,
.mce-content-body p {
  margin: 0.6em 0 0.4em;
  font-size: 1.6rem;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  line-height: 2.3rem;
}

.wysiwyg-content h2, .wysiwyg-content h3,
.mce-content-body h2,
.mce-content-body h3 {
  color: #464646;
  text-transform: uppercase;
  margin: 0 5px 2.5rem;
  position: relative;
  padding-left: 30px;
  font-size: 3rem;
}

.wysiwyg-content h2:before, .wysiwyg-content h3:before,
.mce-content-body h2:before,
.mce-content-body h3:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 11.5px;
  height: 3rem;
  background: #ffcb00;
  -webkit-transform: skew(-18deg, 0deg);
          transform: skew(-18deg, 0deg);
}

@media (max-width: 1199px) {
  .wysiwyg-content h2, .wysiwyg-content h3,
  .mce-content-body h2,
  .mce-content-body h3 {
    font-size: 2.5rem;
  }
  .wysiwyg-content h2:before, .wysiwyg-content h3:before,
  .mce-content-body h2:before,
  .mce-content-body h3:before {
    height: 2.5rem;
  }
}

.wysiwyg-content h4, .wysiwyg-content h5, .wysiwyg-content h6,
.mce-content-body h4,
.mce-content-body h5,
.mce-content-body h6 {
  text-transform: uppercase;
  color: #464646;
}

.wysiwyg-content ol, .wysiwyg-content ul,
.mce-content-body ol,
.mce-content-body ul {
  margin: 2rem 0 3rem;
  padding-left: 4rem;
  font-size: 1.6rem;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  line-height: 2.3rem;
}

.wysiwyg-content ol li, .wysiwyg-content ul li,
.mce-content-body ol li,
.mce-content-body ul li {
  position: relative;
  margin: 0.5em 0;
}

.wysiwyg-content ol li::before, .wysiwyg-content ul li::before,
.mce-content-body ol li::before,
.mce-content-body ul li::before {
  position: absolute;
  right: calc(100% + 1rem);
  font-weight: 800;
  color: #ffcb00;
}

.wysiwyg-content ol,
.mce-content-body ol {
  counter-reset: cnt;
}

.wysiwyg-content ol li::before,
.mce-content-body ol li::before {
  content: counter(cnt) ".";
  counter-increment: cnt;
}

.wysiwyg-content ul li::before,
.mce-content-body ul li::before {
  content: "●";
}

.wysiwyg-content blockquote,
.mce-content-body blockquote {
  position: relative;
  margin: 3rem 0 1rem;
  padding-left: 5rem;
  font-weight: 400;
  color: #535353;
}

.wysiwyg-content blockquote p,
.mce-content-body blockquote p {
  margin: 0;
  font-size: 1.7rem;
}

.wysiwyg-content blockquote + p,
.mce-content-body blockquote + p {
  margin-top: 0;
}

.wysiwyg-content blockquote::before,
.mce-content-body blockquote::before {
  content: "“";
  display: block;
  position: absolute;
  left: 0;
  top: -4rem;
  font-size: 8rem;
  font-family: serif;
  color: #ffcb00;
}

.wysiwyg-content img,
.mce-content-body img {
  display: block;
  margin: 3rem 0;
  max-width: 100%;
  width: 100%;
  height: auto;
}

.wysiwyg-content sup,
.mce-content-body sup {
  vertical-align: super;
  font-size: smaller;
  line-height: 0;
}

.wysiwyg-content sub,
.mce-content-body sub {
  vertical-align: sub;
  font-size: smaller;
  line-height: 0;
}

.wysiwyg-content .video-container,
.mce-content-body .video-container {
  position: relative;
  padding-bottom: 60%;
  height: 0;
  overflow: hidden;
}

.wysiwyg-content .video-container iframe,
.mce-content-body .video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

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

.row:after {
  clear: both;
}

.colLeft {
  float: left;
}

.colRight {
  float: right;
}

body .slick-dotted.slick-slider {
  padding-bottom: 0;
}

body .slick-dots {
  bottom: -3.6rem;
}

@media (max-width: 767px) {
  .row .colLeft,
  .row .colRight {
    float: none;
    width: 100%;
  }
}

.siteTitle {
  color: #464646;
  font-size: 3.7rem;
  text-transform: uppercase;
  margin: 0 5px 3rem;
  position: relative;
  padding-left: 30px;
}

.siteTitle:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 3.7rem;
  width: 11.5px;
  background: #ffcb00;
  -webkit-transform: skew(-18deg, 0deg);
          transform: skew(-18deg, 0deg);
}

.siteTitle-white {
  color: white;
}

@media (max-width: 1199px) {
  .siteTitle {
    font-size: 3rem;
  }
  .siteTitle:before {
    height: 3rem;
  }
}

.siteContent {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  max-width: 1280px;
  margin: 0 auto;
  background: white;
}

.siteFooter {
  position: relative;
}

.siteFooter::after {
  content: '';
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  height: 50vh;
  background-color: black;
}

.whiteWords {
  color: white;
}

.blackWords {
  color: black;
}

.grayWords {
  color: #c6c6c5;
}

.grayWords-darker {
  padding-right: 5px;
  color: #9e9e9e;
}

.blockWrapper {
  padding: 5rem;
}

@media (max-width: 1023px) {
  .blockWrapper {
    padding: 2.5rem;
  }
}

.postsList {
  border-top: 1px solid #d2d2d2;
}

.pagination {
  text-align: center;
}

.pagination a {
  text-transform: uppercase;
  color: #f1b204;
  font-size: 1.8rem;
  margin: 0 7px;
}

.pagination a:hover, .pagination a:focus, .pagination a:active {
  color: #7d7d7d;
}

.pagination .next:after {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: '\f105';
  font-size: 14px;
  margin-left: 5px;
}

.pagination .prev:before {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: '\f104';
  font-size: 14px;
  margin-right: 5px;
}

.pagination .current {
  font-size: 1.8rem;
  margin: 0 7px;
  color: #292929;
}

.emptyText {
  text-transform: uppercase;
  font-size: 2rem;
}

body .lity-container {
  position: relative;
}

body .lity-close {
  position: absolute;
  left: 100%;
  top: 0;
}

.lookup {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 0;
  background-color: black;
  border-top: 5px solid #ffd300;
  color: white;
}

.lookup .lookup-header a:focus, .lookup .lookup-header button:focus, .lookup .lookup-results a:focus, .lookup .lookup-results button:focus {
  outline-color: #ffd300 !important;
}

.lookup-header {
  padding: 0 0 1rem;
}

.lookup-header > i {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  padding: 0 2rem;
  line-height: 2;
  font-size: 2.7rem;
  color: rgba(0, 0, 0, 0.5);
  pointer-events: none;
  -webkit-transition: 0.24s ease;
  transition: 0.24s ease;
  background: #ffd300;
}

.lookup-header input {
  display: block;
  width: 100%;
  padding: 0 2rem 0 8rem;
  line-height: 2;
  font-size: 2.7rem;
  font-weight: 600;
  color: #535353;
  background: white;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-appearance: none;
  -webkit-transition: 0.24s ease;
  transition: 0.24s ease;
}

.lookup-header input:focus, .lookup-header input:active {
  outline: none;
  color: black;
}

.lookup-header input:focus + i, .lookup-header input:active + i {
  color: black;
}

.lookup-header input::-webkit-input-placeholder {
  font-weight: 400;
  color: #bdbdbd;
}

.lookup-header input:-ms-input-placeholder {
  font-weight: 400;
  color: #bdbdbd;
}

.lookup-header input::-ms-input-placeholder {
  font-weight: 400;
  color: #bdbdbd;
}

.lookup-header input::placeholder {
  font-weight: 400;
  color: #bdbdbd;
}

.lookup-results-wrapper {
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
}

.lookup-results-wrapper .simplebar-track.vertical .simplebar-scrollbar::before {
  background: white;
}

.lookup-results {
  padding: 0 2rem 2rem;
}

.lookup-message {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 600;
  color: #9e9e9e;
}

.lookup-message-wrapper {
  padding: 1rem 2rem;
}

.lookup-message a {
  display: inline;
  padding-left: 1em;
  font-weight: 700;
  text-decoration: underline;
  color: #e0e0e0;
}

.lookup-message a i {
  font-size: 1.2rem;
  vertical-align: middle;
}

.lookup-message a.s-empty {
  opacity: 0.25;
  pointer-events: none;
}

.lookup-message a:hover, .lookup-message a:focus, .lookup-message a:active {
  color: white;
}

.lookup-partial {
  margin-bottom: 2rem;
  padding: 1rem;
  border: 1px solid #535353;
}

.lookup-partial-title {
  margin: 0;
  font-size: 2.1rem;
  color: #7d7d7d;
}

.lookup-partial-list {
  padding: 1rem 0;
}

.lookup-partial-viewMore {
  margin-left: -1rem;
  padding: 0 1rem;
  font-size: 1.6rem;
  font-weight: 700;
  color: #7d7d7d;
  -webkit-transition: 0.18s ease;
  transition: 0.18s ease;
}

.lookup-partial-viewMore i, .lookup-partial-viewMore span {
  vertical-align: middle;
}

.lookup-partial-viewMore i {
  margin-left: 0.5rem;
  font-size: 2.4rem;
}

.lookup-partial-viewMore:hover, .lookup-partial-viewMore:focus, .lookup-partial-viewMore:active {
  color: #ffd300;
}

.lookup-partial-viewMore .icon-spinner {
  margin-right: 0.5rem;
}

.lookup-partial-viewMore .text-searching,
.lookup-partial-viewMore .icon-spinner {
  display: none;
}

.s-searching .lookup-partial-viewMore .text-more,
.s-searching .lookup-partial-viewMore .icon-more {
  display: none;
}

.s-searching .lookup-partial-viewMore .text-searching,
.s-searching .lookup-partial-viewMore .icon-spinner {
  display: inline-block;
}

@-webkit-keyframes spinner-spin {
  from {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(359deg);
            transform: rotate(359deg);
  }
}

@keyframes spinner-spin {
  from {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(359deg);
            transform: rotate(359deg);
  }
}

.lookup .icon-spinner {
  display: none;
  -webkit-animation-name: spinner-spin;
          animation-name: spinner-spin;
  -webkit-animation-duration: 0.75s;
          animation-duration: 0.75s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
}

.lookup .icon-spinner::before {
  vertical-align: 1px;
}

.lookup.s-searching .icon-spinner {
  display: inline-block;
  color: #ffd300;
}

.search-result {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  padding-right: 2rem;
}

.search-result:last-child {
  margin-right: auto;
}

.search-result-template {
  width: 100%;
  height: 100%;
}

.search-result-template--generic a {
  padding: 0.5rem 0;
  line-height: 1.2;
  font-size: 1.8rem;
  color: #e0e0e0;
  text-decoration: underline;
  -webkit-text-decoration-color: transparent;
          text-decoration-color: transparent;
}

.search-result-template--generic a:hover, .search-result-template--generic a:focus, .search-result-template--generic a:active {
  color: white;
  -webkit-text-decoration-color: white;
          text-decoration-color: white;
}

.shead-dt {
  position: relative;
  display: block;
  z-index: 100;
  max-width: 1280px;
  margin: 0 auto;
  height: 15rem;
  background: black;
}

.shead-dt-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100%;
}

.shead-dt-logo {
  height: 100%;
}

.shead-dt-logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  padding: 2.5rem;
}

.shead-dt-logo img {
  max-width: 25rem;
}

@media (max-width: 1023px) {
  .shead-dt-logo img {
    max-width: 21rem;
  }
}

@media (max-width: 899px) {
  .shead-dt-logo img {
    max-width: 17rem;
  }
}

.shead-dt-navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  height: 100%;
  width: 100%;
  max-width: 800px;
}

.shead-dt-navigation-top, .shead-dt-navigation-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.shead-dt-menu > ul > li {
  display: inline-block;
  position: relative;
  margin-right: 1rem;
  padding: 0 1.5rem;
}

@media (max-width: 1023px) {
  .shead-dt-menu > ul > li {
    padding: 0 0.7rem;
  }
}

.shead-dt-menu > ul > li.current-menu-item > a, .shead-dt-menu > ul > li.current-menu-parent > a, .shead-dt-menu > ul > li.current-page-ancestor > a {
  color: white;
  border-bottom: 5px solid #ffd300;
}

.shead-dt-menu > ul > li > a {
  padding: 1rem 0 0.25rem;
  text-transform: uppercase;
  font-size: 1.8rem;
  border-bottom: 5px solid transparent;
}

@media (max-width: 899px) {
  .shead-dt-menu > ul > li > a {
    font-size: 1.6rem;
  }
}

.shead-dt-menu > ul > li > a:hover, .shead-dt-menu > ul > li > a:focus, .shead-dt-menu > ul > li > a:active {
  color: white;
}

.shead-dt-menu > ul > li:last-child > a {
  margin-right: 0;
}

.shead-dt-menu > ul > li.menu-item-has-children:hover > a {
  color: white;
}

.shead-dt-menu > ul > li.menu-item-has-children:hover::after {
  border-top-color: white;
}

.shead-dt-menu > ul > li.menu-item-has-children:hover > .sub-menu {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.shead-dt-menu > ul > li > .sub-menu {
  display: block;
  position: absolute;
  z-index: 2;
  top: 87%;
  left: 0;
  width: 24rem;
  background-color: #464646;
  -webkit-transform-origin: center top;
          transform-origin: center top;
  -webkit-transform: translateY(-20px);
          transform: translateY(-20px);
  opacity: 0;
  pointer-events: none;
  -webkit-transition: 0.18s ease;
  transition: 0.18s ease;
}

.shead-dt-menu > ul > li > .sub-menu li {
  position: relative;
  border-bottom: 1px solid #535353;
  -webkit-transition: 0.18s ease;
  transition: 0.18s ease;
}

.shead-dt-menu > ul > li > .sub-menu li.current-menu-item a {
  color: white;
}

.shead-dt-menu > ul > li > .sub-menu li a {
  display: block;
  line-height: 1.4em;
  padding: 0.75rem 1rem;
  font-size: 1.6rem;
  color: #bbb;
  text-transform: uppercase;
}

.shead-dt-menu > ul > li > .sub-menu li a sup {
  font-size: 1.3rem;
  vertical-align: 5px;
  padding-left: 1px;
}

.shead-dt-menu > ul > li > .sub-menu li:last-child {
  border-bottom: none;
}

.shead-dt-menu > ul > li > .sub-menu li.menu-item-has-children {
  padding-right: 2rem;
}

.shead-dt-menu > ul > li > .sub-menu li.menu-item-has-children::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1rem;
  width: 0.75rem;
  height: 0.5rem;
  margin-top: -0.75rem;
  border-top: 0.75rem solid transparent;
  border-bottom: 0.75rem solid transparent;
  border-left: 0.5rem solid #e0e0e0;
  -webkit-transition: 0.18s ease;
  transition: 0.18s ease;
}

.shead-dt-menu > ul > li > .sub-menu li.menu-item-has-children .sub-menu {
  display: block;
  position: absolute;
  left: 100%;
  top: 0;
  min-width: 12rem;
  background-color: #535353;
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  pointer-events: none;
  -webkit-transition: 0.18s ease;
  transition: 0.18s ease;
}

.shead-dt-menu > ul > li > .sub-menu li.menu-item-has-children:hover > .sub-menu {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  pointer-events: auto;
}

.shead-dt-menu > ul > li > .sub-menu li.menu-item-has-children:hover::after {
  border-left-color: white;
}

.shead-dt-menu > ul > li > .sub-menu li:hover {
  background-color: #535353;
}

.shead-dt-menu > ul > li > .sub-menu li:hover > a {
  color: white;
}

.shead-dt-navigation-top {
  z-index: 2;
  margin-bottom: 1rem;
}

.shead-dt-navigation-top a, .shead-dt-navigation-top button {
  color: #7d7d7d;
  text-transform: uppercase;
}

.shead-dt-navigation-top ul > li.menu-item-has-children::after {
  border-top-color: #7d7d7d;
}

.shead-dt-navigation-bottom {
  z-index: 1;
}

.shead-dt-navigation-bottom a, .shead-dt-navigation-bottom button {
  color: #bdbdbd;
}

.shead-dt-navigation-bottom ul > li.menu-item-has-children::after {
  border-top-color: #bdbdbd;
}

.shead-dt-selector, .shead-dt-searchButton {
  position: relative;
  padding: 1rem 2.5rem 1.75rem;
  -webkit-transition: 0.18s ease;
  transition: 0.18s ease;
}

@media (max-width: 1023px) {
  .shead-dt-selector, .shead-dt-searchButton {
    padding: 1rem 1.5rem 1.75rem;
  }
}

.shead-dt-selector::after {
  content: "";
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  width: 0.75rem;
  height: 0.5rem;
  margin-left: -0.75rem;
  border-left: 0.75rem solid transparent;
  border-right: 0.75rem solid transparent;
  border-top: 0.5rem solid #7d7d7d;
  -webkit-transition: 0.18s ease;
  transition: 0.18s ease;
}

.shead-dt-selector:hover, .shead-dt-selector:focus, .shead-dt-selector:active {
  color: white;
}

.shead-dt-selector:hover::after, .shead-dt-selector:focus::after, .shead-dt-selector:active::after {
  border-top-color: white;
}

.shead-dt-selector--region {
  padding-left: 4rem;
}

.shead-dt-selector--region .icon-earth {
  position: absolute;
  top: 0.25rem;
  left: 1rem;
  font-size: 2.7rem;
}

.shead-dt-selector--language.s-inactive {
  opacity: 0.75;
  pointer-events: none;
}

.shead-dt-selector--language.s-inactive::after {
  display: none;
}

.shead-dt-selector-wrapper {
  position: relative;
}

.shead-dt-selector-wrapper:hover > button {
  color: white;
}

.shead-dt-selector-wrapper:hover > button::after {
  border-top-color: white;
}

.shead-dt-selector-wrapper:hover > nav {
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
  pointer-events: all;
}

.shead-dt-selectorMenu {
  display: block;
  position: absolute;
  top: 75%;
  right: 0;
  min-width: 100%;
  background-color: #464646;
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
  pointer-events: none;
  -webkit-transform-origin: center top;
          transform-origin: center top;
  -webkit-transition: 0.18s ease;
  transition: 0.18s ease;
}

.shead-dt-selectorMenu a, .shead-dt-selectorMenu button {
  display: block;
  width: 100%;
  padding: 0.5rem 1rem;
  font-size: 1.6rem;
  text-align: center;
  color: #e0e0e0;
  border-bottom: 1px solid #535353;
  -webkit-transition: 0.18s ease;
  transition: 0.18s ease;
}

.shead-dt-selectorMenu a:last-child, .shead-dt-selectorMenu button:last-child {
  border-bottom: none;
}

.shead-dt-selectorMenu a:hover, .shead-dt-selectorMenu a:focus, .shead-dt-selectorMenu a:active, .shead-dt-selectorMenu button:hover, .shead-dt-selectorMenu button:focus, .shead-dt-selectorMenu button:active {
  background-color: #535353;
}

.shead-dt-selectorMenu--language img {
  max-width: 3rem;
  padding-right: 0.5rem;
}

.shead-dt-searchButton {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.shead-dt-searchButton i {
  line-height: 0;
  font-size: 2.7rem;
}

.shead-dt-searchButton:hover, .shead-dt-searchButton:focus, .shead-dt-searchButton:active {
  color: white;
}

body.search .shead-dt-searchButton {
  opacity: 0.4;
  pointer-events: none;
}

.shead-dt-searchButton::after {
  content: "";
  position: absolute;
  z-index: 20;
  bottom: 0;
  left: 50%;
  width: 2rem;
  height: 2rem;
  margin-left: -1rem;
  border: 1rem solid transparent;
  border-bottom-color: #ffd300;
  pointer-events: none;
  -webkit-transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transform-origin: center bottom;
          transform-origin: center bottom;
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
}

.shead-dt-searchButton.s-open {
  color: #ffd300;
}

.shead-dt-searchButton.s-open::after {
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
}

.shead-dt-search {
  display: block;
  position: absolute;
  z-index: 5;
  top: 100%;
  right: 0;
  width: 540px;
  pointer-events: none;
  -webkit-transform-origin: right top;
          transform-origin: right top;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.shead-dt-search.s-open {
  pointer-events: auto;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.shead-dt-search .lookup-header > i {
  display: none;
}

.shead-dt-search .lookup-input {
  padding-left: 2rem;
  padding-right: 2rem;
}

@media (max-width: 767px) {
  body {
    padding-top: 6rem;
  }
}

.shead-mb {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
}

.shead-mb-topBar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  position: relative;
  height: 6rem;
}

.shead-mb-topBar-background {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: black;
}

.shead-mb-topBar-logoWrapper {
  height: 100%;
  padding: 0.75rem 1rem 1rem;
}

.shead-mb-topBar-logoWrapper img {
  height: 100%;
  width: auto;
}

.shead-mb-topBar-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  height: 100%;
  margin-left: auto;
}

.shead-mb-topBar .mbutton {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  height: 100%;
  width: 6rem;
  font-size: 2.7rem;
  color: white;
}

.shead-mb-topBar .mbutton-inner {
  display: block;
  width: 50%;
  height: 100%;
}

.shead-mb-topBar .mbutton-bar {
  display: block;
  width: 100%;
  height: 3px;
  background-color: white;
  -webkit-transition: 0.24s ease;
  transition: 0.24s ease;
}

.shead-mb-topBar .mbutton-bar--center {
  margin: 6px 0 0;
  -webkit-transform-origin: center center;
          transform-origin: center center;
}

.shead-mb-topBar .mbutton-bar--center-extra {
  margin: -3px 0 6px;
}

.shead-mb-topBar .mbutton.s-open .mbutton-bar--lateral {
  opacity: 0;
  -webkit-transform: scale(0);
          transform: scale(0);
}

.shead-mb-topBar .mbutton.s-open .mbutton-bar--center {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.shead-mb-topBar .mbutton.s-open .mbutton-bar--center-extra {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.shead-mb-list {
  position: relative;
  z-index: 2;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  width: 100%;
  height: 0;
  background-color: #464646;
  -webkit-transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.shead-mb-menu {
  display: block;
  width: 100%;
  z-index: 1;
  background-color: #464646;
}

.shead-mb-menu button {
  -webkit-appearance: none;
}

.shead-mb-menu > ul {
  border-bottom: 4px solid #535353;
}

.shead-mb-menu .mobile-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  border-top: 2px solid #535353;
}

.shead-mb-menu .mobile-item:first-child {
  border-top: none;
}

.shead-mb-menu .mobile-item-link + .mobile-item {
  border-top: none;
}

.shead-mb-menu .mobile-item > a, .shead-mb-menu-button,
.shead-mb-menu .submenuBackButton,
.shead-mb-menu .submenuLink {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding: 1.2rem 2.4rem;
  font-size: 2.1rem;
  text-align: right;
  text-transform: uppercase;
  color: #e0e0e0;
}

.shead-mb-menu .submenuButton {
  margin-left: auto;
  padding: 1rem 2.4rem;
  font-size: 2.4rem;
  color: #e0e0e0;
}

.shead-mb-menu .submenuBackButton {
  margin: 0;
  padding: 0 2.4rem;
  width: 100%;
  background-color: #535353;
}

.shead-mb-menu .submenuBackButton i {
  margin-right: 1.6rem;
  font-size: 3rem;
}

.shead-mb-menu .submenuLink {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0;
  padding: 2rem 2.4rem;
  width: 100%;
  background-color: #1e1e1e;
}

.shead-mb-menu .submenuLink i {
  margin-left: 2rem;
  font-size: 3rem;
}

.shead-mb-menu-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  border-top: 2px solid #535353;
}

.shead-mb-menu-button:first-child {
  border-top: none;
}

.shead-mb-menu-button i {
  margin-left: auto;
  font-size: 2.4rem;
}

.shead-mb-menu .sub-menu {
  position: fixed;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  top: 6rem;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #464646;
  pointer-events: none;
  opacity: 0;
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transform: translateX(10%);
          transform: translateX(10%);
  -webkit-transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.shead-mb-menu .sub-menu.s-open {
  pointer-events: auto;
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.shead-mb-regions .regions {
  position: relative;
  z-index: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  height: auto !important;
}

.shead-mb-regions .regions-header {
  display: none;
}

.shead-mb-search .lookup {
  border-top: none;
}

.shead-mb-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.siteFooter {
  background: black;
  color: #c6c6c5;
}

.siteFooter a {
  color: #c6c6c5;
}

.siteFooter a:hover {
  color: white;
}

.siteFooter-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 7rem 5rem;
  font-size: 1.8rem;
  text-transform: uppercase;
}

@media (max-width: 1023px) {
  .siteFooter-wrapper {
    padding: 7rem 2.5rem;
  }
}

@media (max-width: 767px) {
  .siteFooter-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
  }
}

.siteFooter-copyright {
  display: inline-block;
  color: #9e9e9e;
  margin-right: 2rem;
}

@media (max-width: 767px) {
  .siteFooter-copyright {
    margin-right: 0;
  }
}

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

.siteFooter-menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.siteFooter-menu ul li {
  margin: 0.5rem 1rem;
}

@media (max-width: 1023px) {
  .siteFooter-menu {
    display: block;
  }
  .siteFooter-menu ul li {
    margin: 0.5rem 1rem 0.5rem 0;
  }
}

@media (max-width: 767px) {
  .siteFooter-menu ul li {
    margin: 0.5rem 1rem;
  }
}

.siteFooter-following {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 767px) {
  .siteFooter-following {
    margin: 4rem 0;
  }
}

.siteFooter-following span {
  margin-right: 2.5rem;
  vertical-align: top;
}

.siteFooter-following-list ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-left: -1rem;
}

.siteFooter-following-list ul li a {
  display: block;
  margin-right: 0.25rem;
  padding: 0.5rem 1rem;
}

.siteFooter-following-list ul li i {
  vertical-align: middle;
  font-size: 3rem;
}

.siteFooter-sharing-button {
  display: inline-block;
}

.siteFooter-sharing-button #st-1 .st-btn {
  height: 3rem;
  width: 4rem;
  padding: 0;
}

.siteFooter-sharing-button #st-1 .st-btn[data-network='sharethis'] {
  background: transparent;
}

.siteFooter-sharing-button #st-1 .st-btn > svg {
  display: block;
  top: 0;
  width: 100%;
  height: 100%;
  fill: #c6c6c5;
  -webkit-transition: 0.18s ease;
  transition: 0.18s ease;
}

.siteFooter-sharing-button #st-1 .st-btn:hover {
  opacity: 1;
  top: 0;
}

.siteFooter-sharing-button #st-1 .st-btn:hover > svg {
  fill: white;
}

.siteFooter-extra {
  padding: 0 5rem 2rem;
  text-align: center;
  font-size: 1.6rem;
}

.siteFooter-extra a {
  color: #ffd300;
  text-decoration: underline;
  -webkit-text-decoration-color: transparent;
          text-decoration-color: transparent;
}

.siteFooter-extra a:hover, .siteFooter-extra a:focus {
  color: #ffd300;
  -webkit-text-decoration-color: #ffd300;
          text-decoration-color: #ffd300;
}

.st-btns ~ .st-logo {
  display: none !important;
}

.button {
  background: #ffd300;
  color: white;
  display: inline-block;
  padding: 1rem 3rem;
  font-size: 2rem;
  text-transform: uppercase;
}

.button:hover, .button:focus, .button:active {
  background: #fede44;
}

.button-primary:before {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f009";
  margin-right: 10px;
  font-size: 1.8rem;
}

.button-secondary {
  margin-top: 3rem;
  position: relative;
  padding-right: 7.5rem;
}

.button-secondary svg {
  width: 16px;
  fill: white;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 2.5rem;
  height: 100%;
}

.button-downloadBrochure {
  padding: 2rem 3rem;
  margin: 2rem 0;
}

@media (max-width: 419px) {
  .button-downloadBrochure {
    padding: 2rem 1.5rem;
    font-size: 1.8rem;
  }
}

.button-downloadBrochure svg {
  width: 3rem;
  height: 2.5rem;
  fill: white;
  float: right;
  margin: 0 0 0 3rem;
}

.buttonSearch {
  padding: 1rem 3rem;
  border: 1px solid #7d7d7d;
  line-height: 0;
  -webkit-transition: 0.24s ease;
  transition: 0.24s ease;
}

.buttonSearch:hover {
  background: #fede44;
  border-color: #fede44;
}

.buttonSearch:hover svg {
  fill: white;
}

.buttonSearch svg {
  width: 25px;
  height: 25px;
  fill: #7d7d7d;
}

.thumbnailPosts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
}

.thumbnailPosts-item {
  -ms-flex-preferred-size: 31.6%;
      flex-basis: 31.6%;
  margin: 0 2.6% 5rem 0;
  background: #454545;
  -webkit-box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.thumbnailPosts-item:nth-of-type(3n) {
  margin-right: 0;
}

@media (max-width: 899px) {
  .thumbnailPosts-item {
    -ms-flex-preferred-size: 47.7%;
        flex-basis: 47.7%;
    margin: 0 0 5rem 0;
  }
  .thumbnailPosts-item:nth-of-type(odd) {
    margin-right: 4.5%;
  }
}

@media (max-width: 539px) {
  .thumbnailPosts-item {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    margin: 0 0 3rem;
  }
  .thumbnailPosts-item:nth-of-type(odd) {
    margin-right: 0;
  }
}

.thumbnailPosts-item-image {
  font-size: 0;
}

.thumbnailPosts-item-image a {
  width: 100%;
}

.thumbnailPosts-item-image img {
  width: 100%;
  height: 100%;
}

.thumbnailPosts-item-content {
  padding: 1rem 2rem 0;
}

.thumbnailPosts-item-content-title {
  text-transform: uppercase;
  color: white;
  font-size: 2rem;
  margin: 1rem 0;
  position: relative;
  padding-left: 30px;
}

.thumbnailPosts-item-content-title svg {
  width: 2.7rem;
  height: 2.7rem;
  position: absolute;
  top: 2px;
  left: -6px;
  fill: #ffcb00;
}

.thumbnailPosts-item-content-preamble {
  padding-left: 3rem;
  color: #eeeeee;
  font-family: "Open Sans", sans-serif;
  font-size: 12px;
  font-weight: 400;
  margin-bottom: 1rem;
}

.thumbnailPosts-item-content-link {
  text-align: right;
  padding: 0 2rem 1.5rem;
}

.thumbnailPosts-item-content-link a {
  color: #ffd300;
  text-transform: uppercase;
  font-size: 16px;
}

.thumbnailPosts-item-content-link a:hover, .thumbnailPosts-item-content-link a:focus, .thumbnailPosts-item-content-link a:active {
  opacity: .7;
}

.thumbnailPosts-item:last-of-type {
  margin-right: 0;
}

.archiveLink {
  color: #f1b204;
  text-transform: uppercase;
  font-size: 1.8rem;
  margin-bottom: 3rem;
}

.archiveLink:hover, .archiveLink:focus, .archiveLink:active {
  color: #7d7d7d;
}

.archiveLink:hover svg, .archiveLink:focus svg, .archiveLink:active svg {
  fill: #7d7d7d;
}

.archiveLink svg {
  width: 20px;
  height: 20px;
  fill: #f1b204;
  float: left;
  margin: 3px 10px 0 0;
  -webkit-transition: 0.18s ease;
  transition: 0.18s ease;
}

.singleLink {
  text-transform: uppercase;
  color: #f1b204;
  font-size: 2rem;
}

.singleLink:hover, .singleLink:focus, .singleLink:active {
  color: #7d7d7d;
}

.singleLink:after {
  content: "\f054";
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 2;
  font-family: Font Awesome\ 5 Free;
  font-weight: 900;
  font-size: 12px;
  margin-left: 5px;
  vertical-align: middle;
}

.singleLink-download {
  text-transform: uppercase;
  color: #f1b204;
  font-size: 2rem;
  margin-top: 1rem;
}

.singleLink-download:hover, .singleLink-download:focus, .singleLink-download:active {
  color: #7d7d7d;
}

.singleLink-download:hover svg, .singleLink-download:focus svg, .singleLink-download:active svg {
  fill: #7d7d7d;
}

.singleLink-download svg {
  -webkit-transition: 0.18s ease;
  transition: 0.18s ease;
  width: 25px;
  height: 25px;
  fill: #f1b204;
  float: right;
  margin: 2px 0 0 15px;
}

.readMore {
  text-transform: uppercase;
  color: #f1b204;
  font-size: 1.8rem;
  text-align: right;
  margin-top: 5px;
}

.readMore:hover, .readMore:focus, .readMore:active {
  color: #7d7d7d;
}

.options {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
}

.options-option {
  width: 31.6%;
  margin: 0 2.6% 4rem 0;
}

.options-option:nth-of-type(3n) {
  margin-right: 0;
}

@media (max-width: 719px) {
  .options-option {
    width: 47.7%;
    margin: 0 0 3rem 0;
  }
  .options-option:nth-of-type(odd) {
    margin-right: 4.5%;
  }
}

@media (max-width: 539px) {
  .options-option {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    margin: 0 0 3rem;
  }
  .options-option:nth-of-type(odd) {
    margin-right: 0;
  }
}

.options-option-image {
  line-height: 0;
}

.options-option-image img {
  width: 100%;
  height: 100%;
}

.options-option-content p {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 12px;
  margin: 0;
}

.press {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 5rem;
}

@media (max-width: 719px) {
  .press {
    display: block;
  }
}

.press-content {
  width: 65%;
}

@media (max-width: 719px) {
  .press-content {
    width: 100%;
    margin-bottom: 2rem;
  }
}

.press-title {
  margin: 0 0 1rem;
}

.press-summary {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  margin-bottom: 2rem;
}

.press-image {
  width: 30%;
}

@media (max-width: 719px) {
  .press-image {
    width: 100%;
  }
}

.press-image img {
  width: 100%;
  height: auto;
}

.latesImages {
  padding: 5rem;
  border-top: 1px solid #d2d2d2;
}

@media (max-width: 1023px) {
  .latesImages {
    padding: 2.5rem;
  }
}

.latesImages-posts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
}

.latesImages-post {
  width: 23.05%;
  margin: 0 2.6% 4rem 0;
}

.latesImages-post:last-of-type {
  margin-right: 0;
}

@media (max-width: 899px) {
  .latesImages-post {
    width: 48%;
    margin: 0 0 4rem;
  }
  .latesImages-post:nth-of-type(odd) {
    margin-right: 4%;
  }
}

@media (max-width: 539px) {
  .latesImages-post {
    width: 100%;
    margin: 0 0 4rem;
  }
  .latesImages-post:nth-of-type(odd) {
    margin-right: 0;
  }
}

.latesImages-post-image img {
  width: 100%;
  height: 100%;
}

.categoriesNav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 4rem;
}

@media (max-width: 899px) {
  .categoriesNav {
    display: none;
  }
}

.categoriesNav-button {
  text-transform: uppercase;
  color: #c6c6c5;
  font-size: 3rem;
  padding: 0;
  border-bottom: 6px solid transparent;
  -webkit-transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  margin-right: 4rem;
}

.categoriesNav-button:after {
  content: '';
  display: block;
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 6px;
  background: #ffd300;
  width: 0;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}

.categoriesNav-button:hover, .categoriesNav-button:focus, .categoriesNav-button:active {
  color: #292929;
}

.categoriesNav-button.activeTab {
  color: #292929;
}

.categoriesNav-button.activeTab:after {
  width: 100%;
}

.categoriesNav-mobile {
  position: relative;
  margin-bottom: 5rem;
  display: none;
}

@media (max-width: 899px) {
  .categoriesNav-mobile {
    display: block;
  }
}

.categoriesNav-mobile-selector {
  border: 1px solid #7d7d7d;
  padding: 1rem 2rem;
  width: 100%;
  text-align: left;
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.categoriesNav-mobile-selector-list {
  border: 1px solid #7d7d7d;
  border-top: 0;
  position: absolute;
  left: 0;
  right: 0;
  top: 45px;
  display: none;
  z-index: 99;
}

.categoriesNav-mobile-selector-item {
  width: 100%;
  color: #c6c6c5;
  text-transform: uppercase;
  font-size: 1.8rem;
  padding: 1rem 2rem;
  background: white;
}

.categoriesNav-mobile-selector-item:hover, .categoriesNav-mobile-selector-item:focus, .categoriesNav-mobile-selector-item:active {
  background: #7d7d7d;
  color: white;
}

.categoriesNav-mobile-selector-item.activeTab {
  color: #292929;
}

div.wpcf7 {
  position: relative;
}

.wysiwyg-content div.wpcf7 {
  position: relative;
  overflow: hidden;
  margin: 2rem 0;
  padding: 2rem;
  background-color: #f5f5f5;
  border-radius: 5px;
}

body.layout-full div.wpcf7 {
  padding: 0;
  background-color: transparent;
}

div.wpcf7 form {
  -webkit-transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

div.wpcf7.s-submitting {
  pointer-events: none;
}

div.wpcf7.s-submitting form {
  opacity: 0.5;
}

div.wpcf7.s-sent form {
  opacity: 0;
}

div.wpcf7 .wpcf7-response-output {
  display: block;
  margin: 2rem 0 0;
  padding: 0.5rem 1rem;
  border: none;
  border-left: 5px solid #9e9e9e;
  color: #535353;
  background-color: white;
  font-size: 1.8rem;
}

div.wpcf7 .wpcf7-response-output.wpcf7-display-none {
  display: none;
}

div.wpcf7 .wpcf7-response-output.wpcf7-mail-sent-ok {
  display: none !important;
}

div.wpcf7 .wpcf7-response-output.wpcf7-validation-errors {
  border-color: #D2492A;
}

div.wpcf7-success {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  opacity: 0;
  pointer-events: none;
  -webkit-transform: translateY(25%);
          transform: translateY(25%);
  -webkit-transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.s-sent div.wpcf7-success {
  opacity: 1;
  pointer-events: all;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

div.wpcf7-success i {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 8rem;
  width: 8rem;
  border-radius: 50%;
  border: 2px solid #3c8a2e;
  font-size: 4rem;
  color: #3c8a2e;
}

div.wpcf7-success p {
  font-size: 2.2rem;
  text-align: center;
  text-transform: uppercase;
  color: #464646;
}

div.wpcf7-success button {
  color: #f1b204;
  border-bottom: 1px solid transparent;
  -webkit-transition: 0.24s ease;
  transition: 0.24s ease;
  text-transform: uppercase;
}

div.wpcf7-success button:hover {
  border-color: #f1b204;
}

div.wpcf7-loader {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 100px;
  margin-left: -50px;
  margin-top: -50px;
  -webkit-transform: translateY(25vh);
          transform: translateY(25vh);
  -webkit-transition: 0.24s ease;
  transition: 0.24s ease;
  opacity: 0;
  pointer-events: none;
}

div.wpcf7-loader-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

.s-submitting div.wpcf7-loader {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

div.wpcf7-loader .outerCircle {
  background-color: transparent;
  border: 8px solid rgba(241, 178, 4, 0.75);
  opacity: .9;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  border-radius: 100px;
  width: 100px;
  height: 100px;
  margin: 0 auto;
  -webkit-animation: spinPulse 1s infinite ease-in-out;
          animation: spinPulse 1s infinite ease-in-out;
}

div.wpcf7-loader .innerCircle {
  background-color: transparent;
  border: 5px solid #f1b204;
  opacity: .9;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-radius: 100px;
  top: -85px;
  width: 70px;
  height: 70px;
  margin: 0 auto;
  position: relative;
  -webkit-animation: spinoffPulse 0.5s infinite linear;
          animation: spinoffPulse 0.5s infinite linear;
}

@-webkit-keyframes spinPulse {
  0% {
    -webkit-transform: rotate(160deg);
            transform: rotate(160deg);
    opacity: 0;
    -webkit-box-shadow: 0 0 1px white;
            box-shadow: 0 0 1px white;
  }
  50% {
    -webkit-transform: rotate(145deg);
            transform: rotate(145deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: rotate(-320deg);
            transform: rotate(-320deg);
    opacity: 0;
  }
}

@keyframes spinPulse {
  0% {
    -webkit-transform: rotate(160deg);
            transform: rotate(160deg);
    opacity: 0;
    -webkit-box-shadow: 0 0 1px white;
            box-shadow: 0 0 1px white;
  }
  50% {
    -webkit-transform: rotate(145deg);
            transform: rotate(145deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: rotate(-320deg);
            transform: rotate(-320deg);
    opacity: 0;
  }
}

@-webkit-keyframes spinoffPulse {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes spinoffPulse {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@-webkit-keyframes rotatecircle {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-360deg);
            transform: rotate(-360deg);
  }
}

@keyframes rotatecircle {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-360deg);
            transform: rotate(-360deg);
  }
}

div.wpcf7 .ajax-loader {
  display: none !important;
}

.f {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.su .f {
  display: block;
}

@media (max-width: 719px) {
  .f {
    display: block;
  }
}

.f-col {
  padding: 0 1rem;
}

.f-col:first-child {
  padding-left: 0;
}

.f-col:last-child {
  padding-right: 0;
}

.f-col-1 {
  width: 8.33333%;
}

.f-col-2 {
  width: 16.66667%;
}

.f-col-3 {
  width: 25%;
}

.f-col-4 {
  width: 33.33333%;
}

.f-col-5 {
  width: 41.66667%;
}

.f-col-6 {
  width: 50%;
}

.f-col-7 {
  width: 58.33333%;
}

.f-col-8 {
  width: 66.66667%;
}

.f-col-9 {
  width: 75%;
}

.f-col-10 {
  width: 83.33333%;
}

.f-col-11 {
  width: 91.66667%;
}

.f-col-12 {
  width: 100%;
}

.f-col > *:last-child {
  margin-bottom: 0;
}

.su .f-col {
  width: 100%;
  padding: 0;
}

@media (max-width: 719px) {
  .f-col {
    width: 100%;
    padding: 0;
  }
}

.f-submit {
  display: block;
  width: 100%;
  margin: 2rem 0 1rem;
  text-align: right;
}

.f-submit input {
  border: none;
  outline: none;
  -webkit-appearance: none;
  cursor: pointer;
  background: none;
  padding: 0;
  padding: calc(1rem + 2px) 5rem;
  text-transform: uppercase;
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 700;
  color: white !important;
  background-color: #ffd300;
  -webkit-transition: 0.18s ease;
  transition: 0.18s ease;
}

.f-submit input:focus, .f-submit input:active {
  outline: none;
}

.f-submit input:hover, .f-submit input:focus, .f-submit input:active {
  background: #fede44;
}

.f-submit input:disabled {
  pointer-events: none;
  background-color: #9e9e9e;
}

.f-field {
  display: block;
  width: 100%;
  margin-bottom: 1rem;
}

.f-field.required label::before {
  display: inline-block;
  content: '*';
  padding-right: 0.25em;
  font-weight: 700;
  color: #D2492A;
}

.f-field.acceptance span {
  display: inline-block;
  width: initial;
  margin: 0.5rem 0 0;
}

.f-field span[role="alert"] {
  font-size: 1.2rem;
  font-weight: 700;
  color: #D2492A;
}

.f-field label {
  font-size: 1.4rem;
  font-weight: 400;
  font-family: "Open Sans", sans-serif;
}

.f-field label span {
  display: block;
  width: 100%;
  margin-top: 0.5rem;
}

.f-field label input[type="text"],
.f-field label input[type="email"],
.f-field label input[type="tel"],
.f-field label input[type="number"],
.f-field label input[type="date"],
.f-field label select,
.f-field label textarea {
  display: block;
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  background-color: white;
  border: 1px solid #7d7d7d;
  -webkit-transition: 0.18s ease;
  transition: 0.18s ease;
}

.f-field label input[type="text"]:focus,
.f-field label input[type="email"]:focus,
.f-field label input[type="tel"]:focus,
.f-field label input[type="number"]:focus,
.f-field label input[type="date"]:focus,
.f-field label select:focus,
.f-field label textarea:focus {
  outline: none;
  border-color: #f1b204;
}

.f-field label input[type="text"].wpcf7-not-valid,
.f-field label input[type="email"].wpcf7-not-valid,
.f-field label input[type="tel"].wpcf7-not-valid,
.f-field label input[type="number"].wpcf7-not-valid,
.f-field label input[type="date"].wpcf7-not-valid,
.f-field label select.wpcf7-not-valid,
.f-field label textarea.wpcf7-not-valid {
  border-color: #d29c91;
}

body.layout-full .f-field label input[type="text"], body.layout-full
.f-field label input[type="email"], body.layout-full
.f-field label input[type="tel"], body.layout-full
.f-field label input[type="number"], body.layout-full
.f-field label input[type="date"], body.layout-full
.f-field label select, body.layout-full
.f-field label textarea {
  border: none;
}

.f-field label input[type="date"],
.f-field label input[type="number"] {
  width: auto;
}

.f-field label textarea {
  resize: vertical;
  min-height: 15rem;
}

.f-field label input[type="radio"],
.f-field label input[type="checkbox"] {
  display: none;
}

.f-field label input[type="radio"] + span,
.f-field label input[type="checkbox"] + span {
  display: inline-block;
  width: auto;
  cursor: pointer;
}

.f-field label input[type="radio"] + span::before,
.f-field label input[type="checkbox"] + span::before {
  content: '✓';
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  margin-right: 1rem;
  line-height: 1.5em;
  text-align: center;
  vertical-align: middle;
  color: transparent;
  border: 1px solid #7d7d7d;
  -webkit-transition: 0.24s ease;
  transition: 0.24s ease;
}

.f-field label input[type="radio"]:checked + span::before,
.f-field label input[type="checkbox"]:checked + span::before {
  color: white;
  background-color: #f1b204;
  border: 1px solid #f1b204;
}

.f-field label input[type="radio"] + span::before {
  content: '';
  border-radius: 50%;
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
}

.f-field label input[type="radio"]:checked + span::before {
  background: #f1b204;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.f-field .wpcf7-list-item {
  display: block;
  margin: 1rem 0;
}

.cta {
  -webkit-transition: all 2s;
  transition: all 2s;
  -webkit-transform: translateX(100rem);
          transform: translateX(100rem);
  position: fixed;
  background: #ffcb00;
  top: 40%;
  right: 0;
  -webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.3);
  padding: 2rem;
  text-transform: uppercase;
  color: black;
  font-size: 1.8rem;
  line-height: 20px;
  z-index: 999;
}

@media (max-width: 719px) {
  .cta {
    -webkit-transform: translate(0, 100rem);
            transform: translate(0, 100rem);
  }
}

.cta.active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

@media (max-width: 719px) {
  .cta.active {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}

@media (max-width: 719px) {
  .cta {
    left: 0;
    right: 0;
    width: 70%;
    margin: 0 auto;
    bottom: 0;
    top: initial;
  }
}

.cta h3 {
  margin: 0 0 1rem;
  color: white;
}

.cta button {
  text-decoration: underline;
  color: black;
  font-weight: 700;
  text-transform: uppercase;
}

.cta a {
  color: black;
  font-weight: 700;
}

.cta-min {
  width: 22rem;
}

.cta-close {
  position: absolute;
  right: 10px;
  top: 10px;
  display: none;
}

@media (max-width: 719px) {
  .cta-close {
    display: block;
  }
}

.cta-close svg {
  width: 15px;
  height: 15px;
  fill: #7d7d7d;
}

.popup {
  display: none;
  background: rgba(0, 0, 0, 0.7);
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow-y: scroll;
}

.popup-form {
  background: white;
  width: 50%;
  margin: 5rem auto;
  padding: 4rem 5rem;
  position: relative;
}

@media (max-width: 899px) {
  .popup-form {
    width: 80%;
  }
}

@media (max-width: 539px) {
  .popup-form {
    width: 95%;
    padding: 3rem 3rem 2rem;
  }
}

.popup .wpcf7-success {
  display: none;
}

.popup div.wpcf7 form.wpcf7-form {
  opacity: 1;
}

.closeButton {
  position: absolute;
  top: 2rem;
  right: 2rem;
}

.closeButton svg {
  cursor: pointer;
  width: 2rem;
  height: 2rem;
}

.newsletter-form {
  width: 80%;
}

@media (max-width: 539px) {
  .newsletter-form {
    width: 95%;
  }
}

.newsletter-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.newsletter-cf7 {
  width: 45%;
}

@media (max-width: 899px) {
  .newsletter-cf7 {
    width: 100%;
  }
}

.newsletter-image {
  width: 50%;
  padding: 2rem 0;
}

@media (max-width: 899px) {
  .newsletter-image {
    display: none;
  }
}

.newsletter-image img {
  width: 100%;
}

.confirmation {
  display: none;
  background: rgba(0, 0, 0, 0.7);
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.confirmation-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.confirmation-content {
  background: white;
  width: 50%;
  padding: 5rem;
  margin: 0 auto;
  position: relative;
}

@media (max-width: 767px) {
  .confirmation-content {
    width: 80%;
  }
}

@media (max-width: 539px) {
  .confirmation-content {
    width: 95%;
  }
}

.confirmation h3 {
  margin: 0 0 3rem;
  font-size: 2.2rem;
}

.confirmation-text {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  margin-bottom: 2rem;
}

.confirmation-yeah {
  background: #f1b204;
  text-transform: uppercase;
  color: white;
  padding: 0.5rem 3rem;
  -webkit-transition: 0.18s ease;
  transition: 0.18s ease;
}

.confirmation-yeah:hover {
  background: #fcc42c;
}

.video-thum {
  position: relative;
  overflow: hidden;
}

.video-thum img {
  -webkit-transition: 0.18s ease;
  transition: 0.18s ease;
}

.video-thum:hover .video-icon {
  background: rgba(0, 0, 0, 0.5);
}

.video-thum:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.video-icon {
  -webkit-transition: 0.18s ease;
  transition: 0.18s ease;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.video-icon svg {
  width: 12rem;
  height: 12rem;
  fill: rgba(255, 255, 255, 0.8);
}

.cookie-notice-container p {
  margin: 0.5em 0 1em;
  font-size: 1.6rem;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  line-height: 2.3rem;
}

#cookie-notice a {
  border-radius: 0;
  text-decoration: none;
}

#cookie-notice a:hover, #cookie-notice a:focus, #cookie-notice a:active {
  text-decoration: none;
}

#cookie-notice a#cn-accept-cookie {
  color: black !important;
  background: #ffd300;
}

.pageHeader-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  height: 50rem;
}

@media (max-width: 767px) {
  .pageHeader-wrapper {
    display: block;
    height: auto;
  }
}

.pageHeader-image {
  background-repeat: no-repeat;
  background-size: cover;
  width: 65%;
}

@media (max-width: 767px) {
  .pageHeader-image {
    width: 100%;
    padding: 30% 0;
  }
}

.pageHeader-content {
  background: -webkit-gradient(linear, left top, left bottom, from(#ffe000), to(#ffbc00));
  background: linear-gradient(180deg, #ffe000, #ffbc00);
  width: 35%;
  position: relative;
  z-index: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 767px) {
  .pageHeader-content {
    width: 100%;
    background: #ffd300;
    padding: 2rem 0 3rem;
  }
}

.pageHeader-content:before {
  content: '';
  position: absolute;
  z-index: -1;
  background: -webkit-gradient(linear, left top, left bottom, from(#ffe000), to(#ffbc00));
  background: linear-gradient(180deg, #ffe000, #ffbc00);
  width: 100%;
  top: 0;
  bottom: 0;
  -webkit-transform: skew(15.4deg, 0);
          transform: skew(15.4deg, 0);
  -webkit-transform-origin: 100% 100%;
          transform-origin: 100% 100%;
}

@media (max-width: 767px) {
  .pageHeader-content:before {
    -webkit-transform: skew(0, -11deg);
            transform: skew(0, -11deg);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
    background: #ffd300;
  }
}

.pageHeader-content-headline {
  text-transform: uppercase;
  padding: 0 6rem 1rem 0;
  margin: 0;
}

@media (max-width: 767px) {
  .pageHeader-content-headline {
    padding: 0 2.5rem 1rem;
  }
}

.pageHeader-content-headline span {
  display: block;
  margin-bottom: 1rem;
}

.pageHeader-content-preamble {
  font-size: 2rem;
  line-height: 1.2;
  width: 300px;
  margin: 0 auto;
}

@media (max-width: 899px) {
  .pageHeader-content-preamble {
    width: auto;
    padding: 0 1rem;
  }
}

@media (max-width: 767px) {
  .pageHeader-content-preamble {
    padding: 0 2.5rem 2rem;
  }
}

.pageHeader-content-preamble p {
  font-size: 2rem;
  line-height: 1.2;
}

.relatedBlock {
  background: #353535;
}

.recommendedBlock {
  background: #292929;
  padding: 5rem 0;
}

.recommendedBlock-wrapper {
  -webkit-box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.4);
          box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.4);
  padding: 0 5rem 2rem;
}

@media (max-width: 1023px) {
  .recommendedBlock-wrapper {
    padding: 0 2.5rem 2rem;
  }
}

.recommendedBlock-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
}

.recommendedBlock-item {
  -ms-flex-preferred-size: 31.6%;
      flex-basis: 31.6%;
  margin: 0 2.6% 5rem 0;
}

.recommendedBlock-item:nth-of-type(3n) {
  margin-right: 0;
}

@media (max-width: 899px) {
  .recommendedBlock-item {
    -ms-flex-preferred-size: 47.7%;
        flex-basis: 47.7%;
    margin: 0 0 5rem 0;
  }
  .recommendedBlock-item:nth-of-type(odd) {
    margin-right: 4.5%;
  }
}

@media (max-width: 539px) {
  .recommendedBlock-item {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    margin: 0 0 3rem;
  }
  .recommendedBlock-item:nth-of-type(odd) {
    margin-right: 0;
  }
}

.recommendedBlock-item-image {
  font-size: 0;
  margin-bottom: 2rem;
}

.recommendedBlock-item-image a {
  width: 100%;
}

.recommendedBlock-item-image img {
  width: 100%;
  height: 100%;
}

.recommendedBlock-item-content-title {
  text-transform: uppercase;
  color: white;
  font-size: 2rem;
  margin: 1rem 0;
  position: relative;
  padding-left: 35px;
}

.recommendedBlock-item-content-title svg {
  width: 2.7rem;
  height: 2.7rem;
  position: absolute;
  top: 2px;
  left: 0;
  fill: #ffcb00;
}

.recommendedBlock-item-content-preamble {
  padding-left: 3rem;
  color: #eeeeee;
  font-family: "Open Sans", sans-serif;
  font-size: 12px;
  font-weight: 400;
  margin-bottom: 1rem;
}

.recommendedBlock-item-content-link {
  text-align: right;
  padding-right: 10px;
}

.recommendedBlock-item-content-link a {
  color: #ffd300;
  text-transform: uppercase;
  font-size: 16px;
}

.recommendedBlock-item-content-link a:hover, .recommendedBlock-item-content-link a:focus, .recommendedBlock-item-content-link a:active {
  opacity: .7;
}

.recommendedBlock-item:last-of-type {
  margin-right: 0;
}

.pageHeaderSingle-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  overflow: hidden;
  min-height: 27rem;
}

@media (max-width: 719px) {
  .pageHeaderSingle-wrapper {
    display: block;
  }
}

.pageHeaderSingle-headline {
  background: -webkit-gradient(linear, left top, left bottom, from(#ffe000), to(#ffbc00));
  background: linear-gradient(180deg, #ffe000, #ffbc00);
  position: relative;
  z-index: 0;
  width: 37%;
}

@media (max-width: 719px) {
  .pageHeaderSingle-headline {
    background: #ffd300;
  }
}

.pageHeaderSingle-headline h1 {
  margin: 0;
  padding: 7rem 0 0 5rem;
}

@media (max-width: 1023px) {
  .pageHeaderSingle-headline h1 {
    padding: 7rem 0 0 2.5rem;
  }
}

@media (max-width: 719px) {
  .pageHeaderSingle-headline h1 {
    padding: 6rem 2.5rem;
  }
}

.pageHeaderSingle-headline:after {
  content: '';
  position: absolute;
  z-index: -1;
  background: -webkit-gradient(linear, left top, left bottom, from(#ffe000), to(#ffbc00));
  background: linear-gradient(180deg, #ffe000, #ffbc00);
  width: 100%;
  top: 0;
  bottom: 0;
  -webkit-transform: skew(-15.4deg, 0);
          transform: skew(-15.4deg, 0);
  -webkit-transform-origin: 100% 100%;
          transform-origin: 100% 100%;
}

@media (max-width: 719px) {
  .pageHeaderSingle-headline:after {
    -webkit-transform: skew(0, -11deg);
            transform: skew(0, -11deg);
    -webkit-transform-origin: 100% 0;
            transform-origin: 100% 0;
    background: #ffd300;
  }
}

@media (max-width: 719px) {
  .pageHeaderSingle-headline {
    width: 100%;
  }
}

.pageHeaderSingle-preamble {
  width: 63%;
  background: #464646;
  padding: 7rem 0 3rem 5rem;
}

@media (max-width: 719px) {
  .pageHeaderSingle-preamble {
    width: 100%;
    padding: 25% 2.5rem 5rem;
  }
}

.pageHeaderSingle-preamble-content {
  color: #dadada;
  width: 60%;
  margin: 0 auto;
  line-height: 22px;
  font-size: 2rem;
}

@media (max-width: 719px) {
  .pageHeaderSingle-preamble-content {
    width: 100%;
  }
}

.pageHeaderSingle-preamble-content p {
  font-size: inherit;
  margin: 0;
}

.regions {
  display: block;
  position: fixed;
  z-index: 2000;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  padding: 3vh 5rem;
  background-color: black;
  -webkit-transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 767px) {
  .regions {
    height: calc(100vh - 6rem);
    overflow: auto;
    padding: 2.5rem;
    -webkit-overflow-scrolling: touch;
  }
}

.regions--hidden {
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}

.regions-header, .regions-inner, .regions-footer {
  width: 90vw;
  margin: 0 auto;
}

@media (max-width: 899px) {
  .regions-header, .regions-inner, .regions-footer {
    width: 100%;
  }
}

.regions-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 2vh 0;
}

.regions-header-current {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  margin: 0 0 0 auto;
  line-height: 1.2em;
}

.regions-header-current i, .regions-header-current span, .regions-header-current img {
  -webkit-transition: 0.18s ease;
  transition: 0.18s ease;
}

.regions-header-current i {
  position: absolute;
  right: 100%;
  padding: 0 2rem;
  font-size: 4rem;
  color: #7d7d7d;
}

.regions-header-current-name {
  font-size: 2.1rem;
  color: #7d7d7d;
}

.regions-header-current-language {
  font-size: 1.6rem;
  color: #535353;
}

.regions-header-current-language img {
  max-width: 4rem;
  margin-left: 0.5rem;
  opacity: 0.5;
  vertical-align: middle;
}

.regions-header-current:hover i, .regions-header-current:hover span, .regions-header-current:focus i, .regions-header-current:focus span, .regions-header-current:active i, .regions-header-current:active span {
  color: #bdbdbd;
}

.regions-header-current:hover img, .regions-header-current:focus img, .regions-header-current:active img {
  opacity: 1;
}

.regions-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  padding: 3rem;
  outline: 1px solid #535353;
}

@media (max-width: 899px) {
  .regions-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0;
    outline: none;
  }
}

.regions-content {
  width: 40%;
}

@media (max-width: 899px) {
  .regions-content {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: 100%;
  }
}

.regions-title {
  margin: 0;
  color: white;
}

@media (max-width: 719px) {
  .regions-title {
    text-align: center;
  }
}

.regions-palette a {
  text-decoration: underline;
  -webkit-text-decoration-color: transparent;
          text-decoration-color: transparent;
}

.regions-palette-global {
  margin-top: 3vh;
  font-size: 2.4rem;
  text-transform: uppercase;
  color: #bdbdbd;
}

.regions-palette-global:hover, .regions-palette-global:focus, .regions-palette-global:active {
  color: white;
  -webkit-text-decoration-color: white;
          text-decoration-color: white;
}

.regions-palette-local {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  height: 50vh;
}

@media (max-width: 899px) {
  .regions-palette-local {
    height: 45vw;
  }
}

@media (max-width: 719px) {
  .regions-palette-local {
    height: auto;
    text-align: center;
  }
}

.regions-palette-part {
  width: 50%;
  margin-top: 2rem;
}

@media (max-width: 719px) {
  .regions-palette-part {
    width: 100%;
  }
}

.regions-palette-part-title {
  margin: 0 0 0.5rem;
  font-size: 1.6rem;
  color: #7d7d7d;
}

.regions-palette-blog {
  margin: 0 0 0.6rem;
}

.regions-palette-blog-link {
  line-height: 1.2em;
  font-size: 2rem;
  text-transform: uppercase;
  color: #e0e0e0;
}

.regions-palette-blog-link:hover, .regions-palette-blog-link:focus, .regions-palette-blog-link:active {
  color: white;
  -webkit-text-decoration-color: white;
          text-decoration-color: white;
}

.regions-palette-blog.s-selected > a {
  color: #ffd300;
}

.regions-palette-blog-languages {
  padding-left: 1rem;
}

.regions-palette-blog-languages a {
  margin-right: 1rem;
  line-height: 1.2em;
  font-size: 1.6rem;
  color: #9e9e9e;
}

.regions-palette-blog-languages a:hover, .regions-palette-blog-languages a:focus, .regions-palette-blog-languages a:active {
  color: #bdbdbd;
  -webkit-text-decoration-color: #bdbdbd;
          text-decoration-color: #bdbdbd;
}

.regions-map {
  display: block;
  position: relative;
  width: 60%;
  padding: 0 !important;
}

.regions-map svg .datamaps-subunit {
  fill: #464646 !important;
}

.regions-map svg .datamaps-subunit.s-available {
  cursor: pointer;
  fill: #9e9e9e !important;
}

.regions-map svg .datamaps-subunit.s-available:hover {
  fill: #ffd300 !important;
  stroke: #ffd300 !important;
}

.regions-map svg .datamaps-subunit.s-selected {
  fill: #ffd300 !important;
  stroke: #ffd300 !important;
}

@media (max-width: 899px) {
  .regions-map {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: 100%;
    height: 40vw;
  }
}

.regions-footer .siteFooter-wrapper {
  padding: 4rem 0 0;
}

.homeSlider {
  background: #373737;
}

.homeSlider-slides-wrapper {
  position: relative;
}

.homeSlider-slides-wrapper .icon-arrows {
  position: absolute;
  top: 43%;
  color: #b1b2b2;
  font-size: 2rem;
  z-index: 3;
  cursor: pointer;
}

@media (max-width: 767px) {
  .homeSlider-slides-wrapper .icon-arrows {
    top: 25%;
  }
}

.homeSlider-slides-wrapper .icon-arrows svg {
  width: 45px;
  height: 45px;
  fill: white;
  opacity: .7;
}

@media (max-width: 539px) {
  .homeSlider-slides-wrapper .icon-arrows svg {
    width: 35px;
    height: 35px;
  }
}

.homeSlider-slides-wrapper .icon-arrows-left {
  left: 5px;
}

.homeSlider-slides-wrapper .icon-arrows-right {
  right: 5px;
}

.homeSlider-item {
  display: none;
  overflow: hidden;
}

.homeSlider-item-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  min-height: 560px;
}

@media (max-width: 767px) {
  .homeSlider-item-wrapper {
    display: block;
  }
}

.homeSlider-item-image {
  width: 68%;
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: left center;
}

@media (max-width: 767px) {
  .homeSlider-item-image {
    width: 100%;
    margin-bottom: 10vw;
    padding-bottom: 40%;
  }
}

@media (max-width: 719px) {
  .homeSlider-item-image {
    min-height: 75vw;
  }
}

.homeSlider-item-content {
  background: -webkit-gradient(linear, left top, left bottom, from(#ffe000), to(#ffbc00));
  background: linear-gradient(180deg, #ffe000, #ffbc00);
  position: relative;
  z-index: 0;
  width: 32%;
  padding: 5rem 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media (max-width: 767px) {
  .homeSlider-item-content {
    width: 100%;
    padding: 1rem 0 2rem;
    background: #ffd300;
    height: 34rem;
  }
}

@media (max-width: 479px) {
  .homeSlider-item-content {
    height: 40rem;
  }
}

.homeSlider-item-content:before {
  content: '';
  position: absolute;
  z-index: -1;
  background: -webkit-gradient(linear, left top, left bottom, from(#ffe000), to(#ffbc00));
  background: linear-gradient(180deg, #ffe000, #ffbc00);
  width: 100%;
  top: 0;
  bottom: 0;
  -webkit-transform: skew(15.4deg, 0);
          transform: skew(15.4deg, 0);
  -webkit-transform-origin: 100% 100%;
          transform-origin: 100% 100%;
}

@media (max-width: 767px) {
  .homeSlider-item-content:before {
    -webkit-transform: skew(0, -11deg);
            transform: skew(0, -11deg);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
    background: #ffd300;
  }
}

.homeSlider-item-content-headline {
  margin-bottom: 3rem;
  padding-right: 6rem;
}

@media (max-width: 767px) {
  .homeSlider-item-content-headline {
    padding: 0 2.5rem;
  }
}

.homeSlider-item-content-headline span {
  display: block;
  margin-bottom: 1rem;
}

.homeSlider-item-content-preamble {
  font-size: 2rem;
  padding: 0 6rem 0 4rem;
  line-height: 1.2;
}

@media (max-width: 899px) {
  .homeSlider-item-content-preamble {
    padding: 0 5rem 0 0;
  }
}

@media (max-width: 767px) {
  .homeSlider-item-content-preamble {
    padding: 0 2.5rem;
  }
}

.homeSlider-item-content-preamble p {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.homeSlider-item-content-preamble-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.homeSlider-item-content-preamble ul {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
}

.homeSlider-item-content-preamble ul:first-of-type {
  padding-right: 1rem;
}

.homeSlider-item-content-preamble ul li {
  display: block;
  color: white;
  text-transform: uppercase;
}

.homeSlider-item-content-preamble ul li a {
  font-size: 2rem;
  color: white;
}

.homeSlider-item-content-preamble ul li a:hover, .homeSlider-item-content-preamble ul li a:focus, .homeSlider-item-content-preamble ul li a:active {
  color: #292929;
  opacity: .7;
}

@media (max-width: 1199px) {
  .homeSlider-item-content-preamble ul li a {
    font-size: 1.8rem;
  }
}

@media (max-width: 767px) {
  .homeSlider-item-content-preamble ul li a {
    font-size: 1.6rem;
  }
}

@media (max-width: 1023px) {
  .homeSlider .slick-dots {
    margin-bottom: 1rem;
  }
}

.thumbnailPosts-home {
  background: #373737;
  padding-bottom: 2rem;
}

.latesPosts {
  background: #484848;
}

.latesPosts-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 719px) {
  .latesPosts-wrapper {
    display: block;
  }
}

.latesPosts-news {
  margin-right: 4rem;
}

.latesPosts-item {
  width: 50%;
  color: #eeeeee;
}

@media (max-width: 719px) {
  .latesPosts-item {
    width: 100%;
    margin-bottom: 4rem;
  }
}

.latesPosts-item-title {
  text-transform: uppercase;
  font-size: 2rem;
  color: white;
  margin-bottom: 1rem;
}

.latesPosts-item-text {
  font-family: "Open Sans", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 22px;
}

.latesPosts-item-link {
  text-transform: uppercase;
  color: #ffd300;
  font-family: "Saira Semi Condensed", "Helvetica Neue", "Roboto", sans-serif;
}

.latesPosts-item-link:hover, .latesPosts-item-link:focus, .latesPosts-item-link:active {
  opacity: .7;
}

.promotionThumbnails {
  background: #484848;
}

.promotionThumbnails-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 0;
}

@media (max-width: 719px) {
  .promotionThumbnails-wrapper {
    display: block;
  }
}

.promotionThumbnails-item {
  overflow: hidden;
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.promotionThumbnails-item:first-of-type {
  margin-right: 4rem;
}

@media (max-width: 719px) {
  .promotionThumbnails-item {
    width: 100%;
    margin: 0 0 4rem;
    display: block;
  }
}

.promotionThumbnails-item-content {
  background: -webkit-gradient(linear, left top, left bottom, from(#ffe000), to(#ffbc00));
  background: linear-gradient(180deg, #ffe000, #ffbc00);
  position: relative;
  z-index: 0;
  width: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.promotionThumbnails-item-content:after {
  content: '';
  position: absolute;
  z-index: -1;
  background: -webkit-gradient(linear, left top, left bottom, from(#ffe000), to(#ffbc00));
  background: linear-gradient(180deg, #ffe000, #ffbc00);
  width: 100%;
  top: 0;
  bottom: 0;
  -webkit-transform: skew(15.4deg, 0);
          transform: skew(15.4deg, 0);
  -webkit-transform-origin: 100% 0;
          transform-origin: 100% 0;
}

@media (max-width: 719px) {
  .promotionThumbnails-item-content:after {
    -webkit-transform: skew(0, -11deg);
            transform: skew(0, -11deg);
    -webkit-transform-origin: 100% 0;
            transform-origin: 100% 0;
    background: #ffd300;
  }
}

@media (max-width: 719px) {
  .promotionThumbnails-item-content {
    width: 100%;
    padding: 0 3rem 2rem 0;
    background: #ffd300;
  }
}

.promotionThumbnails-item-content-inside {
  padding: 3rem 0 2rem 3rem;
}

.promotionThumbnails-item-content-inside h2 {
  margin-top: 0;
}

.promotionThumbnails-item-image {
  width: 50%;
  min-height: 200px;
  background-size: cover;
  background-repeat: no-repeat;
}

@media (max-width: 719px) {
  .promotionThumbnails-item-image {
    width: 100%;
  }
}

.promotionThumbnails-item-text {
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  line-height: 20px;
}

.promotionThumbnails-item-link {
  padding: 0 3rem 2rem;
}

.promotionThumbnails-item-link a {
  text-transform: uppercase;
  color: white;
  font-size: 16px;
}

.promotionThumbnails-item-link a:hover, .promotionThumbnails-item-link a:focus, .promotionThumbnails-item-link a:active {
  opacity: .7;
  color: #292929;
}

.archiveContent {
  width: 60%;
  padding: 5rem;
}

@media (max-width: 1023px) {
  .archiveContent {
    padding: 2.5rem;
  }
}

@media (max-width: 719px) {
  .archiveContent {
    width: 100%;
  }
}

.archiveContent-inside {
  padding-bottom: 5rem;
  width: 60%;
}

@media (max-width: 719px) {
  .archiveContent-inside {
    width: 100%;
  }
}

.categoriesList {
  background: #353535;
}

.categoriesList-inside {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
}

.categoriesList-caption {
  margin-bottom: 4rem;
}

.categoriesList-item {
  -ms-flex-preferred-size: 31.6%;
      flex-basis: 31.6%;
  margin: 0 2.6% 5rem 0;
  background: #ffcb00;
}

.categoriesList-item:nth-of-type(3n) {
  margin-right: 0;
}

@media (max-width: 899px) {
  .categoriesList-item {
    -ms-flex-preferred-size: 47.7%;
        flex-basis: 47.7%;
    margin: 0 0 5rem 0;
  }
  .categoriesList-item:nth-of-type(odd) {
    margin-right: 4.5%;
  }
}

@media (max-width: 539px) {
  .categoriesList-item {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    margin: 0 0 3rem;
  }
  .categoriesList-item:nth-of-type(odd) {
    margin-right: 0;
  }
}

.categoriesList-item a {
  width: 100%;
  color: #3d3d3d;
}

.categoriesList-item-image {
  line-height: 0;
  overflow: hidden;
  background: transparent;
}

.categoriesList-item-image img {
  width: 100%;
  height: 100%;
  -webkit-transition: 0.24s ease;
  transition: 0.24s ease;
  background: #353535;
}

.categoriesList-item-image img:hover {
  -webkit-transform: scale(1.04);
          transform: scale(1.04);
}

.categoriesList-item-content {
  padding: 2rem;
}

.categoriesList-item-content-title {
  text-transform: uppercase;
  font-size: 2.4rem;
}

.categoriesList-item-content-preamble {
  margin-top: 1rem;
  font-size: 14px;
  line-height: 1.2;
  font-family: "Open Sans", sans-serif;
}

.archive-instructions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 5rem;
}

@media (max-width: 719px) {
  .archive-instructions {
    display: block;
    margin-bottom: 4rem;
  }
}

.archive-text {
  width: 50%;
}

@media (max-width: 719px) {
  .archive-text {
    width: 100%;
    margin-bottom: 3rem;
  }
}

.archive-search {
  width: 40%;
}

@media (max-width: 719px) {
  .archive-search {
    width: 100%;
  }
}

.archive-search form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

@media (max-width: 719px) {
  .archive-search form {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.archive-search form button {
  margin-left: 10px;
}

.archive-search form input {
  width: 70%;
}

@media (max-width: 719px) {
  .archive-search form input {
    width: 100%;
  }
}

.som {
  padding: 5rem 0;
}

.som-content {
  padding: 0 5rem;
}

.som-map .-title {
  padding: 0 5rem;
}

.som-worldParts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: calc(100% + 2rem);
  margin: 0 -1rem;
  padding: 0 5rem;
}

.som-worldParts-button {
  padding: 1rem;
  text-transform: uppercase;
  font-size: 2.4rem;
  font-weight: 400;
  color: black;
  -webkit-appearance: none;
}

.som-worldParts-button:hover, .som-worldParts-button:focus {
  color: #535353;
}

.som-worldParts-button.active {
  color: #ffd300;
  font-weight: 700;
}

.som-worldMap {
  height: 480px;
}

@media (orientation: portrait) {
  .som-worldMap {
    height: 75vw;
  }
}

.som-worldMap .datamaps-subunit {
  fill: #bdbdbd !important;
  stroke: #7d7d7d !important;
  -webkit-transition: 0.12s ease;
  transition: 0.12s ease;
  cursor: pointer;
}

.som-worldMap .datamaps-subunit.hover {
  fill: #7d7d7d !important;
  stroke: #1e1e1e !important;
}

.som-worldMap .datamaps-subunit.active {
  fill: #464646 !important;
  stroke: black !important;
}

.som-worldMap .datamaps-subunit.item {
  fill: #9e9e9e !important;
}

.som-worldMap .datamaps-subunit.item.hover, .som-worldMap .datamaps-subunit.item.active {
  fill: #ffd300 !important;
}

.som-worldPart.hidden {
  display: none;
}

.som-worldPartTitle, .som-countryTitle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding: 0 5rem;
  margin: 0;
  width: auto;
}

.som-worldPartTitle span, .som-countryTitle span {
  display: inline-block;
}

.som-worldPartTitle {
  margin-left: -5rem;
  padding-top: 1em;
  padding-bottom: 1em;
  color: #ffd300;
}

.som-worldPartTitle span {
  padding: 0.5em 3rem 0.5em 5rem;
  background-color: black;
}

.som-countryTitle {
  color: #535353;
}

.som-countryTitle img {
  display: block;
  height: 100%;
  width: auto;
  margin-right: 1rem;
}

.som-list {
  display: block;
  margin: 1rem 0;
  padding: 0 5rem;
}

@media (min-width: 1025px) {
  .som-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.som-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 49%;
  margin: 1rem 0;
  padding: 1rem 2rem;
  background-color: #f5f5f5;
  -webkit-transition: 0.18s ease;
  transition: 0.18s ease;
}

@media (max-width: 1023px) {
  .som-item {
    width: 100%;
    margin: 2rem 0;
  }
}

.som-item.hidden {
  display: none;
}

.som-item.s-highlight {
  border-color: #ffd300;
}

.som-item.s-mismatch {
  border-color: transparent;
  opacity: 0.5;
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
  display: none;
}

.som-item-title {
  width: 100%;
  position: relative;
  margin: 0 0 1rem;
  padding: 0.4rem 0 0;
  font-size: 2.7rem;
}

.som-item-title .label {
  display: block;
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 1.4em;
  height: 1.4em;
  line-height: 1.15;
  border-radius: 50%;
  background-color: #ffd300;
  border: 3px solid black;
  text-align: center;
  vertical-align: middle;
}

.som-item-address, .som-item-phone, .som-item-website, .som-item-email {
  margin: 0.25rem 0;
  font-size: 1.6rem;
  color: #535353;
}

.som-item-address a, .som-item-phone a, .som-item-website a, .som-item-email a {
  color: black;
  text-decoration: underline;
}

.som-item-address a:hover, .som-item-address a:focus, .som-item-address a:active, .som-item-phone a:hover, .som-item-phone a:focus, .som-item-phone a:active, .som-item-website a:hover, .som-item-website a:focus, .som-item-website a:active, .som-item-email a:hover, .som-item-email a:focus, .som-item-email a:active {
  color: #f1b204;
  -webkit-text-decoration-color: #f1b204;
          text-decoration-color: #f1b204;
}

.som-item-address {
  position: relative;
  padding: 0 1rem;
}

.som-item-address span {
  display: inline-block;
  position: relative;
  z-index: 1;
}

.som-item-address::after {
  content: "";
  position: absolute;
  z-index: 0;
  display: block;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background-color: #ffd300;
  -webkit-transition: 0.18s ease;
  transition: 0.18s ease;
}

.som-item-address:hover {
  color: black;
}

.som-item-address:hover::after {
  width: 100%;
}

.som-item-email {
  margin: auto 0 0;
}

.som-item-email .email-link {
  margin-top: 0.5rem;
}

.singlePost-wrapper {
  width: 60%;
}

@media (max-width: 719px) {
  .singlePost-wrapper {
    width: 100%;
  }
}

.singlePost-points {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.singlePost-points-item {
  width: 45%;
}

@media (max-width: 539px) {
  .singlePost-points-item {
    width: 100%;
  }
}

.singlePost-points-item-title {
  text-transform: uppercase;
}

.singlePost-points-item-text {
  font-family: "Open Sans", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
}

.singlePost-link {
  margin-top: 4rem;
  padding: 1rem 0;
}

.applicationsList {
  background: #292929;
}

.applicationsList-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
}

.applicationsList-item {
  -ms-flex-preferred-size: 31.6%;
      flex-basis: 31.6%;
  margin: 0 2.6% 5rem 0;
  background: #ffcb00;
}

.applicationsList-item:nth-of-type(3n) {
  margin-right: 0;
}

@media (max-width: 899px) {
  .applicationsList-item {
    -ms-flex-preferred-size: 47.7%;
        flex-basis: 47.7%;
    margin: 0 0 5rem 0;
  }
  .applicationsList-item:nth-of-type(odd) {
    margin-right: 4.5%;
  }
}

@media (max-width: 539px) {
  .applicationsList-item {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    margin: 0 0 3rem;
  }
  .applicationsList-item:nth-of-type(odd) {
    margin-right: 0;
  }
}

.applicationsList-item a {
  color: #3d3d3d;
  width: 100%;
}

.applicationsList-item-image {
  line-height: 0;
  overflow: hidden;
  background: transparent;
}

.applicationsList-item-image img {
  width: 100%;
  height: 100%;
  -webkit-transition: 0.24s ease;
  transition: 0.24s ease;
  background: #353535;
}

.applicationsList-item-image img:hover {
  -webkit-transform: scale(1.04);
          transform: scale(1.04);
}

.applicationsList-item-title {
  padding: 2rem;
  text-transform: uppercase;
  font-size: 2.4rem;
}

.sProduct-wrapper {
  padding: 0 5rem;
}

@media (max-width: 1023px) {
  .sProduct-wrapper {
    padding: 0 2.5rem;
  }
}

.sProduct-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  overflow: hidden;
  background: #292929;
}

@media (max-width: 767px) {
  .sProduct-header {
    display: block;
  }
}

.sProduct-image {
  width: 65%;
  -ms-flex-negative: 3;
      flex-shrink: 3;
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position: center;
  min-height: 50rem;
}

@media (max-width: 767px) {
  .sProduct-image {
    width: 100%;
    margin-bottom: 8vw;
  }
}

.sProduct-content {
  -webkit-box-flex: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
  padding: 5rem 0 9rem;
  background: -webkit-gradient(linear, left top, left bottom, from(#ffe000), to(#ffbc00));
  background: linear-gradient(180deg, #ffe000, #ffbc00);
  position: relative;
  max-width: 35%;
  z-index: 0;
}

.sProduct-content:before {
  content: '';
  position: absolute;
  z-index: -1;
  background: -webkit-gradient(linear, left top, left bottom, from(#ffe000), to(#ffbc00));
  background: linear-gradient(180deg, #ffe000, #ffbc00);
  width: 100%;
  top: 0;
  bottom: 0;
  -webkit-transform: skew(15.4deg, 0);
          transform: skew(15.4deg, 0);
  -webkit-transform-origin: 100% 100%;
          transform-origin: 100% 100%;
}

@media (max-width: 767px) {
  .sProduct-content:before {
    -webkit-transform: skew(0, -11deg);
            transform: skew(0, -11deg);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
    background: #ffd300;
  }
}

@media (max-width: 767px) {
  .sProduct-content {
    max-width: none;
    width: 100%;
    background: #ffd300;
    padding: 2rem 0 3rem;
  }
}

.sProduct-title {
  word-spacing: -18px;
  position: relative;
  padding-right: 6rem;
  margin: 0 0 1rem;
}

@media (max-width: 899px) {
  .sProduct-title {
    padding: 0 5rem 3rem;
    line-height: 1;
    margin: 0;
  }
}

.sProduct-title-brokk {
  color: white;
  position: absolute;
  display: block;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  top: 0;
  bottom: 0;
  left: -12px;
  font-size: 4.7rem;
}

.sProduct-title-number {
  font-size: 19.5rem;
}

.sProduct-title-letter, .sProduct-title-mark {
  font-size: 15.5rem;
}

.sProduct-title-image {
  padding: 4rem 6rem 5rem 0;
}

@media (max-width: 767px) {
  .sProduct-title-image {
    padding: 0 2.5rem 3rem;
  }
}

.sProduct-title-image img {
  width: 100%;
  max-width: 100%;
}

.sProduct-title-image h1 {
  margin: 0;
  font-size: 0;
}

.sProduct-preamble {
  font-size: 2rem;
  line-height: 1.2;
  width: 300px;
  margin: 0 auto;
}

@media (max-width: 899px) {
  .sProduct-preamble {
    width: auto;
    padding: 2rem 2.5rem 3rem;
  }
}

.sProduct-archiveLink {
  padding: 3rem 5rem 0;
}

@media (max-width: 1023px) {
  .sProduct-archiveLink {
    padding: 3rem 2.5rem 0;
  }
}

.sProduct-sectionNav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-bottom: 3rem;
  padding: 0 5rem;
}

@media (max-width: 1023px) {
  .sProduct-sectionNav {
    padding: 0 2.5rem;
  }
}

@media (max-width: 899px) {
  .sProduct-sectionNav {
    display: none;
  }
}

.sProduct-sectionNav-button {
  text-transform: uppercase;
  color: #c6c6c5;
  font-size: 3rem;
  margin-right: 3rem;
  padding: 0;
  border-bottom: 6px solid transparent;
  -webkit-transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.sProduct-sectionNav-button:last-child {
  margin-right: 0;
}

.sProduct-sectionNav-button:hover, .sProduct-sectionNav-button:active, .sProduct-sectionNav-button:focus {
  color: #292929;
}

.sProduct-sectionNav-button:after {
  content: '';
  display: block;
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 6px;
  background: #ffd300;
  width: 0;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}

.sProduct-sectionNav-button.activeTab {
  color: #292929;
}

.sProduct-sectionNav-button.activeTab:after {
  width: 100%;
}

.sProduct-section {
  display: none;
}

.sProduct-section.activeSection {
  display: block;
}

.sProduct-section-emptyText {
  text-transform: uppercase;
  padding: 0 5rem 2rem;
}

.sProduct-section-footer {
  padding: 0 5rem 4rem;
}

@media (max-width: 1023px) {
  .sProduct-section-footer {
    padding: 0 2.5rem 4rem;
  }
}

.sProduct-info-description {
  padding-bottom: 4rem;
  width: 60%;
}

@media (max-width: 719px) {
  .sProduct-info-description {
    width: 100%;
  }
}

.sProduct-info-bulletPoints {
  padding: 0 0 5rem 4rem;
}

.sProduct-info-bulletPoints li {
  font-family: "Open Sans", sans-serif;
  font-size: 1.6rem;
  margin-bottom: 1rem;
  position: relative;
}

.sProduct-info-bulletPoints li svg {
  width: 16px;
  height: 16px;
  fill: #ffd300;
  position: absolute;
  margin-top: 3px;
  right: calc(100% + 1rem);
}

.sProduct-info-features {
  padding: 4rem 5rem 2rem;
  border-top: 1px solid #d2d2d2;
  -webkit-box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.1);
  margin-bottom: 3rem;
}

@media (max-width: 1023px) {
  .sProduct-info-features {
    padding: 4rem 2.5rem;
  }
}

.sProduct-info-features-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
}

.sProduct-info-feature {
  width: 31.6%;
  margin: 0 2.6% 4rem 0;
}

.sProduct-info-feature:nth-of-type(3n) {
  margin-right: 0;
}

@media (max-width: 719px) {
  .sProduct-info-feature {
    width: 47.7%;
    margin: 0 0 3rem 0;
  }
  .sProduct-info-feature:nth-of-type(odd) {
    margin-right: 4.5%;
  }
}

@media (max-width: 539px) {
  .sProduct-info-feature {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    margin: 0 0 3rem;
  }
  .sProduct-info-feature:nth-of-type(odd) {
    margin-right: 0;
  }
}

.sProduct-info-feature img {
  width: 100%;
}

.sProduct-info-feature-description {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 12px;
  margin: 0;
}

.sProduct-specs-wrapper {
  -webkit-box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.1);
  margin-bottom: 3rem;
  padding: 2rem 5rem;
}

.sProduct-specs-left {
  width: 55%;
}

.sProduct-specs-left .sProduct-section-emptyText {
  padding: 0;
}

.sProduct-specs-right {
  width: 45%;
  margin-top: 2rem;
}

.sProduct-specs-spec dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  font-family: "Open Sans", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
}

.sProduct-specs-spec dl dt {
  width: 60%;
  padding-right: 2rem;
}

.sProduct-specs-spec dl dd {
  width: 40%;
}

.sProduct-specs-footnotes {
  margin: 2rem 0 3rem;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.8rem;
}

.sProduct-specs-image {
  line-height: 0;
  overflow: hidden;
  position: relative;
}

.sProduct-specs-image a {
  width: 100%;
  line-height: 0;
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}

.sProduct-specs-image img {
  width: 100%;
  height: 100%;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}

.sProduct-specs-image img:hover {
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
}

.sProduct-specs-thumbnails {
  padding: 1.5rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
}

.sProduct-specs-thumbnails button {
  padding: 0;
  line-height: 0;
  width: 31.3%;
  margin: 0 3% 1.5rem 0;
}

.sProduct-specs-thumbnails button:nth-of-type(3n) {
  margin-right: 0;
}

.sProduct-specs-thumbnails button img {
  width: 100%;
  height: 100%;
}

.sProduct-specs-thumbnails button img.currentThum {
  border: 2px solid #ffd300;
}

.sProduct-options-list {
  -webkit-box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.1);
  margin-bottom: 3rem;
  padding: 2rem 5rem;
}

@media (max-width: 1023px) {
  .sProduct-options-list {
    padding: 2rem 2.5rem 0;
  }
}

.sProduct-options-cta {
  padding-bottom: 2rem;
}

.sProduct-attachments-wrapper {
  -webkit-box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.1);
  margin-bottom: 3rem;
  padding: 2rem 5rem;
}

@media (max-width: 1023px) {
  .sProduct-attachments-wrapper {
    padding: 2rem 2.5rem;
  }
}

.sProduct-attachments-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
}

.sProduct-attachments-attachment {
  width: 31.6%;
  margin: 0 2.6% 4rem 0;
  -webkit-box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.sProduct-attachments-attachment:nth-of-type(3n) {
  margin-right: 0;
}

@media (max-width: 719px) {
  .sProduct-attachments-attachment {
    width: 47.7%;
    margin: 0 0 3rem 0;
  }
  .sProduct-attachments-attachment:nth-of-type(odd) {
    margin-right: 4.5%;
  }
}

@media (max-width: 539px) {
  .sProduct-attachments-attachment {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    margin: 0 0 3rem;
  }
  .sProduct-attachments-attachment:nth-of-type(odd) {
    margin-right: 0;
  }
}

.sProduct-attachments-attachment-image a {
  width: 100%;
}

.sProduct-attachments-attachment-image img {
  width: 100%;
  height: 100%;
}

.sProduct-attachments-attachment-content {
  padding: 0 2rem;
}

.sProduct-attachments-attachment-content p {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 12px;
  margin: 0;
}

.sProduct-attachments-attachment-link {
  text-align: right;
  padding: .2rem 2rem .7rem;
}

.sProduct-mbTab {
  display: none;
  padding: 0.5rem 2.5rem;
  border-top: 1px solid #7d7d7d;
}

.sProduct-mbTab-button {
  text-transform: uppercase;
  font-size: 2.5rem;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: #c6c6c5;
}

.sProduct-mbTab-button.activeTab {
  color: #292929;
}

.sProduct-mbTab-button.activeTab i {
  -webkit-transition: 0.18s ease;
  transition: 0.18s ease;
  -webkit-transform: rotateX(180deg);
          transform: rotateX(180deg);
}

@media (max-width: 899px) {
  .sProduct-mbTab {
    display: block;
  }
}

.techSpecifications-tspec {
  margin: 0 4rem 2rem 0;
}

.techSpecifications-table-title {
  padding: 0 2rem 0.7rem 0;
  text-align: left;
  font-size: 1.8rem;
  text-transform: uppercase;
  color: #464646;
}

.techSpecifications-table-property {
  min-width: 10rem;
  padding-right: 3rem;
  font-family: "Open Sans", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
}

.techSpecifications-table-property:last-of-type {
  padding-right: 0;
}

.techSpecifications-table-property[data-empty="true"] {
  height: 2rem;
}

@media (max-width: 767px) {
  .techSpecifications-table {
    display: block;
  }
  .techSpecifications-table tbody, .techSpecifications-table-row, .techSpecifications-table-property {
    display: block;
  }
  .techSpecifications-table-row {
    border-bottom: 1px solid #ffd300;
    padding: 1rem 0;
  }
  .techSpecifications-table-row:last-of-type {
    border-bottom: none;
  }
  .techSpecifications-table thead {
    display: none;
  }
  .techSpecifications-table-property {
    text-align: right;
    padding: 0.5rem 0;
  }
  .techSpecifications-table-property[data-empty="false"]:before {
    content: attr(data-title);
    float: left;
    font-size: 1.6rem;
    text-transform: uppercase;
    color: #464646;
    font-weight: 600;
    padding-right: 2rem;
  }
  .techSpecifications-table-property[data-empty="true"] {
    display: none;
  }
}

.sAttachment-content {
  margin: 3rem 0;
}

.sPress {
  width: 60%;
  margin-bottom: 3rem;
}

@media (max-width: 719px) {
  .sPress {
    width: 100%;
  }
}

.sPress-image {
  margin-bottom: 2.5rem;
}

.sPress-image img {
  width: 100%;
  height: auto;
}

.sPress-title {
  margin-bottom: 1rem;
}

.campaignPage-header img {
  width: 100%;
  height: auto;
}

.campaignPage-info {
  font-size: 2rem;
  margin-top: 3rem;
}

.faq-categories {
  width: 30%;
  padding-right: 2rem;
}

@media (max-width: 719px) {
  .faq-categories {
    padding-right: 0;
  }
}

@media (max-width: 719px) {
  .faq-categories-list {
    display: none;
  }
}

.faq-categories li {
  padding-bottom: 1.5rem;
}

.faq-categories li a {
  text-transform: uppercase;
  color: #f1b204;
  font-size: 2rem;
}

.faq-categories li a:hover, .faq-categories li a:focus, .faq-categories li a:active {
  color: #7d7d7d;
}

.faq-categories li a.activeTab {
  color: #292929;
}

.faq-categories-mobile {
  display: none;
  margin-bottom: 4rem;
  position: relative;
}

@media (max-width: 719px) {
  .faq-categories-mobile {
    display: block;
  }
}

.faq-categories-mobile-selector {
  border: 1px solid #ffd300;
  padding: 1rem 2rem;
  width: 100%;
  text-align: left;
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.faq-categories-mobile-selector-list {
  border: 1px solid #ffd300;
  border-top: 0;
  position: absolute;
  left: 0;
  right: 0;
  top: 45px;
  display: none;
}

.faq-categories-mobile-selector-item {
  width: 100%;
  color: #f1b204;
  text-transform: uppercase;
  font-size: 1.8rem;
  padding: 1rem 2rem;
  background: white;
}

.faq-categories-mobile-selector-item:hover, .faq-categories-mobile-selector-item:focus, .faq-categories-mobile-selector-item:active {
  background: #7d7d7d;
  color: white;
}

.faq-categories-mobile-selector-item.activeTab {
  color: #292929;
}

.faq-posts {
  width: 70%;
}

.faq-questionaire {
  margin-bottom: 4rem;
}

.faq-questionaire-field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.faq-questionaire-field input {
  width: 70%;
}

.faq-questionaire-field button {
  padding: 1rem 3rem;
  border: 1px solid #7d7d7d;
  line-height: 0;
  -webkit-transition: 0.24s ease;
  transition: 0.24s ease;
  margin-left: 10px;
  font-size: 2.5rem;
  color: #7d7d7d;
}

.faq-questionaire-field button:hover {
  background: #fede44;
  color: white;
  border-color: #fede44;
}

.faq-questionaire p {
  font-family: "Open Sans", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
}

.faq-popup {
  display: none;
  background: rgba(0, 0, 0, 0.7);
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.faq-popup-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
}

.faq-form {
  background: white;
  width: 50%;
  height: 50%;
  margin: 0 auto;
}

.faq-form-close {
  text-align: right;
  padding: 0 1rem;
}

.faq-form-close button {
  font-size: 3rem;
}

.imagesPosts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
}

.imagesPosts-post {
  width: 23.05%;
  margin: 0 2.6% 4rem 0;
}

.imagesPosts-post:nth-of-type(4n) {
  margin-right: 0;
}

@media (max-width: 899px) {
  .imagesPosts-post {
    width: 48%;
    margin: 0 0 4rem;
  }
  .imagesPosts-post:nth-of-type(odd) {
    margin-right: 4%;
  }
}

@media (max-width: 539px) {
  .imagesPosts-post {
    width: 100%;
    margin: 0 0 4rem;
  }
  .imagesPosts-post:nth-of-type(odd) {
    margin-right: 0;
  }
}

.imagesPosts-image img {
  width: 100%;
  height: 100%;
}

.imagesPosts-description {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
}

.imagesPosts-description-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.download-button {
  cursor: pointer;
}

.download-button svg {
  width: 35px;
  height: 30px;
}

.download-modal {
  position: fixed;
  background: rgba(0, 0, 0, 0.4);
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 999;
  display: none;
}

.download-modal-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
}

.download-modal-content {
  background: white;
  width: 50%;
  margin: 0 auto;
  padding: 2rem 4rem 3rem;
  position: relative;
}

@media (max-width: 899px) {
  .download-modal-content {
    width: 70%;
  }
}

@media (max-width: 539px) {
  .download-modal-content {
    width: 90%;
  }
}

.download-modal-content-text {
  font-size: 1.4rem;
  font-weight: 400;
  font-family: "Open Sans", sans-serif;
}

.download-modal-content label {
  cursor: pointer;
  display: inline-block;
  margin-top: 2rem;
}

.download-modal-content label span {
  font-size: 1.6rem;
}

.download-modal-content label span:before {
  content: '✓';
  display: inline-block;
  width: 1.2em;
  height: 1.2em;
  margin-right: 1rem;
  line-height: 1.2em;
  text-align: center;
  vertical-align: middle;
  color: transparent;
  border: 1px solid #7d7d7d;
  -webkit-transition: 0.24s ease;
  transition: 0.24s ease;
}

.download-modal-content label input[type="checkbox"] {
  display: none;
}

.download-modal-content label input[type="checkbox"]:checked + span::before {
  color: white;
  background: #f1b204;
  border-color: #f1b204;
}

.download-modal-button {
  text-align: right;
  margin-top: 2rem;
}

@media (max-width: 899px) {
  .download-modal-button {
    text-align: center;
  }
}

.download-modal-button .downloadButton {
  text-transform: uppercase;
  color: white;
  background: #ffd300;
  padding: 1rem 3rem;
  font-size: 1.6rem;
}

.download-modal-button .downloadButton:hover, .download-modal-button .downloadButton:active, .download-modal-button .downloadButton:focus {
  background: #fede44;
}

.download-modal-button .downloadButton--disabled {
  background: #ccc;
  opacity: .7;
  pointer-events: none;
}

.contacts-info {
  padding-bottom: 2rem;
  margin-bottom: 2rem;
}

.contacts-info-title {
  margin: 0 0 2rem;
}

.contacts-info p {
  margin: 0;
  line-height: 28px;
}

.contacts-form {
  width: 40%;
  padding-bottom: 5rem;
}

@media (max-width: 719px) {
  .contacts-form {
    width: 100%;
  }
}

.contacts-form-title,
.contacts-form .message-field {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
}

.contacts-form-title {
  margin-bottom: 2rem;
}

.contacts-form h3 {
  margin-bottom: 2rem;
}

.contacts-form .buttonSumbit {
  text-align: right;
  margin-top: 1.5rem;
}

.contacts-form .buttonSumbit button {
  color: white;
  background: #ffd300;
  text-transform: uppercase;
  padding: calc(1rem + 2px) 5rem;
  font-size: 1.6rem;
  -webkit-transition: 0.24s ease;
  transition: 0.24s ease;
  line-height: 1.4;
}

.contacts-form .buttonSumbit button:hover {
  background: #fede44;
}

.contacts-sales {
  margin-top: 1rem;
}

.contacts-sales-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  margin-bottom: 3rem;
}

.contacts-sales-sale {
  width: 22.7%;
  margin: 0 3% 4rem 0;
}

.contacts-sales-sale:nth-of-type(4n) {
  margin-right: 0;
}

@media (max-width: 899px) {
  .contacts-sales-sale {
    width: 48%;
    margin: 0 0 4rem;
  }
  .contacts-sales-sale:nth-of-type(odd) {
    margin-right: 4%;
  }
}

@media (max-width: 539px) {
  .contacts-sales-sale {
    width: 100%;
  }
  .contacts-sales-sale:nth-of-type(odd) {
    margin-right: 0;
  }
}

.contacts-sales-image img {
  width: 100%;
  height: 100%;
}

.contacts-sales-description p {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  margin: 0;
}

.contacts-sales-description a:hover, .contacts-sales-description a:focus, .contacts-sales-description a:active {
  color: #7d7d7d;
}

.productComparison-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  padding: 5rem;
}

@media (max-width: 899px) {
  .productComparison-nav {
    padding: 2.5rem;
  }
}

.productComparison-navItem {
  width: 20%;
}

@media (max-width: 899px) {
  .productComparison-navItem {
    width: 25%;
  }
}

@media (max-width: 719px) {
  .productComparison-navItem {
    width: 33.3%;
  }
}

@media (max-width: 479px) {
  .productComparison-navItem {
    width: 50%;
  }
}

.productComparison-navItem-label {
  display: block;
  padding: 0.75rem;
  cursor: pointer;
}

.productComparison-navItem-label span {
  font-size: 1.6rem;
  color: #464646;
  text-transform: uppercase;
}

.productComparison-navItem-label span:before {
  content: '✓';
  display: inline-block;
  width: 1.2em;
  height: 1.2em;
  margin-right: 1rem;
  line-height: 1.2em;
  text-align: center;
  vertical-align: middle;
  color: transparent;
  border: 1px solid #7d7d7d;
  -webkit-transition: 0.24s ease;
  transition: 0.24s ease;
}

.productComparison-navItem-label input[type="checkbox"] {
  display: none;
}

.productComparison-navItem-label input[type="checkbox"]:checked + span::before {
  color: white;
  background: #f1b204;
  border-color: #f1b204;
}

.productComparison-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  position: relative;
  border-top: 2px solid #bdbdbd;
}

.productComparison-content-sliderControls {
  position: absolute;
  z-index: 8;
  top: 20.66667rem;
  left: 24rem;
  height: 8rem;
  width: calc(100% - 24rem);
  pointer-events: none;
}

@media (max-width: 539px) {
  .productComparison-content-sliderControls {
    left: 18rem;
    width: calc(100% - 18rem);
  }
}

.productComparison-content-sliderControls .slider-arrow {
  position: absolute;
  height: 100%;
  width: 4rem;
  padding: 2rem 0;
  pointer-events: all;
}

.productComparison-content-sliderControls .slider-arrow svg, .productComparison-content-sliderControls .slider-arrow use {
  width: 100%;
  height: 100%;
}

.productComparison-content-sliderControls .slider-arrow use {
  fill: rgba(0, 0, 0, 0.2);
  -webkit-transition: 0.18s ease;
  transition: 0.18s ease;
}

.productComparison-content-sliderControls .slider-arrow:hover use, .productComparison-content-sliderControls .slider-arrow:focus use, .productComparison-content-sliderControls .slider-arrow:active use {
  fill: rgba(0, 0, 0, 0.4);
}

.productComparison-content-sliderControls .slider-arrow.t-prev {
  right: calc(100% + 1rem);
}

.productComparison-content-sliderControls .slider-arrow.t-next {
  right: 0;
}

.productComparison-content-headers {
  position: relative;
  z-index: 5;
  width: 24rem;
  padding-top: 28.66667rem;
}

.productComparison-content-headers li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  height: 7.5rem;
  padding: 0 1rem 0 2.5rem;
  line-height: 2.1rem;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  border-top: 1px solid #bdbdbd;
}

.productComparison-content-headers li.s-highlight {
  background-color: #f5f5f5;
}

.productComparison-content-headers::after {
  content: "";
  position: absolute;
  top: 0;
  left: 100%;
  width: 4rem;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.08)), to(transparent));
  background: linear-gradient(to right, rgba(0, 0, 0, 0.08), transparent);
  pointer-events: none;
}

.productComparison-content-columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: calc(100% - 24rem);
}

@media (max-width: 539px) {
  .productComparison-content-columns {
    width: calc(100% - 18rem);
  }
}

.productComparison-content-columns .slick-track {
  margin: 0;
}

.productComparison-content-column {
  padding-top: 2.66667rem;
  text-align: center;
  padding-bottom: 5rem;
}

.productComparison-content-column:hover {
  background-color: #f5f5f5;
}

.productComparison-content-column-header a {
  display: block;
}

.productComparison-content-column-header img {
  display: block;
  margin: 0 auto;
  height: 18rem;
  width: 18rem;
}

.productComparison-content-column-header h2 {
  overflow: hidden;
  height: 8rem;
  line-height: 8rem;
  margin: 0;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 2.1rem;
}

.productComparison-content-column-header h2 a {
  display: block;
  text-decoration: underline;
  -webkit-text-decoration-color: transparent;
          text-decoration-color: transparent;
}

.productComparison-content-column-header h2 a:hover, .productComparison-content-column-header h2 a:focus, .productComparison-content-column-header h2 a:active {
  -webkit-text-decoration-color: black;
          text-decoration-color: black;
}

.productComparison-content-column-specs li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 7.5rem;
  line-height: 2.1rem;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  border-top: 1px solid #bdbdbd;
}

.productComparison-content-column-specs li.s-highlight {
  background-color: #f5f5f5;
}

.productComparison-content-column-specs li.s-hovering {
  background-color: #e0e0e0;
}

.productComparison-content-column-link {
  display: block;
  padding: 1em 0;
  font-size: 1.8rem;
  text-transform: uppercase;
}

.productComparison-content-column-link:hover, .productComparison-content-column-link:focus, .productComparison-content-column-link:active {
  background-color: #ffd300;
  color: black;
}

body.error404 .siteContent {
  background-color: black;
  color: white;
}

.notFound {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 50vh;
  text-align: center;
}

.notFound-header {
  margin: 4rem 0;
}

.notFound-header-404 {
  color: #9e9e9e;
  font-size: 8rem;
}

.notFound-text {
  max-width: 720px;
  font-size: 2rem;
}

.notFound a.button {
  margin: 2rem;
  color: black;
}

html.country-cn, html.country-cn body {
  background-color: #464646;
}

html.country-cn .siteContent {
  -webkit-box-shadow: 0 5px 40px rgba(0, 0, 0, 0.25), 0 2px 8px rgba(0, 0, 0, 0.25);
          box-shadow: 0 5px 40px rgba(0, 0, 0, 0.25), 0 2px 8px rgba(0, 0, 0, 0.25);
}

html.country-cn .shead-dt,
html.country-cn .siteFooter {
  background-color: #464646;
}

html.country-cn .siteFooter::after {
  background-color: #464646;
}

html.country-cn .shead-dt-selectorMenu,
html.country-cn .sub-menu,
html.country-cn .lookup {
  -webkit-box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2), 0 5px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2), 0 5px 30px rgba(0, 0, 0, 0.1);
}

html.country-cn .lookup {
  background-color: #535353;
}

html.country-cn .regions {
  background-color: #464646;
}

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