@charset "UTF-8";
/* stylelint-disable */
/* stylelint-enable */
/* stylelint-disable */
/**
* Селекторы для таргетинга на конкретные браузеры без влияния на специфику или
* ограничение использования в медиа-запросах
*
* Плюсы:
* - Работает с медиа-запросами
*
* Минусы:
* - Не может использоваться с @extend, так как это приведет к недействительности других селекторов
*/
/**
* Целевой Internet Explorer, но не Edge
*
* @demo
*	div {
*		@include browser-ie () {
*			// ...
*		}
*	}
*/
/**
* Target IE-Edge
*/
/**
* Target Firefox
*/
/**
* Target Safari
*/
/**
* Target all WebKit browsers
*/
/**
* Remove the unit of a length
*
* @param {Number} $number - Number to remove unit from
* @return {Number} - Unitless number
*/
/**
* Returns nth property from css property list
*
* @property {map} $list List
* @property {number} $index Item index
*
* @example
*	$bottom-margin: css-nth(10px 20px 30px 40px, 3); // 30px
*	$bottom-margin: css-nth(10px 20px, 3); // 10px
*/
/**
* Remove nth elements from the list
*
* @property {map} $list List
* @property {number} $index Item index
*
* @example
*	$list: remove-nth(10px 20px 30px 40px, 3); // 10px 20px 40px
*/
/**
* In each $list pair of $breakpoint: $value replaces all values with 'inherit'
* except for one in $index position
*
* 'inherit' value when used with 'margins' or 'paddings' mixin will not produce any output
*
* @example
*	$spacer: (xs: 10px 11px 12px 13px, md: 20px 0);
*
*	$spacer-top-only: breakpointPickCssNth($spacer, 1);
* => (xs: 10px inherit inherit inherit, md: 20px inherit inherit inherit)
*	@include margins($spacer-top-only);
*
*	$spacer-bottom-only: breakpointPickCssNth($spacer, 3);
* => (xs: inherit inherit 12px inherit, md: inherit inherit 20px inherit)
*	@include paddings($spacer-bottom-only);
*/
/**
* In each $list pair of $breakpoint: $value replaces all values with 'inherit'
* except for top (first) and bottom (third) properties
*
* @example
*	$spacer: (xs: 10px 11px 12px 13px, md: 20px 0);
*
*	$spacer-top-bottom: breakpoint-pick-top-bottom($spacer);
* => (xs: 10px inherit 12px inherit, md: 20px inherit 20px inherit)
*	@include margins($spacer-top-bottom);
*/
/**
* In each $list pair of $breakpoint: $value replaces all values with 'inherit'
* except for right (second) and left (fourth) properties
*
* @example
*	$spacer: (xs: 10px 11px 12px 13px, md: 20px 0);
*
*	$spacer-left-right: breakpoint-pick-top-bottom($spacer);
* => (xs: inherit 11px inherit 13px, md: inherit 0 inherit 0)
*	@include margins($spacer-left-right);
*/
/**
* In each $list pair of $breakpoint: $value merges all values skipping 'inherit'
*
* @example
*	$list-a: (xs: 10px inherit 20px inherit, md: 30px inherit);
*	$list-b: (xs: 40px inherit inherit inherit, md: inherit 50px);
*
*	$list-result: breakpointMapMerge($list-a, $list-b);
*	// (xs: 40px inherit 20px inherit, md: 30px 50px);
*/
/**
* Returns deeply nested property from a map
*
* @function mapGetDeep Deep get for sass maps
* @author https://css-tricks.com/snippets/sass/deep-getset-maps/
* @param {Map} $map - Map
* @param {Arglist} $keys - Key chain
*
* @example
*	$paddings: mapGetDeep($grid-containers, default, paddings, xs);
*/
/**
* Mixin for object-fit plugin
*
* @see https://github.com/bfred-it/object-fit-images
* @see components/_background.scss
* @example
*	@include object-fit(contain);
*	@include object-fit(cover, top);
*/
/**
* Split string into a list
*
* @property {string} $string String
* @property {string} $separator Separator
*
* @example
*	$list: str-split("hello+world", "+"); // (hello, world)
*/
/**
* Converts SVG into data url so that this SVG could be used as a
* background image
*
* @example
*	background-image: svgtodataurl("<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100">...</svg>");
*/
/**
* Remove keys from the map
*
* @param {Map} $map - Map from which to remove items
* @param {List} $keys - List of keys which to remove
* @return {Map} - Map without the specified keys
*/
/**
* Качество рендеринга изображений
* В Chrome качество фонового изображения не самое лучшее при использовании background-size
*/
@font-face {
  src: url("../fonts/AcademyC.woff2") format("woff2"), url("../fonts/AcademyC.woff") format("woff");
  font-family: "AcademyC";
  font-weight: 400;
  font-style: normal; }

@font-face {
  src: url("../fonts/NeueMachina-Light.woff2") format("woff2"), url("../fonts/NeueMachina-Light.woff") format("woff");
  font-family: "NeueMachina";
  font-weight: 300;
  font-style: normal; }

@font-face {
  src: url("../fonts/NeueMachina-Regular.woff2") format("woff2"), url("../fonts/NeueMachina-Regular.woff") format("woff");
  font-family: "NeueMachina";
  font-weight: 400;
  font-style: normal; }

@font-face {
  src: url("../fonts/SuisseIntl-Regular.woff2") format("woff2"), url("../fonts/SuisseIntl-Regular.woff") format("woff");
  font-family: "SuisseIntl";
  font-weight: 400;
  font-style: normal; }

@font-face {
  src: url("../fonts/SuisseIntl-Light.woff2") format("woff2"), url("../fonts/SuisseIntl-Light.woff") format("woff");
  font-family: "SuisseIntl";
  font-weight: 300;
  font-style: normal; }

@font-face {
  src: url("../fonts/SuisseIntl-Thin.woff2") format("woff2"), url("../fonts/SuisseIntl-Thin.woff") format("woff");
  font-family: "SuisseIntl";
  font-weight: 200;
  font-style: normal; }

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */ }

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0; }

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block; }

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0; }

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */ }

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent; }

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  /* 2 */ }

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder; }

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%; }

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

sub {
  bottom: -0.25em; }

sup {
  top: -0.5em; }

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none; }

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */ }

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible; }

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none; }

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button; }

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0; }

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText; }

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em; }

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */ }

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline; }

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto; }

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto; }

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */ }

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */ }

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block; }

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item; }

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none; }

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none; }

/* 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; }

/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8; }

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

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

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

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

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

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

.mfp-ajax-cur {
  cursor: progress; }

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: zoom-out; }

.mfp-zoom {
  cursor: pointer;
  cursor: zoom-in; }

.mfp-auto-cursor .mfp-content {
  cursor: auto; }

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

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

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

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

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

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

button.mfp-close, button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
  touch-action: manipulation; }

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

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace; }
  .mfp-close:hover, .mfp-close:focus {
    opacity: 1; }
  .mfp-close:active {
    top: 1px; }

.mfp-close-btn-in .mfp-close {
  color: #333; }

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%; }

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

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }
  .mfp-arrow:active {
    margin-top: -54px; }
  .mfp-arrow:hover, .mfp-arrow:focus {
    opacity: 1; }
  .mfp-arrow:before, .mfp-arrow:after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    top: 0;
    margin-top: 35px;
    margin-left: 35px;
    border: medium inset transparent; }
  .mfp-arrow:after {
    border-top-width: 13px;
    border-bottom-width: 13px;
    top: 8px; }
  .mfp-arrow:before {
    border-top-width: 21px;
    border-bottom-width: 21px;
    opacity: 0.7; }

.mfp-arrow-left {
  left: 0; }
  .mfp-arrow-left:after {
    border-right: 17px solid #FFF;
    margin-left: 31px; }
  .mfp-arrow-left:before {
    margin-left: 25px;
    border-right: 27px solid #3F3F3F; }

.mfp-arrow-right {
  right: 0; }
  .mfp-arrow-right:after {
    border-left: 17px solid #FFF;
    margin-left: 39px; }
  .mfp-arrow-right:before {
    border-left: 27px solid #3F3F3F; }

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px; }
  .mfp-iframe-holder .mfp-content {
    line-height: 0;
    width: 100%;
    max-width: 900px; }
  .mfp-iframe-holder .mfp-close {
    top: -40px; }

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

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

/* The shadow behind the image */
.mfp-figure {
  line-height: 0; }
  .mfp-figure:after {
    content: '';
    position: absolute;
    left: 0;
    top: 40px;
    bottom: 40px;
    display: block;
    right: 0;
    width: auto;
    height: auto;
    z-index: -1;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #444; }
  .mfp-figure small {
    color: #BDBDBD;
    display: block;
    font-size: 12px;
    line-height: 14px; }
  .mfp-figure figure {
    margin: 0; }

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

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

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

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

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0; }
  .mfp-img-mobile img.mfp-img {
    padding: 0; }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0; }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px; }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    box-sizing: border-box; }
    .mfp-img-mobile .mfp-bottom-bar:empty {
      padding: 0; }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px; }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0; } }

@media all and (max-width: 900px) {
  .mfp-arrow {
    transform: scale(0.75); }
  .mfp-arrow-left {
    transform-origin: 0; }
  .mfp-arrow-right {
    transform-origin: 100%; }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px; } }

.nativejs-select {
  width: 400px;
  margin: 0 auto;
  margin-top: 30px;
  position: relative;
  border: 1px solid #1d1d1d;
  border-radius: 3px;
  cursor: pointer; }

.nativejs-select__placeholder,
.nativejs-select__option {
  cursor: pointer;
  border: none;
  outline: none;
  text-align: left; }

.nativejs-select__placeholder {
  width: 100%;
  padding: 12px 15px;
  color: #ccc;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background-color: #0c0c0c; }

.nativejs-select__placeholder:after {
  content: '';
  display: block;
  width: 0;
  border-top: 6px solid #7ca95c;
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%); }

.nativejs-select__placeholder img {
  margin-right: 5px; }

.nativejs-select__placeholder_fixed {
  padding-right: 5px;
  color: #7ca95c; }

.nativejs-select__dropdown {
  margin: 0;
  padding: 0;
  width: 100%;
  position: absolute;
  transform: translateY(100%);
  left: -1px;
  right: 0;
  bottom: -1px;
  z-index: 5;
  display: none;
  border: 1px solid #1d1d1d; }

.nativejs-select__option {
  width: 100%;
  padding: 10px 15px;
  font-style: italic;
  color: #ccc;
  background-color: #0c0c0c;
  display: flex;
  align-items: center;
  border-bottom: 1px solid transparent; }

.nativejs-select__option img {
  margin-right: 10px; }

.nativejs-select__option:hover {
  border-bottom: 1px solid #7ca95c; }

.nativejs-select_active {
  border-radius: 3px 3px 0 0; }

.nativejs-select_active .nativejs-select__placeholder:after {
  border-top: none;
  border-bottom: 6px solid #7ca95c;
  border-right: 6px solid transparent;
  border-left: 6px solid transparent; }

.nativejs-select_active .nativejs-select__dropdown {
  display: block;
  border-radius: 0 0 3px 3px; }

.nativejs-select__search {
  padding: 5px; }

.nativejs-select__search-inp {
  box-sizing: border-box;
  width: 100%;
  height: 30px; }

.nativejs-select__placeholder-value {
  display: flex;
  align-items: center; }

[data-simplebar] {
  position: relative;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start; }

.simplebar-wrapper {
  overflow: hidden;
  width: inherit;
  height: inherit;
  max-width: inherit;
  max-height: inherit; }

.simplebar-mask {
  direction: inherit;
  position: absolute;
  overflow: hidden;
  padding: 0;
  margin: 0;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: auto !important;
  height: auto !important;
  z-index: 0; }

.simplebar-offset {
  direction: inherit !important;
  box-sizing: inherit !important;
  resize: none !important;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 0;
  margin: 0;
  -webkit-overflow-scrolling: touch; }

.simplebar-content-wrapper {
  direction: inherit;
  box-sizing: border-box !important;
  position: relative;
  display: block;
  height: 100%;
  /* Required for horizontal native scrollbar to not appear if parent is taller than natural height */
  width: auto;
  max-width: 100%;
  /* Not required for horizontal scroll to trigger */
  max-height: 100%;
  /* Needed for vertical scroll to trigger */
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none; }

.simplebar-content-wrapper::-webkit-scrollbar,
.simplebar-hide-scrollbar::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0; }

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

.simplebar-placeholder {
  max-height: 100%;
  max-width: 100%;
  width: 100%;
  pointer-events: none; }

.simplebar-height-auto-observer-wrapper {
  box-sizing: inherit !important;
  height: 100%;
  width: 100%;
  max-width: 1px;
  position: relative;
  float: left;
  max-height: 1px;
  overflow: hidden;
  z-index: -1;
  padding: 0;
  margin: 0;
  pointer-events: none;
  flex-grow: inherit;
  flex-shrink: 0;
  flex-basis: 0; }

.simplebar-height-auto-observer {
  box-sizing: inherit;
  display: block;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 1000%;
  width: 1000%;
  min-height: 1px;
  min-width: 1px;
  overflow: hidden;
  pointer-events: none;
  z-index: -1; }

.simplebar-track {
  z-index: 1;
  position: absolute;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden; }

[data-simplebar].simplebar-dragging {
  pointer-events: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none; }

[data-simplebar].simplebar-dragging .simplebar-content {
  pointer-events: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none; }

[data-simplebar].simplebar-dragging .simplebar-track {
  pointer-events: all; }

.simplebar-scrollbar {
  position: absolute;
  left: 0;
  right: 0;
  min-height: 10px; }

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

.simplebar-scrollbar.simplebar-visible:before {
  opacity: 0.5;
  transition-delay: 0s;
  transition-duration: 0s; }

.simplebar-track.simplebar-vertical {
  top: 0;
  width: 11px; }

.simplebar-scrollbar:before {
  top: 2px;
  bottom: 2px;
  left: 2px;
  right: 2px; }

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

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

/* Rtl support */
[data-simplebar-direction='rtl'] .simplebar-track.simplebar-vertical {
  right: auto;
  left: 0; }

.simplebar-dummy-scrollbar-size {
  direction: rtl;
  position: fixed;
  opacity: 0;
  visibility: hidden;
  height: 500px;
  width: 500px;
  overflow-y: hidden;
  overflow-x: scroll;
  -ms-overflow-style: scrollbar !important; }

.simplebar-dummy-scrollbar-size > div {
  width: 200%;
  height: 200%;
  margin: 10px 0; }

.simplebar-hide-scrollbar {
  position: fixed;
  left: 0;
  visibility: hidden;
  overflow-y: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none; }

*,
*::before,
*::after {
  box-sizing: inherit; }

html {
  position: relative;
  overflow-x: hidden;
  min-height: 100vh;
  box-sizing: border-box;
  font-family: -apple-system, blinkmacsystemfont, "Segoe UI", roboto, oxygen, ubuntu, cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  scroll-behavior: smooth; }
  html.has-cursor,
  html.has-cursor * {
    cursor: none !important; }
  html.is-lock-scroll,
  html.is-lock-scroll body {
    overflow: hidden; }

body {
  -webkit-font-smoothing: antialiased;
  -webkit-text-decoration-skip: objects;
          text-decoration-skip: objects;
  text-rendering: optimizeLegibility;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  font-family: "SuisseIntl";
  color: #000;
  font-weight: 300; }

main {
  flex: 1; }

p {
  margin: 0; }

a,
button {
  outline: none;
  transition: 0.4s;
  cursor: pointer; }

a {
  text-decoration: none;
  color: currentColor; }

svg {
  display: block;
  flex: 0 0 auto;
  width: 100%;
  height: 100%;
  fill: currentColor; }

figure,
picture {
  display: inline-block;
  margin: 0;
  line-height: 0; }
  figure img,
  picture img {
    width: 100%; }

img {
  vertical-align: top;
  max-width: 100%;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none; }

img[draggable="false"] {
  pointer-events: none;
  -webkit-user-drag: none; }

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

ul,
li {
  list-style: none;
  margin: 0;
  padding: 0; }

video {
  outline: none;
  width: 100%;
  height: 100%; }

iframe {
  display: block; }

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  border: 0;
  padding: 0;
  text-align: center;
  background-color: transparent;
  transition: 0.4s;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none; }
  .btn__content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 100%;
    color: currentColor;
    transform: translateZ(0); }

.js-lazy-load:not(.is-loaded) {
  max-height: 50vh; }

.container {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  width: 100%;
  max-width: 79.16667vw; }
  @media (min-width: 1400px) {
    .container {
      max-width: 1140px; } }
  @media (max-width: 1024px) {
    .container {
      max-width: 100%;
      padding-left: 5.12821vmin;
      padding-right: 5.12821vmin; } }

input {
  outline: none; }

.site {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: var(--vh); }

/* stylelint-disable */
@media (prefers-reduced-motion: reduce) {
  *,
  *:before,
  *:after {
    animation-duration: 0.001s !important;
    animation-delay: 0s !important;
    transition-duration: 0.001s !important;
    transition-delay: 0s !important; } }

