.select2-container {
  box-sizing: border-box;
  display: inline-block;
  margin: 0;
  position: relative;
  vertical-align: middle;
}

.select2-container .select2-selection--single {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  height: 28px;
  -moz-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  display: block;
  padding-left: 8px;
  padding-right: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.select2-container .select2-selection--single .select2-selection__clear {
  background-color: transparent;
  border: none;
  font-size: 1em;
}

.select2-container[dir=rtl] .select2-selection--single .select2-selection__rendered {
  padding-right: 8px;
  padding-left: 20px;
}

.select2-container .select2-selection--multiple {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  min-height: 32px;
  -moz-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}

.select2-container .select2-selection--multiple .select2-selection__rendered {
  display: inline;
  list-style: none;
  padding: 0;
}

.select2-container .select2-selection--multiple .select2-selection__clear {
  background-color: transparent;
  border: none;
  font-size: 1em;
}

.select2-container .select2-search--inline .select2-search__field {
  box-sizing: border-box;
  border: none;
  font-size: 100%;
  margin-top: 5px;
  margin-left: 5px;
  padding: 0;
  max-width: 100%;
  resize: none;
  height: 18px;
  vertical-align: bottom;
  font-family: sans-serif;
  overflow: hidden;
  word-break: keep-all;
}

.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

.select2-dropdown {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  box-sizing: border-box;
  display: block;
  position: absolute;
  left: -100000px;
  width: 100%;
  z-index: 1051;
}

.select2-results {
  display: block;
}

.select2-results__options {
  list-style: none;
  margin: 0;
  padding: 0;
}

.select2-results__option {
  padding: 6px;
  -moz-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}

.select2-results__option--selectable {
  cursor: pointer;
}

.select2-container--open .select2-dropdown {
  left: 0;
}

.select2-container--open .select2-dropdown--above {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--open .select2-dropdown--below {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-search--dropdown {
  display: block;
  padding: 4px;
}

.select2-search--dropdown .select2-search__field {
  padding: 4px;
  width: 100%;
  box-sizing: border-box;
}

.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

.select2-search--dropdown.select2-search--hide {
  display: none;
}

.select2-close-mask {
  border: 0;
  margin: 0;
  padding: 0;
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  min-height: 100%;
  min-width: 100%;
  height: auto;
  width: auto;
  opacity: 0;
  z-index: 99;
  background-color: #fff;
  filter: alpha(opacity=0);
}

.select2-hidden-accessible {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important;
}

.select2-container--default .select2-selection--single {
  background-color: #fff;
  border: 1px solid #aaa;
  border-radius: 4px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 28px;
}

.select2-container--default .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  height: 26px;
  margin-right: 20px;
  padding-right: 0px;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #999;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 26px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0;
}

.select2-container--default[dir=rtl] .select2-selection--single .select2-selection__clear {
  float: left;
}

.select2-container--default[dir=rtl] .select2-selection--single .select2-selection__arrow {
  left: 1px;
  right: auto;
}

.select2-container--default.select2-container--disabled .select2-selection--single {
  background-color: #eee;
  cursor: default;
}

.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear {
  display: none;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px;
}

.select2-container--default .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text;
  padding-bottom: 5px;
  padding-right: 5px;
  position: relative;
}

.select2-container--default .select2-selection--multiple.select2-selection--clearable {
  padding-right: 25px;
}

.select2-container--default .select2-selection--multiple .select2-selection__clear {
  cursor: pointer;
  font-weight: bold;
  height: 20px;
  margin-right: 10px;
  margin-top: 5px;
  position: absolute;
  right: 0;
  padding: 1px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #aaa;
  border-radius: 4px;
  box-sizing: border-box;
  display: inline-block;
  margin-left: 5px;
  margin-top: 5px;
  padding: 0;
  padding-left: 20px;
  position: relative;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: bottom;
  white-space: nowrap;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__display {
  cursor: default;
  padding-left: 2px;
  padding-right: 5px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  background-color: transparent;
  border: none;
  border-right: 1px solid #aaa;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  color: #999;
  cursor: pointer;
  font-size: 1em;
  font-weight: bold;
  padding: 0 4px;
  position: absolute;
  left: 0;
  top: 0;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover, .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:focus {
  background-color: #f1f1f1;
  color: #333;
  outline: none;
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto;
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice__display {
  padding-left: 5px;
  padding-right: 2px;
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove {
  border-left: 1px solid #aaa;
  border-right: none;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__clear {
  float: left;
  margin-left: 10px;
  margin-right: auto;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
  border: solid black 1px;
  outline: 0;
}

.select2-container--default.select2-container--disabled .select2-selection--multiple {
  background-color: #eee;
  cursor: default;
}

.select2-container--default.select2-container--disabled .select2-selection__choice__remove {
  display: none;
}

.select2-container--default.select2-container--open.select2-container--above .select2-selection--single, .select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-container--default.select2-container--open.select2-container--below .select2-selection--single, .select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
}

.select2-container--default .select2-search--inline .select2-search__field {
  background: transparent;
  border: none;
  outline: 0;
  box-shadow: none;
  -webkit-appearance: textfield;
}

.select2-container--default .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto;
}

.select2-container--default .select2-results__option .select2-results__option {
  padding-left: 1em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__group {
  padding-left: 0;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -1em;
  padding-left: 2em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -2em;
  padding-left: 3em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -3em;
  padding-left: 4em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -4em;
  padding-left: 5em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -5em;
  padding-left: 6em;
}

.select2-container--default .select2-results__option--group {
  padding: 0;
}

.select2-container--default .select2-results__option--disabled {
  color: #999;
}

.select2-container--default .select2-results__option--selected {
  background-color: #ddd;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #5897fb;
  color: white;
}

.select2-container--default .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px;
}

.select2-container--classic .select2-selection--single {
  background-color: #f7f7f7;
  border: 1px solid #aaa;
  border-radius: 4px;
  outline: 0;
  background-image: linear-gradient(to bottom, #fff 50%, #eee 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFFFF", endColorstr="#FFEEEEEE", GradientType=0);
}

.select2-container--classic .select2-selection--single:focus {
  border: 1px solid #5897fb;
}

.select2-container--classic .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 28px;
}

.select2-container--classic .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  height: 26px;
  margin-right: 20px;
}

.select2-container--classic .select2-selection--single .select2-selection__placeholder {
  color: #999;
}

.select2-container--classic .select2-selection--single .select2-selection__arrow {
  background-color: #ddd;
  border: none;
  border-left: 1px solid #aaa;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  height: 26px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px;
  background-image: linear-gradient(to bottom, #eee 50%, #ccc 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFEEEEEE", endColorstr="#FFCCCCCC", GradientType=0);
}

.select2-container--classic .select2-selection--single .select2-selection__arrow b {
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0;
}

.select2-container--classic[dir=rtl] .select2-selection--single .select2-selection__clear {
  float: left;
}

.select2-container--classic[dir=rtl] .select2-selection--single .select2-selection__arrow {
  border: none;
  border-right: 1px solid #aaa;
  border-radius: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  left: 1px;
  right: auto;
}

.select2-container--classic.select2-container--open .select2-selection--single {
  border: 1px solid #5897fb;
}

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow {
  background: transparent;
  border: none;
}

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px;
}

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  background-image: linear-gradient(to bottom, #fff 0%, #eee 50%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFFFF", endColorstr="#FFEEEEEE", GradientType=0);
}

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background-image: linear-gradient(to bottom, #eee 50%, #fff 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFEEEEEE", endColorstr="#FFFFFFFF", GradientType=0);
}

.select2-container--classic .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text;
  outline: 0;
  padding-bottom: 5px;
  padding-right: 5px;
}

.select2-container--classic .select2-selection--multiple:focus {
  border: 1px solid #5897fb;
}

.select2-container--classic .select2-selection--multiple .select2-selection__clear {
  display: none;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #aaa;
  border-radius: 4px;
  display: inline-block;
  margin-left: 5px;
  margin-top: 5px;
  padding: 0;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__display {
  cursor: default;
  padding-left: 2px;
  padding-right: 5px;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove {
  background-color: transparent;
  border: none;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  color: #888;
  cursor: pointer;
  font-size: 1em;
  font-weight: bold;
  padding: 0 4px;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #555;
  outline: none;
}

.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto;
}

.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice__display {
  padding-left: 5px;
  padding-right: 2px;
}

.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.select2-container--classic.select2-container--open .select2-selection--multiple {
  border: 1px solid #5897fb;
}

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--classic .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
  outline: 0;
}

.select2-container--classic .select2-search--inline .select2-search__field {
  outline: 0;
  box-shadow: none;
}

.select2-container--classic .select2-dropdown {
  background-color: #fff;
  border: 1px solid transparent;
}

.select2-container--classic .select2-dropdown--above {
  border-bottom: none;
}

.select2-container--classic .select2-dropdown--below {
  border-top: none;
}

.select2-container--classic .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto;
}

.select2-container--classic .select2-results__option--group {
  padding: 0;
}

.select2-container--classic .select2-results__option--disabled {
  color: grey;
}

.select2-container--classic .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #3875d7;
  color: #fff;
}

.select2-container--classic .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px;
}