/* stylelint-enable */
svg {
  color: #000; }

.is-hidden {
  display: none !important; }

.is-hide {
  opacity: 0; }

@media (max-width: 1024px) {
  .for-desktop {
    display: none !important; } }

@media (min-width: 1025px) {
  .for-tablet {
    display: none !important; } }

@media (max-width: 991px) {
  .for-tablet {
    display: none !important; } }

@media (min-width: 1025px) {
  .for-mobile {
    display: none !important; } }

@media (min-width: 992px) and (max-width: 1024px) {
  .for-mobile {
    display: none !important; } }

@media (min-width: 1025px) {
  .for-devices {
    display: none !important; } }

.clearfix {
  overflow: auto; }
  .clearfix::after {
    content: "";
    display: table;
    clear: both; }

.visually-hidden {
  position: absolute;
  overflow: hidden;
  margin: -1px;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0); }

/* stylelint-disable */
.dont-break-out {
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-all;
  word-break: break-word;
  -webkit-hyphens: auto;
          hyphens: auto; }

/* stylelint-enable */
.header {
  padding-top: 2.91667vw;
  padding-bottom: 3.05556vw;
  background-color: #fff;
  position: sticky;
  top: 0;
  z-index: 99; }
  .header .container {
    position: relative; }
  .header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.94444vw; }
    @media (min-width: 1400px) {
      .header__container {
        padding: 0 28px; } }
    @media (max-width: 1024px) {
      .header__container {
        padding: 0; } }
  .header__logo {
    width: 6.59722vw;
    height: 0.90278vw;
    display: flex;
    align-items: center;
    justify-content: center; }
    @media (min-width: 1400px) {
      .header__logo {
        width: 95px;
        height: 13px; } }
    @media (max-width: 1024px) {
      .header__logo {
        width: 24.35897vmin;
        height: 3.33333vmin; } }
  .header__nav {
    font-size: 0.69444vw;
    text-transform: uppercase; }
    .header__nav ul {
      display: flex; }
      .header__nav ul li {
        margin-left: 2.43056vw; }
        .header__nav ul li a:hover {
          color: #CB3D3D; }
        @media (min-width: 1400px) {
          .header__nav ul li {
            margin-left: 35px; } }
    @media (min-width: 1400px) {
      .header__nav {
        font-size: 10px; } }
    @media (max-width: 1024px) {
      .header__nav {
        display: none; } }
  .header__icons {
    margin-left: 2.91667vw;
    margin-right: 0.13889vw; }
    @media (min-width: 1400px) {
      .header__icons {
        margin-left: 42px;
        margin-right: 2px; } }
    @media (max-width: 1024px) {
      .header__icons {
        margin-left: 10.76923vmin;
        margin-right: 0.51282vmin;
        display: flex;
        align-items: center; } }
  .header__btn {
    width: 0.83333vw;
    height: 0.83333vw;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: none;
    background: none;
    margin-left: 0.97222vw; }
    .header__btn svg {
      fill: none;
      stroke: currentColor;
      transition: all .3s ease-out; }
    .header__btn:hover svg {
      color: #CB3D3D; }
    @media (min-width: 1400px) {
      .header__btn {
        width: 12px;
        height: 12px;
        margin-left: 14px; } }
    @media (max-width: 1024px) {
      .header__btn {
        width: 3.33333vmin;
        height: 3.33333vmin;
        margin-left: 3.58974vmin; } }
  .header .is-active svg {
    fill: #CB3D3D;
    stroke: #CB3D3D;
    color: #CB3D3D; }
  @media (max-width: 1024px) {
    .header__menu {
      width: 5.12821vmin;
      height: 5.12821vmin;
      margin-left: 3.58974vmin; } }
  .header__wrap {
    display: flex;
    align-items: center; }
  @media (min-width: 1400px) {
    .header {
      padding-top: 42px;
      padding-bottom: 44px; } }
  @media (max-width: 1024px) {
    .header {
      padding-top: 6.66667vmin;
      padding-bottom: 6.66667vmin; } }

.sitetitle {
  position: absolute;
  top: 4.58333vw;
  left: 1.94444vw;
  text-transform: uppercase;
  font-size: 1.11111vw;
  line-height: 2.43056vw;
  font-family: "AcademyC"; }
  .sitetitle span {
    font-family: "NeueMachina"; }
  .sitetitle img {
    width: 0.83333vw; }
    @media (min-width: 1400px) {
      .sitetitle img {
        width: 12px; } }
    @media (max-width: 1024px) {
      .sitetitle img {
        width: 3.20513vmin; } }
  @media (min-width: 1400px) {
    .sitetitle {
      top: 63px;
      left: 29px;
      font-size: 16px;
      line-height: 35px; } }
  @media (max-width: 1024px) {
    .sitetitle {
      top: 11.79487vmin;
      left: 4.87179vmin;
      font-size: 3.41026vmin;
      line-height: 8.97436vmin; } }

.footer {
  padding-bottom: 1.66667vw;
  padding-top: 2.77778vw; }
  .footer .container {
    padding-left: 6.25vw; }
    @media (min-width: 1400px) {
      .footer .container {
        padding-left: 90px; } }
    @media (max-width: 1024px) {
      .footer .container {
        padding-left: 15.38462vmin; } }
  .footer__left, .footer__right {
    display: flex;
    align-items: flex-start; }
  .footer__right {
    align-items: flex-start;
    justify-content: flex-end;
    padding-right: 2.63889vw; }
    @media (min-width: 1400px) {
      .footer__right {
        padding-right: 38px; } }
    @media (max-width: 1024px) {
      .footer__right {
        padding-left: 12.82051vmin;
        padding-right: 0;
        display: block; } }
  @media (max-width: 1024px) {
    .footer__left {
      flex-wrap: wrap;
      margin-bottom: 6.92308vmin; } }
  .footer__container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.97222vw; }
    @media (min-width: 1400px) {
      .footer__container {
        margin-bottom: 14px; } }
    @media (max-width: 1024px) {
      .footer__container {
        margin-bottom: 3.58974vmin;
        display: block; } }
  .footer__logo {
    margin-right: 4.02778vw; }
    .footer__logo img {
      width: 3.07692vmin; }
    @media (min-width: 1400px) {
      .footer__logo {
        margin-right: 58px; } }
    @media (max-width: 1024px) {
      .footer__logo {
        margin-right: 9.48718vmin; } }
  .footer__menu {
    display: flex;
    flex-wrap: wrap;
    font-size: 0.69444vw;
    flex-basis: 13.61111vw;
    margin-right: 2.77778vw;
    text-transform: uppercase; }
    .footer__menu li {
      flex-basis: 50%;
      margin-bottom: 0.76389vw; }
      .footer__menu li a:hover {
        color: #CB3D3D; }
      @media (min-width: 1400px) {
        .footer__menu li {
          margin-bottom: 11px; } }
      @media (max-width: 1024px) {
        .footer__menu li {
          flex-basis: 33.33%;
          margin-bottom: 2.30769vmin; } }
    @media (min-width: 1400px) {
      .footer__menu {
        font-size: 10px;
        flex-basis: 196px;
        margin-right: 40px; } }
    @media (max-width: 1024px) {
      .footer__menu {
        font-size: 2.5641vmin;
        flex-basis: 60.51282vmin;
        margin-right: 0;
        margin-bottom: 4.10256vmin; } }
  .footer__h4 {
    margin-top: 0;
    text-transform: uppercase;
    font-weight: 300;
    margin-bottom: 0.625vw;
    font-size: 0.69444vw; }
    @media (min-width: 1400px) {
      .footer__h4 {
        margin-bottom: 9px;
        font-size: 10px; } }
    @media (max-width: 1024px) {
      .footer__h4 {
        margin-bottom: 2.30769vmin;
        font-size: 2.5641vmin; } }
  .footer__support a:hover {
    color: #CB3D3D; }
  .footer__support p {
    font-size: 0.83333vw;
    margin-bottom: 0.625vw; }
    .footer__support p:last-child {
      margin-bottom: 0; }
    @media (min-width: 1400px) {
      .footer__support p {
        font-size: 12px;
        margin-bottom: 9px; } }
    @media (max-width: 1024px) {
      .footer__support p {
        font-size: 2.5641vmin;
        margin-bottom: 2.30769vmin; } }
  @media (max-width: 1024px) {
    .footer__support {
      margin-bottom: 6.15385vmin; } }
  .footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 5.27778vw;
    padding-right: 2.63889vw; }
    @media (min-width: 1400px) {
      .footer__bottom {
        padding-left: 76px;
        padding-right: 38px; } }
    @media (max-width: 1024px) {
      .footer__bottom {
        padding-left: 0;
        padding-right: 9.74359vmin;
        display: block; } }
  .footer__links {
    display: flex; }
    @media (max-width: 1024px) {
      .footer__links {
        display: block;
        padding-left: 12.82051vmin;
        margin-bottom: 5.12821vmin; } }
  .footer__link {
    margin-right: 2.91667vw;
    font-size: 0.55556vw; }
    .footer__link:hover {
      color: #CB3D3D; }
    @media (min-width: 1400px) {
      .footer__link {
        margin-right: 42px;
        font-size: 8px; } }
    @media (max-width: 1024px) {
      .footer__link {
        margin-right: 0;
        font-size: 2.30769vmin;
        display: block;
        margin-bottom: 1.53846vmin; } }
  .footer__copyright {
    font-size: 0.69444vw; }
    @media (min-width: 1400px) {
      .footer__copyright {
        font-size: 10px; } }
    @media (max-width: 1024px) {
      .footer__copyright {
        font-size: 2.5641vmin;
        padding-left: 12.82051vmin; } }
  .footer__social {
    margin-left: 4.44444vw; }
    @media (min-width: 1400px) {
      .footer__social {
        margin-left: 64px; } }
    @media (max-width: 1024px) {
      .footer__social {
        margin-left: 0; } }
  @media (max-width: 1024px) {
    .footer__mailer {
      padding-left: 12.82051vmin; } }
  @media (min-width: 1400px) {
    .footer {
      padding-bottom: 24px;
      padding-top: 40px; } }
  @media (max-width: 1024px) {
    .footer {
      padding-bottom: 6.15385vmin;
      padding-top: 10.25641vmin; } }

.mailer {
  flex-basis: 18.33333vw;
  flex-shrink: 0; }
  .mailer__form {
    position: relative; }
  .mailer__wrapper {
    position: relative; }
  .mailer__title {
    font-size: 0.69444vw;
    margin-bottom: 0.90278vw;
    text-transform: uppercase;
    margin-top: 0;
    font-weight: 300; }
    @media (min-width: 1400px) {
      .mailer__title {
        font-size: 10px;
        margin-bottom: 13px; } }
    @media (max-width: 1024px) {
      .mailer__title {
        font-size: 2.5641vmin;
        margin-bottom: 1.53846vmin; } }
  .mailer__input {
    height: 2.08333vw;
    text-indent: 1.04167vw;
    width: 100%;
    border: 1px solid #C7C7C7;
    font-size: 0.83333vw;
    border-radius: 0.34722vw;
    font-weight: 300; }
    @media (min-width: 1400px) {
      .mailer__input {
        height: 30px;
        text-indent: 15px;
        font-size: 12px;
        border-radius: 5px; } }
    @media (max-width: 1024px) {
      .mailer__input {
        height: 6.66667vmin;
        text-indent: 3.84615vmin;
        font-size: 2.5641vmin;
        border-radius: 1.28205vmin; } }
  .mailer__btn {
    height: 2.08333vw;
    position: absolute;
    top: 0;
    right: 1.18056vw;
    padding: 0;
    border: none;
    background: transparent; }
    .mailer__btn svg {
      width: 1.73611vw;
      height: 0.69444vw; }
      @media (min-width: 1400px) {
        .mailer__btn svg {
          width: 25px;
          height: 10px; } }
      @media (max-width: 1024px) {
        .mailer__btn svg {
          width: 6.41026vmin;
          height: 2.5641vmin; } }
    @media (min-width: 1400px) {
      .mailer__btn {
        height: 30px;
        right: 17px; } }
    @media (max-width: 1024px) {
      .mailer__btn {
        height: 7.69231vmin;
        right: 4.35897vmin; } }
  @media (min-width: 1400px) {
    .mailer {
      flex-basis: 264px; } }
  @media (max-width: 1024px) {
    .mailer {
      flex-basis: 72.82051vmin; } }

.social .footer__h4 {
  margin-bottom: 1.52778vw; }
  @media (min-width: 1400px) {
    .social .footer__h4 {
      margin-bottom: 22px; } }
  @media (max-width: 1024px) {
    .social .footer__h4 {
      margin-bottom: 2.5641vmin; } }

.social__list {
  display: flex;
  justify-content: center;
  text-align: center; }
  @media (max-width: 1024px) {
    .social__list {
      justify-content: flex-start;
      text-align: left; } }

.social__item {
  margin-right: 1.66667vw; }
  .social__item svg {
    height: 1.11111vw;
    width: auto;
    max-width: 1.66667vw; }
    @media (min-width: 1400px) {
      .social__item svg {
        height: 16px;
        max-width: 24px; } }
    @media (max-width: 1024px) {
      .social__item svg {
        height: 3.07692vmin;
        max-width: 6.15385vmin; } }
  .social__item:hover {
    color: #CB3D3D; }
  @media (min-width: 1400px) {
    .social__item {
      margin-right: 24px; } }
  @media (max-width: 1024px) {
    .social__item {
      margin-right: 2.05128vmin; } }

.filter {
  margin-bottom: 2.22222vw;
  position: relative;
  z-index: 3; }
  .filter__btns {
    display: flex; }
  .filter__view {
    padding: 0;
    border: none;
    background: none;
    margin-left: 2.5641vmin; }
    .filter__view svg {
      width: 3.07692vmin;
      height: 3.07692vmin; }
    .filter__view.is-active {
      color: #CB3D3D; }
    .filter__view:first-child {
      margin-left: 0; }
  .filter__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.55556vw; }
    @media (min-width: 1400px) {
      .filter__container {
        margin-bottom: 8px; } }
    @media (max-width: 1024px) {
      .filter__container {
        margin-bottom: 0.51282vmin; } }
  .filter__wrap {
    display: flex;
    align-items: center; }
  .filter__openfilter {
    display: inline-flex;
    font-size: 0.83333vw;
    margin-right: 3.88889vw;
    padding: 0;
    border: none;
    background: transparent;
    font-weight: 300;
    color: #000; }
    .filter__openfilter svg {
      width: 0.625vw;
      height: 0.625vw;
      margin-left: 0.41667vw;
      position: relative;
      top: 0.20833vw; }
      @media (min-width: 1400px) {
        .filter__openfilter svg {
          width: 9px;
          height: 9px;
          margin-left: 6px;
          top: 3px; } }
      @media (max-width: 1024px) {
        .filter__openfilter svg {
          width: 2.30769vmin;
          height: 2.30769vmin;
          margin-left: 1.53846vmin;
          top: 0.76923vmin; } }
    .filter__openfilter.is-active svg {
      transform: rotate(180deg); }
    @media (min-width: 1400px) {
      .filter__openfilter {
        font-size: 12px;
        margin-right: 56px; } }
    @media (max-width: 1024px) {
      .filter__openfilter {
        font-size: 3.07692vmin;
        margin-right: 6.15385vmin; } }
  .filter__results {
    display: flex;
    flex-wrap: wrap;
    margin-left: 0.69444vw;
    gap: 0.69444vw;
    max-width: 32.63889vw; }
    @media (min-width: 1400px) {
      .filter__results {
        gap: 10px;
        max-width: 470px; } }
    @media (max-width: 1024px) {
      .filter__results {
        gap: 2.5641vmin;
        display: none !important;
        max-width: none; } }
  .filter__result {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.34722vw;
    height: 1.25vw;
    padding-left: 0.55556vw;
    padding-right: 0.55556vw;
    font-size: 0.76389vw;
    margin-right: 0.69444vw;
    background-color: #F5F5F5;
    cursor: pointer;
    color: #575757; }
    .filter__result:hover {
      color: #000; }
    .filter__result svg {
      width: 0.55556vw;
      height: 0.55556vw;
      margin-right: 0.34722vw; }
      @media (min-width: 1400px) {
        .filter__result svg {
          width: 8px;
          height: 8px;
          margin-right: 5px; } }
      @media (max-width: 1024px) {
        .filter__result svg {
          width: 2.05128vmin;
          height: 2.05128vmin;
          margin-right: 1.28205vmin; } }
    @media (min-width: 1400px) {
      .filter__result {
        border-radius: 5px;
        height: 18px;
        padding-left: 8px;
        padding-right: 8px;
        font-size: 11px;
        margin-right: 10px; } }
    @media (max-width: 1024px) {
      .filter__result {
        border-radius: 1.28205vmin;
        height: 4.61538vmin;
        padding-left: 2.05128vmin;
        padding-right: 2.05128vmin;
        font-size: 2.82051vmin;
        margin-right: 2.5641vmin; } }
  .filter__reset {
    font-size: 0.76389vw;
    padding: 0;
    border: none;
    background: transparent;
    color: #575757;
    flex-shrink: 0;
    white-space: nowrap; }
    .filter__reset:hover {
      color: #000; }
    @media (min-width: 1400px) {
      .filter__reset {
        font-size: 11px; } }
    @media (max-width: 1024px) {
      .filter__reset {
        font-size: 2.82051vmin;
        display: none !important; } }
  .filter__select {
    font-size: 0.83333vw;
    border: none;
    text-align: right;
    outline: none; }
    @media (min-width: 1400px) {
      .filter__select {
        font-size: 12px; } }
    @media (max-width: 1024px) {
      .filter__select {
        font-size: 3.07692vmin; } }
  .filter__total {
    font-size: 0.59028vw;
    color: #858585;
    margin-bottom: 1.38889vw; }
    @media (min-width: 1400px) {
      .filter__total {
        font-size: 8.5px;
        margin-bottom: 20px; } }
    @media (max-width: 1024px) {
      .filter__total {
        font-size: 2.17949vmin;
        margin-bottom: 7.69231vmin; } }
  .filter__variants {
    display: none; }
    .filter__variants.is-active {
      display: flex; }
      @media (max-width: 1024px) {
        .filter__variants.is-active {
          flex-wrap: wrap; } }
    @media (max-width: 1024px) {
      .filter__variants {
        max-width: 100%; } }
  .filter__col {
    flex-basis: 8.61111vw; }
    .filter__col--artists {
      flex: 1 1; }
    @media (min-width: 1400px) {
      .filter__col {
        flex-basis: 124px; } }
    @media (max-width: 1024px) {
      .filter__col {
        flex-basis: 33.33%;
        margin-bottom: 4.10256vmin; } }
  .filter__subtitle {
    font-size: 0.76389vw;
    margin-bottom: 0.90278vw; }
    @media (min-width: 1400px) {
      .filter__subtitle {
        font-size: 11px;
        margin-bottom: 13px; } }
    @media (max-width: 1024px) {
      .filter__subtitle {
        font-size: 3.07692vmin;
        margin-bottom: 3.33333vmin; } }
  .filter__artists {
    display: flex;
    flex-wrap: wrap; }
    .filter__artists .simplebar-content {
      display: flex;
      flex-wrap: wrap; }
      @media (max-width: 1024px) {
        .filter__artists .simplebar-content {
          display: block;
          height: 44.87179vmin;
          overflow-y: scroll; } }
    .filter__artists .filtercheckbox {
      flex-basis: 25%;
      padding-right: 1.66667vw; }
      @media (min-width: 1400px) {
        .filter__artists .filtercheckbox {
          padding-right: 24px; } }
      @media (max-width: 1024px) {
        .filter__artists .filtercheckbox {
          padding-right: 0; } }
    @media (max-width: 1024px) {
      .filter__artists {
        display: block;
        height: 44.87179vmin;
        overflow-y: scroll; } }
  @media (max-width: 1024px) {
    .filter__sort {
      display: flex;
      align-items: center; } }
  @media (min-width: 1400px) {
    .filter {
      margin-bottom: 32px; } }
  @media (max-width: 1024px) {
    .filter {
      margin-bottom: 8.20513vmin;
      padding-left: 5.12821vmin; } }

.filtercheckbox {
  margin-bottom: 0.69444vw;
  display: block; }
  .filtercheckbox input:checked + .filtercheckbox__text {
    color: #575757; }
  .filtercheckbox input {
    position: absolute;
    z-index: -1;
    opacity: 0; }
  .filtercheckbox__text {
    font-size: 0.76389vw;
    color: rgba(87, 87, 87, 0.5);
    cursor: pointer;
    transition: all .3s ease-out; }
    .filtercheckbox__text:hover {
      color: #575757; }
    @media (min-width: 1400px) {
      .filtercheckbox__text {
        font-size: 11px; } }
    @media (max-width: 1024px) {
      .filtercheckbox__text {
        font-size: 3.07692vmin; } }
  @media (min-width: 1400px) {
    .filtercheckbox {
      margin-bottom: 10px; } }
  @media (max-width: 1024px) {
    .filtercheckbox {
      margin-bottom: 2.5641vmin; } }

.nativejs-select {
  width: 12.77778vw;
  border: none;
  margin: 0;
  border-radius: 0;
  z-index: 4;
  font-size: 0.83333vw;
  text-align: right; }
  .nativejs-select_active .nativejs-select__placeholder::after {
    transform: rotate(180deg);
    margin-top: -0.20833vw !important; }
    @media (min-width: 1400px) {
      .nativejs-select_active .nativejs-select__placeholder::after {
        margin-top: -3px !important; } }
    @media (max-width: 1024px) {
      .nativejs-select_active .nativejs-select__placeholder::after {
        margin-top: -0.76923vmin !important; } }
  .nativejs-select .nativejs-select__placeholder {
    background-color: #fff;
    height: 1.66667vw;
    line-height: 1.2;
    color: #292929;
    border-radius: 0;
    text-align: right !important; }
    .nativejs-select .nativejs-select__placeholder:after {
      border: none;
      width: 0.69444vw;
      height: 0.69444vw;
      background: url(../images/sprites/svg/arrow-down.svg) no-repeat center center;
      background-size: contain;
      margin-top: -0.06944vw; }
      @media (min-width: 1400px) {
        .nativejs-select .nativejs-select__placeholder:after {
          width: 10px;
          height: 10px;
          margin-top: -1px; } }
      @media (max-width: 1024px) {
        .nativejs-select .nativejs-select__placeholder:after {
          width: 2.5641vmin;
          height: 2.5641vmin;
          margin-top: -0.25641vmin; } }
    @media (min-width: 1400px) {
      .nativejs-select .nativejs-select__placeholder {
        height: 24px; } }
    @media (max-width: 1024px) {
      .nativejs-select .nativejs-select__placeholder {
        height: 6.15385vmin; } }
  .nativejs-select .nativejs-select__placeholder-value {
    margin-right: 1.11111vw;
    width: 100%;
    text-align: right;
    justify-content: flex-end;
    font-weight: 300; }
    @media (min-width: 1400px) {
      .nativejs-select .nativejs-select__placeholder-value {
        margin-right: 16px; } }
    @media (max-width: 1024px) {
      .nativejs-select .nativejs-select__placeholder-value {
        margin-right: 4.10256vmin; } }
  .nativejs-select .nativejs-select__dropdown {
    border: none; }
    .nativejs-select .nativejs-select__dropdown .nativejs-select__option {
      color: #000;
      background-color: #fff;
      border-bottom: none;
      font-style: normal;
      line-height: 1.2;
      display: inline-flex;
      justify-content: flex-end;
      text-align: right;
      padding-right: 2.08333vw !important;
      padding-top: 0.13889vw !important;
      padding-bottom: 0.13889vw !important;
      font-weight: 300; }
      .nativejs-select .nativejs-select__dropdown .nativejs-select__option:hover {
        border-bottom: none;
        color: #CB3D3D; }
      .nativejs-select .nativejs-select__dropdown .nativejs-select__option[data-selected="true"] {
        display: none; }
      @media (min-width: 1400px) {
        .nativejs-select .nativejs-select__dropdown .nativejs-select__option {
          padding-right: 30px !important;
          padding-top: 2px !important;
          padding-bottom: 2px !important; } }
      @media (max-width: 1024px) {
        .nativejs-select .nativejs-select__dropdown .nativejs-select__option {
          padding-right: 7.69231vmin !important;
          padding-top: 0.51282vmin !important;
          padding-bottom: 0.51282vmin !important; } }
  @media (min-width: 1400px) {
    .nativejs-select {
      width: 184px;
      font-size: 12px; } }
  @media (max-width: 1024px) {
    .nativejs-select {
      width: 47.17949vmin;
      font-size: 3.07692vmin; } }

.radio input {
  position: absolute;
  z-index: -1;
  opacity: 0; }

.radio__text {
  position: relative;
  padding: 0 0 0 1.38889vw;
  min-height: 1.52778vw;
  cursor: pointer;
  font-size: 0.69444vw;
  font-weight: 500;
  color: #A0A0A0; }
  @media (min-width: 1400px) {
    .radio__text {
      padding: 0 0 0 20px;
      min-height: 22px;
      font-size: 10px; } }
  @media (max-width: 1024px) {
    .radio__text {
      padding: 0 0 0 5.12821vmin;
      min-height: 5.64103vmin;
      font-size: 2.5641vmin; } }

.radio__text:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0.83333vw;
  height: 0.83333vw;
  border: 0.06944vw solid #C7C7C7;
  border-radius: 50%;
  background: #FFF; }
  @media (min-width: 1400px) {
    .radio__text:before {
      width: 12px;
      height: 12px;
      border: 1px solid #C7C7C7; } }
  @media (max-width: 1024px) {
    .radio__text:before {
      width: 3.07692vmin;
      height: 3.07692vmin;
      border: 0.25641vmin solid #C7C7C7; } }

.radio__text:after {
  content: '';
  position: absolute;
  top: 0.20833vw;
  left: 0.20833vw;
  width: 0.41667vw;
  height: 0.41667vw;
  border-radius: 50%;
  background-color: #F7A9A9;
  opacity: 0;
  transition: .2s; }
  @media (min-width: 1400px) {
    .radio__text:after {
      top: 3px;
      left: 3px;
      width: 6px;
      height: 6px; } }
  @media (max-width: 1024px) {
    .radio__text:after {
      top: 0.76923vmin;
      left: 0.76923vmin;
      width: 1.53846vmin;
      height: 1.53846vmin; } }

.radio input:checked + .radio__text:after {
  opacity: 1; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.90278vw;
  height: 1.875vw;
  border-radius: 0.34722vw;
  padding-left: 1.66667vw;
  padding-right: 1.66667vw;
  font-weight: 300; }
  .btn--red {
    background: rgba(247, 169, 169, 0.5);
    color: #000; }
    .btn--red:hover {
      color: #CB3D3D; }
  .btn--border-gray {
    border: 1px solid #c7c7c7;
    color: #000; }
    .btn--border-gray:hover {
      color: #CB3D3D;
      border: 1px solid rgba(203, 61, 61, 0.6); }
  @media (min-width: 1400px) {
    .btn {
      font-size: 13px;
      height: 27px;
      border-radius: 5px;
      padding-left: 24px;
      padding-right: 24px; } }
  @media (max-width: 1024px) {
    .btn {
      font-size: 3.33333vmin;
      height: 6.92308vmin;
      border-radius: 1.28205vmin;
      padding-left: 6.15385vmin;
      padding-right: 6.15385vmin; } }

.mobilemenu {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background-color: #F7A9A9;
  border-radius: 0 0 1.79487vmin 1.79487vmin;
  padding: 6.92308vmin 5.12821vmin 7.4359vmin 5.12821vmin;
  box-shadow: 0px 0px 27px 0px rgba(203, 61, 61, 0.8);
  opacity: 1;
  display: none; }
  .mobilemenu.is-active {
    display: block; }
  .mobilemenu__header {
    display: flex;
    align-items: center;
    justify-content: space-between; }
  .mobilemenu__logo {
    width: 24.35897vmin;
    height: 3.33333vmin; }
  .mobilemenu__btn {
    padding: 0;
    border: none;
    background: none; }
    .mobilemenu__btn svg {
      width: 5.64103vmin;
      height: 5.12821vmin; }
  .mobilemenu__wrap {
    padding-left: 9.74359vmin;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding-top: 3.07692vmin; }
  .mobilemenu__sitetitle {
    top: 18.46154vmin; }
  .mobilemenu__menublock {
    display: flex;
    margin-bottom: 9.48718vmin; }
    .mobilemenu__menublock ul {
      flex-basis: 50%; }
      .mobilemenu__menublock ul li {
        font-size: 3.84615vmin;
        font-weight: 300;
        line-height: 9.23077vmin;
        text-transform: uppercase; }

.mobilesearch {
  position: relative; }
  .mobilesearch__input {
    width: 100%;
    height: 7.17949vmin;
    border-radius: 1.28205vmin;
    font-size: 3.33333vmin;
    text-indent: 7.4359vmin;
    border: none;
    background: rgba(255, 255, 255, 0.6);
    font-weight: 300; }
  .mobilesearch__btn {
    position: absolute;
    left: 2.5641vmin;
    height: 7.17949vmin;
    padding: 0;
    border: none;
    background-color: transparent; }
    .mobilesearch__btn svg {
      width: 3.58974vmin;
      height: 3.58974vmin; }

.overflow {
  overflow: hidden;
  height: 100vh; }

.mfp-bg {
  background: #fff !important;
  opacity: 0.7 !important; }

.mfp-figure:after {
  box-shadow: none !important;
  background-color: #fff !important; }

.modalsblock {
  min-height: 70vh; }
  .modalsblock__container {
    display: flex;
    flex-direction: column; }
    .modalsblock__container .btn {
      margin-bottom: 1.38889vw; }

.modalformpanel {
  position: fixed;
  bottom: 2.77778vw;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  gap: 2.77778vw;
  justify-content: center;
  z-index: 99; }
  @media (min-width: 1400px) {
    .modalformpanel {
      bottom: 40px;
      gap: 40px; } }
  @media (max-width: 1024px) {
    .modalformpanel {
      bottom: 10.25641vmin;
      gap: 2.5641vmin;
      flex-direction: column; } }

button.mfp-close {
  width: 1.38889vw !important;
  height: 1.38889vw !important;
  font-size: 1.38889vw;
  padding: 0 !important;
  line-height: 1 !important; }
  @media (min-width: 1400px) {
    button.mfp-close {
      width: 20px !important;
      height: 20px !important;
      font-size: 20px; } }
  @media (max-width: 1024px) {
    button.mfp-close {
      width: 5.12821vmin !important;
      height: 5.12821vmin !important;
      font-size: 5.12821vmin; } }

.modalform {
  background-color: #fff;
  padding: 1.38889vw 2.08333vw;
  border-radius: 0.34722vw;
  border: 1px solid #C7C7C7;
  text-align: center;
  max-width: 23.81944vw;
  margin: 0 auto;
  position: relative; }
  .modalform button.mfp-close {
    width: 1.11111vw !important;
    height: 1.11111vw !important;
    font-size: 1.11111vw;
    padding: 0 !important;
    line-height: 1 !important; }
    @media (min-width: 1400px) {
      .modalform button.mfp-close {
        width: 16px !important;
        height: 16px !important;
        font-size: 16px; } }
    @media (max-width: 1024px) {
      .modalform button.mfp-close {
        width: 4.10256vmin !important;
        height: 4.10256vmin !important;
        font-size: 4.10256vmin; } }
  .modalform--addcart, .modalform--addfav {
    font-weight: 300;
    font-size: 0.90278vw; }
    @media (min-width: 1400px) {
      .modalform--addcart, .modalform--addfav {
        font-size: 13px; } }
    @media (max-width: 1024px) {
      .modalform--addcart, .modalform--addfav {
        font-size: 3.33333vmin; } }
  .modalform--cookie .modalform__p {
    margin-bottom: 0.90278vw; }
    @media (min-width: 1400px) {
      .modalform--cookie .modalform__p {
        margin-bottom: 13px; } }
    @media (max-width: 1024px) {
      .modalform--cookie .modalform__p {
        margin-bottom: 3.33333vmin; } }
  .modalform--subscribesuccess {
    height: 5.06944vw;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative; }
    @media (min-width: 1400px) {
      .modalform--subscribesuccess {
        height: 73px; } }
    @media (max-width: 1024px) {
      .modalform--subscribesuccess {
        height: 18.71795vmin; } }
  .modalform__p {
    font-weight: 300;
    font-size: 0.90278vw;
    margin-bottom: 0.90278vw; }
    .modalform__p--last {
      margin-bottom: 0 !important; }
    @media (min-width: 1400px) {
      .modalform__p {
        font-size: 13px;
        margin-bottom: 13px; } }
    @media (max-width: 1024px) {
      .modalform__p {
        font-size: 3.33333vmin;
        margin-bottom: 3.33333vmin; } }
  .modalform .btn {
    width: 15.625vw; }
    @media (min-width: 1400px) {
      .modalform .btn {
        width: 225px; } }
    @media (max-width: 1024px) {
      .modalform .btn {
        width: 57.69231vmin; } }
  @media (min-width: 1400px) {
    .modalform {
      padding: 20px 30px;
      border-radius: 5px;
      max-width: 343px; } }
  @media (max-width: 1024px) {
    .modalform {
      padding: 5.12821vmin 7.69231vmin;
      border-radius: 1.28205vmin;
      max-width: 83.58974vmin;
      transform: translateX(2.5641vmin); } }

.formpopup {
  max-width: 26.45833vw;
  padding: 1.45833vw 3.40278vw;
  border-radius: 0.34722vw;
  border: 1px solid #C7C7C7;
  margin: 0 auto;
  background-color: #fff;
  text-align: center;
  position: relative; }
  .formpopup .form__fieldset {
    z-index: 2;
    position: relative; }
  .formpopup__title {
    font-size: 0.90278vw;
    font-weight: 300;
    margin-bottom: 0.83333vw; }
    @media (min-width: 1400px) {
      .formpopup__title {
        font-size: 13px;
        margin-bottom: 12px; } }
    @media (max-width: 1024px) {
      .formpopup__title {
        font-size: 3.33333vmin;
        margin-bottom: 3.07692vmin; } }
  .formpopup .btn {
    width: 15.69444vw; }
    @media (min-width: 1400px) {
      .formpopup .btn {
        width: 226px; } }
    @media (max-width: 1024px) {
      .formpopup .btn {
        width: 57.94872vmin; } }
  .formpopup__policy {
    text-align: left; }
  @media (min-width: 1400px) {
    .formpopup {
      max-width: 381px;
      padding: 21px 30px;
      border-radius: 5px; } }
  @media (max-width: 1024px) {
    .formpopup {
      max-width: 83.58974vmin;
      padding: 5.38462vmin 6.15385vmin;
      border-radius: 1.28205vmin;
      transform: translateX(2.5641vmin); } }

.psearch-form {
  position: relative;
  margin: 0 auto;
  max-width: 39.23611vw;
  width: 100%; }
  .psearch-form .mfp-close {
    display: none !important; }
  .psearch-form ::-moz-placeholder {
    color: #000 !important; }
  .psearch-form ::placeholder {
    color: #000 !important; }
  .psearch-form__wrapper {
    position: relative; }
  .psearch-form__input {
    text-transform: uppercase;
    font-size: 1.25vw;
    border: none;
    border-bottom: 1px solid #000;
    width: 100%;
    background: none;
    padding: 0.41667vw 0;
    font-weight: 300; }
    @media (min-width: 1400px) {
      .psearch-form__input {
        font-size: 18px;
        padding: 6px 0; } }
    @media (max-width: 1024px) {
      .psearch-form__input {
        font-size: 4.61538vmin;
        padding: 1.53846vmin 0; } }
  .psearch-form__btn {
    position: absolute;
    bottom: 0;
    right: 0;
    border: none;
    background: none;
    width: 2.22222vw;
    height: 2.22222vw;
    display: inline-flex;
    align-items: center;
    justify-content: center; }
    .psearch-form__btn svg {
      width: 1.11111vw;
      height: 1.11111vw; }
      @media (min-width: 1400px) {
        .psearch-form__btn svg {
          width: 16px;
          height: 16px; } }
      @media (max-width: 1024px) {
        .psearch-form__btn svg {
          width: 4.10256vmin;
          height: 4.10256vmin; } }
    @media (min-width: 1400px) {
      .psearch-form__btn {
        width: 32px;
        height: 32px; } }
    @media (max-width: 1024px) {
      .psearch-form__btn {
        width: 8.20513vmin;
        height: 8.20513vmin; } }
  @media (min-width: 1400px) {
    .psearch-form {
      max-width: 565px; } }
  @media (max-width: 1024px) {
    .psearch-form {
      max-width: 100%; } }

.pagewrapper .container {
  padding-left: 6.25vw; }
  @media (min-width: 1400px) {
    .pagewrapper .container {
      padding-left: 90px; } }
  @media (max-width: 1024px) {
    .pagewrapper .container {
      padding-left: 10.25641vmin; } }

.sliderblock {
  position: relative;
  overflow: hidden;
  margin-bottom: 2.22222vw; }
  @media (min-width: 1400px) {
    .sliderblock {
      margin-bottom: 32px; } }

.slider {
  border-radius: 8.33333vw 0 0 0.34722vw;
  position: relative;
  overflow: hidden;
  margin-right: -27.77778vw;
  z-index: 1; }
  .slider .slick-active .slider__item:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 72.91667vw;
    background: radial-gradient(78.82% 90.22% at 5.9% 0%, #F7A9A9 0%, rgba(247, 169, 169, 0) 100%);
    z-index: -1; }
    @media (min-width: 1400px) {
      .slider .slick-active .slider__item:after {
        width: 1050px; } }
    @media (max-width: 1024px) {
      .slider .slick-active .slider__item:after {
        width: 79.74359vmin; } }
  .slider__item {
    width: 72.91667vw;
    height: 48.47222vw;
    margin-right: 0.69444vw;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    display: flex;
    align-items: flex-end;
    padding: 0 0 2.36111vw 6.25vw;
    position: relative;
    z-index: 2; }
    .slider__item video {
      position: absolute;
      outline: none;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      -o-object-fit: cover;
         object-fit: cover; }
    @media (min-width: 1400px) {
      .slider__item {
        width: 1050px;
        height: 698px;
        margin-right: 10px;
        padding: 0 0 34px 90px; } }
    @media (max-width: 1024px) {
      .slider__item {
        width: 79.74359vmin;
        height: 167.4359vmin;
        margin-right: 2.5641vmin;
        padding: 11.28205vmin 0 0 10.51282vmin;
        align-items: flex-start; } }
  .slider__content {
    display: flex;
    width: 100%; }
    .slider__content b, .slider__content strong {
      font-weight: 400; }
    @media (max-width: 1024px) {
      .slider__content {
        display: block; } }
  .slider__date {
    font-size: 1.45833vw;
    line-height: 2.22222vw;
    flex-basis: 13.88889vw;
    flex-shrink: 0; }
    @media (min-width: 1400px) {
      .slider__date {
        font-size: 21px;
        line-height: 32px;
        flex-basis: 200px; } }
    @media (max-width: 1024px) {
      .slider__date {
        font-size: 3.84615vmin;
        line-height: 5.64103vmin; } }
  .slider__text {
    flex-basis: 30.48611vw; }
    @media (min-width: 1400px) {
      .slider__text {
        flex-basis: 439px; } }
    @media (max-width: 1024px) {
      .slider__text {
        font-size: 3.84615vmin;
        line-height: 5.64103vmin;
        padding-top: 2.5641vmin; } }
  .slider__title {
    font-size: 1.45833vw;
    line-height: 2.22222vw;
    margin-bottom: 2.91667vw;
    text-transform: uppercase; }
    .slider__title:last-child {
      margin-bottom: 0; }
    @media (min-width: 1400px) {
      .slider__title {
        font-size: 21px;
        line-height: 32px;
        margin-bottom: 42px; } }
    @media (max-width: 1024px) {
      .slider__title {
        font-size: 3.84615vmin;
        line-height: 5.64103vmin; } }
  .slider .btn-slider.slick-disabled {
    display: none; }
  .slider .btn-slider.next {
    position: absolute;
    width: 11.11111vw;
    right: 20.48611vw;
    bottom: 0;
    top: 0;
    z-index: 9;
    border: none;
    background-color: transparent; }
    @media (min-width: 1400px) {
      .slider .btn-slider.next {
        width: 160px;
        right: 295px; } }
    @media (max-width: 1024px) {
      .slider .btn-slider.next {
        width: 15.38462vmin;
        right: 0; } }
  .slider .btn-slider.prev {
    position: absolute;
    width: 11.11111vw;
    left: 1.38889vw;
    bottom: 0;
    top: 0;
    z-index: 9;
    border: none;
    background-color: transparent; }
    @media (min-width: 1400px) {
      .slider .btn-slider.prev {
        width: 160px;
        left: 20px; } }
    @media (max-width: 1024px) {
      .slider .btn-slider.prev {
        width: 15.38462vmin;
        left: 0; } }
  .slider .btn-slider svg {
    width: 1.66667vw;
    height: 1.66667vw; }
    @media (min-width: 1400px) {
      .slider .btn-slider svg {
        width: 24px;
        height: 24px; } }
    @media (max-width: 1024px) {
      .slider .btn-slider svg {
        width: 6.15385vmin;
        height: 6.15385vmin; } }
  @media (min-width: 1400px) {
    .slider {
      border-radius: 120px 0 0 5px;
      margin-right: -400px; } }
  @media (max-width: 1024px) {
    .slider {
      border-radius: 15.38462vmin 0 0 1.28205vmin;
      margin-right: -5.12821vmin;
      margin-left: 5.12821vmin;
      margin-bottom: 8.20513vmin; } }

.products {
  padding-bottom: 1.66667vw; }
  .products--main {
    margin-bottom: 1.11111vw; }
    .products--main .product {
      display: inline-block;
      max-width: 100%; }
    @media (min-width: 1400px) {
      .products--main {
        margin-bottom: 16px; } }
  .products--index .products__container {
    padding-right: 2.08333vw; }
    @media (min-width: 1400px) {
      .products--index .products__container {
        padding-right: 30px; } }
    @media (max-width: 1024px) {
      .products--index .products__container {
        -moz-column-count: 2 !important;
             column-count: 2 !important;
        padding-right: 0; }
        .products--index .products__container .product__col {
          display: block !important; } }
  .products--things {
    margin-bottom: 1.38889vw; }
    .products--things .products__col {
      margin-bottom: 0; }
    @media (min-width: 1400px) {
      .products--things {
        margin-bottom: 20px; } }
  @media (max-width: 1024px) {
    .products--category .product__artist,
    .products--category .product__name {
      flex-basis: 50%; } }
  @media (max-width: 1024px) {
    .products--category .products__col {
      width: 100%; } }
  .products__grid {
    margin: 0 -0.34722vw; }
    @media (min-width: 1400px) {
      .products__grid {
        margin: 0 -5px; } }
    @media (max-width: 1024px) {
      .products__grid {
        margin: 0; } }
  .products__griditem {
    opacity: 0;
    width: 33.33%;
    padding-left: 0.34722vw;
    padding-right: 0.34722vw; }
    @media (min-width: 1400px) {
      .products__griditem {
        padding-left: 5px;
        padding-right: 5px; } }
    @media (max-width: 1024px) {
      .products__griditem {
        padding-left: 0;
        padding-right: 0;
        width: 100%; } }
  .products__container {
    -moz-column-count: 3;
         column-count: 3;
    -moz-column-gap: 0.69444vw;
         column-gap: 0.69444vw; }
    @media (max-width: 1024px) {
      .products__container--view2 .product__artist,
      .products__container--view2 .product__name {
        flex-basis: 100%; } }
    @media (max-width: 1024px) {
      .products__container--view2 {
        -moz-column-count: 2 !important;
             column-count: 2 !important; } }
    @media (min-width: 1400px) {
      .products__container {
        -moz-column-gap: 10px;
             column-gap: 10px; } }
    @media (max-width: 1024px) {
      .products__container {
        -moz-column-count: 1;
             column-count: 1;
        -moz-column-gap: 2.5641vmin;
             column-gap: 2.5641vmin;
        padding-left: 5.12821vmin; } }
  .products__col {
    margin-bottom: 3.47222vw;
    -moz-column-break-inside: avoid;
         break-inside: avoid;
    max-width: 100%; }
    @media (min-width: 1400px) {
      .products__col {
        margin-bottom: 50px; } }
    @media (max-width: 1024px) {
      .products__col {
        margin-bottom: 8.71795vmin;
        display: inline-block; } }
  .products__mobilebtn {
    display: flex;
    justify-content: flex-end;
    padding-top: 2.77778vw;
    padding-right: 2.08333vw; }
    .products__mobilebtn .btn {
      width: 15vw; }
      @media (min-width: 1400px) {
        .products__mobilebtn .btn {
          width: 214px; } }
      @media (max-width: 1024px) {
        .products__mobilebtn .btn {
          width: 56.41026vmin; } }
    @media (min-width: 1400px) {
      .products__mobilebtn {
        padding-right: 30px;
        padding-top: 40px; } }
    @media (max-width: 1024px) {
      .products__mobilebtn {
        padding-top: 0;
        padding-right: 0;
        justify-content: center; } }
  @media (min-width: 1400px) {
    .products {
      padding-bottom: 24px; } }
  @media (max-width: 1024px) {
    .products {
      padding-bottom: 6.15385vmin; } }

.product {
  max-width: 100%;
  transition: all .3s ease-out; }
  .product a {
    transition: none !important; }
  .product--thing {
    border: 1px solid #C7C7C7;
    border-radius: 0.34722vw;
    display: inline-block; }
    .product--thing .product__image {
      box-shadow: none !important; }
    .product--thing:hover {
      border: 1px solid rgba(203, 61, 61, 0.6); }
    .product--thing .product__row {
      padding: 1.38889vw;
      padding-top: 0; }
      @media (min-width: 1400px) {
        .product--thing .product__row {
          padding: 20px;
          padding-top: 0; } }
      @media (max-width: 1024px) {
        .product--thing .product__row {
          padding: 2.30769vmin;
          padding-top: 0; } }
    @media (min-width: 1400px) {
      .product--thing {
        border-radius: 5px; } }
    @media (max-width: 1024px) {
      .product--thing {
        border-radius: 1.28205vmin;
        margin-bottom: 5.12821vmin;
        width: 100%; } }
  .product__image {
    margin-bottom: 0.69444vw; }
    .product__image a {
      display: flex;
      position: relative;
      overflow: hidden;
      border-radius: 0.34722vw;
      transition: none; }
      @media (min-width: 1400px) {
        .product__image a {
          border-radius: 5px; } }
      @media (max-width: 1024px) {
        .product__image a {
          border-radius: 1.28205vmin; } }
    .product__image img {
      width: 100%; }
    @media (min-width: 1400px) {
      .product__image {
        margin-bottom: 10px;
        border-radius: 3px; } }
    @media (max-width: 1024px) {
      .product__image {
        margin-bottom: 2.05128vmin;
        border-radius: 0.76923vmin; } }
  .product__row {
    display: flex;
    flex-wrap: wrap; }
    .product__row > * {
      flex-basis: 50%; }
  .product__col {
    max-width: 100%; }
  .product__artist, .product__name {
    font-size: 0.76389vw;
    line-height: 0.90278vw;
    margin-bottom: 0.83333vw;
    max-width: 100%; }
    @media (min-width: 1400px) {
      .product__artist, .product__name {
        font-size: 11px;
        line-height: 13px;
        margin-bottom: 12px; } }
    @media (max-width: 1024px) {
      .product__artist, .product__name {
        font-size: 3.33333vmin;
        line-height: 4.10256vmin;
        margin-bottom: 3.07692vmin;
        flex-basis: 100%; } }
  @media (max-width: 1024px) {
    .product__artist {
      font-size: 3.07692vmin;
      margin-bottom: 1.53846vmin; } }
  @media (max-width: 1024px) {
    .product__name {
      font-size: 2.82051vmin;
      color: #575757; } }
  .product__price {
    font-size: 0.76389vw;
    line-height: 0.90278vw;
    font-weight: 400; }
    @media (min-width: 1400px) {
      .product__price {
        font-size: 11px;
        line-height: 13px; } }
    @media (max-width: 1024px) {
      .product__price {
        font-size: 3.33333vmin;
        line-height: 3.33333vmin;
        font-weight: 500;
        flex-basis: 65%; } }
  .product__nav {
    display: flex;
    justify-content: flex-end; }
    @media (max-width: 1024px) {
      .product__nav {
        flex-basis: 35%; } }
  .product__buy, .product__fav {
    padding: 0;
    border: none;
    background: none;
    width: 0.83333vw;
    height: 0.83333vw;
    margin-right: 0.55556vw; }
    .product__buy svg, .product__fav svg {
      fill: none;
      stroke: currentColor;
      width: 0.83333vw;
      height: 0.83333vw;
      transition: all .3s ease-out; }
      @media (min-width: 1400px) {
        .product__buy svg, .product__fav svg {
          width: 12px;
          height: 12px; } }
      @media (max-width: 1024px) {
        .product__buy svg, .product__fav svg {
          width: 3.07692vmin;
          height: 3.07692vmin; } }
    .product__buy:hover svg, .product__fav:hover svg {
      color: #CB3D3D; }
    @media (min-width: 1400px) {
      .product__buy, .product__fav {
        width: 12px;
        height: 12px;
        margin-right: 8px; } }
    @media (max-width: 1024px) {
      .product__buy, .product__fav {
        width: 3.58974vmin;
        height: 3.58974vmin;
        margin-right: 2.05128vmin; } }
  .product__fav.is-active svg {
    fill: #CB3D3D;
    stroke: #CB3D3D;
    color: #CB3D3D; }
  @media (max-width: 1024px) {
    .product__buy.for-devices {
      display: none !important; } }
  .product:hover {
    color: #CB3D3D; }
    @media (max-width: 1024px) {
      .product:hover .product__name {
        color: #CB3D3D; } }

.mainheader {
  display: flex;
  padding-right: 2.08333vw; }
  .mainheader__title {
    margin-top: 0;
    font-size: 1.25vw;
    font-style: normal;
    font-weight: 300;
    line-height: 1.66667vw;
    text-transform: uppercase;
    margin-bottom: 0;
    flex-basis: 15.13889vw;
    flex-shrink: 0; }
    @media (min-width: 1400px) {
      .mainheader__title {
        font-size: 18px;
        line-height: 24px;
        flex-basis: 218px; } }
    @media (max-width: 1024px) {
      .mainheader__title {
        font-size: 3.84615vmin;
        line-height: 4.87179vmin;
        flex-basis: 100%;
        margin-bottom: 3.07692vmin; } }
  .mainheader__desc {
    font-size: 0.86806vw;
    font-weight: 300;
    line-height: 1.31944vw;
    flex: 1 1; }
    .mainheader__desc p {
      margin-bottom: 1.04167vw; }
      @media (min-width: 1400px) {
        .mainheader__desc p {
          margin-bottom: 15px; } }
    @media (min-width: 1400px) {
      .mainheader__desc {
        font-size: 12.5px;
        line-height: 19px; } }
    @media (max-width: 1024px) {
      .mainheader__desc {
        font-size: 3.20513vmin;
        line-height: 4.87179vmin;
        margin-bottom: 5.12821vmin; } }
  .mainheader__intro {
    max-width: 18.61111vw; }
    @media (min-width: 1400px) {
      .mainheader__intro {
        max-width: 268px; } }
    @media (max-width: 1024px) {
      .mainheader__intro {
        max-width: 100%; } }
  .mainheader .btn {
    white-space: nowrap;
    min-width: 14.79167vw; }
    @media (min-width: 1400px) {
      .mainheader .btn {
        min-width: 213px; } }
    @media (max-width: 1024px) {
      .mainheader .btn {
        display: none; } }
  @media (min-width: 1400px) {
    .mainheader {
      padding-right: 30px; } }
  @media (max-width: 1024px) {
    .mainheader {
      display: block;
      padding-right: 0;
      padding-left: 5.12821vmin; } }

.mainaboutus {
  padding-bottom: 4.16667vw; }
  .mainaboutus__container {
    display: flex;
    padding-right: 2.08333vw; }
    @media (min-width: 1400px) {
      .mainaboutus__container {
        padding-right: 30px; } }
    @media (max-width: 1024px) {
      .mainaboutus__container {
        padding-right: 0;
        display: block; } }
  .mainaboutus__title {
    margin-top: 0;
    font-size: 1.25vw;
    font-style: normal;
    font-weight: 300;
    line-height: 1.66667vw;
    text-transform: uppercase;
    margin-bottom: 0;
    flex-basis: 15.13889vw;
    flex-shrink: 0; }
    @media (min-width: 1400px) {
      .mainaboutus__title {
        font-size: 18px;
        line-height: 24px;
        flex-basis: 218px; } }
    @media (max-width: 1024px) {
      .mainaboutus__title {
        font-size: 3.84615vmin;
        line-height: 4.87179vmin;
        flex-basis: 55.89744vmin;
        margin-bottom: 3.07692vmin; } }
  .mainaboutus__content {
    font-size: 0.86806vw;
    font-weight: 300;
    line-height: 1.31944vw;
    flex: 1 1;
    -moz-column-count: 2;
         column-count: 2; }
    .mainaboutus__content p {
      margin-bottom: 1.04167vw;
      max-width: 18.54167vw;
      page-break-inside: avoid; }
      @media (min-width: 1400px) {
        .mainaboutus__content p {
          margin-bottom: 15px;
          max-width: 267px; } }
      @media (max-width: 1024px) {
        .mainaboutus__content p {
          margin-bottom: 3.84615vmin;
          max-width: 100%; } }
    @media (min-width: 1400px) {
      .mainaboutus__content {
        font-size: 12.5px;
        line-height: 19px; } }
    @media (max-width: 1024px) {
      .mainaboutus__content {
        font-size: 3.20513vmin;
        line-height: 4.87179vmin;
        -moz-column-count: 1;
             column-count: 1; } }
  .mainaboutus__btn {
    margin-left: 1.38889vw; }
    @media (min-width: 1400px) {
      .mainaboutus__btn {
        margin-left: 20px; } }
    @media (max-width: 1024px) {
      .mainaboutus__btn {
        margin-left: 0;
        display: flex;
        justify-content: center;
        margin-right: 5.12821vmin; }
        .mainaboutus__btn .btn {
          width: 56.41026vmin; } }
  .mainaboutus .btn {
    white-space: nowrap;
    min-width: 14.79167vw; }
    @media (min-width: 1400px) {
      .mainaboutus .btn {
        min-width: 213px; } }
  @media (min-width: 1400px) {
    .mainaboutus {
      padding-bottom: 60px; } }
  @media (max-width: 1024px) {
    .mainaboutus {
      padding-left: 5.12821vmin;
      padding-bottom: 10.25641vmin; } }

.mainevents {
  margin-bottom: 2.08333vw; }
  @media (min-width: 1400px) {
    .mainevents {
      margin-bottom: 30px; } }
  @media (max-width: 1024px) {
    .mainevents {
      margin-bottom: 7.69231vmin; } }

.cart-page {
  min-height: 100vh; }
  .cart-page__container {
    display: flex; }
  .cart-page__title {
    text-transform: uppercase;
    font-size: 1.25vw;
    line-height: 1.66667vw;
    margin-top: 0;
    flex-basis: 15.27778vw;
    flex-shrink: 0;
    font-weight: 300; }
    @media (min-width: 1400px) {
      .cart-page__title {
        font-size: 18px;
        line-height: 24px;
        flex-basis: 220px; } }
    @media (max-width: 1024px) {
      .cart-page__title {
        font-size: 4.61538vmin;
        line-height: 6.15385vmin;
        flex-basis: 56.41026vmin;
        display: none; } }
  .cart-page__wrapper {
    display: flex;
    flex-wrap: wrap;
    flex: 1 1;
    align-items: flex-start; }
    @media (max-width: 1024px) {
      .cart-page__wrapper {
        display: block; } }
  .cart-page__total {
    width: 100%;
    font-size: 0.83333vw;
    line-height: 1.11111vw;
    margin-bottom: 1.875vw; }
    @media (min-width: 1400px) {
      .cart-page__total {
        font-size: 12px;
        line-height: 16px;
        margin-bottom: 27px; } }
    @media (max-width: 1024px) {
      .cart-page__total {
        font-size: 3.07692vmin;
        line-height: 4.10256vmin;
        margin-bottom: 6.92308vmin;
        display: none; } }
  .cart-page__products {
    flex: 1 1;
    margin-right: 2.77778vw; }
    @media (min-width: 1400px) {
      .cart-page__products {
        flex-basis: 441px;
        margin-right: 40px; } }
    @media (max-width: 1024px) {
      .cart-page__products {
        flex-basis: 113.07692vmin;
        margin-right: 0;
        margin-bottom: 8.20513vmin; } }
  .cart-page__form {
    flex: 1 1;
    border: 1px solid #C7C7C7;
    border-radius: 0.34722vw;
    padding: 1.38889vw;
    max-width: 22.15278vw; }
    @media (min-width: 1400px) {
      .cart-page__form {
        border-radius: 5px;
        padding: 20px;
        max-width: 319px; } }
    @media (max-width: 1024px) {
      .cart-page__form {
        border-radius: 1.28205vmin;
        padding: 0;
        max-width: 100%;
        border: none; } }
  .cart-page__product {
    margin-bottom: 1.38889vw; }
    .cart-page__product:last-child {
      margin-bottom: 0; }
    @media (min-width: 1400px) {
      .cart-page__product {
        margin-bottom: 20px; } }
    @media (max-width: 1024px) {
      .cart-page__product {
        margin-bottom: 5.12821vmin; } }
  @media (max-width: 1024px) {
    .cart-page {
      padding-left: 5.12821vmin; } }

.cartproduct {
  display: flex;
  border: 1px solid #C7C7C7;
  position: relative;
  overflow: hidden;
  border-radius: 0.48611vw; }
  .cartproduct__image {
    flex-basis: 14.58333vw;
    flex-shrink: 0;
    border-radius: 0.34722vw 0 0 0.34722vw;
    position: relative;
    overflow: hidden; }
    .cartproduct__image img {
      width: 100%; }
    @media (min-width: 1400px) {
      .cartproduct__image {
        flex-basis: 210px;
        border-radius: 5px 0 0 5px; } }
    @media (max-width: 1024px) {
      .cartproduct__image {
        flex-basis: 53.84615vmin;
        border-radius: 1.28205vmin 1.28205vmin 0 0; } }
  .cartproduct__wrap {
    padding: 2.08333vw;
    font-size: 0.76389vw;
    flex: 1 1;
    display: flex; }
    @media (min-width: 1400px) {
      .cartproduct__wrap {
        padding: 30px;
        font-size: 11px; } }
    @media (max-width: 1024px) {
      .cartproduct__wrap {
        padding: 2.5641vmin;
        padding-top: 4.10256vmin;
        font-size: 2.82051vmin;
        flex-direction: column; } }
  .cartproduct__row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.69444vw; }
    @media (min-width: 1400px) {
      .cartproduct__row {
        margin-bottom: 10px; } }
    @media (max-width: 1024px) {
      .cartproduct__row {
        margin-bottom: 0;
        display: block; } }
  .cartproduct__col--left {
    max-width: 8.125vw; }
    @media (min-width: 1400px) {
      .cartproduct__col--left {
        max-width: 117px; } }
    @media (max-width: 1024px) {
      .cartproduct__col--left {
        max-width: 100%; } }
  .cartproduct__col--right {
    flex-basis: 4.72222vw;
    max-width: 4.72222vw;
    flex-shrink: 0; }
    @media (min-width: 1400px) {
      .cartproduct__col--right {
        max-width: 68px;
        flex-basis: 68px; } }
    @media (max-width: 1024px) {
      .cartproduct__col--right {
        max-width: 100%;
        flex-basis: 100%; } }
  @media (max-width: 1024px) {
    .cartproduct__col {
      display: flex; } }
  .cartproduct__desc {
    line-height: 1.2;
    color: #A0A0A0; }
    .cartproduct__desc span {
      display: block; }
  .cartproduct__nameblock {
    flex-basis: 7.77778vw;
    margin-right: 2.08333vw; }
    @media (min-width: 1400px) {
      .cartproduct__nameblock {
        flex-basis: 112px;
        margin-right: 30px; } }
    @media (max-width: 1024px) {
      .cartproduct__nameblock {
        margin-right: 0;
        flex-basis: auto;
        margin-bottom: 2.5641vmin; } }
  .cartproduct__title, .cartproduct__price {
    margin-bottom: 0.27778vw;
    line-height: 1.2; }
    @media (min-width: 1400px) {
      .cartproduct__title, .cartproduct__price {
        margin-bottom: 4px; } }
    @media (max-width: 1024px) {
      .cartproduct__title, .cartproduct__price {
        margin-bottom: 1.02564vmin; } }
  .cartproduct__price {
    font-size: 0.76389vw;
    font-style: normal;
    font-weight: 450; }
    @media (min-width: 1400px) {
      .cartproduct__price {
        font-size: 11px; } }
    @media (max-width: 1024px) {
      .cartproduct__price {
        font-weight: 500;
        font-size: 3.33333vmin; } }
  .cartproduct__desc {
    flex-basis: 5.55556vw; }
    @media (min-width: 1400px) {
      .cartproduct__desc {
        flex-basis: 80px; } }
    @media (max-width: 1024px) {
      .cartproduct__desc {
        flex-basis: 20.51282vmin; } }
    @media (max-width: 1024px) {
      .cartproduct__desc {
        font-size: 2.5641vmin;
        margin-bottom: 2.5641vmin; } }
  .cartproduct__nav {
    display: flex;
    flex-direction: column;
    flex: 1 1;
    align-items: flex-end; }
    @media (max-width: 1024px) {
      .cartproduct__nav {
        align-items: flex-start; } }
  .cartproduct__subtitle {
    color: #A0A0A0; }
  .cartproduct__btn {
    padding: 0;
    border: none;
    background: transparent;
    font-size: 0.69444vw;
    color: rgba(0, 0, 0, 0.4);
    text-align: left;
    width: 4.86111vw;
    margin-bottom: 0.69444vw; }
    .cartproduct__btn:hover {
      color: #000; }
    @media (max-width: 1024px) {
      .cartproduct__btn--del {
        position: absolute;
        top: 1.79487vmin;
        right: 1.79487vmin; }
        .cartproduct__btn--del svg {
          width: 3.84615vmin;
          height: 3.84615vmin; } }
    @media (min-width: 1400px) {
      .cartproduct__btn {
        font-size: 10px;
        width: 70px;
        margin-bottom: 10px; } }
    @media (max-width: 1024px) {
      .cartproduct__btn {
        font-size: 2.5641vmin;
        width: auto;
        margin-bottom: 2.5641vmin; } }
  @media (max-width: 1024px) {
    .cartproduct__title, .cartproduct__subtitle, .cartproduct__price, .cartproduct__desc {
      flex-basis: 50%; } }
  @media (min-width: 1400px) {
    .cartproduct {
      border-radius: 7px; } }
  @media (max-width: 1024px) {
    .cartproduct {
      border-radius: 1.79487vmin;
      display: block; } }

.cartform__title {
  font-size: 0.83333vw;
  margin-bottom: 0.97222vw;
  font-weight: 300;
  margin-top: 0; }
  @media (min-width: 1400px) {
    .cartform__title {
      font-size: 12px;
      margin-bottom: 14px; } }
  @media (max-width: 1024px) {
    .cartform__title {
      font-size: 3.33333vmin;
      margin-bottom: 3.58974vmin; } }

.cartform__item {
  margin-bottom: 2.08333vw; }
  @media (min-width: 1400px) {
    .cartform__item {
      margin-bottom: 30px; } }
  .cartform__item--pay {
    margin-bottom: 1.38889vw; }
    @media (min-width: 1400px) {
      .cartform__item--pay {
        margin-bottom: 20px; } }
    @media (max-width: 1024px) {
      .cartform__item--pay {
        margin-bottom: 5.12821vmin; } }

.cartform__total {
  font-size: 0.83333vw;
  margin-bottom: 1.94444vw;
  line-height: 1.2; }
  .cartform__total span {
    font-size: 1.11111vw;
    font-weight: 400;
    display: block;
    margin-top: 0.48611vw;
    font-weight: 400; }
    @media (min-width: 1400px) {
      .cartform__total span {
        font-size: 16px;
        margin-top: 7px; } }
    @media (max-width: 1024px) {
      .cartform__total span {
        font-size: 4.10256vmin;
        margin-top: 1.79487vmin; } }
  .cartform__total p {
    font-size: 0.69444vw; }
    @media (min-width: 1400px) {
      .cartform__total p {
        font-size: 10px; } }
    @media (max-width: 1024px) {
      .cartform__total p {
        font-size: 2.5641vmin; } }
  @media (min-width: 1400px) {
    .cartform__total {
      font-size: 12px;
      margin-bottom: 28px; } }
  @media (max-width: 1024px) {
    .cartform__total {
      font-size: 3.07692vmin;
      margin-bottom: 7.17949vmin; }
      .cartform__total p {
        font-size: 3.07692vmin; } }

.cartform__buy {
  width: 15.69444vw;
  width: 100%;
  font-weight: 300; }
  @media (min-width: 1400px) {
    .cartform__buy {
      width: 226px; } }
  @media (max-width: 1024px) {
    .cartform__buy {
      width: 57.94872vmin; } }

.cartform__radio {
  display: flex; }
  .cartform__radio .radio {
    margin-right: 2.5vw;
    width: 50%; }
    @media (min-width: 1400px) {
      .cartform__radio .radio {
        margin-right: 36px; } }
    @media (max-width: 1024px) {
      .cartform__radio .radio {
        margin-right: 9.23077vmin; } }

.cartform__btnwrap {
  display: flex;
  justify-content: center; }


/*input:invalid:not(:-moz-placeholder-shown) {*/
/*  border-color: rgba(203, 61, 61, 0.6); }*/

input:focus:invalid:not(:placeholder-shown) {
  border-color: rgba(203, 61, 61, 0.6); }

input:valid:not(:-moz-placeholder-shown) {
  border-color: #C7C7C7; }

input:valid:not(:placeholder-shown) {
  border-color: #C7C7C7; }

.form ::-moz-placeholder {
  color: #C7C7C7; }

.form ::placeholder {
  color: #C7C7C7; }

.form__input {
  width: 100%;
  height: 2.08333vw;
  border-radius: 0.34722vw;
  border: 1px solid #C7C7C7;
  font-size: 0.69444vw;
  text-indent: 0.69444vw;
  transition: all .3s ease-out;
  z-index: 1;
  background-color: transparent; }
  .form__input:focus {
    border: 1px solid rgba(203, 61, 61, 0.6); }
    .form__input:focus + .form__legend {
      opacity: 0; }
  .form__input.is-filled + .form__legend {
    opacity: 0; }
  .form__input .error {
    border-color: rgba(203, 61, 61, 0.6); }
  @media (min-width: 1400px) {
    .form__input {
      height: 30px;
      border-radius: 5px;
      font-size: 10px;
      text-indent: 10px; } }
  @media (max-width: 1024px) {
    .form__input {
      height: 9.23077vmin;
      border-radius: 1.28205vmin;
      font-size: 3.33333vmin;
      text-indent: 2.5641vmin; } }

.form__fieldset {
  margin-bottom: 0.83333vw;
  position: relative; }
  @media (min-width: 1400px) {
    .form__fieldset {
      margin-bottom: 12px; } }
  @media (max-width: 1024px) {
    .form__fieldset {
      margin-bottom: 0;
      margin-bottom: 2.5641vmin; } }

.form__row {
  display: flex;
  margin-left: -0.34722vw;
  margin-right: -0.34722vw; }
  @media (min-width: 1400px) {
    .form__row {
      margin-left: -5px;
      margin-right: -5px; } }
  @media (max-width: 1024px) {
    .form__row {
      margin-left: 0;
      margin-right: 0;
      display: block; } }

.form__col {
  flex-basis: calc(50% - 0.69444vw);
  margin-left: 0.34722vw;
  margin-right: 0.34722vw; }
  @media (min-width: 1400px) {
    .form__col {
      flex-basis: calc(50% - 10px);
      margin-left: 5px;
      margin-right: 5px; } }
  @media (max-width: 1024px) {
    .form__col {
      flex-basis: 100%;
      margin-left: 0;
      margin-right: 0; } }

.form__legend {
  color: #C7C7C7;
  font-size: 0.69444vw;
  text-indent: 0.69444vw;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
  z-index: -1; }
  .form__legend span {
    color: #CB3D3D; }
  @media (min-width: 1400px) {
    .form__legend {
      font-size: 10px;
      text-indent: 10px; } }
  @media (max-width: 1024px) {
    .form__legend {
      font-size: 3.33333vmin;
      text-indent: 2.5641vmin; } }

.totalcart__title {
  font-size: 0.83333vw;
  font-weight: 300;
  margin-bottom: 0.76389vw; }
  @media (min-width: 1400px) {
    .totalcart__title {
      font-size: 12px;
      margin-bottom: 11px; } }
  @media (max-width: 1024px) {
    .totalcart__title {
      font-size: 3.07692vmin;
      margin-bottom: 2.82051vmin; } }

.totalcart__wrap {
  display: flex;
  align-items: center;
  justify-content: space-between; }
  @media (max-width: 1024px) {
    .totalcart__wrap {
      display: block; } }

.totalcart__count {
  font-size: 0.69444vw;
  font-weight: 300; }
  @media (min-width: 1400px) {
    .totalcart__count {
      font-size: 10px; } }
  @media (max-width: 1024px) {
    .totalcart__count {
      font-size: 2.5641vmin;
      margin-bottom: 2.5641vmin; } }

.totalcart__sum {
  font-size: 1.11111vw;
  font-weight: 400; }
  @media (min-width: 1400px) {
    .totalcart__sum {
      font-size: 16px; } }
  @media (max-width: 1024px) {
    .totalcart__sum {
      font-size: 4.10256vmin; } }

.contacts-page {
  min-height: calc(100vh - 18.75vw); }
  .contacts-page__container {
    display: flex; }
    @media (max-width: 1024px) {
      .contacts-page__container {
        display: block; } }
  .contacts-page__title {
    text-transform: uppercase;
    font-size: 1.25vw;
    line-height: 1.66667vw;
    margin-top: 0;
    flex-basis: 15.27778vw;
    flex-shrink: 0;
    font-weight: 300; }
    @media (min-width: 1400px) {
      .contacts-page__title {
        font-size: 18px;
        line-height: 24px;
        flex-basis: 220px; } }
    @media (max-width: 1024px) {
      .contacts-page__title {
        font-size: 4.61538vmin;
        line-height: 6.15385vmin;
        flex-basis: 56.41026vmin;
        display: none; } }
  .contacts-page__col {
    flex-basis: 20.20833vw;
    padding-right: 1.80556vw; }
    @media (min-width: 1400px) {
      .contacts-page__col {
        flex-basis: 291px;
        padding-right: 26px; } }
    @media (max-width: 1024px) {
      .contacts-page__col {
        padding-right: 0; } }
  .contacts-page__h4 {
    margin-bottom: 3.19444vw;
    font-size: 0.83333vw;
    line-height: 1.11111vw;
    max-width: 16.59722vw; }
    @media (min-width: 1400px) {
      .contacts-page__h4 {
        margin-bottom: 46px;
        font-size: 12px;
        line-height: 16px;
        max-width: 239px; } }
    @media (max-width: 1024px) {
      .contacts-page__h4 {
        margin-bottom: 5.38462vmin;
        font-size: 3.58974vmin;
        line-height: 4.61538vmin;
        max-width: 100%; } }
  .contacts-page__map {
    position: relative;
    width: 22.22222vw;
    height: 14.93056vw;
    background-color: #575757;
    overflow: hidden;
    border-radius: 0.34722vw; }
    @media (min-width: 1400px) {
      .contacts-page__map {
        width: 320px;
        height: 215px;
        border-radius: 5px; } }
    @media (max-width: 1024px) {
      .contacts-page__map {
        width: 82.05128vmin;
        height: 55.12821vmin;
        border-radius: 1.28205vmin; } }
  .contacts-page__subtitle {
    font-size: 0.83333vw;
    line-height: 1.11111vw;
    margin-bottom: 2.5vw; }
    .contacts-page__subtitle p {
      margin-bottom: 1.11111vw; }
      @media (min-width: 1400px) {
        .contacts-page__subtitle p {
          margin-bottom: 16px; } }
      @media (max-width: 1024px) {
        .contacts-page__subtitle p {
          margin-bottom: 4.10256vmin; } }
    @media (min-width: 1400px) {
      .contacts-page__subtitle {
        font-size: 12px;
        line-height: 16px;
        margin-bottom: 36px; } }
    @media (max-width: 1024px) {
      .contacts-page__subtitle {
        font-size: 3.58974vmin;
        line-height: 4.61538vmin;
        margin-bottom: 5.38462vmin; } }
  .contacts-page__contacts {
    display: flex;
    flex-direction: column;
    margin-bottom: 2.08333vw; }
    .contacts-page__contacts .btn {
      height: 2.29167vw;
      margin-bottom: 0.76389vw; }
      @media (min-width: 1400px) {
        .contacts-page__contacts .btn {
          height: 33px;
          margin-bottom: 11px; } }
      @media (max-width: 1024px) {
        .contacts-page__contacts .btn {
          height: 6.92308vmin;
          margin-bottom: 2.30769vmin; } }
    @media (min-width: 1400px) {
      .contacts-page__contacts {
        margin-bottom: 30px; } }
    @media (max-width: 1024px) {
      .contacts-page__contacts {
        margin-bottom: 7.69231vmin; } }
  .contacts-page__social p {
    font-size: 0.83333vw;
    line-height: 1.18056vw;
    margin-bottom: 0.83333vw; }
    @media (min-width: 1400px) {
      .contacts-page__social p {
        font-size: 12px;
        line-height: 17px;
        margin-bottom: 12px; } }
    @media (max-width: 1024px) {
      .contacts-page__social p {
        font-size: 3.58974vmin;
        line-height: 4.61538vmin;
        margin-bottom: 5.12821vmin; } }
  .contacts-page__social .social__list {
    text-align: left;
    justify-content: flex-start; }
  .contacts-page__social .social__item svg {
    max-width: 2.77778vw;
    height: 1.66667vw; }
    @media (min-width: 1400px) {
      .contacts-page__social .social__item svg {
        max-width: 40px;
        height: 24px; } }
    @media (max-width: 1024px) {
      .contacts-page__social .social__item svg {
        max-width: 10.25641vmin;
        height: 6.15385vmin; } }
  @media (max-width: 1024px) {
    .contacts-page__social {
      margin-bottom: 6.15385vmin; } }
  @media (min-width: 1400px) {
    .contacts-page {
      min-height: calc(100vh - 270px); } }
  @media (max-width: 1024px) {
    .contacts-page {
      min-height: auto;
      padding-left: 5.12821vmin; } }

.artist-page .container {
  position: relative; }

@media (max-width: 1024px) {
  .artist-page__imagesblock {
    display: flex;
    margin: 0 -1.28205vmin; } }

.artist-page__imagesmall img {
  width: 100%; }

@media (max-width: 1024px) {
  .artist-page__imagesmall {
    margin: 0 1.28205vmin;
    flex-basis: calc(50% - 2.5641vmin); } }

.artist-page__row {
  display: flex; }
  @media (max-width: 1024px) {
    .artist-page__row {
      display: block;
      padding-left: 5.12821vmin;
      position: relative;
      top: -1.02564vmin; } }

.artist-page__col {
  flex-basis: 26.38889vw;
  position: relative; }
  .artist-page__col:last-child {
    flex: 1 1; }
  @media (min-width: 1400px) {
    .artist-page__col {
      flex-basis: 380px; } }
  @media (max-width: 1024px) {
    .artist-page__col {
      flex-basis: 97.4359vmin;
      position: static; } }

.artist-page__list {
  height: calc(100vh - 18.05556vw); }
  .artist-page__list li {
    font-size: 1.45833vw;
    text-transform: uppercase;
    margin-bottom: 1.84028vw;
    max-width: 18.05556vw;
    line-height: 1.5; }
    .artist-page__list li a:hover {
      color: #CB3D3D; }
    @media (max-width: 1024px) {
      .artist-page__list li a {
        display: block;
        margin-bottom: 2.5641vmin; } }
    @media (min-width: 1400px) {
      .artist-page__list li {
        font-size: 21px;
        margin-bottom: 26.5px;
        max-width: 260px; } }
    @media (max-width: 1024px) {
      .artist-page__list li {
        font-size: 4.10256vmin;
        margin-bottom: 6.66667vmin;
        max-width: 100%; } }
  @media (min-width: 1400px) {
    .artist-page__list {
      height: calc(100vh - 260px); } }
  @media (max-width: 1024px) {
    .artist-page__list {
      height: auto;
      overflow-y: visible; } }

.artist-page__nav {
  position: absolute;
  top: -0.27778vw;
  right: 2.15278vw;
  display: flex;
  align-items: center;
  max-width: 5.55556vw; }
  .artist-page__nav--letters .artist-page__letters {
    color: #CB3D3D; }
  @media (max-width: 1024px) {
    .artist-page__nav--letters {
      right: 5.12821vmin !important;
      top: -1.02564vmin !important; } }
  @media (min-width: 1400px) {
    .artist-page__nav {
      top: -4px;
      right: 31px;
      max-width: 80px; } }
  @media (max-width: 1024px) {
    .artist-page__nav {
      top: 1.02564vmin;
      right: 0;
      max-width: 20.51282vmin;
      position: absolute; } }

.artist-page__letters {
  font-size: 0.76389vw;
  line-height: 1.31944vw; }
  .artist-page__letters:hover {
    color: #CB3D3D; }
  @media (min-width: 1400px) {
    .artist-page__letters {
      font-size: 11px;
      line-height: 19px; } }
  @media (max-width: 1024px) {
    .artist-page__letters {
      font-size: 2.82051vmin;
      line-height: 4.87179vmin; } }

.artist-page__srollist {
  margin-left: 1.80556vw; }
  .artist-page__srollist svg {
    width: 1.45833vw;
    height: 0.41667vw; }
    @media (min-width: 1400px) {
      .artist-page__srollist svg {
        width: 21px;
        height: 6px; } }
    @media (max-width: 1024px) {
      .artist-page__srollist svg {
        width: 5.38462vmin;
        height: 1.53846vmin; } }
  .artist-page__srollist.is-active svg {
    color: #CB3D3D; }
  @media (min-width: 1400px) {
    .artist-page__srollist {
      margin-left: 26px; } }
  @media (max-width: 1024px) {
    .artist-page__srollist {
      margin-left: 4.10256vmin; } }

.artist-page__previews {
  display: flex; }
  @media (max-width: 1024px) {
    .artist-page__previews {
      display: none; } }

.artist-page__preview {
  width: 18.75vw;
  margin-right: 0.69444vw; }
  .artist-page__preview img {
    width: 100%; }
  @media (min-width: 1400px) {
    .artist-page__preview {
      width: 278px;
      margin-right: 10px; } }
  @media (max-width: 1024px) {
    .artist-page__preview {
      width: 54.61538vmin;
      margin-right: 2.5641vmin; } }

.artist-page__lettersblock {
  -moz-column-count: 2;
       column-count: 2;
  -moz-column-gap: 2.36111vw;
       column-gap: 2.36111vw;
  max-width: 58.61111vw; }
  @media (min-width: 1400px) {
    .artist-page__lettersblock {
      -moz-column-gap: 34px;
           column-gap: 34px;
      max-width: 844px; } }
  @media (max-width: 1024px) {
    .artist-page__lettersblock {
      -moz-column-gap: 0;
           column-gap: 0;
      max-width: 100%;
      padding-left: 5.12821vmin; } }

.artist-page__letter {
  width: 28.125vw;
  -moz-column-break-inside: avoid;
       break-inside: avoid;
  margin-bottom: 1.80556vw; }
  @media (min-width: 1400px) {
    .artist-page__letter {
      width: 405px;
      margin-bottom: 26px; } }
  @media (max-width: 1024px) {
    .artist-page__letter {
      width: 100%;
      margin-bottom: 4.10256vmin; } }

.artist-page__letter-title {
  font-size: 1.45833vw;
  line-height: 1;
  margin-bottom: 0.97222vw;
  color: #CB3D3D; }
  @media (min-width: 1400px) {
    .artist-page__letter-title {
      font-size: 21px;
      margin-bottom: 14px; } }
  @media (max-width: 1024px) {
    .artist-page__letter-title {
      font-size: 3.07692vmin;
      margin-bottom: 4.61538vmin; } }

.artist-page__letter-list {
  font-size: 1.45833vw;
  line-height: 2.63889vw; }
  .artist-page__letter-list li {
    margin-bottom: 0.27778vw; }
    @media (min-width: 1400px) {
      .artist-page__letter-list li {
        margin-bottom: 4px; } }
    @media (max-width: 1024px) {
      .artist-page__letter-list li {
        margin-bottom: 1.02564vmin; } }
  .artist-page__letter-list a:hover {
    color: #CB3D3D; }
  @media (min-width: 1400px) {
    .artist-page__letter-list {
      font-size: 21px;
      line-height: 38px; } }
  @media (max-width: 1024px) {
    .artist-page__letter-list {
      font-size: 3.07692vmin;
      line-height: 4.35897vmin; } }

.simplebar-track {
  display: none !important; }

.event-page__video {
  margin-bottom: 0.69444vw;
  display: flex;
  border-radius: 0.34722vw;
  z-index: 1;
  overflow: hidden;
  position: relative; }
  @media (min-width: 1400px) {
    .event-page__video {
      margin-bottom: 10px;
      border-radius: 5px; } }
  @media (max-width: 1024px) {
    .event-page__video {
      margin-bottom: 2.5641vmin;
      border-radius: 1.28205vmin; } }

.event-page__container {
  display: flex;
  margin-bottom: 2.77778vw; }
  @media (min-width: 1400px) {
    .event-page__container {
      margin-bottom: 40px; } }
  @media (max-width: 1024px) {
    .event-page__container {
      margin-bottom: 10.25641vmin;
      display: block;
      padding-left: 5.12821vmin; } }

.event-page__subtitle {
  font-size: 0.83333vw;
  line-height: 1.66667vw; }
  @media (min-width: 1400px) {
    .event-page__subtitle {
      font-size: 12px;
      line-height: 24px; } }
  @media (max-width: 1024px) {
    .event-page__subtitle {
      font-size: 3.07692vmin;
      line-height: 6.15385vmin; } }

.event-page__preview {
  flex-basis: 38.95833vw;
  max-width: 38.95833vw;
  margin-right: 1.80556vw;
  z-index: 1;
  position: relative;
  overflow: hidden;
  border-radius: 0.34722vw; }
  @media (min-width: 1400px) {
    .event-page__preview {
      flex-basis: 561px;
      max-width: 561px;
      margin-right: 26px;
      border-radius: 5px; } }
  @media (max-width: 1024px) {
    .event-page__preview {
      flex-basis: auto;
      max-width: 100%;
      margin-right: 0;
      width: 100%;
      margin-bottom: 2.30769vmin;
      border-radius: 1.28205vmin; } }

.event-page__info {
  flex: 1 1; }

.event-page__subheading {
  font-size: 1.25vw;
  line-height: 1.66667vw;
  margin-bottom: 1.52778vw;
  font-weight: 200; }
  .event-page__subheading span {
    display: block; }
  @media (min-width: 1400px) {
    .event-page__subheading {
      font-size: 18px;
      line-height: 24px;
      margin-bottom: 22px; } }
  @media (max-width: 1024px) {
    .event-page__subheading {
      font-size: 3.58974vmin;
      line-height: 6.15385vmin;
      margin-bottom: 2.5641vmin;
      display: flex;
      justify-content: space-between; } }

.event-page__heading {
  margin-top: 0;
  margin-bottom: 0.41667vw;
  font-size: 1.45833vw;
  line-height: 1.875vw;
  margin-bottom: 1.73611vw;
  font-weight: 300; }
  .event-page__heading span {
    display: block;
    font-size: 1.25vw;
    line-height: 1.66667vw;
    margin-top: 0.48611vw; }
    @media (min-width: 1400px) {
      .event-page__heading span {
        font-size: 18px;
        line-height: 24px;
        margin-top: 7px; } }
    @media (max-width: 1024px) {
      .event-page__heading span {
        font-size: 4.61538vmin;
        line-height: 6.15385vmin;
        margin-top: 1.02564vmin; } }
  @media (min-width: 1400px) {
    .event-page__heading {
      margin-bottom: 6px;
      font-size: 21px;
      line-height: 27px;
      margin-bottom: 25px; } }
  @media (max-width: 1024px) {
    .event-page__heading {
      margin-bottom: 1.53846vmin;
      font-size: 4.10256vmin;
      line-height: 5.64103vmin;
      margin-bottom: 6.41026vmin; } }

.event-page__description {
  font-size: 0.86806vw;
  line-height: 1.31944vw;
  margin-bottom: 1.11111vw;
  max-width: 23.125vw; }
  @media (min-width: 1400px) {
    .event-page__description {
      font-size: 12.5px;
      line-height: 19px;
      margin-bottom: 16px;
      max-width: 333px; } }
  @media (max-width: 1024px) {
    .event-page__description {
      font-size: 3.58974vmin;
      line-height: 5.12821vmin;
      margin-bottom: 4.10256vmin;
      max-width: 85.38462vmin; } }

@media (max-width: 1024px) {
  .event-page__regbtnwrap {
    display: flex;
    justify-content: center; } }

.event-page__regbtn {
  width: 14.79167vw; }
  @media (min-width: 1400px) {
    .event-page__regbtn {
      width: 213px; } }
  @media (max-width: 1024px) {
    .event-page__regbtn {
      min-width: 38.71795vmin;
      width: auto; } }

.event-slider .btn-slider {
  position: absolute;
  top: 50%;
  border: none;
  padding: 0;
  background: none;
  transform: translateY(-50%);
  z-index: 2; }
  .event-slider .btn-slider svg {
    width: 1.66667vw;
    height: 1.66667vw; }
    @media (min-width: 1400px) {
      .event-slider .btn-slider svg {
        width: 24px;
        height: 24px; } }
    @media (max-width: 1024px) {
      .event-slider .btn-slider svg {
        width: 6.15385vmin;
        height: 6.15385vmin; } }
  .event-slider .btn-slider.prev {
    left: 1.38889vw; }
    @media (min-width: 1400px) {
      .event-slider .btn-slider.prev {
        left: 20px; } }
    @media (max-width: 1024px) {
      .event-slider .btn-slider.prev {
        left: 5.12821vmin; } }
  .event-slider .btn-slider.next {
    right: 1.38889vw; }
    @media (min-width: 1400px) {
      .event-slider .btn-slider.next {
        right: 20px; } }
    @media (max-width: 1024px) {
      .event-slider .btn-slider.next {
        right: 5.12821vmin; } }

.otherevents {
  display: flex; }
  .otherevents__title {
    margin-top: 0;
    flex-basis: 15.06944vw;
    flex-shrink: 0;
    font-size: 1.25vw;
    line-height: 1.66667vw;
    text-transform: uppercase;
    margin-bottom: 0;
    font-weight: 300; }
    @media (min-width: 1400px) {
      .otherevents__title {
        flex-basis: 217px;
        font-size: 18px;
        line-height: 24px; } }
    @media (max-width: 1024px) {
      .otherevents__title {
        flex-basis: 55.64103vmin;
        font-size: 3.84615vmin;
        line-height: 4.87179vmin;
        max-width: 43.58974vmin;
        margin-bottom: 4.10256vmin; }
        .otherevents__title br {
          display: none; } }
  .otherevents__cards {
    flex-basis: 60.76389vw;
    display: flex;
    flex-wrap: wrap;
    gap: 0.69444vw; }
    @media (min-width: 1400px) {
      .otherevents__cards {
        flex-basis: 875px;
        gap: 10px; } }
    @media (max-width: 1024px) {
      .otherevents__cards {
        flex-basis: 100%;
        gap: 0; } }
  @media (max-width: 1024px) {
    .otherevents {
      display: block;
      padding-left: 5.12821vmin; } }

.eventcard {
  padding: 0.69444vw;
  padding-top: 1.31944vw;
  padding-bottom: 1.31944vw;
  border: 1px solid #C7C7C7;
  margin-bottom: 0.69444vw;
  border-radius: 0.34722vw;
  max-width: 14.72222vw;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 7.70833vw;
  transition: all .3s ease-out;
  position: relative; }
  .eventcard:hover {
    border: 1px solid rgba(203, 61, 61, 0.6);
    color: #CB3D3D; }
  .eventcard__hdr {
    display: flex;
    justify-content: space-between;
    font-size: 0.625vw;
    margin-bottom: 0.55556vw; }
    @media (min-width: 1400px) {
      .eventcard__hdr {
        font-size: 9px;
        margin-bottom: 8px; } }
    @media (max-width: 1024px) {
      .eventcard__hdr {
        font-size: 2.30769vmin;
        margin-bottom: 2.05128vmin; } }
  .eventcard__title {
    text-transform: uppercase;
    font-size: 0.83333vw;
    line-height: 1.11111vw; }
    .eventcard__title a {
      transition: none; }
      .eventcard__title a:after {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0; }
    @media (min-width: 1400px) {
      .eventcard__title {
        font-size: 12px;
        line-height: 16px; } }
    @media (max-width: 1024px) {
      .eventcard__title {
        font-size: 2.82051vmin;
        line-height: 4.10256vmin;
        display: flex;
        justify-content: space-between; } }
  .eventcard__name {
    font-size: 0.83333vw;
    line-height: 1.04167vw;
    font-weight: 200; }
    @media (min-width: 1400px) {
      .eventcard__name {
        font-size: 12px;
        line-height: 15px; } }
    @media (max-width: 1024px) {
      .eventcard__name {
        font-size: 3.07692vmin;
        line-height: 3.84615vmin;
        padding-top: 1.02564vmin; } }
  @media (min-width: 1400px) {
    .eventcard {
      padding: 10px;
      padding-top: 19px;
      padding-bottom: 19px;
      margin-bottom: 10px;
      border-radius: 5px;
      max-width: 212px;
      min-height: 111px; } }
  @media (max-width: 1024px) {
    .eventcard {
      padding: 2.5641vmin;
      padding-top: 3.07692vmin;
      padding-bottom: 3.07692vmin;
      margin-bottom: 2.5641vmin;
      border-radius: 1.28205vmin;
      max-width: 100%;
      min-height: auto; } }

.product-page__container {
  display: flex;
  margin-bottom: 3.125vw; }
  @media (min-width: 1400px) {
    .product-page__container {
      margin-bottom: 45px; } }
  @media (max-width: 1024px) {
    .product-page__container {
      margin-bottom: 11.53846vmin;
      display: block;
      padding-left: 5.12821vmin; } }

.product-page__image {
  flex-basis: 38.95833vw;
  max-width: 38.95833vw;
  margin-right: 1.80556vw; }
  .product-page__image .event-slider__item {
    border-radius: 0.34722vw;
    position: relative;
    z-index: 1;
    overflow: hidden; }
    @media (min-width: 1400px) {
      .product-page__image .event-slider__item {
        border-radius: 5px; } }
    @media (max-width: 1024px) {
      .product-page__image .event-slider__item {
        border-radius: 1.28205vmin; } }
  .product-page__image img {
    width: 100%; }
  @media (min-width: 1400px) {
    .product-page__image {
      flex-basis: 561px;
      max-width: 561px;
      margin-right: 26px; } }
  @media (max-width: 1024px) {
    .product-page__image {
      flex-basis: 100%;
      max-width: 100%;
      margin-right: 0;
      margin-bottom: 3.58974vmin; } }

.product-page__info {
  flex: 1 1; }

.product-page__artist {
  font-size: 1.45833vw;
  line-height: 1.875vw;
  margin-bottom: 0.41667vw; }
  @media (min-width: 1400px) {
    .product-page__artist {
      font-size: 21px;
      line-height: 27px;
      margin-bottom: 6px; } }
  @media (max-width: 1024px) {
    .product-page__artist {
      font-size: 4.10256vmin;
      line-height: 5.12821vmin;
      margin-bottom: 1.53846vmin; } }

.product-page__title {
  font-size: 1.25vw;
  line-height: 1.66667vw;
  margin-bottom: 1.73611vw;
  font-weight: 200; }
  @media (min-width: 1400px) {
    .product-page__title {
      font-size: 18px;
      line-height: 24px;
      margin-bottom: 25px; } }
  @media (max-width: 1024px) {
    .product-page__title {
      font-size: 4.10256vmin;
      line-height: 5.12821vmin;
      margin-bottom: 3.07692vmin; } }

.product-page__price {
  font-size: 1.45833vw;
  line-height: 1.38889vw;
  margin-bottom: 3.05556vw;
  font-weight: 400; }
  @media (min-width: 1400px) {
    .product-page__price {
      font-size: 21px;
      line-height: 20px;
      margin-bottom: 44px; } }
  @media (max-width: 1024px) {
    .product-page__price {
      font-size: 4.10256vmin;
      line-height: 5.12821vmin;
      margin-bottom: 8.71795vmin; } }

.product-page__chars {
  width: 13.88889vw;
  margin-bottom: 0.97222vw; }
  @media (min-width: 1400px) {
    .product-page__chars {
      width: 200px;
      margin-bottom: 14px; } }
  @media (max-width: 1024px) {
    .product-page__chars {
      width: 51.28205vmin;
      margin-bottom: 3.58974vmin; } }

.product-page__intro {
  font-size: 0.89583vw;
  line-height: 1.31944vw;
  margin-bottom: 1.73611vw;
  max-width: 25vw; }
  @media (min-width: 1400px) {
    .product-page__intro {
      font-size: 12.9px;
      line-height: 19px;
      margin-bottom: 25px;
      max-width: 360px; } }
  @media (max-width: 1024px) {
    .product-page__intro {
      font-size: 3.30769vmin;
      line-height: 4.87179vmin;
      margin-bottom: 6.41026vmin;
      max-width: 92.30769vmin; } }

.product-page__btns {
  display: flex; }
  .product-page__btns .btn {
    width: 12.22222vw; }
    @media (min-width: 1400px) {
      .product-page__btns .btn {
        width: 176px; } }
    @media (max-width: 1024px) {
      .product-page__btns .btn {
        width: 45.12821vmin;
        font-size: 3.07692vmin; } }

.product-page__addcat {
  margin-right: 0.69444vw; }
  @media (min-width: 1400px) {
    .product-page__addcat {
      margin-right: 10px; } }
  @media (max-width: 1024px) {
    .product-page__addcat {
      margin-left: 2.5641vmin;
      margin-right: 0;
      order: 2;
      white-space: nowrap; } }

.chars {
  font-size: 0.83333vw; }
  .chars__item {
    margin-bottom: 0.55556vw;
    display: flex; }
    @media (min-width: 1400px) {
      .chars__item {
        margin-bottom: 8px; } }
    @media (max-width: 1024px) {
      .chars__item {
        margin-bottom: 2.05128vmin; } }
  .chars__name {
    color: #575757;
    flex-basis: 50%; }
  @media (min-width: 1400px) {
    .chars {
      font-size: 12px; } }
  @media (max-width: 1024px) {
    .chars {
      font-size: 3.07692vmin; } }

.otherproduct {
  display: flex; }
  .otherproduct__title {
    margin-top: 0;
    flex-basis: 15.06944vw;
    flex-shrink: 0;
    font-size: 1.25vw;
    line-height: 1.66667vw;
    text-transform: uppercase;
    margin-bottom: 0;
    font-weight: 300; }
    @media (min-width: 1400px) {
      .otherproduct__title {
        flex-basis: 217px;
        font-size: 18px;
        line-height: 24px; } }
    @media (max-width: 1024px) {
      .otherproduct__title {
        flex-basis: 55.64103vmin;
        font-size: 3.84615vmin;
        line-height: 5.12821vmin;
        max-width: 48.97436vmin;
        margin-bottom: 3.07692vmin; }
        .otherproduct__title br {
          display: none; } }
  .otherproduct__products {
    flex-basis: 45.625vw;
    gap: 0.69444vw;
    padding-top: 0.27778vw;
    -moz-column-count: 3;
         column-count: 3; }
    @media (min-width: 1400px) {
      .otherproduct__products {
        flex-basis: 657px;
        gap: 10px;
        padding-top: 4px; } }
    @media (max-width: 1024px) {
      .otherproduct__products {
        flex-basis: 168.46154vmin;
        gap: 2.5641vmin;
        padding-top: 1.02564vmin;
        -moz-column-count: 1;
             column-count: 1; } }
  .otherproduct__product {
    transition: all .3s ease-out;
    margin-bottom: 0.69444vw;
    overflow: hidden;
    position: relative;
    flex-basis: calc(33% - 0.69444vw);
    -moz-column-break-inside: avoid;
         break-inside: avoid; }
    .otherproduct__product--things {
      border: 1px solid #C7C7C7; }
    .otherproduct__product a {
      display: flex;
      position: relative;
      overflow: hidden;
      border-radius: 0.20833vw; }
    .otherproduct__product img {
      width: 100%;
      transition: all .3s ease-out; }
    .otherproduct__product:hover img {
      transform: scale(1.05);
      z-index: 10; }
    @media (min-width: 1400px) {
      .otherproduct__product {
        margin-bottom: 10px;
        border-radius: 3px;
        flex-basis: calc(33% - 10px); } }
    @media (max-width: 1024px) {
      .otherproduct__product {
        margin-bottom: 2.5641vmin;
        border-radius: 0.76923vmin;
        width: 100%;
        flex-basis: 100%; } }
  @media (max-width: 1024px) {
    .otherproduct {
      padding-left: 5.12821vmin;
      display: block; } }

.thingswrapper {
  background: url(../images/bg-clouds.png) no-repeat center top;
  background-size: cover; }
  .thingswrapper .header,
  .thingswrapper .nativejs-select__option,
  .thingswrapper .nativejs-select__placeholder {
    background: none !important; }
  .thingswrapper .products__col {
    margin-bottom: 1.38889vw; }
    @media (min-width: 1400px) {
      .thingswrapper .products__col {
        margin-bottom: 20px; } }
    @media (max-width: 1024px) {
      .thingswrapper .products__col {
        margin-bottom: 5.12821vmin; } }

.suvenirs-slider .btn-slider {
  position: absolute;
  top: 50%;
  border: none;
  padding: 0;
  background: none;
  transform: translateY(-50%);
  z-index: 2; }
  .suvenirs-slider .btn-slider svg {
    width: 1.66667vw;
    height: 1.66667vw; }
    @media (min-width: 1400px) {
      .suvenirs-slider .btn-slider svg {
        width: 24px;
        height: 24px; } }
    @media (max-width: 1024px) {
      .suvenirs-slider .btn-slider svg {
        width: 6.15385vmin;
        height: 6.15385vmin; } }
  .suvenirs-slider .btn-slider.prev {
    left: 1.38889vw; }
    @media (min-width: 1400px) {
      .suvenirs-slider .btn-slider.prev {
        left: 20px; } }
    @media (max-width: 1024px) {
      .suvenirs-slider .btn-slider.prev {
        left: 5.12821vmin; } }
  .suvenirs-slider .btn-slider.next {
    right: 1.38889vw; }
    @media (min-width: 1400px) {
      .suvenirs-slider .btn-slider.next {
        right: 20px; } }
    @media (max-width: 1024px) {
      .suvenirs-slider .btn-slider.next {
        right: 5.12821vmin; } }

.artist-page__wrap {
  height: 100%; }

.artist-page__previews {
  position: relative;
  top: 50%;
  transform: translateY(-50%); }

.artist-page__container {
  display: flex;
  margin-bottom: 2.08333vw; }
  @media (min-width: 1400px) {
    .artist-page__container {
      margin-bottom: 30px; } }
  @media (max-width: 1024px) {
    .artist-page__container {
      margin-bottom: 7.69231vmin;
      display: block;
      padding-left: 5.12821vmin; } }

.artist-page__image {
  flex-basis: 24.51389vw;
  margin-right: 1.80556vw; }
  .artist-page__image img {
    width: 100%; }
  @media (min-width: 1400px) {
    .artist-page__image {
      flex-basis: 353px;
      margin-right: 26px; } }
  @media (max-width: 1024px) {
    .artist-page__image {
      flex-basis: 100%;
      margin-right: 0;
      margin-bottom: 4.10256vmin; } }

.artist-page__info {
  flex: 1 1; }

.artist-page__title {
  text-transform: uppercase;
  margin-top: 0;
  font-size: 1.45833vw;
  line-height: 1.94444vw;
  margin-bottom: 1.25vw;
  font-weight: 300; }
  @media (min-width: 1400px) {
    .artist-page__title {
      font-size: 21px;
      line-height: 28px;
      margin-bottom: 18px; } }
  @media (max-width: 1024px) {
    .artist-page__title {
      font-size: 4.10256vmin;
      line-height: 5.64103vmin;
      margin-bottom: 4.61538vmin; } }

.artist-page__aboutme {
  font-size: 0.86806vw;
  line-height: 1.31944vw;
  -moz-column-count: 2;
       column-count: 2;
  -moz-column-gap: 1.80556vw;
       column-gap: 1.80556vw;
  max-width: 41.59722vw; }
  .artist-page__aboutme P {
    -moz-column-break-inside: avoid;
         break-inside: avoid;
    margin-bottom: 1.04167vw; }
    @media (min-width: 1400px) {
      .artist-page__aboutme P {
        margin-bottom: 15px; } }
    @media (max-width: 1024px) {
      .artist-page__aboutme P {
        margin-bottom: 3.84615vmin; } }
  @media (min-width: 1400px) {
    .artist-page__aboutme {
      font-size: 12.5px;
      line-height: 19px;
      -moz-column-gap: 26px;
           column-gap: 26px;
      max-width: 599px; } }
  @media (max-width: 1024px) {
    .artist-page__aboutme {
      font-size: 3.58974vmin;
      line-height: 4.61538vmin;
      -moz-column-gap: 6.66667vmin;
           column-gap: 6.66667vmin;
      max-width: 100%;
      -moz-column-count: 1;
           column-count: 1; } }

.gallery-page {
  position: relative;
  overflow: hidden; }
  .gallery-page__video {
    height: 48.47222vw; }
    @media (min-width: 1400px) {
      .gallery-page__video {
        height: 698px; } }
    @media (max-width: 1024px) {
      .gallery-page__video {
        height: 167.4359vmin; } }
  .gallery-page__image {
    margin-bottom: 1.66667vw;
    position: relative;
    overflow: hidden;
    border-radius: 8.33333vw 0 0 0.41667vw;
    margin-right: -20.83333vw;
    z-index: 1; }
    .gallery-page__image img {
      width: 100%; }
    @media (min-width: 1400px) {
      .gallery-page__image {
        margin-bottom: 24px;
        border-radius: 120px 0 0 6px;
        margin-right: -300px; } }
    @media (max-width: 1024px) {
      .gallery-page__image {
        margin-bottom: 6.15385vmin;
        border-radius: 20.51282vmin 0 0 1.53846vmin;
        margin-right: -5.12821vmin; } }
  .gallery-page__item {
    display: flex;
    margin-bottom: 2.77778vw; }
    @media (max-width: 1024px) {
      .gallery-page__item--dir {
        display: flex !important;
        flex-direction: column; }
        .gallery-page__item--dir .gallery-page__title {
          order: 2; } }
    @media (min-width: 1400px) {
      .gallery-page__item {
        margin-bottom: 40px; } }
    @media (max-width: 1024px) {
      .gallery-page__item {
        margin-bottom: 7.69231vmin;
        display: block; } }
  .gallery-page__title {
    margin-top: 0;
    font-weight: 300;
    text-transform: uppercase;
    font-size: 1.25vw;
    line-height: 1.66667vw;
    flex-basis: 15.06944vw;
    flex-shrink: 0; }
    .gallery-page__title span {
      font-weight: 200;
      display: block; }
    @media (min-width: 1400px) {
      .gallery-page__title {
        font-size: 18px;
        line-height: 24px;
        flex-basis: 217px; } }
    @media (max-width: 1024px) {
      .gallery-page__title {
        font-size: 3.84615vmin;
        line-height: 4.61538vmin;
        flex-basis: auto;
        margin-bottom: 6.66667vmin; }
        .gallery-page__title br {
          display: none; } }
  .gallery-page__content {
    font-size: 0.86806vw;
    line-height: 1.31944vw;
    -moz-column-count: 2;
         column-count: 2;
    -moz-column-gap: 2.08333vw;
         column-gap: 2.08333vw;
    max-width: 39.58333vw; }
    .gallery-page__content p {
      margin-bottom: 1.04167vw; }
      @media (min-width: 1400px) {
        .gallery-page__content p {
          margin-bottom: 15px; } }
      @media (max-width: 1024px) {
        .gallery-page__content p {
          margin-bottom: 3.84615vmin; } }
    @media (min-width: 1400px) {
      .gallery-page__content {
        font-size: 12.5px;
        line-height: 19px;
        -moz-column-gap: 30px;
             column-gap: 30px;
        max-width: 570px; } }
    @media (max-width: 1024px) {
      .gallery-page__content {
        font-size: 3.58974vmin;
        line-height: 4.61538vmin;
        -moz-column-gap: 7.69231vmin;
             column-gap: 7.69231vmin;
        max-width: 100%;
        -moz-column-count: 1;
             column-count: 1; } }
  .gallery-page__dir {
    flex-basis: 18.61111vw;
    margin-right: 2.08333vw;
    flex-shrink: 0; }
    .gallery-page__dir img {
      width: 100%; }
    @media (min-width: 1400px) {
      .gallery-page__dir {
        flex-basis: 268px;
        margin-right: 30px; } }
    @media (max-width: 1024px) {
      .gallery-page__dir {
        flex-basis: 68.71795vmin;
        margin-right: 0;
        margin-bottom: 4.10256vmin;
        order: 1; } }
  .gallery-page__aboutme {
    font-size: 0.86806vw;
    line-height: 1.18056vw;
    max-width: 18.81944vw; }
    .gallery-page__aboutme p {
      margin-bottom: 1.04167vw; }
      @media (min-width: 1400px) {
        .gallery-page__aboutme p {
          margin-bottom: 15px; } }
      @media (max-width: 1024px) {
        .gallery-page__aboutme p {
          margin-bottom: 3.84615vmin; } }
    @media (min-width: 1400px) {
      .gallery-page__aboutme {
        font-size: 12.5px;
        line-height: 17px;
        max-width: 271px; } }
    @media (max-width: 1024px) {
      .gallery-page__aboutme {
        font-size: 3.58974vmin;
        line-height: 4.61538vmin;
        max-width: 100%;
        order: 3; } }
  @media (max-width: 1024px) {
    .gallery-page {
      padding-left: 5.12821vmin; } }

.jquery-background-video-wrapper {
  height: 100vh;
  width: 100%;
  height: 100%;
  position: absolute !important;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -2; }
  .jquery-background-video-wrapper video {
    transform: translate(-50%, -50%);
    transition-duration: none !important; }

.events-page__item {
  display: flex;
  margin-bottom: 2.77778vw; }
  @media (min-width: 1400px) {
    .events-page__item {
      margin-bottom: 40px; } }
  @media (max-width: 1024px) {
    .events-page__item {
      margin-bottom: 10.25641vmin;
      display: block;
      padding-left: 5.12821vmin; } }

.events-page__title {
  margin-top: 0;
  font-weight: 300;
  text-transform: uppercase;
  font-size: 1.25vw;
  line-height: 1.66667vw;
  flex-basis: 15.06944vw;
  flex-shrink: 0; }
  @media (min-width: 1400px) {
    .events-page__title {
      font-size: 18px;
      line-height: 24px;
      flex-basis: 217px; } }
  @media (max-width: 1024px) {
    .events-page__title {
      font-size: 3.84615vmin;
      line-height: 5.12821vmin;
      flex-basis: 55.64103vmin;
      max-width: 55.64103vmin;
      margin-bottom: 4.61538vmin; }
      .events-page__title br {
        display: none; } }

.events-page__events {
  display: flex;
  flex-wrap: wrap;
  gap: 0.69444vw;
  max-width: 46.52778vw;
  flex-grow: 1; }
  @media (min-width: 1400px) {
    .events-page__events {
      gap: 10px;
      max-width: 670px; } }
  @media (max-width: 1024px) {
    .events-page__events {
      gap: 2.05128vmin;
      max-width: 171.79487vmin; } }

.events-page__event {
  flex-basis: calc(50% - 0.69444vw);
  margin-bottom: 0.69444vw; }
  @media (min-width: 1400px) {
    .events-page__event {
      flex-basis: calc(50% - 10px);
      margin-bottom: 10px; } }
  @media (max-width: 1024px) {
    .events-page__event {
      flex-basis: 100%;
      margin-bottom: 0; } }

.event {
  transition: all .3s ease-out;
  border-radius: 0.34722vw;
  height: 100%;
  border: 1px solid #C7C7C7;
  position: relative;
  overflow: hidden;
  z-index: 1; }
  .event__image {
    position: relative;
    overflow: hidden; }
    .event__image img {
      width: 100%; }
  .event__wrap {
    padding: 0.69444vw;
    padding-top: 1.25vw;
    border-radius: 0 0 0.34722vw 0.34722vw;
    border-top: none;
    transition: all .3s ease-out;
    height: calc(100% - 13.125vw);
    display: flex;
    flex-direction: column;
    justify-content: space-between; }
    @media (min-width: 1400px) {
      .event__wrap {
        padding: 10px;
        padding-top: 18px;
        border-radius: 0 0 5px 5px;
        height: calc(100% - 194px); } }
    @media (max-width: 1024px) {
      .event__wrap {
        padding: 2.5641vmin;
        padding-top: 4.61538vmin;
        border-radius: 0 0 1.28205vmin 1.28205vmin;
        height: auto; } }
  .event__hdr {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.69444vw;
    margin-bottom: 0.55556vw;
    color: #575757; }
    @media (min-width: 1400px) {
      .event__hdr {
        font-size: 10px;
        margin-bottom: 8px; } }
    @media (max-width: 1024px) {
      .event__hdr {
        font-size: 2.5641vmin;
        margin-bottom: 2.05128vmin; } }
  .event__title {
    font-size: 0.86806vw;
    line-height: 1.11111vw;
    text-transform: uppercase;
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.55556vw; }
    @media (min-width: 1400px) {
      .event__title {
        font-size: 12.5px;
        line-height: 16px;
        margin-bottom: 8px; } }
    @media (max-width: 1024px) {
      .event__title {
        font-size: 3.20513vmin;
        line-height: 4.10256vmin;
        margin-bottom: 2.05128vmin; } }
  .event__subtitle {
    font-size: 0.69444vw;
    line-height: 0.83333vw;
    margin-bottom: 1.38889vw;
    color: #575757; }
    @media (min-width: 1400px) {
      .event__subtitle {
        font-size: 10px;
        line-height: 12px;
        margin-bottom: 20px; } }
    @media (max-width: 1024px) {
      .event__subtitle {
        font-size: 3.33333vmin;
        line-height: 4.10256vmin;
        margin-bottom: 5.12821vmin; } }
  .event__btns {
    display: flex;
    gap: 0.83333vw; }
    .event__btns .btn {
      flex-basis: calc(50% - 0.41667vw);
      font-size: 0.69444vw; }
      @media (min-width: 1400px) {
        .event__btns .btn {
          flex-basis: calc(50% - 6px);
          font-size: 10px; } }
      @media (max-width: 1024px) {
        .event__btns .btn {
          flex-basis: calc(50% - 1.53846vmin);
          font-size: 3.07692vmin; } }
    @media (min-width: 1400px) {
      .event__btns {
        gap: 12px; } }
    @media (max-width: 1024px) {
      .event__btns {
        gap: 2.05128vmin;
        justify-content: space-between; } }
  .event__reg {
    white-space: nowrap;
    padding-left: 0.69444vw;
    padding-right: 0.69444vw; }
    @media (min-width: 1400px) {
      .event__reg {
        padding-left: 10px;
        padding-right: 10px; } }
    @media (max-width: 1024px) {
      .event__reg {
        padding-left: 2.5641vmin;
        padding-right: 2.5641vmin; } }
  .event__more {
    white-space: nowrap; }
  .event:hover {
    border: 1px solid rgba(203, 61, 61, 0.6); }
  @media (min-width: 1400px) {
    .event {
      border-radius: 5px; } }
  @media (max-width: 1024px) {
    .event {
      border-radius: 1.28205vmin; } }

.favorite-page {
  min-height: 100vh; }
  .favorite-page__header {
    display: flex;
    align-items: center;
    margin-bottom: 2.22222vw; }
    @media (min-width: 1400px) {
      .favorite-page__header {
        margin-bottom: 32px; } }
    @media (max-width: 1024px) {
      .favorite-page__header {
        margin-bottom: 8.20513vmin;
        padding-left: 5.12821vmin; } }
  .favorite-page__title {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 1.25vw;
    text-transform: uppercase;
    line-height: 1.66667vw;
    display: inline-block;
    margin-right: 7.63889vw;
    font-weight: 300; }
    @media (min-width: 1400px) {
      .favorite-page__title {
        line-height: 24px;
        margin-right: 110px;
        font-size: 18px; } }
    @media (max-width: 1024px) {
      .favorite-page__title {
        line-height: 6.15385vmin;
        margin-right: 28.20513vmin;
        font-size: 4.61538vmin; } }
  .favorite-page__count {
    font-size: 0.86806vw;
    line-height: 1.11111vw; }
    @media (min-width: 1400px) {
      .favorite-page__count {
        font-size: 12.5px;
        line-height: 16px; } }
    @media (max-width: 1024px) {
      .favorite-page__count {
        font-size: 3.20513vmin;
        line-height: 4.10256vmin; } }
  @media (max-width: 1024px) {
    .favorite-page .products__col {
      width: 100%; } }

@media (max-width: 1024px) {
  .searchresults-page__wrapperblock {
    padding-left: 5.12821vmin; } }

.searchresults-page .psearch-form {
  margin: 0;
  margin-bottom: 3.19444vw; }
  @media (min-width: 1400px) {
    .searchresults-page .psearch-form {
      margin-bottom: 46px; } }
  @media (max-width: 1024px) {
    .searchresults-page .psearch-form {
      margin-bottom: 8.20513vmin; } }

.searchresults-page__wrapper {
  flex-grow: 1; }

.searchresults-page__container {
  display: flex; }
  @media (max-width: 1024px) {
    .searchresults-page__container {
      display: block; } }

.searchresults-page__resultsmenu {
  width: 18.75vw;
  flex-shrink: 0; }
  .searchresults-page__resultsmenu ul {
    font-weight: 300;
    font-size: 0.76389vw;
    position: sticky;
    top: 8.68056vw; }
    .searchresults-page__resultsmenu ul li {
      margin-bottom: 0.97222vw; }
      @media (min-width: 1400px) {
        .searchresults-page__resultsmenu ul li {
          margin-bottom: 14px; } }
      @media (max-width: 1024px) {
        .searchresults-page__resultsmenu ul li {
          margin-bottom: 0; } }
    @media (min-width: 1400px) {
      .searchresults-page__resultsmenu ul {
        font-size: 11px;
        top: 105px; } }
    @media (max-width: 1024px) {
      .searchresults-page__resultsmenu ul {
        font-size: 3.07692vmin;
        top: auto;
        position: relative;
        display: flex;
        gap: 6.15385vmin; } }
  @media (min-width: 1400px) {
    .searchresults-page__resultsmenu {
      width: 270px; } }
  @media (max-width: 1024px) {
    .searchresults-page__resultsmenu {
      width: 100%;
      margin-bottom: 6.15385vmin; } }

.searchresults-page__item {
  margin-bottom: 4.16667vw; }
  .searchresults-page__item--events {
    margin: 0 -0.69444vw;
    display: flex;
    flex-wrap: wrap;
    padding-right: 11.11111vw; }
    @media (min-width: 1400px) {
      .searchresults-page__item--events {
        margin: 0 -10px;
        padding-right: 160px; } }
    @media (max-width: 1024px) {
      .searchresults-page__item--events {
        margin: 0;
        display: block;
        padding-right: 0; } }
  .searchresults-page__item .event {
    flex-basis: calc(50% - 0.69444vw);
    margin-bottom: 1.38889vw;
    margin-left: 0.34722vw;
    margin-right: 0.34722vw; }
    @media (min-width: 1400px) {
      .searchresults-page__item .event {
        flex-basis: calc(50% - 10px);
        margin-bottom: 20px;
        margin-left: 5px;
        margin-right: 5px; } }
    @media (max-width: 1024px) {
      .searchresults-page__item .event {
        margin-left: 0;
        margin-right: 0;
        flex-basis: calc(50% - 2.5641vmin); } }
  @media (min-width: 1400px) {
    .searchresults-page__item {
      margin-bottom: 60px; } }
  @media (max-width: 1024px) {
    .searchresults-page__item {
      margin-bottom: 7.69231vmin; } }

.searchresults-page .is-active svg {
  fill: #CB3D3D;
  stroke: #CB3D3D;
  color: #CB3D3D; }

@media (max-width: 1024px) {
  .searchresults-page .products__grid {
    margin-left: -1.28205vmin;
    margin-right: -1.28205vmin; } }

.searchresults-page .products__griditem {
  width: 50%;
  margin-bottom: 1.38889vw; }
  @media (max-width: 1024px) {
    .searchresults-page .products__griditem .product {
      margin-bottom: 0 !important; } }
  @media (min-width: 1400px) {
    .searchresults-page .products__griditem {
      margin-bottom: 20px; } }
  @media (max-width: 1024px) {
    .searchresults-page .products__griditem {
      margin-bottom: 5.12821vmin;
      padding-left: 1.28205vmin;
      padding-right: 1.28205vmin; } }

.searchartist {
  margin-bottom: 2.77778vw; }
  .searchartist__name {
    text-transform: uppercase;
    margin-bottom: 1.25vw;
    font-weight: 300;
    font-size: 1.25vw;
    line-height: 120%; }
    @media (min-width: 1400px) {
      .searchartist__name {
        margin-bottom: 18px;
        font-size: 18px; } }
    @media (max-width: 1024px) {
      .searchartist__name {
        margin-bottom: 3.84615vmin;
        font-size: 3.84615vmin; } }
  .searchartist__images {
    margin: 0 -0.34722vw;
    display: flex; }
    @media (min-width: 1400px) {
      .searchartist__images {
        margin: 0 -5px; } }
    @media (max-width: 1024px) {
      .searchartist__images {
        margin: 0 -1.28205vmin; } }
  .searchartist__image {
    margin: 0 0.34722vw;
    flex-basis: calc(33.33% - 0.69444vw); }
    .searchartist__image img {
      width: 100%; }
    @media (min-width: 1400px) {
      .searchartist__image {
        margin: 0 5px;
        flex-basis: calc(33.33% - 10px); } }
    @media (max-width: 1024px) {
      .searchartist__image {
        margin: 0 1.28205vmin;
        flex-basis: calc(50% - 2.5641vmin); } }
    @media (max-width: 1024px) {
      .searchartist__image:last-child {
        display: none; } }
  @media (min-width: 1400px) {
    .searchartist {
      margin-bottom: 40px; } }
  @media (max-width: 1024px) {
    .searchartist {
      margin-bottom: 10.25641vmin; } }

.psearch-form #result {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  padding: 1.66667vw 0;
  font-size: 0.97222vw;
  height: 15.27778vw; }
  .psearch-form #result li {
    margin-bottom: 0.48611vw; }
    @media (min-width: 1400px) {
      .psearch-form #result li {
        margin-bottom: 7px; } }
  @media (min-width: 1400px) {
    .psearch-form #result {
      padding: 24px 0;
      font-size: 14px;
      height: 220px; } }
  @media (max-width: 1024px) {
    .psearch-form #result {
      display: none; } }

/*# sourceMappingURL=main.css.map */