.select2-container--classic.select2-container--open .select2-dropdown {
  border-color: #5897fb;
} /* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

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

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

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

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

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

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

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

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

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}

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

a img {
  border: none;
}

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

* {
  box-sizing: border-box;
  outline: none !important;
}

.clearfix::after {
  content: " ";
  clear: both;
  display: block;
  height: 0;
  overflow: hidden;
  visibility: hidden;
}

*::-webkit-input-placeholder {
  color: #666;
  opacity: 1;
}

*:-moz-placeholder {
  color: #666;
  opacity: 1;
}

*::-moz-placeholder {
  color: #666;
  opacity: 1;
}

*:-ms-input-placeholder {
  color: #666;
  opacity: 1;
}

input::-webkit-input-placeholder {
  opacity: 1;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

input::-moz-placeholder {
  opacity: 1;
  -moz-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

input:-moz-placeholder {
  opacity: 1;
  -moz-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

input:-ms-input-placeholder {
  opacity: 1;
  -ms-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

input:focus::-webkit-input-placeholder {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

input:focus::-moz-placeholder {
  opacity: 0;
  -moz-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

input:focus:-moz-placeholder {
  opacity: 0;
  -moz-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

input:focus:-ms-input-placeholder {
  opacity: 0;
  -ms-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

textarea::-webkit-input-placeholder {
  opacity: 1;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

textarea::-moz-placeholder {
  opacity: 1;
  -moz-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

textarea:-moz-placeholder {
  opacity: 1;
  -moz-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

textarea:-ms-input-placeholder {
  opacity: 1;
  -ms-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

textarea:focus::-webkit-input-placeholder {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

textarea:focus::-moz-placeholder {
  opacity: 0;
  -moz-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

textarea:focus:-moz-placeholder {
  opacity: 0;
  -moz-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

textarea:focus:-ms-input-placeholder {
  opacity: 0;
  -ms-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

@font-face {
  font-family: "mononoki";
  src: url(/fonts/mononoki-Regular.eot?5d66ebb3067347c2a49abebc5c798e9c);
  src: local("mononoki Regular"), local("mononoki-Regular"), url(/fonts/mononoki-Regular.eot?5d66ebb3067347c2a49abebc5c798e9c?#iefix) format("embedded-opentype"), url(/fonts/mononoki-Regular.woff2?fd7b7728d6b9f78b832736f0ec14f1db) format("woff2"), url(/fonts/mononoki-Regular.woff?f50422ad8bb8ea55e5e4fce30a49f2f9) format("woff"), url(/fonts/mononoki-Regular.ttf?528338f703269c5a90852551a0767cdd) format("truetype"), url(/fonts/mononoki-Regular.svg?4b4624057b421423739abdb94152ee10#mononoki-Regular) format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "mononoki";
  src: url(/fonts/mononoki-Bold.eot?5cfbde1f3e31f0b5b09558c14d7bf2ec);
  src: local("mononoki Bold"), local("mononoki-Bold"), url(/fonts/mononoki-Bold.eot?5cfbde1f3e31f0b5b09558c14d7bf2ec?#iefix) format("embedded-opentype"), url(/fonts/mononoki-Bold.woff2?24f8d02c4769dd330490ac56c0110767) format("woff2"), url(/fonts/mononoki-Bold.woff?677de9df5457eb6652807e0e11389f63) format("woff"), url(/fonts/mononoki-Bold.ttf?2cd4fe254337605dac60e0f69ea28ef5) format("truetype"), url(/fonts/mononoki-Bold.svg?2f49dae927dd274a37a29674bc05db11#mononoki-Bold) format("svg");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Countach";
  src: url(/fonts/Countach-Light.eot?f79513956c4d80a952c46d74719de9b7);
  src: local("Countach Light"), local("Countach-Light"), url(/fonts/Countach-Light.eot?f79513956c4d80a952c46d74719de9b7?#iefix) format("embedded-opentype"), url(/fonts/Countach-Light.woff2?4ea98763b3ad1273056fa34b45106fe9) format("woff2"), url(/fonts/Countach-Light.woff?6ce2bfb18e7563bafa0ddfc5d1e93798) format("woff"), url(/fonts/Countach-Light.ttf?423d204324e28872fe2434dd60a174ce) format("truetype"), url(/fonts/Countach-Light.svg?24e578888f0d156512479868471cee25#Countach-Light) format("svg");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Countach";
  src: url(/fonts/Countach-Regular.eot?49adc3f0eb24f1888b02ea976d76520f);
  src: local("Countach Regular"), local("Countach-Regular"), url(/fonts/Countach-Regular.eot?49adc3f0eb24f1888b02ea976d76520f?#iefix) format("embedded-opentype"), url(/fonts/Countach-Regular.woff2?5f03b1f9c4b74e85c77afb8978467e4b) format("woff2"), url(/fonts/Countach-Regular.woff?e9fa46a76f16d7228a8c1c418ab0c6f3) format("woff"), url(/fonts/Countach-Regular.ttf?a5a83635b5847cab7a9eadb8cbf6a0ea) format("truetype"), url(/fonts/Countach-Regular.svg?8be98381feaccbd86a4558c41e588f02#Countach-Regular) format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Countach";
  src: url(/fonts/Countach-Bold.eot?c14f80d8f8c75af61cff56e1409a5985);
  src: local("Countach Bold"), local("Countach-Bold"), url(/fonts/Countach-Bold.eot?c14f80d8f8c75af61cff56e1409a5985?#iefix) format("embedded-opentype"), url(/fonts/Countach-Bold.woff2?3ea594665f52ef1400391c2b8872bf76) format("woff2"), url(/fonts/Countach-Bold.woff?9f5ebfc1e051c5a2316e2f696494f049) format("woff"), url(/fonts/Countach-Bold.ttf?49625ab9ded705da68bdbf3d8f03aaa3) format("truetype"), url(/fonts/Countach-Bold.svg?06d687eba74953162e257a181416ccce#Countach-Bold) format("svg");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
.header {
  width: 100%;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 10;
  background: rgba(0, 0, 0, 0.2);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.header__search {
  cursor: pointer;
  display: inline-block;
}
.header__search svg {
  width: 20px;
  height: 20px;
}
.header__search svg path {
  fill: #ffffff;
  transition: fill 0.3s ease-in-out;
}
.header__search:hover svg path {
  fill: #BC0018;
}
.header-pow {
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
}
.header-pow svg {
  width: 102px;
  height: 30px;
}
.header-burger {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.header-burger span {
  width: 15px;
  height: 2px;
  background: #ffffff;
}
.header-burger span + span {
  margin-top: 3px;
}
.header:before, .header:after {
  position: absolute;
  width: 18px;
  height: 60px;
  background: url("/themes/default/img/svg/flag.svg") center center no-repeat;
  background-size: cover;
  content: "";
  bottom: 50%;
  transform: translateY(50%);
}
.header:before {
  left: 0;
}
.header:after {
  right: 0;
}
.header-wrap {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 35px;
  padding-bottom: 35px;
}
.header-logo {
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
}
.header-logo svg {
  width: 90px;
  height: 25px;
}
.header-logo svg path {
  fill: #ffffff;
  transition: fill 0.3s ease-in-out;
}
.header-logo:hover svg path {
  fill: #BC0018;
}
.header-line {
  max-width: 265px;
  height: 2px;
  width: 100%;
  background: #ffffff;
  margin-left: 32px;
  margin-right: 32px;
  display: inline-block;
}
.header-line.wide {
  max-width: 455px;
}
.header-line.short {
  max-width: 57px;
}
.header-lang {
  display: inline-block;
  position: relative;
}
.header-lang a {
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
  font-family: "Countach", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  text-align: center;
  color: #ffffff;
  transition: color 0.3s ease-in-out;
}
.header-lang a:hover {
  color: #BC0018;
}
.header-lang-dropdown {
  opacity: 0;
  visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: absolute;
  top: calc(-100% + 43px);
  left: 50%;
  transform: translate(-50%, -10px);
  transition: all 0.3s ease-in-out;
  background: rgba(0, 0, 0, 0.8);
  padding-left: 5px;
  padding-right: 5px;
}
.header-lang-dropdown a + a {
  margin-top: 4px;
}
.header-lang:hover .header-lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}
.header-pages {
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-pages-item {
  font-family: "Countach", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #ffffff;
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  transition: color 0.3s ease-in-out;
  white-space: nowrap;
}
.header-pages-item:hover {
  color: #BC0018;
}
.header-pages-item + .header-pages-item {
  margin-left: 39px;
}
.header-pages-menu {
  margin-left: 39px;
  margin-right: 39px;
  position: relative;
  display: inline-block;
}
.header-pages-menu:hover .header-pages-menu-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.header-pages-menu-dropdown {
  opacity: 0;
  background: rgba(0, 0, 0, 0.8);
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease-in-out;
  position: absolute;
  left: 0;
  top: calc(-100% + 50px);
  padding: 0 5px 5px 16px;
  border-left: 2px solid #FFFFFF;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
}
.header-pages-menu-dropdown a {
  white-space: nowrap;
  font-family: "Countach", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #ffffff;
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  transition: color 0.3s ease-in-out;
}
.header-pages-menu-dropdown a:hover {
  color: #BC0018;
}
.header-pages-menu-dropdown a + a {
  margin-top: 8px;
}
.header.white {
  background: rgba(255, 255, 255, 0.2);
}
.header.white .burger-menu-close span {
  background: #000000;
}
.header.white .burger-menu-wrap {
  background: #ffffff;
}
.header.white .burger-menu-wrap a {
  color: #000000;
}
.header.white .burger-menu-wrap .subitem {
  border-color: #000000;
}
.header.white .search__bar {
  background: rgba(255, 255, 255, 0.5);
}
.header.white .search__bar__wrap input {
  border-color: #000000;
  background: rgba(255, 255, 255, 0.8);
  color: #000000;
}
.header.white .search__bar__wrap button svg path {
  fill: #000000;
}
.header.white .search__bar__wrap button:hover svg path {
  fill: #BC0018;
}
.header.white .header-burger span {
  background: #000000;
}
.header.white .header__search svg path {
  fill: #000000;
}
.header.white .header-pages-menu-dropdown {
  background: rgba(255, 255, 255, 0.8);
}
.header.white .header-lang-dropdown {
  background: rgba(255, 255, 255, 0.8);
}
.header.white .header-logo svg path {
  fill: #000000;
}
.header.white .header-logo:hover svg path {
  fill: #BC0018;
}
.header.white .header-lang a {
  color: #000000;
}
.header.white .header-lang a:hover {
  color: #BC0018;
}
.header.white .header-pages-item {
  color: #000000;
}
.header.white .header-pages-item:hover {
  color: #BC0018;
}
.header.white .header-pages-menu-dropdown {
  border-color: #000000;
}
.header.white .header-pages-menu-dropdown a {
  color: #000000;
}
.header.white .header-pages-menu-dropdown a:hover {
  color: #BC0018;
}
.header.white .header-line {
  background: #000000;
}

.search__bar {
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease-in-out;
  width: 100%;
  position: fixed;
  top: 101px;
  left: 0;
  right: 0;
  z-index: 9;
  background: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.search__bar.active {
  opacity: 1;
  visibility: visible;
}
.search__bar__wrap {
  width: 100%;
  padding: 24px 0;
  position: relative;
}
.search__bar__wrap input {
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 2px solid #ffffff;
  padding: 12px 36px 14px 24px;
  font-family: "Countach", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #ffffff;
}
.search__bar__wrap button {
  position: absolute;
  right: 12px;
  bottom: 50%;
  transform: translateY(50%);
  cursor: pointer;
  display: inline-block;
  padding: 0;
  margin: 0;
  background: transparent;
  border: none;
  outline: none;
  z-index: 1;
}
.search__bar__wrap button svg {
  width: 24px;
  height: 24px;
}
.search__bar__wrap button svg path {
  fill: #ffffff;
  transition: fill 0.3s ease-in-out;
}
.search__bar__wrap button:hover svg path {
  fill: #BC0018;
}

.burger-menu {
  opacity: 0;
  visibility: hidden;
  transform: translateX(-100%);
  transition: all 0.3s ease-in-out;
  width: 100vw;
  height: 100vh;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 12;
}
.burger-menu-close {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: absolute;
  right: 20px;
  top: 30px;
}
.burger-menu-close span {
  width: 15px;
  height: 2px;
  background: #ffffff;
}
.burger-menu-close span + span {
  margin-top: 4px;
}
.burger-menu-close span:first-child {
  transform: rotate(45deg) translateY(4px);
}
.burger-menu-close span:last-child {
  transform: rotate(-45deg) translateY(-4px);
}
.burger-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
.burger-menu-wrap {
  width: 100%;
  height: 100%;
  background: #000000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding: 20px;
}
.burger-menu-wrap a {
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
  font-family: "Countach", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #FFFFFF;
}
.burger-menu-wrap a + a {
  margin-top: 24px;
}
.burger-menu-wrap .subitem {
  margin-top: 24px;
  margin-bottom: 24px;
  padding-left: 16px;
  border-left: 2px solid #FFFFFF;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}
.burger-menu-wrap .subitem a + a {
  margin-top: 16px;
}

@media screen and (max-width: 1400px) {
  .header:before, .header:after {
    width: 8px;
  }
}
@media screen and (max-width: 1200px) {
  .search__bar {
    top: 71px;
  }
  .header-lang {
    order: 5;
  }
  .header-logo {
    order: 4;
  }
  .header-pow {
    order: 3;
  }
  .header-burger {
    order: 1;
  }
  .header__search {
    order: 2;
  }
  .header-wrap {
    flex-direction: row-reverse;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .header-burger {
    display: flex;
  }
  .header:before, .header:after {
    width: 4px;
    height: 30px;
  }
  .header-pages {
    display: none;
  }
  .header-line {
    display: none;
  }
}
.promo {
  width: 100%;
  margin-top: 96px;
}
.promo__wrap, .promo__slider {
  width: 100%;
}
.promo__wrap {
  position: relative;
}
.promo__slider-item {
  width: 100%;
  height: calc(100vh - 96px);
  position: relative;
}
.promo__slider-item:after {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  content: "";
  z-index: 1;
}
.promo__slider-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: grayscale(1);
}
.promo__content {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
}
.promo__content-wrap {
  width: 100%;
  padding: 100px 0;
}
.promo__content-inner {
  font-family: "Countach", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 147px;
  line-height: 1;
  letter-spacing: 0.015em;
  color: #ffffff;
  max-width: 90%;
}
.promo__content-inner__word {
  color: #BC0018;
}

@media screen and (max-width: 1550px) {
  .promo__content-wrap {
    padding: 60px 0;
  }
}
@media screen and (max-width: 1400px) {
  .promo__content-inner {
    max-width: 60%;
    font-size: 92px;
  }
}
@media screen and (max-width: 1200px) {
  .promo {
    margin-top: 66px;
  }
  .promo__slider-item {
    height: calc(100vh - 66px);
  }
  .promo__content-inner {
    max-width: 610px;
    font-size: 92px;
  }
}
@media screen and (max-width: 860px) {
  .promo__content-wrap {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .promo__content-inner {
    font-size: 32px;
    max-width: 265px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
  }
  .promo__content-inner__dot {
    display: none !important;
  }
  .promo__slider-item {
    height: 325px;
  }
}
.about {
  width: 100%;
}
.about-wrap {
  width: 100%;
  padding-top: 48px;
  padding-bottom: 134px;
}
.about-wrap h2 {
  font-family: "Countach", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 80px;
  line-height: 100px;
  letter-spacing: 0.015em;
  color: #ffffff;
  margin-bottom: 56px;
}
.about-desc {
  max-width: 1071px;
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 32px;
  color: #ffffff;
  padding-left: 77px;
  position: relative;
}
.about-desc:before {
  width: 29px;
  height: calc(100% + 30px);
  position: absolute;
  left: 0;
  bottom: 50%;
  transform: translateY(50%);
  background: url("/themes/default/img/svg/brace-left-m.svg") center center no-repeat;
  background-size: contain;
  content: "";
}
.about-desc-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.about-desc-container:nth-child(odd) {
  justify-content: flex-end;
}
.about-desc-container:nth-child(odd) .about-desc {
  max-width: 824px;
  padding-left: 0;
  padding-right: 77px;
}
.about-desc-container:nth-child(odd) .about-desc:before {
  display: none;
  left: auto;
  right: 0;
  background: url("/themes/default/img/svg/brace-right-m.svg") center center no-repeat;
  background-size: contain;
}
.about-desc-container + .about-desc-container {
  margin-top: 72px;
}

@media screen and (max-width: 1200px) {
  .about-wrap {
    padding-top: 24px;
    padding-bottom: 24px;
  }
  .about-wrap h2 {
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 16px;
  }
  .about-desc {
    padding-left: 36px;
    font-size: 14px;
    line-height: 18px;
  }
  .about-desc:before {
    height: 100%;
    width: 20px;
    background-size: cover;
  }
  .about-desc-container:nth-child(odd) {
    justify-content: flex-start;
  }
  .about-desc-container:nth-child(odd) .about-desc {
    max-width: none;
    padding-right: 36px;
  }
  .about-desc-container + .about-desc-container {
    margin-top: 16px;
  }
}
.goal {
  width: 100%;
  position: relative;
}
.goal-bg {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 1;
}
.goal-bg .overlay {
  position: absolute;
  left: 0;
  bottom: 0;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(360deg, rgba(0, 0, 0, 0) 91.19%, #000000 100%), linear-gradient(180deg, rgba(0, 0, 0, 0) 31.31%, #000000 100%), linear-gradient(90deg, #000000 0%, rgba(0, 0, 0, 0) 19.2%), linear-gradient(270deg, #000000 0%, rgba(0, 0, 0, 0) 58.37%);
  z-index: 2;
}
.goal-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: grayscale(1);
}
.goal-wrap {
  width: 100%;
  padding-top: 48px;
  padding-bottom: 121px;
  position: relative;
  z-index: 3;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
}
.goal-wrap h2 {
  font-family: "Countach", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 80px;
  line-height: 100px;
  letter-spacing: 0.015em;
  color: #ffffff;
}
.goal-wrap h3 {
  margin-top: -104px;
  font-family: "Countach", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 64px;
  line-height: 52px;
  letter-spacing: 0.015em;
  color: #ffffff;
  max-width: 460px;
}
.goal-wrap h3 span {
  color: #BC0018;
}
.goal-item {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.goal-item-wrap {
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex-direction: column;
}
.goal-item span {
  font-family: "Countach", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 120px;
  line-height: 104px;
  letter-spacing: 0.015em;
  color: #ffffff;
  margin-right: 24px;
}
.goal-item p {
  font-family: "Countach", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  color: #FFFFFF;
  max-width: 420px;
  margin-top: 13px;
}
.goal-item + .goal-item {
  margin-top: 64px;
}

@media screen and (max-width: 1200px) {
  .goal-wrap {
    padding-top: 24px;
    padding-bottom: 24px;
  }
  .goal-wrap h2 {
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 16px;
  }
  .goal-wrap h3 {
    margin-top: 16px;
    font-size: 32px;
    line-height: 40px;
  }
  .goal-item-wrap {
    align-items: flex-start;
  }
  .goal-item span {
    font-size: 80px;
    line-height: 76px;
  }
  .goal-item p {
    font-size: 16px;
    line-height: 20px;
  }
  .goal-item + .goal-item {
    margin-top: 16px;
  }
}
.categories {
  width: 100%;
  padding-top: 80px;
  padding-bottom: 40px;
}
.categories__action {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
@media screen and (max-width: 1180px) {
  .categories__action {
    flex-direction: column;
  }
}
.categories__action-button {
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
@media screen and (max-width: 1180px) {
  .categories__action-button {
    justify-content: space-between;
    max-width: 275px;
    width: 100%;
  }
}
.categories__action-button__logo {
  width: auto;
  height: 50px;
}
.categories__action-button__decorator {
  height: 50px;
  width: auto;
}
.categories__action-button__decorator path {
  transition: fill 0.3s ease-in-out;
}
.categories__action-button__icon {
  height: 32px;
  width: 32px;
}
.categories__action-button__icon path {
  fill: #ffffff;
  transition: fill 0.3s ease-in-out;
}
.categories__action-button:hover .categories__action-button__decorator path {
  fill: #BC0018;
}
.categories__action-button:hover .categories__action-button__icon path {
  fill: #BC0018;
}
.categories-wrap {
  width: 100%;
}
.categories-wrap--blank {
  padding-top: 50px;
  min-height: calc(100dvh - 202px);
}
.categories-wrap h2 {
  font-family: "Countach", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 80px;
  line-height: 100px;
  letter-spacing: 0.015em;
  color: #ffffff;
  margin-bottom: 48px;
}
.categories-desc {
  max-width: 1151px;
  width: 100%;
  padding-left: 77px;
  padding-right: 77px;
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 32px;
  color: #ffffff;
  position: relative;
}
.categories-desc-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 64px;
}
.categories-desc-container--wide {
  justify-content: center;
}
.categories-desc:before, .categories-desc:after {
  position: absolute;
  bottom: 50%;
  transform: translateY(50%);
  width: 29px;
  height: 100%;
  background-size: cover;
  content: "";
}
.categories-desc:before {
  background: url("/themes/default/img/svg/brace-left-l.svg") center center no-repeat;
  left: 0;
  background-size: contain;
}
.categories-desc:after {
  background: url("/themes/default/img/svg/brace-right-l.svg") center center no-repeat;
  right: 0;
  background-size: contain;
}
.categories-desc--wide {
  font-size: 14px;
  line-height: 18px;
}
.categories-desc--wide:before {
  background-size: cover;
  display: none;
}
.categories-desc--wide:after {
  background-size: cover;
  display: none;
}
.categories-desc--none {
  padding-left: 0;
  padding-right: 0;
  max-width: none;
}
.categories-desc--none:before {
  display: none;
}
.categories-desc--none:after {
  display: none;
}
.categories-item {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  width: 255px;
  transition: width 0.4s ease-in-out;
}
.categories-item a {
  position: absolute;
  bottom: 44px;
  left: 8px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-decoration: none;
  cursor: pointer;
  width: 100%;
  transition: all 0.2s 0.2s ease-in-out;
  padding: 10px 20px;
  opacity: 0;
}
.categories-item a:last-child {
  bottom: 12px;
}
.categories-item a:hover span {
  color: #BC0018;
}
.categories-item a:hover .line {
  background: #BC0018;
}
.categories-item a:hover .line:before, .categories-item a:hover .line:after {
  background: #BC0018;
}
.categories-item a span {
  font-family: "Countach", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  color: #ffffff;
  margin-right: 16px;
  opacity: 0;
  transform: translateX(-100%);
  transition: all 0.3s ease-in-out;
}
.categories-item a .line {
  transform: translateX(-140px);
  height: 2px;
  width: 65px;
  background: #ffffff;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.categories-item a .line:before {
  width: 10px;
  height: 2px;
  position: absolute;
  background: #ffffff;
  right: -2px;
  border-radius: 4px;
  top: 0;
  content: "";
  transform: translateY(calc(-100% - 0.5px)) rotate(35deg);
  transition: background 0.3s ease-in-out;
}
.categories-item a .line:after {
  width: 10px;
  height: 2px;
  position: absolute;
  background: #ffffff;
  right: -2px;
  border-radius: 4px;
  top: 0;
  content: "";
  transform: translateY(calc(100% + 0.5px)) rotate(-35deg);
  transition: background 0.3s ease-in-out;
}
.categories-item-container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.categories-item-wrapper {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.categories-item-container:hover .categories-item {
  width: 195px;
}
.categories-item-container:hover .categories-item a {
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
}
.categories-item-container:hover .categories-item-card span {
  opacity: 0;
}
.categories-item-container .categories-item:hover {
  width: 688px;
}
.categories-item-container .categories-item:hover .categories-item-block {
  animation: open-card 0.3s 0.4s ease-in-out forwards;
}
.categories-item-container .categories-item:hover .categories-item-card span {
  opacity: 1;
}
.categories-item:hover a {
  opacity: 1 !important;
}
.categories-item:hover a .line {
  transform: translateX(0);
  width: calc(100% - 255px);
}
.categories-item:hover a span {
  opacity: 1;
  transform: translateX(0);
}
.categories-item-bg {
  position: absolute;
  z-index: 0;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  overflow: hidden;
}
.categories-item-card {
  width: 255px;
  height: 480px;
  position: relative;
}
.categories-item-card img {
  position: absolute;
  height: 72px;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
  left: 20px;
  top: 32px;
}
.categories-item-card span {
  position: absolute;
  max-width: 130px;
  font-family: "Countach", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 0.015em;
  text-transform: uppercase;
  color: #ffffff;
  top: calc(50% - 28px);
  left: 20px;
  transition: opacity 0.4s ease-in-out;
  opacity: 1;
}
.categories-item-block {
  position: absolute;
  opacity: 0;
  max-width: calc(100% - 180px);
  width: 100%;
  visibility: hidden;
  pointer-events: none;
  align-self: stretch;
  padding: 60px 133px 60px 0;
}
.categories-item-block-content {
  width: 100%;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #ffffff;
  text-align: left;
}
.categories-item-wrap + .categories-item-wrap {
  margin-left: -103px;
}

@keyframes open-card {
  0% {
    opacity: 0;
    visibility: hidden;
  }
  10% {
    position: static;
    pointer-events: auto;
    transform: translateX(100px);
  }
  70% {
    position: static;
    pointer-events: auto;
    opacity: 1;
    visibility: visible;
  }
  100% {
    position: static;
    pointer-events: auto;
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }
}
@media screen and (max-width: 1330px) {
  .categories-item {
    width: 164px;
  }
  .categories-item-block {
    padding: 30px 50px 60px 35px;
  }
  .categories-item-container:hover .categories-item {
    width: 113px;
  }
  .categories-item-container .categories-item:hover {
    width: 633px;
  }
  .categories-item-card {
    width: 164px;
  }
  .categories-item-card span {
    max-width: 95px;
  }
  .categories-item-wrap + .categories-item-wrap {
    margin-left: -44px;
  }
}
@media screen and (max-width: 1200px) {
  .categories {
    padding-top: 24px;
    padding-bottom: 8px;
  }
  .categories-wrap h2 {
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 16px;
  }
  .categories-desc {
    font-size: 14px;
    line-height: 18px;
    padding-left: 36px;
    padding-right: 0;
  }
  .categories-desc-container {
    justify-content: flex-start;
    margin-bottom: 32px;
  }
  .categories-desc:after {
    display: none;
  }
  .categories-desc:before {
    width: 20px;
    background-size: contain;
  }
}
@media screen and (max-width: 1024px) {
  .categories-item {
    width: 100%;
  }
  .categories-item-container:hover .categories-item {
    width: 100%;
  }
  .categories-item-container:hover .categories-item a {
    opacity: 1;
  }
  .categories-item-container:hover .categories-item-card span {
    opacity: 1;
  }
  .categories-item-container .categories-item:hover {
    width: 100%;
  }
  .categories-item-container .categories-item:hover .categories-item-block {
    animation: none;
  }
  .categories-item-container .categories-item:hover .categories-item-card span {
    opacity: 1;
  }
  .categories-item-wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }
  .categories-item-wrap + .categories-item-wrap {
    margin-left: 0;
  }
  .categories-item-card {
    width: 100%;
  }
  .categories-item-card img {
    height: 64px;
  }
  .categories-item-container {
    flex-wrap: wrap;
    width: calc(100% + 16px);
    margin-right: -16px;
  }
  .categories-item-wrap {
    max-width: 33.333%;
    flex: 0 0 33.333%;
    width: 100%;
    padding-left: 8px;
    padding-right: 8px;
    margin-bottom: 16px;
  }
  .categories-item a {
    opacity: 1 !important;
  }
  .categories-item a .line {
    transform: translateX(0);
    width: calc(100% - 205px);
  }
  .categories-item a span {
    opacity: 1;
    transform: translateX(0);
  }
}
@media screen and (max-width: 860px) {
  .categories-item-wrap {
    max-width: 50%;
    flex: 0 0 50%;
  }
}
@media screen and (max-width: 550px) {
  .categories-desc--wide {
    padding-left: 0;
  }
  .categories-desc--wide:before {
    display: none;
  }
  .categories-item-card {
    height: 200px;
  }
  .categories-item-card span {
    max-width: 179px;
    font-size: 24px;
    line-height: 28px;
    top: 24px;
    transform: translateY(0);
  }
  .categories-item-card img {
    left: auto;
    top: 14px;
    right: 22px;
  }
  .categories-item a span {
    font-size: 16px;
    line-height: 20px;
  }
  .categories-item a .line {
    width: calc(100% - 135px);
  }
  .categories-item-wrapper {
    padding-left: 12px;
    padding-right: 12px;
  }
  .categories-item-container {
    width: 100%;
    margin-right: 0;
  }
  .categories-item-wrap {
    max-width: 100%;
    flex: 0 0 100%;
  }
}
.stories {
  width: 100%;
  padding-top: 80px;
  padding-bottom: 50px;
}
.stories-wrap {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.stories-head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}
.stories-head h2 {
  font-family: "Countach", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 80px;
  letter-spacing: 0.015em;
  color: #ffffff;
  margin-right: 64px;
}
.stories-head-dots {
  min-width: 210px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 22px;
  padding-right: 22px;
  position: relative;
}
.stories-head-dots:before, .stories-head-dots:after {
  width: 10px;
  height: 60px;
  background-size: cover;
  position: absolute;
  bottom: 50%;
  transform: translateY(50%);
  content: "";
}
.stories-head-dots:before {
  left: 0;
  background: url("/themes/default/img/svg/brace-left-xs.svg") center center no-repeat;
}
.stories-head-dots:after {
  right: 0;
  background: url("/themes/default/img/svg/brace-right-xs.svg") center center no-repeat;
}
.stories-head-dots .slick-dots {
  display: flex;
  align-items: center;
  justify-content: center;
}
.stories-head-dots .slick-dots li button {
  margin: 0;
  padding: 0;
  outline: none;
  border: none;
  background: transparent;
  font-family: "Countach", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 28px;
  line-height: 32px;
  text-align: center;
  letter-spacing: 0.015em;
  text-transform: uppercase;
  color: #ffffff;
  transition: color 0.3s ease-in-out;
  cursor: pointer;
}
.stories-head-dots .slick-dots li button:hover {
  color: #BC0018;
}
.stories-head-dots .slick-dots li.slick-active button {
  color: #BC0018;
}
.stories-head-dots .slick-dots li + li {
  margin-left: 12px;
}
.stories-head .line {
  height: 3px;
  max-width: 776px;
  width: 100%;
  background: #ffffff;
  position: relative;
}
.stories-head .line:before {
  width: 20px;
  height: 3px;
  position: absolute;
  background: #ffffff;
  right: -3px;
  border-radius: 4px;
  top: 0;
  content: "";
  transform: translateY(calc(-100% - 3px)) rotate(45deg);
}
.stories-head .line:after {
  width: 20px;
  height: 3px;
  position: absolute;
  background: #ffffff;
  right: -3px;
  border-radius: 4px;
  top: 0;
  content: "";
  transform: translateY(calc(100% + 3px)) rotate(-45deg);
}
.stories-head-link {
  font-family: "Countach", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 24px;
  letter-spacing: 0.015em;
  text-transform: uppercase;
  color: #ffffff;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.stories-head-link:hover {
  color: #BC0018;
}
@media screen and (max-width: 550px) {
  .stories-head-link {
    font-size: 20px;
    line-height: 1;
  }
}
.stories-slider {
  width: calc(100% + 26px);
}
.stories-slider-item {
  width: 100%;
  background: #191919;
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
}
.stories-slider-item-wrap {
  padding-left: 13px;
  padding-right: 13px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.stories-slider-item-head {
  text-decoration: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 12px;
}
.stories-slider-item-head:hover span {
  color: #BC0018;
}
.stories-slider-item-head span {
  font-family: "Countach", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  text-align: center;
  color: #ffffff;
  transition: color 0.3s ease-in-out;
}
.stories-slider-item .img-wrap {
  width: 100%;
  height: 240px;
  overflow: hidden;
  display: inline-block;
  text-decoration: none;
}
.stories-slider-item .img-wrap img {
  transition: all 0.3s ease-in-out;
  filter: grayscale(1);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.stories-slider-item-body {
  text-decoration: none;
  background: #191919;
  margin: 24px 28px 0px 28px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  overflow: hidden;
  padding-bottom: 27px;
}
.stories-slider-item-body h3 {
  font-family: "Countach", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 28px;
  line-height: 32px;
  letter-spacing: 0.015em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 12px;
  min-height: 96px;
}
.stories-slider-item-body-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-decoration: none;
  cursor: pointer;
  width: 100%;
  transition: transform 0.4s ease-in-out;
  transform: translateX(-80%);
}
.stories-slider-item-body-link span {
  font-family: "Countach", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  color: #ffffff;
  margin-right: 16px;
  transition: color 0.3s ease-in-out;
}
.stories-slider-item-body-link .line {
  height: 2px;
  width: calc(100% - 134px);
  background: #ffffff;
  position: relative;
  transition: background 0.3s ease-in-out;
}
.stories-slider-item-body-link .line:before {
  width: 10px;
  height: 2px;
  position: absolute;
  background: #ffffff;
  right: -2px;
  border-radius: 4px;
  top: 0;
  content: "";
  transform: translateY(calc(-100% - 1px)) rotate(35deg);
  transition: background 0.3s ease-in-out;
}
.stories-slider-item-body-link .line:after {
  width: 10px;
  height: 2px;
  position: absolute;
  background: #ffffff;
  right: -2px;
  border-radius: 4px;
  top: 0;
  content: "";
  transform: translateY(calc(100% + 1px)) rotate(-35deg);
  transition: background 0.3s ease-in-out;
}
.stories-slider-item-tags {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}
.stories-slider-item-tags a {
  text-decoration: none;
  cursor: pointer;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #BC0018;
}
.stories-slider-item-tags a span {
  font-style: italic;
}
.stories-slider-item-desc {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #ffffff;
  margin-bottom: 21px;
  height: 100px;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.stories-slider-item:hover .img-wrap img {
  transform: scale(1.2);
  filter: grayscale(0);
}
.stories-slider-item:hover .stories-slider-item-body-link {
  transform: translateX(0);
}
.stories-slider-item:hover .stories-slider-item-body-link span {
  color: #BC0018;
}
.stories-slider-item:hover .stories-slider-item-body-link .line {
  background: #BC0018;
}
.stories-slider-item:hover .stories-slider-item-body-link .line:before, .stories-slider-item:hover .stories-slider-item-body-link .line:after {
  background: #BC0018;
}
.stories-slider-item + .stories-slider-item {
  margin-top: 26px;
}

@media screen and (max-width: 1200px) {
  .stories {
    padding-top: 24px;
    padding-bottom: 24px;
  }
  .stories-slider-item-head {
    padding: 8px;
  }
  .stories-slider-item-head span {
    font-size: 16px;
    line-height: 20px;
  }
  .stories-slider-item .img-wrap {
    height: 168px;
  }
  .stories-slider-item-body {
    margin: 16px 16px 0 16px;
    padding-bottom: 16px;
  }
  .stories-slider-item-body h3 {
    font-size: 24px;
    line-height: 28px;
  }
  .stories-slider-item-desc {
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 8px;
    height: 90px;
  }
  .stories-slider-item-tags {
    gap: 4px;
  }
  .stories-slider-item-tags a {
    font-size: 14px;
    line-height: 14px;
  }
  .stories-head {
    margin-bottom: 16px;
  }
  .stories-head h2 {
    font-size: 32px;
    line-height: 40px;
  }
  .stories-head .line {
    display: none;
  }
  .stories-head-dots {
    display: none;
    min-width: 0;
  }
  .stories-head-dots--wide {
    display: flex;
  }
  .stories-head-dots .slick-dots li button {
    font-size: 16px;
    line-height: 20px;
  }
  .stories-head-dots:before, .stories-head-dots:after {
    width: 10px;
    height: 36px;
    background-size: contain;
  }
  .stories-slider-item-body h3 {
    font-size: 17px;
    line-height: 21px;
    min-height: 63px;
  }
  .stories-slider-item-body-link {
    transform: translateX(-75%);
  }
}
.analytics {
  width: 100%;
  padding-top: 80px;
  padding-bottom: 50px;
}
.analytics-wrap {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.analytics-head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}
.analytics-head h2 {
  font-family: "Countach", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 80px;
  letter-spacing: 0.015em;
  color: #ffffff;
  margin-right: 64px;
}
.analytics-head-dots {
  min-width: 210px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 22px;
  padding-right: 22px;
  position: relative;
}
.analytics-head-dots:before, .analytics-head-dots:after {
  width: 10px;
  height: 60px;
  background-size: cover;
  position: absolute;
  bottom: 50%;
  transform: translateY(50%);
  content: "";
}
.analytics-head-dots:before {
  left: 0;
  background: url("/themes/default/img/svg/brace-left-xs.svg") center center no-repeat;
}
.analytics-head-dots:after {
  right: 0;
  background: url("/themes/default/img/svg/brace-right-xs.svg") center center no-repeat;
}
.analytics-head-dots .slick-dots {
  display: flex;
  align-items: center;
  justify-content: center;
}
.analytics-head-dots .slick-dots li button {
  margin: 0;
  padding: 0;
  outline: none;
  border: none;
  background: transparent;
  font-family: "Countach", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 28px;
  line-height: 32px;
  text-align: center;
  letter-spacing: 0.015em;
  text-transform: uppercase;
  color: #ffffff;
  transition: color 0.3s ease-in-out;
  cursor: pointer;
}
.analytics-head-dots .slick-dots li button:hover {
  color: #BC0018;
}
.analytics-head-dots .slick-dots li.slick-active button {
  color: #BC0018;
}
.analytics-head-dots .slick-dots li + li {
  margin-left: 12px;
}
.analytics-head .line {
  height: 3px;
  max-width: 776px;
  width: 100%;
  background: #ffffff;
  position: relative;
  margin-right: 32px;
}
.analytics-head .line:before {
  width: 20px;
  height: 3px;
  position: absolute;
  background: #ffffff;
  right: -3px;
  border-radius: 4px;
  top: 0;
  content: "";
  transform: translateY(calc(-100% - 3px)) rotate(45deg);
}
.analytics-head .line:after {
  width: 20px;
  height: 3px;
  position: absolute;
  background: #ffffff;
  right: -3px;
  border-radius: 4px;
  top: 0;
  content: "";
  transform: translateY(calc(100% + 3px)) rotate(-45deg);
}
.analytics-head-link {
  font-family: "Countach", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 24px;
  letter-spacing: 0.015em;
  text-transform: uppercase;
  color: #ffffff;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.analytics-head-link:hover {
  color: #BC0018;
}
@media screen and (max-width: 550px) {
  .analytics-head-link {
    font-size: 20px;
    line-height: 1;
  }
}
.analytics-slider {
  width: calc(100% + 26px);
}
.analytics-slider-item {
  width: 100%;
  background: #ffffff;
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
}
.analytics-slider-item-wrap {
  padding-left: 13px;
  padding-right: 13px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.analytics-slider-item-head {
  text-decoration: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 12px;
}
.analytics-slider-item-head:hover span {
  color: #BC0018;
}
.analytics-slider-item-head span {
  font-family: "Countach", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  text-align: center;
  color: #ffffff;
  transition: color 0.3s ease-in-out;
}
.analytics-slider-item .img-wrap {
  width: 100%;
  height: 240px;
  overflow: hidden;
  display: inline-block;
  text-decoration: none;
}
.analytics-slider-item .img-wrap img {
  transition: all 0.3s ease-in-out;
  filter: grayscale(1);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.analytics-slider-item-body {
  text-decoration: none;
  background: #ffffff;
  margin: 24px 28px 0px 28px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  overflow: hidden;
  padding-bottom: 27px;
}
.analytics-slider-item-body h3 {
  font-family: "Countach", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 28px;
  line-height: 32px;
  letter-spacing: 0.015em;
  text-transform: uppercase;
  color: #000000;
  margin-bottom: 12px;
  min-height: 96px;
}
.analytics-slider-item-body-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-decoration: none;
  cursor: pointer;
  width: 100%;
  transition: transform 0.4s ease-in-out;
  transform: translateX(-65%);
}
.analytics-slider-item-body-link span {
  font-family: "Countach", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  color: #000000;
  margin-right: 16px;
  transition: color 0.3s ease-in-out;
}
.analytics-slider-item-body-link .line {
  height: 2px;
  width: calc(100% - 134px);
  background: #000000;
  position: relative;
  transition: background 0.3s ease-in-out;
}
.analytics-slider-item-body-link .line:before {
  width: 10px;
  height: 2px;
  position: absolute;
  background: #000000;
  right: -2px;
  border-radius: 4px;
  top: 0;
  content: "";
  transform: translateY(calc(-100% - 1px)) rotate(35deg);
  transition: background 0.3s ease-in-out;
}
.analytics-slider-item-body-link .line:after {
  width: 10px;
  height: 2px;
  position: absolute;
  background: #000000;
  right: -2px;
  border-radius: 4px;
  top: 0;
  content: "";
  transform: translateY(calc(100% + 1px)) rotate(-35deg);
  transition: background 0.3s ease-in-out;
}
.analytics-slider-item-tags {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}
.analytics-slider-item-tags a {
  text-decoration: none;
  cursor: pointer;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #BC0018;
}
.analytics-slider-item-tags a span {
  font-style: italic;
}
.analytics-slider-item-desc {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #000000;
  margin-bottom: 21px;
  height: 100px;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.analytics-slider-item:hover .img-wrap img {
  filter: grayscale(0);
  transform: scale(1.2);
}
.analytics-slider-item:hover .analytics-slider-item-body-link {
  transform: translateX(0);
}
.analytics-slider-item:hover .analytics-slider-item-body-link span {
  color: #BC0018;
}
.analytics-slider-item:hover .analytics-slider-item-body-link .line {
  background: #BC0018;
}
.analytics-slider-item:hover .analytics-slider-item-body-link .line:before, .analytics-slider-item:hover .analytics-slider-item-body-link .line:after {
  background: #BC0018;
}
.analytics-slider-item + .analytics-slider-item {
  margin-top: 26px;
}

@media screen and (max-width: 1200px) {
  .analytics {
    padding-top: 24px;
    padding-bottom: 24px;
  }
  .analytics-slider-item-head {
    padding: 8px;
  }
  .analytics-slider-item-head span {
    font-size: 16px;
    line-height: 20px;
  }
  .analytics-slider-item .img-wrap {
    height: 168px;
  }
  .analytics-slider-item-body {
    margin: 16px 16px 0 16px;
    padding-bottom: 16px;
  }
  .analytics-slider-item-body h3 {
    font-size: 24px;
    line-height: 28px;
  }
  .analytics-slider-item-desc {
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 8px;
    height: 90px;
  }
  .analytics-slider-item-tags {
    gap: 4px;
  }
  .analytics-slider-item-tags a {
    font-size: 14px;
    line-height: 14px;
  }
  .analytics-head {
    margin-bottom: 16px;
  }
  .analytics-head h2 {
    font-size: 32px;
    line-height: 40px;
  }
  .analytics-head .line {
    display: none;
  }
  .analytics-head-dots {
    display: none;
    min-width: 0;
  }
  .analytics-head-dots--wide {
    display: flex;
  }
  .analytics-head-dots .slick-dots li button {
    font-size: 16px;
    line-height: 20px;
  }
  .analytics-head-dots:before, .analytics-head-dots:after {
    width: 10px;
    height: 36px;
    background-size: contain;
  }
  .analytics-slider-item-body h3 {
    font-size: 17px;
    line-height: 21px;
    min-height: 63px;
  }
  .analytics-slider-item-body-link {
    transform: translateX(-50%);
  }
}
.category {
  width: 100%;
  background: #ffffff;
  color: #000000;
  position: relative;
  padding-top: 35px;
}
.category-bg {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 100vh;
  width: 100%;
  z-index: 1;
}
.category-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.category-wrap {
  width: 100%;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.category-banner {
  max-width: 1024px;
  width: 100%;
  margin: 0 auto;
  display: block;
}
.category-banner-container {
  position: relative;
  margin-top: 215px;
  width: 100%;
}
.category-banner-container:before, .category-banner-container:after {
  position: absolute;
  top: 0;
  background-size: cover;
  width: 80px;
  height: 450px;
  content: "";
}
.category-banner-container:before {
  background: url("/themes/default/img/svg/brase-left-xxl.svg") center center no-repeat;
  left: 0;
}
.category-banner-container:after {
  background: url("/themes/default/img/svg/brace-right-xxl.svg") center center no-repeat;
  right: 0;
}
.category-banner-head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 36px;
}
.category-banner-head a {
  margin-top: 7px;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
}
.category-banner-head a span {
  font-family: "Countach", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  color: #000000;
  transition: color 0.3s ease-in-out;
}
.category-banner-head a svg path {
  fill: #000000;
  transition: fill 0.3s ease-in-out;
}
.category-banner-head a:hover svg path {
  fill: #BC0018;
}
.category-banner-head a:hover span {
  color: #BC0018;
}
.category-banner-head a span + svg {
  margin-left: 12px;
}
.category-banner-head a svg + span {
  margin-left: 12px;
}
.category-banner h1 {
  max-width: 610px;
  font-family: "Countach", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 100px;
  line-height: 100px;
  letter-spacing: 0.015em;
  text-transform: uppercase;
  color: #000000;
  margin-bottom: 80px;
}
.category-banner-desc {
  margin-left: 127px;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #191919;
}
.category-banner-desc h3, .category-banner-desc p, .category-banner-desc span, .category-banner-desc ul li, .category-banner-desc ol li {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #191919;
}
.category-banner-desc a {
  text-decoration-line: underline;
  color: #191919;
}
.category-banner-desc ul {
  margin-left: 12px;
}
.category-banner-desc ul li {
  position: relative;
}
.category-banner-desc ul li:before {
  left: -12px;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  content: "";
  background: #191919;
  position: absolute;
}
.category-banner-desc ol {
  list-style-type: decimal;
  margin-left: 26px;
}
.category-banner-desc strong, .category-banner-desc b {
  font-weight: bold;
}
.category-banner-desc i, .category-banner-desc em {
  font-style: italic;
}
.category-stories {
  width: 100%;
  padding-top: 80px;
  padding-bottom: 50px;
}
.category-stories-empty {
  width: 100%;
  padding: 250px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.category-stories-empty-title {
  text-align: center;
}
.category-stories-filter {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 24px;
}
.category-stories-filter-title {
  font-family: "Countach", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 22px;
  line-height: 24px;
  color: #BC0018;
  position: relative;
}
.category-stories-filter-reset {
  position: absolute;
  text-decoration: none;
  display: inline-block;
  right: -20px;
  bottom: 50%;
  transform: translateY(calc(50% + 1px));
  cursor: pointer;
}
.category-stories-filter-reset svg {
  width: 16px;
  height: 16px;
}
.category-stories-filter-reset svg path {
  fill: #000000;
  transition: fill 0.3s ease-in-out;
}
.category-stories-filter-reset:hover svg path {
  fill: #BC0018;
}
.category-stories-filter-connector {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  width: 100%;
}
.category-stories-filter-item {
  max-width: 325px;
  width: 100%;
}
.category-stories-filter-item .select2-container {
  width: 100% !important;
}
.category-stories-filter-item .select2-selection__rendered {
  padding: 8px 0;
}
.category-stories-filter-item .select2-container .select2-selection--single {
  height: auto;
}
.category-stories-filter-item .select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: #000000 transparent transparent transparent;
}
.category-stories-filter-item .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #000000 transparent;
}
.category-stories-filter-item .select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 50%;
  transform: translateY(-50%);
}
.category-stories-filter-item .select2-container--default .select2-selection--single {
  border-radius: 0;
  border: 2px solid #000000;
}
.category-stories-filter-item .select2-container--default .select2-selection--single .select2-selection__rendered {
  font-family: "Countach", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 22px;
  color: #000000;
}
.category-stories-wrap {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.category-stories-head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}
.category-stories-head h2 {
  font-family: "Countach", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 80px;
  letter-spacing: 0.015em;
  color: #000000;
  margin-right: 64px;
}
.category-stories-head-dots, .category-stories-head .analytics-stories-head-dots {
  min-width: 210px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 22px;
  padding-right: 22px;
  position: relative;
}
.category-stories-head-dots:before, .category-stories-head-dots:after, .category-stories-head .analytics-stories-head-dots:before, .category-stories-head .analytics-stories-head-dots:after {
  width: 10px;
  height: 60px;
  background-size: cover;
  position: absolute;
  bottom: 50%;
  transform: translateY(50%);
  content: "";
}
.category-stories-head-dots:before, .category-stories-head .analytics-stories-head-dots:before {
  left: 0;
  background: url("/themes/default/img/svg/brace-left-black-xs.svg") center center no-repeat;
}
.category-stories-head-dots:after, .category-stories-head .analytics-stories-head-dots:after {
  right: 0;
  background: url("/themes/default/img/svg/brace-right-black-xs.svg") center center no-repeat;
}
.category-stories-head-dots .slick-dots, .category-stories-head .analytics-stories-head-dots .slick-dots {
  display: flex;
  align-items: center;
  justify-content: center;
}
.category-stories-head-dots .slick-dots li button, .category-stories-head .analytics-stories-head-dots .slick-dots li button {
  margin: 0;
  padding: 0;
  outline: none;
  border: none;
  background: transparent;
  font-family: "Countach", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 28px;
  line-height: 32px;
  text-align: center;
  letter-spacing: 0.015em;
  text-transform: uppercase;
  color: #000000;
  transition: color 0.3s ease-in-out;
  cursor: pointer;
}
.category-stories-head-dots .slick-dots li button:hover, .category-stories-head .analytics-stories-head-dots .slick-dots li button:hover {
  color: #BC0018;
}
.category-stories-head-dots .slick-dots li.slick-active button, .category-stories-head .analytics-stories-head-dots .slick-dots li.slick-active button {
  color: #BC0018;
}
.category-stories-head-dots .slick-dots li + li, .category-stories-head .analytics-stories-head-dots .slick-dots li + li {
  margin-left: 12px;
}
.category-stories-head .line {
  height: 3px;
  max-width: 776px;
  margin-right: 24px;
  width: 100%;
  background: #000000;
  position: relative;
}
.category-stories-head .line:before {
  width: 20px;
  height: 3px;
  position: absolute;
  background: #000000;
  right: -3px;
  border-radius: 4px;
  top: 0;
  content: "";
  transform: translateY(calc(-100% - 3px)) rotate(45deg);
}
.category-stories-head .line:after {
  width: 20px;
  height: 3px;
  position: absolute;
  background: #000000;
  right: -3px;
  border-radius: 4px;
  top: 0;
  content: "";
  transform: translateY(calc(100% + 3px)) rotate(-45deg);
}
.category-stories-slider, .category-stories .analytics-stories-slider {
  width: 100%;
}
.category-stories-slider__wrapper, .category-stories .analytics-stories-slider__wrapper {
  width: 100%;
}
.category-stories-slider__wrap, .category-stories .analytics-stories-slider__wrap {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 24px;
}
.category-stories-slider-item, .category-stories .analytics-stories-slider-item {
  width: 100%;
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  background: #ffffff;
}
.category-stories-slider-item-wrap, .category-stories .analytics-stories-slider-item-wrap {
  width: calc(33.333% - 16px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.category-stories-slider-item-head, .category-stories .analytics-stories-slider-item-head {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 12px;
}
.category-stories-slider-item-head span, .category-stories .analytics-stories-slider-item-head span {
  font-family: "Countach", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  text-align: center;
  color: #ffffff;
}
.category-stories-slider-item .img-wrap, .category-stories .analytics-stories-slider-item .img-wrap {
  width: 100%;
  height: 240px;
  overflow: hidden;
}
.category-stories-slider-item .img-wrap img, .category-stories .analytics-stories-slider-item .img-wrap img {
  transition: all 0.3s ease-in-out;
  width: 100%;
  height: 100%;
  filter: grayscale(1);
  -o-object-fit: cover;
     object-fit: cover;
}
.category-stories-slider-item-body, .category-stories .analytics-stories-slider-item-body {
  background: #ffffff;
  margin: 24px 0 0 0;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  overflow: hidden;
  padding-bottom: 27px;
}
.category-stories-slider-item-body h3, .category-stories .analytics-stories-slider-item-body h3 {
  font-family: "Countach", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 28px;
  line-height: 32px;
  letter-spacing: 0.015em;
  text-transform: uppercase;
  color: #000000;
  min-height: 96px;
  margin-bottom: 12px;
}
.category-stories-slider-item-body-link, .category-stories .analytics-stories-slider-item-body-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-decoration: none;
  cursor: pointer;
  width: 100%;
  transition: transform 0.4s ease-in-out;
  transform: translateX(-80%);
}
.category-stories-slider-item-body-link--wide, .category-stories .analytics-stories-slider-item-body-link--wide {
  transform: translateX(-70%);
}
.category-stories-slider-item-body-link span, .category-stories .analytics-stories-slider-item-body-link span {
  font-family: "Countach", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  color: #191919;
  margin-right: 16px;
  transition: color 0.3s ease-in-out;
}
.category-stories-slider-item-body-link .line, .category-stories .analytics-stories-slider-item-body-link .line {
  height: 2px;
  width: calc(100% - 134px);
  background: #191919;
  position: relative;
  transition: background 0.3s ease-in-out;
}
.category-stories-slider-item-body-link .line:before, .category-stories .analytics-stories-slider-item-body-link .line:before {
  width: 10px;
  height: 2px;
  position: absolute;
  background: #191919;
  right: -2px;
  border-radius: 4px;
  top: 0;
  content: "";
  transform: translateY(calc(-100% - 1px)) rotate(35deg);
  transition: background 0.3s ease-in-out;
}
.category-stories-slider-item-body-link .line:after, .category-stories .analytics-stories-slider-item-body-link .line:after {
  width: 10px;
  height: 2px;
  position: absolute;
  background: #191919;
  right: -2px;
  border-radius: 4px;
  top: 0;
  content: "";
  transform: translateY(calc(100% + 1px)) rotate(-35deg);
  transition: background 0.3s ease-in-out;
}
.category-stories-slider-item-desc, .category-stories .analytics-stories-slider-item-desc {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #191919;
  margin-bottom: 21px;
  height: 100px;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.category-stories-slider-item-tags, .category-stories .analytics-stories-slider-item-tags {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}
.category-stories-slider-item-tags a, .category-stories .analytics-stories-slider-item-tags a {
  text-decoration: none;
  cursor: pointer;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #BC0018;
}
.category-stories-slider-item-tags a span, .category-stories .analytics-stories-slider-item-tags a span {
  font-style: italic;
}
.category-stories-slider-item:hover .img-wrap img, .category-stories .analytics-stories-slider-item:hover .img-wrap img {
  transform: scale(1.2);
  filter: grayscale(0);
}
.category-stories-slider-item:hover .category-stories-slider-item-body-link, .category-stories .analytics-stories-slider-item:hover .category-stories-slider-item-body-link {
  transform: translateX(0);
}
.category-stories-slider-item:hover .category-stories-slider-item-body-link span, .category-stories .analytics-stories-slider-item:hover .category-stories-slider-item-body-link span {
  color: #BC0018;
}
.category-stories-slider-item:hover .category-stories-slider-item-body-link .line, .category-stories .analytics-stories-slider-item:hover .category-stories-slider-item-body-link .line {
  background: #BC0018;
}
.category-stories-slider-item:hover .category-stories-slider-item-body-link .line:before, .category-stories-slider-item:hover .category-stories-slider-item-body-link .line:after, .category-stories .analytics-stories-slider-item:hover .category-stories-slider-item-body-link .line:before, .category-stories .analytics-stories-slider-item:hover .category-stories-slider-item-body-link .line:after {
  background: #BC0018;
}
.category-stories-slider-item + .category-stories-slider-item, .category-stories-slider-item + .category-stories .analytics-stories-slider-item, .category-stories .analytics-stories-slider-item + .category-stories-slider-item, .category-stories .analytics-stories-slider-item + .category-stories .analytics-stories-slider-item {
  margin-top: 26px;
}

@media screen and (max-width: 1250px) {
  .category-banner {
    max-width: calc(100% - 36px);
    margin-left: 36px;
  }
  .category-banner-container:before {
    width: 20px;
    height: 180px;
    background-size: cover;
  }
  .category-banner-container:after {
    display: none;
  }
  .category-banner-desc {
    margin-left: 0;
  }
}
@media screen and (max-width: 1200px) {
  .category {
    padding-top: 50px;
  }
  .category-stories {
    padding-top: 24px;
    padding-bottom: 24px;
  }
  .category-stories-head {
    width: calc(100% + 20px);
    margin-left: -10px;
    padding: 10px;
    position: sticky;
    top: 65px;
    z-index: 2;
    background: white;
  }
  .category-stories-filter {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .category-stories-filter-item {
    max-width: 100%;
  }
  .category-stories-slider-item-wrap, .category-stories .analytics-stories-slider-item-wrap {
    padding-left: 10px;
    padding-right: 10px;
    width: 100%;
  }
  .category-stories-slider-item-head, .category-stories .analytics-stories-slider-item-head {
    padding: 8px;
  }
  .category-stories-slider-item-head span, .category-stories .analytics-stories-slider-item-head span {
    font-size: 16px;
    line-height: 20px;
  }
  .category-stories-slider-item .img-wrap, .category-stories .analytics-stories-slider-item .img-wrap {
    height: 168px;
  }
  .category-stories-slider-item-body, .category-stories .analytics-stories-slider-item-body {
    margin: 16px 16px 0 16px;
    padding-bottom: 16px;
  }
  .category-stories-slider-item-body h3, .category-stories .analytics-stories-slider-item-body h3 {
    font-size: 24px;
    line-height: 28px;
  }
  .category-stories-slider-item-desc, .category-stories .analytics-stories-slider-item-desc {
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 8px;
    height: 90px;
  }
  .category-stories-slider-item-tags, .category-stories .analytics-stories-slider-item-tags {
    gap: 4px;
  }
  .category-stories-slider-item-tags a, .category-stories .analytics-stories-slider-item-tags a {
    font-size: 14px;
    line-height: 14px;
  }
  .category-stories-head {
    margin-bottom: 16px;
  }
  .category-stories-head h2 {
    font-size: 32px;
    line-height: 40px;
  }
  .category-stories-head .line {
    display: none;
  }
  .category-stories-head-dots, .category-stories-head .analytics-stories-head-dots {
    min-width: 0;
  }
  .category-stories-head-dots .slick-dots li button, .category-stories-head .analytics-stories-head-dots .slick-dots li button {
    font-size: 16px;
    line-height: 20px;
  }
  .category-stories-head-dots:before, .category-stories-head-dots:after, .category-stories-head .analytics-stories-head-dots:before, .category-stories-head .analytics-stories-head-dots:after {
    width: 10px;
    height: 36px;
    background-size: contain;
  }
}
@media screen and (max-width: 760px) {
  .category-banner h1 {
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 24px;
  }
}
@media screen and (max-width: 500px) {
  .category-banner-container {
    margin-top: 120px;
  }
  .category-banner-head a {
    margin-top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .category-banner-head a span {
    font-size: 14px;
    line-height: 14px;
    margin-bottom: 2px;
  }
  .category-banner-head a span + svg {
    margin-left: 5px;
  }
  .category-banner-head a svg + span {
    margin-left: 5px;
  }
  .category-stories-slider-item-body h3 {
    font-size: 17px;
    line-height: 21px;
    min-height: 63px;
  }
  .category-stories-slider-item-body-link {
    transform: translateX(-80%);
  }
  .category-stories-slider-item-body-link--wide {
    transform: translateX(-50%);
  }
  .category-stories-filter-connector {
    gap: 8px;
    flex-direction: column;
  }
}
.story {
  width: 100%;
}
.story-tags {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}
.story-tags a {
  text-decoration: none;
  cursor: pointer;
  font-weight: 400;
  font-size: 14px;
  color: #BC0018;
}
.story-tags a span {
  font-style: italic;
}
.story-banner {
  width: 100%;
  height: 100vh;
  position: relative;
}
.story-banner-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 30px;
  left: 50%;
  cursor: pointer;
  animation: jumper 1s infinite ease-in-out;
  width: 80px;
  height: 40px;
  text-decoration: none;
}
.story-banner-arrow span {
  height: 2px;
  width: 40px;
  background: #ffffff;
}
.story-banner-arrow span:first-child {
  transform: rotate(45deg) translateX(8px);
}
.story-banner-arrow span:last-child {
  transform: rotate(-45deg) translateX(-8px);
}
.story-banner-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 1;
}
.story-banner-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.story-banner-link {
  position: relative;
  z-index: 2;
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  margin-top: 120px;
}
.story-banner-link span {
  margin-left: 12px;
  font-family: "Countach", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  color: #ffffff;
  transition: color 0.3s ease-in-out;
}
.story-banner-link svg path {
  fill: #ffffff;
  transition: fill 0.3s ease-in-out;
}
.story-banner-link:hover span {
  color: #BC0018;
}
.story-banner-link:hover svg path {
  fill: #BC0018;
}
.story-container {
  max-width: 1000px;
  padding-left: 20px;
  padding-right: 20px;
  margin: 0 auto;
  display: block;
}
.story-auto-translation-badge {
  margin-top: 40px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
}
.story-wrap {
  padding-top: 40px;
  margin-bottom: 80px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
}
.story-wrap h1 {
  font-family: "Countach", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 64px;
  line-height: 80px;
  letter-spacing: 0.015em;
  color: #ffffff;
  margin-bottom: 16px;
  margin-top: 16px;
}
.story-desc {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #ffffff;
}
.story-desc p, .story-desc span, .story-desc ul li, .story-desc ol li, .story-desc h3 {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #ffffff;
}
.story-desc a {
  display: inline-block;
  color: #ffffff;
  text-decoration-line: underline;
}
.story-desc em {
  font-style: italic;
}
.story-desc b, .story-desc strong {
  font-weight: 700;
}
.story-desc ul li, .story-desc ol li {
  list-style-type: decimal;
  margin-left: 26px;
}
.story-video {
  width: 100%;
  margin-top: 40px;
  margin-bottom: 40px;
}
.story-video iframe {
  width: 100%;
  height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
}
.story-image {
  width: 100%;
  height: auto;
  margin-top: 40px;
  margin-bottom: 40px;
}
.story-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (max-width: 1200px) {
  .story-banner {
    height: 400px;
  }
  .story-banner-link {
    margin-top: 120px;
  }
  .story-banner-arrow {
    display: none;
  }
}
@media screen and (max-width: 500px) {
  .story {
    margin-top: 66px;
  }
  .story-banner {
    height: 205px;
  }
  .story-banner-link {
    margin-top: 20px;
  }
  .story-banner-link span {
    display: inline-block;
    margin-left: 5px;
    font-size: 16px;
    line-height: 16px;
  }
  .story-wrap {
    margin-bottom: 16px;
  }
  .story-wrap h1 {
    font-size: 32px;
    line-height: 40px;
  }
  .story-video iframe {
    height: 230px;
  }
}
@keyframes jumper {
  0% {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-50%, 10px);
  }
  100% {
    transform: translate(-50%, 0);
  }
}
.pow {
  width: 100%;
  padding-top: 120px;
  padding-bottom: 50px;
}
.pow h2 {
  font-family: "Countach", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 80px;
  line-height: 100px;
  letter-spacing: 0.015em;
  color: #ffffff;
  margin-bottom: 48px;
}
@media screen and (max-width: 1200px) {
  .pow h2 {
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 16px;
  }
}
.pow__wrap {
  width: 100%;
}
.pow__wrap embedpdf-container div[data-epdf-i=left-group] {
  display: none !important;
}

.search {
  width: 100%;
  padding-top: 125px;
  padding-bottom: 50px;
  min-height: calc(100dvh - 150px);
}
.search__title {
  font-family: "Countach", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 80px;
  letter-spacing: 0.015em;
  color: #ffffff;
  margin-right: 64px;
}
.search__empty {
  width: 100%;
  padding-top: 200px;
  padding-bottom: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.search__empty span {
  text-align: center;
  font-size: 18px;
}

@media screen and (max-width: 1200px) {
  .search {
    padding-top: 80px;
  }
  .search__title {
    font-size: 32px;
    line-height: 40px;
  }
}
.footer {
  width: 100%;
  background: #000000;
  padding-bottom: 22px;
  padding-top: 20px;
}
.footer-wrap {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.footer-head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}
.footer-head h2 {
  font-family: "Countach", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 80px;
  line-height: 80px;
  letter-spacing: 0.015em;
  color: #ffffff;
  max-width: 541px;
}
.footer-head-dots {
  min-width: 210px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 22px;
  padding-right: 22px;
  position: relative;
}
.footer-head-dots:before, .footer-head-dots:after {
  width: 10px;
  height: 60px;
  background-size: cover;
  position: absolute;
  bottom: 50%;
  transform: translateY(50%);
  content: "";
}
.footer-head-dots:before {
  left: 0;
  background: url("/themes/default/img/svg/brace-left-xs.svg") center center no-repeat;
}
.footer-head-dots:after {
  right: 0;
  background: url("/themes/default/img/svg/brace-right-xs.svg") center center no-repeat;
}
.footer-head-dots .slick-dots {
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-head-dots .slick-dots li button {
  margin: 0;
  padding: 0;
  outline: none;
  border: none;
  background: transparent;
  font-family: "Countach", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 28px;
  line-height: 32px;
  text-align: center;
  letter-spacing: 0.015em;
  text-transform: uppercase;
  color: #ffffff;
  transition: color 0.3s ease-in-out;
  cursor: pointer;
}
.footer-head-dots .slick-dots li button:hover {
  color: #BC0018;
}
.footer-head-dots .slick-dots li.slick-active button {
  color: #BC0018;
}
.footer-head-dots .slick-dots li + li {
  margin-left: 12px;
}
.footer-head .line {
  height: 3px;
  max-width: 488px;
  width: 100%;
  background: #ffffff;
  position: relative;
}
.footer-head .line:before {
  width: 20px;
  height: 3px;
  position: absolute;
  background: #ffffff;
  right: -3px;
  border-radius: 4px;
  top: 0;
  content: "";
  transform: translateY(calc(-100% - 3px)) rotate(45deg);
}
.footer-head .line:after {
  width: 20px;
  height: 3px;
  position: absolute;
  background: #ffffff;
  right: -3px;
  border-radius: 4px;
  top: 0;
  content: "";
  transform: translateY(calc(100% + 3px)) rotate(-45deg);
}
.footer-desc {
  padding-left: 77px;
  padding-right: 77px;
  max-width: 1151px;
  width: 100%;
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 32px;
  color: #ffffff;
  position: relative;
}
.footer-desc-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 40px;
}
.footer-desc:before, .footer-desc:after {
  width: 29px;
  height: 100%;
  position: absolute;
  bottom: 50%;
  transform: translateY(50%);
  content: "";
}
.footer-desc:before {
  background: url("/themes/default/img/svg/brace-left-s.svg") center center no-repeat;
  left: 0;
  background-size: cover;
}
.footer-desc:after {
  background: url("/themes/default/img/svg/brace-right-s.svg") center center no-repeat;
  right: 0;
  background-size: cover;
}
.footer-slider {
  width: calc(100% + 24px);
  margin-bottom: 60px;
}
.footer-slider-item {
  text-decoration: none;
  cursor: pointer;
  width: 100%;
  padding: 12px 16px;
  background: #191919;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-slider-item-wrap {
  padding-left: 12px;
  padding-right: 12px;
  width: 100%;
}
.footer-slider-item:hover h3 {
  color: #BC0018;
}
.footer-slider-item:hover .footer-slider-item-btn {
  border: 2px solid #BC0018;
}
.footer-slider-item:hover .footer-slider-item-btn span {
  color: #BC0018;
}
.footer-slider-item h3 {
  font-family: "Countach", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 28px;
  line-height: 32px;
  letter-spacing: 0.015em;
  text-transform: uppercase;
  color: #ffffff;
  transition: color 0.3s ease-in-out;
}
.footer-slider-item-btn {
  border: 2px solid #ffffff;
  padding: 12px 24px;
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  transition: border 0.3s ease-in-out;
}
.footer-slider-item-btn span {
  font-family: "Countach", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  color: #ffffff;
  transition: color 0.3s ease-in-out;
}
.footer-slider-item + .footer-slider-item {
  margin-top: 24px;
}
.footer-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
}
.footer-partner-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-partner-item {
  width: 120px;
  height: 60px;
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
}
.footer-partner-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.footer-partner-item + .footer-partner-item {
  margin-left: 28px;
}
.footer-mail a, .footer-mail span {
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 32px;
  color: #ffffff;
  display: inline-block;
}
.footer-mail a {
  transition: color 0.3s ease-in-out;
  text-decoration: none;
  cursor: pointer;
}
.footer-mail a:hover {
  color: red;
}
.footer-socials a {
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
}
.footer-socials a svg {
  width: 40px;
  height: 40px;
}
.footer-socials a svg path {
  fill: #ffffff;
  transition: fill 0.3s ease-in-out;
}
.footer-socials a:hover svg path {
  fill: #BC0018;
}
.footer-socials a + a {
  margin-left: 24px;
}
.footer-mobile {
  display: none;
}

@media screen and (max-width: 1200px) {
  .footer {
    padding-top: 24px;
    padding-bottom: 24px;
  }
  .footer-head {
    margin-bottom: 16px;
  }
  .footer-head .line, .footer-head-dots {
    display: none;
  }
  .footer-head h2 {
    font-size: 32px;
    line-height: 40px;
    max-width: 70%;
  }
  .footer-mobile {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .footer-mobile .footer-head-dots {
    display: flex;
    min-width: 0;
  }
  .footer-mobile .footer-head-dots .slick-dots li button {
    font-size: 16px;
    line-height: 20px;
  }
  .footer-mobile .footer-head-dots:before, .footer-mobile .footer-head-dots:after {
    width: 10px;
    height: 36px;
    background-size: contain;
  }
  .footer-desc {
    padding-right: 0;
    padding-left: 36px;
    font-size: 14px;
    line-height: 18px;
  }
  .footer-desc-container {
    margin-bottom: 16px;
    justify-content: flex-start;
  }
  .footer-desc:after {
    display: none;
  }
  .footer-desc:before {
    width: 20px;
  }
  .footer-slider {
    margin-bottom: 24px;
  }
  .footer-slider-item {
    padding: 18px 12px;
  }
  .footer-slider-item h3 {
    font-size: 16px;
    line-height: 20px;
  }
  .footer-slider-item a {
    padding: 8px 16px;
  }
  .footer-slider-item a span {
    font-size: 14px;
    line-height: 16px;
  }
  .footer-slider-item + .footer-slider-item {
    margin-top: 8px;
  }
  .footer-mail a, .footer-mail span {
    font-size: 16px;
    line-height: 24px;
  }
  .footer-container {
    gap: 24px;
    justify-content: center;
    flex-direction: column;
  }
  .footer-partner-wrap {
    display: flex;
    flex-wrap: wrap;
  }
  .footer-partner-item {
    padding-left: 10px;
    padding-right: 10px;
    max-width: 25%;
    flex: 0 0 25%;
    margin-bottom: 10px;
  }
  .footer-partner-item + .footer-partner-item {
    margin-left: 0;
  }
}
body {
  background-color: #000000;
  color: #ffffff;
  font-family: "mononoki", sans-serif;
  overflow-x: hidden;
}
body.fixed-body {
  overflow-y: hidden;
}

.container {
  max-width: 1352px;
  width: 100%;
  margin: 0 auto;
  display: block;
  padding-left: 20px;
  padding-right: 20px;
}

.page-loader {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  width: 100vw;
  height: 100lvh;
  z-index: 20;
  background: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-loader .loader {
  max-width: 960px;
  padding-left: 20px;
  padding-right: 20px;
}
.page-loader .loader svg {
  width: 100%;
  height: auto;
}
.page-loader .loader svg .brace {
  animation: loaderOpacity 1s infinite ease-in-out;
}

.select2-dropdown {
  border-radius: 0;
  border: 2px solid #000000;
}

.select2-results__option {
  color: #000000;
  font-family: "Countach", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 18px;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  color: #BC0018;
  background: white;
}

.select2-container--default .select2-results__option--selected {
  background: white;
  color: #BC0018;
}

@keyframes loaderOpacity {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
