@charset "UTF-8";

/**
 * Lightcase - jQuery Plugin
 * The smart and flexible Lightbox Plugin.
 *
 * @author		Cornel Boppart <cornel@bopp-art.com>
 * @copyright	Author
 *
 * @version		2.5.0 (11/03/2018)
 */

/**
 * Lightcase settings
 *
 * Note: Override default settings for your project without touching this source code by simply
 * defining those variables within a SASS map called '$lightcase-custom'.
 *
 * // Example usage
 * $lightcase-custom: (
 *   'breakpoint': 768px
 * );
 */

@font-face {
  font-family: 'lightcase';
  src: url("/assets/css/fonts/lightcase.eot?55356177");
  src: url("/assets/css/fonts/lightcase.eot?55356177#iefix") format("embedded-opentype"), url("/assets/css/fonts/lightcase.woff?55356177") format("woff"), url("/assets/css/fonts/lightcase.ttf?55356177") format("truetype"), url("/assets/css/fonts/lightcase.svg?55356177#lightcase") format("svg");
  font-weight: normal;
  font-style: normal;
}

/* line 12, ../scss/components/fonts/_font-lightcase.scss */

[class*='lightcase-icon-']:before {
  font-family: 'lightcase', sans-serif;
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  text-align: center;
  /* For safety - reset parent styles, that can break glyph codes*/
  font-variant: normal;
  text-transform: none;
  /* fix buttons height, for twitter bootstrap */
  line-height: 1em;
  /* Uncomment for 3D effect */
  /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
}

/* Codes */

/* line 35, ../scss/components/fonts/_font-lightcase.scss */

.lightcase-icon-play:before {
  content: '\e800';
}

/* line 36, ../scss/components/fonts/_font-lightcase.scss */

.lightcase-icon-pause:before {
  content: '\e801';
}

/* line 37, ../scss/components/fonts/_font-lightcase.scss */

.lightcase-icon-close:before {
  content: '\e802';
}

/* line 38, ../scss/components/fonts/_font-lightcase.scss */

.lightcase-icon-prev:before {
  content: '\e803';
}

/* line 39, ../scss/components/fonts/_font-lightcase.scss */

.lightcase-icon-next:before {
  content: '\e804';
}

/* line 40, ../scss/components/fonts/_font-lightcase.scss */

.lightcase-icon-spin:before {
  content: '\e805';
}

/**
 * Mixin providing icon defaults to be used on top of font-lightcase.
 *
 * Example usage:
 * @include icon(#e9e9e9)
 */

/**
 * Mixin providing icon defaults including a hover status to be used
 * on top of font-lightcase.
 *
 * Example usage:
 * @include icon-hover(#e9e9e9, #fff)
 */

/**
 * Provides natural content overflow behavior and scrolling support
 * even so for touch devices.
 *
 * Example usage:
 * @include overflow()
 */

/**
 * Neutralizes/resets dimensions including width, height, position as well as margins,
 * paddings and styles. Used to enforce a neutral and unstyled look and behavoir!
 *
 * Example usage:
 * @include clear(true)
 *
 * @param boolean $important
 */

@-webkit-keyframes lightcase-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}

@keyframes lightcase-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}

/* line 1, ../scss/components/modules/_case.scss */

#lightcase-case {
  display: none;
  position: fixed;
  z-index: 2002;
  top: 50%;
  left: 50%;
  font-family: arial, sans-serif;
  font-size: 13px;
  line-height: 1.5;
  text-align: left;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

/* line 31, ../scss/components/modules/_content.scss */

html[data-lc-type=inline] #lightcase-content,
html[data-lc-type=ajax] #lightcase-content,
html[data-lc-type=error] #lightcase-content {
  -webkit-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
}

/* line 43, ../scss/components/modules/_content.scss */

html[data-lc-type=inline] #lightcase-content .lightcase-contentInner,
html[data-lc-type=ajax] #lightcase-content .lightcase-contentInner,
html[data-lc-type=error] #lightcase-content .lightcase-contentInner {
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}

/* line 82, ../scss/components/modules/_content.scss */

html[data-lc-type=image] #lightcase-content .lightcase-contentInner {
  position: relative;
  overflow: hidden !important;
}

/* line 3, ../scss/components/modules/_error.scss */

#lightcase-case p.lightcase-error {
  margin: 0;
  font-size: 17px;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  color: #aaa;
}

/* line 4, ../scss/components/modules/_global.scss */

.lightcase-open body {
  overflow: hidden;
}

/* line 8, ../scss/components/modules/_global.scss */

.lightcase-isMobileDevice .lightcase-open body {
  max-width: 100%;
  max-height: 100%;
}

/* line 1, ../scss/components/modules/_info.scss */

#lightcase-info {
  position: absolute;
  padding-top: 15px;
}

/* line 9, ../scss/components/modules/_info.scss */

#lightcase-info #lightcase-title,
#lightcase-info #lightcase-caption {
  margin: 0;
  padding: 0;
  line-height: 1.5;
  font-weight: normal;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
}

/* line 19, ../scss/components/modules/_info.scss */

#lightcase-info #lightcase-title {
  font-size: 17px;
  color: #aaa;
}

/* line 33, ../scss/components/modules/_info.scss */

#lightcase-info #lightcase-caption {
  clear: both;
  font-size: 13px;
  color: #aaa;
}

/* line 39, ../scss/components/modules/_info.scss */

#lightcase-info #lightcase-sequenceInfo {
  font-size: 11px;
  color: #aaa;
}

/* line 1, ../scss/components/modules/_loading.scss */

#lightcase-loading {
  position: fixed;
  z-index: 9999;
  width: 1.123em;
  height: auto;
  font-size: 38px;
  line-height: 1;
  text-align: center;
  text-shadow: none;
  position: fixed;
  z-index: 2001;
  top: 50%;
  left: 50%;
  margin-top: -0.5em;
  margin-left: -0.5em;
  opacity: 1;
  font-size: 32px;
  text-shadow: 0 0 15px #fff;
  -moz-transform-origin: 50% 53%;
  -webkit-animation: lightcase-spin 0.5s infinite linear;
  animation: lightcase-spin 0.5s infinite linear;
}

/* line 20, ../scss/components/mixins/_presets.scss */

#lightcase-loading,
#lightcase-loading:focus {
  text-decoration: none;
  color: #fff;
  -webkit-tap-highlight-color: transparent;
  -webkit-transition: color, opacity, ease-in-out 0.25s;
  -o-transition: color, opacity, ease-in-out 0.25s;
  transition: color, opacity, ease-in-out 0.25s;
}

/* line 32, ../scss/components/mixins/_presets.scss */

#lightcase-loading > span {
  display: inline-block;
  text-indent: -9999px;
}

/* line 2, ../scss/components/modules/_navigation.scss */

a[class*='lightcase-icon-'] {
  position: fixed;
  z-index: 9999;
  width: 1.123em;
  height: auto;
  font-size: 38px;
  line-height: 1;
  text-align: center;
  text-shadow: none;
  outline: none;
  cursor: pointer;
}

/* line 20, ../scss/components/mixins/_presets.scss */

a[class*='lightcase-icon-'],
a[class*='lightcase-icon-']:focus {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.6);
  -webkit-tap-highlight-color: transparent;
  -webkit-transition: color, opacity, ease-in-out 0.25s;
  -o-transition: color, opacity, ease-in-out 0.25s;
  transition: color, opacity, ease-in-out 0.25s;
}

/* line 32, ../scss/components/mixins/_presets.scss */

a[class*='lightcase-icon-'] > span {
  display: inline-block;
  text-indent: -9999px;
}

/* line 49, ../scss/components/mixins/_presets.scss */

a[class*='lightcase-icon-']:hover {
  color: white;
  text-shadow: 0 0 15px white;
}

/* line 10, ../scss/components/modules/_navigation.scss */

.lightcase-isMobileDevice a[class*='lightcase-icon-']:hover {
  color: #aaa;
  text-shadow: none;
}

/* line 17, ../scss/components/modules/_navigation.scss */

a[class*='lightcase-icon-'].lightcase-icon-close {
  position: fixed;
  top: 15px;
  right: 15px;
  bottom: auto;
  margin: 0;
  opacity: 0;
  outline: none;
}

/* line 28, ../scss/components/modules/_navigation.scss */

a[class*='lightcase-icon-'].lightcase-icon-prev {
  left: 15px;
}

/* line 33, ../scss/components/modules/_navigation.scss */

a[class*='lightcase-icon-'].lightcase-icon-next {
  right: 15px;
}

/* line 38, ../scss/components/modules/_navigation.scss */

a[class*='lightcase-icon-'].lightcase-icon-pause,
a[class*='lightcase-icon-'].lightcase-icon-play {
  left: 50%;
  margin-left: -0.5em;
}

/* line 1, ../scss/components/modules/_overlay.scss */

#lightcase-overlay {
  display: none;
  width: 100%;
  min-height: 100%;
  position: fixed;
  z-index: 2000;
  top: -9999px;
  bottom: -9999px;
  left: 0;
  background: #333;
}

/* Slider */

.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  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 {
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  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;
}

/**
 * Swiper 4.5.0
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://www.idangero.us/swiper/
 *
 * Copyright 2014-2019 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: February 22, 2019
 */
.swiper-container {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}
.swiper-container-no-flexbox .swiper-slide {
  float: left;
}
.swiper-container-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}
.swiper-container-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
  transform: translate3d(0px, 0, 0);
}
.swiper-container-multirow > .swiper-wrapper {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.swiper-container-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  margin: 0 auto;
}
.swiper-slide {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}
.swiper-container-autoheight .swiper-wrapper {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  -o-transition-property: transform, height;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
}
/* 3D Effects */
.swiper-container-3d {
  -webkit-perspective: 1200px;
  perspective: 1200px;
}
.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-container-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
/* IE10 Windows Phone 8 Fixes */
.swiper-container-wp8-horizontal,
.swiper-container-wp8-horizontal > .swiper-wrapper {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}
.swiper-container-wp8-vertical,
.swiper-container-wp8-vertical > .swiper-wrapper {
  -ms-touch-action: pan-x;
  touch-action: pan-x;
}
.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: 27px;
  height: 44px;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
  background-size: 27px 44px;
  background-position: center;
  background-repeat: no-repeat;
}
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}
.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  left: 10px;
  right: auto;
}
.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  right: 10px;
  left: auto;
}
.swiper-button-prev.swiper-button-white,
.swiper-container-rtl .swiper-button-next.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-next.swiper-button-white,
.swiper-container-rtl .swiper-button-prev.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-prev.swiper-button-black,
.swiper-container-rtl .swiper-button-next.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-next.swiper-button-black,
.swiper-container-rtl .swiper-button-prev.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-lock {
  display: none;
}
.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 300ms opacity;
  -o-transition: 300ms opacity;
  transition: 300ms opacity;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}
/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 10px;
  left: 0;
  width: 100%;
}
/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
  position: relative;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(0.66);
  -ms-transform: scale(0.66);
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(0.66);
  -ms-transform: scale(0.66);
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
}
.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: 0.2;
}
button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}
.swiper-pagination-bullet-active {
  opacity: 1;
  background: #007aff;
}
.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
  transform: translate3d(0px, -50%, 0);
}
.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px 0;
  display: block;
}
.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 8px;
}
.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  -webkit-transition: 200ms top, 200ms -webkit-transform;
  transition: 200ms top, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top, 200ms -webkit-transform;
}
.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
}
.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  white-space: nowrap;
}
.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms left, 200ms -webkit-transform;
  transition: 200ms left, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left, 200ms -webkit-transform;
}
.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms right, 200ms -webkit-transform;
  transition: 200ms right, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right, 200ms -webkit-transform;
}
/* Progress */
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #007aff;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
}
.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
  -ms-transform-origin: right top;
  transform-origin: right top;
}
.swiper-container-horizontal > .swiper-pagination-progressbar,
.swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}
.swiper-container-vertical > .swiper-pagination-progressbar,
.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}
.swiper-pagination-white .swiper-pagination-bullet-active {
  background: #ffffff;
}
.swiper-pagination-progressbar.swiper-pagination-white {
  background: rgba(255, 255, 255, 0.25);
}
.swiper-pagination-progressbar.swiper-pagination-white .swiper-pagination-progressbar-fill {
  background: #ffffff;
}
.swiper-pagination-black .swiper-pagination-bullet-active {
  background: #000000;
}
.swiper-pagination-progressbar.swiper-pagination-black {
  background: rgba(0, 0, 0, 0.25);
}
.swiper-pagination-progressbar.swiper-pagination-black .swiper-pagination-progressbar-fill {
  background: #000000;
}
.swiper-pagination-lock {
  display: none;
}
/* Scrollbar */
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}
.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}
.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}
.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}
.swiper-scrollbar-cursor-drag {
  cursor: move;
}
.swiper-scrollbar-lock {
  display: none;
}
.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}
.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.swiper-slide-zoomed {
  cursor: move;
}
/* Preloader */
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
  -ms-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
  animation: swiper-preloader-spin 1s steps(12, end) infinite;
}
.swiper-lazy-preloader:after {
  display: block;
  content: '';
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-position: 50%;
  background-size: 100%;
  background-repeat: no-repeat;
}
.swiper-lazy-preloader-white:after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
@-webkit-keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/* a11y */
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}
.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.swiper-container-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
}
.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-cube {
  overflow: visible;
}
.swiper-container-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}
.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-cube.swiper-container-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
  -ms-transform-origin: 100% 0;
  transform-origin: 100% 0;
}
.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}
.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
  z-index: 0;
}
.swiper-container-flip {
  overflow: visible;
}
.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}
.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.swiper-container-coverflow .swiper-wrapper {
  /* Windows 8 IE 10 fix */
  -ms-perspective: 1200px;
}


@font-face {
  font-family: 'Neumann';
  src: url("/assets/css/fonts/Neumann.eot");
  src: url("/assets/css/fonts/Neumann.woff2") format("woff2"), url("/assets/css/fonts/Neumann.woff") format("woff"), url("/assets/css/fonts/Neumann.ttf") format("truetype"), url("/assets/css/fonts/Neumann.svg#Neumann") format("svg"), url("/assets/css/fonts/Neumann.eot?#iefix") format("embedded-opentype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'GothamPro';
  src: url("/assets/css/fonts/GothamPro-Italic.eot");
  src: url("/assets/css/fonts/GothamPro-Italic.woff2") format("woff2"), url("/assets/css/fonts/GothamPro-Italic.woff") format("woff"), url("/assets/css/fonts/GothamPro-Italic.ttf") format("truetype"), url("/assets/css/fonts/GothamPro-Italic.svg#GothamPro-Italic") format("svg"), url("/assets/css/fonts/GothamPro-Italic.eot?#iefix") format("embedded-opentype");
  font-weight: normal;
  font-style: italic;
}

@font-face {
  font-family: 'GothamPro';
  src: url("/assets/css/fonts/GothamPro-BoldItalic.eot");
  src: url("/assets/css/fonts/GothamPro-BoldItalic.woff2") format("woff2"), url("/assets/css/fonts/GothamPro-BoldItalic.woff") format("woff"), url("/assets/css/fonts/GothamPro-BoldItalic.ttf") format("truetype"), url("/assets/css/fonts/GothamPro-BoldItalic.svg#GothamPro-BoldItalic") format("svg"), url("/assets/css/fonts/GothamPro-BoldItalic.eot?#iefix") format("embedded-opentype");
  font-weight: 700;
  font-style: italic;
}

@font-face {
  font-family: 'GothamPro';
  src: url("/assets/css/fonts/GothamPro-Bold.eot");
  src: url("/assets/css/fonts/GothamPro-Bold.woff2") format("woff2"), url("/assets/css/fonts/GothamPro-Bold.woff") format("woff"), url("/assets/css/fonts/GothamPro-Bold.ttf") format("truetype"), url("/assets/css/fonts/GothamPro-Bold.svg#GothamPro-Bold") format("svg"), url("/assets/css/fonts/GothamPro-Bold.eot?#iefix") format("embedded-opentype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'GothamPro';
  src: url("/assets/css/fonts/GothamPro-BlackItalic.eot");
  src: url("/assets/css/fonts/GothamPro-BlackItalic.woff2") format("woff2"), url("/assets/css/fonts/GothamPro-BlackItalic.woff") format("woff"), url("/assets/css/fonts/GothamPro-BlackItalic.ttf") format("truetype"), url("/assets/css/fonts/GothamPro-BlackItalic.svg#GothamPro-BlackItalic") format("svg"), url("/assets/css/fonts/GothamPro-BlackItalic.eot?#iefix") format("embedded-opentype");
  font-weight: 900;
  font-style: italic;
}

@font-face {
  font-family: 'GothamPro';
  src: url("/assets/css/fonts/GothamPro-Black.eot");
  src: url("/assets/css/fonts/GothamPro-Black.woff2") format("woff2"), url("/assets/css/fonts/GothamPro-Black.woff") format("woff"), url("/assets/css/fonts/GothamPro-Black.ttf") format("truetype"), url("/assets/css/fonts/GothamPro-Black.svg#GothamPro-Black") format("svg"), url("/assets/css/fonts/GothamPro-Black.eot?#iefix") format("embedded-opentype");
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: 'GothamPro';
  src: url("/assets/css/fonts/GothamPro.eot");
  src: url("/assets/css/fonts/GothamPro.woff2") format("woff2"), url("/assets/css/fonts/GothamPro.woff") format("woff"), url("/assets/css/fonts/GothamPro.ttf") format("truetype"), url("/assets/css/fonts/GothamPro.svg#GothamPro") format("svg"), url("/assets/css/fonts/GothamPro.eot?#iefix") format("embedded-opentype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'GothamProNarrow';
  src: url("/assets/css/fonts/GothamProNarrow-Medium.eot");
  src: url("/assets/css/fonts/GothamProNarrow-Medium.woff2") format("woff2"), url("/assets/css/fonts/GothamProNarrow-Medium.woff") format("woff"), url("/assets/css/fonts/GothamProNarrow-Medium.ttf") format("truetype"), url("/assets/css/fonts/GothamProNarrow-Medium.svg#GothamProNarrow-Medium") format("svg"), url("/assets/css/fonts/GothamProNarrow-Medium.eot?#iefix") format("embedded-opentype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'GothamProNarrow';
  src: url("/assets/css/fonts/GothamProNarrow-Bold.eot");
  src: url("/assets/css/fonts/GothamProNarrow-Bold.woff2") format("woff2"), url("/assets/css/fonts/GothamProNarrow-Bold.woff") format("woff"), url("/assets/css/fonts/GothamProNarrow-Bold.ttf") format("truetype"), url("/assets/css/fonts/GothamProNarrow-Bold.svg#GothamProNarrow-Bold") format("svg"), url("/assets/css/fonts/GothamProNarrow-Bold.eot?#iefix") format("embedded-opentype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'GothamPro';
  src: url("/assets/css/fonts/GothamPro-MediumItalic.eot");
  src: url("/assets/css/fonts/GothamPro-MediumItalic.woff2") format("woff2"), url("/assets/css/fonts/GothamPro-MediumItalic.woff") format("woff"), url("/assets/css/fonts/GothamPro-MediumItalic.ttf") format("truetype"), url("/assets/css/fonts/GothamPro-MediumItalic.svg#GothamPro-MediumItalic") format("svg"), url("/assets/css/fonts/GothamPro-MediumItalic.eot?#iefix") format("embedded-opentype");
  font-weight: 500;
  font-style: italic;
}

@font-face {
  font-family: 'GothamPro';
  src: url("/assets/css/fonts/GothamPro-Medium.eot");
  src: url("/assets/css/fonts/GothamPro-Medium.woff2") format("woff2"), url("/assets/css/fonts/GothamPro-Medium.woff") format("woff"), url("/assets/css/fonts/GothamPro-Medium.ttf") format("truetype"), url("/assets/css/fonts/GothamPro-Medium.svg#GothamPro-Medium") format("svg"), url("/assets/css/fonts/GothamPro-Medium.eot?#iefix") format("embedded-opentype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'GothamPro';
  src: url("/assets/css/fonts/GothamPro-LightItalic.eot");
  src: url("/assets/css/fonts/GothamPro-LightItalic.woff2") format("woff2"), url("/assets/css/fonts/GothamPro-LightItalic.woff") format("woff"), url("/assets/css/fonts/GothamPro-LightItalic.ttf") format("truetype"), url("/assets/css/fonts/GothamPro-LightItalic.svg#GothamPro-LightItalic") format("svg"), url("/assets/css/fonts/GothamPro-LightItalic.eot?#iefix") format("embedded-opentype");
  font-weight: 300;
  font-style: italic;
}

@font-face {
  font-family: 'GothamPro';
  src: url("/assets/css/fonts/GothamPro-Light.eot");
  src: url("/assets/css/fonts/GothamPro-Light.woff2") format("woff2"), url("/assets/css/fonts/GothamPro-Light.woff") format("woff"), url("/assets/css/fonts/GothamPro-Light.ttf") format("truetype"), url("/assets/css/fonts/GothamPro-Light.svg#GothamPro-Light") format("svg"), url("/assets/css/fonts/GothamPro-Light.eot?#iefix") format("embedded-opentype");
  font-weight: 300;
  font-style: normal;
}

/*

100 - Thin
200 - Extra Light
300 - Light
400 - Normal
500 - Medium
600 - SemiBold
700 - Bold
800 - ExtraBold
900 - Black

*/

/*
	Base settings
*/

* {
  outline: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  line-height: 140%;
  -webkit-tap-highlight-color: transparent;
}

@-ms-viewport {
  width: device-width;
}

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -ms-overflow-style: scrollbar;
}

img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  border: 0;
}

* {
  outline: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  line-height: 140%;
  -webkit-tap-highlight-color: transparent;
}

html {
  font-family: 'GothamPro';
  min-height: 100%;
  font-size: 14px;
  line-height: 140%;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: "";
  background-color: #fff;
  color: #434343;
  font-family: 'GothamPro';
  line-height: 140%;
}

body._fixed {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
}

a {
  background-color: transparent;
  text-decoration: none;
  -webkit-transition-property: color;
  -o-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.4s;
  -o-transition-duration: 0.4s;
  transition-duration: 0.4s;
}

b,
strong {
  font-weight: bold;
}

label {
  cursor: pointer;
  display: block;
}

button {
  cursor: pointer;
  display: inline-block;
  vertical-align: top;
}

button:focus {
  outline: none;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
}

button,
select {
  text-transform: none;
}

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

ul._mutted {
  font-size: 12px;
}

ul._mutted li {
  margin-bottom: 10px;
}

._mutted {
  color: #898989;
  letter-spacing: -0.03px;
}

.table-responsive {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
}

.container-fluid {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}

.no-gutters > .col,
.no-gutters > [class*="col-"] {
  padding-right: 0;
  padding-left: 0;
}

._underline {
  text-decoration: underline;
}

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

.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12,
.col,
.col-auto,
.col-sm-1,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm,
.col-sm-auto,
.col-md-1,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md,
.col-md-auto,
.col-lg-1,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg,
.col-lg-auto,
.col-xl-1,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl,
.col-xl-auto {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

._50px {
  margin-right: -25px;
  margin-left: -25px;
}

._50px > * {
  padding-right: 25px;
  padding-left: 25px;
}

._80px {
  margin-right: -40px;
  margin-left: -40px;
}

._80px > * {
  padding-right: 40px;
  padding-left: 40px;
}

.col {
  -ms-flex-preferred-size: 0;
  -webkit-flex-basis: 0;
  flex-basis: 0;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  -webkit-flex-grow: 1;
  flex-grow: 1;
  max-width: 100%;
}

.col-auto {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  -webkit-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: none;
}

.col-1 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 8.3333333333%;
  -webkit-flex: 0 0 8.3333333333%;
  flex: 0 0 8.3333333333%;
  max-width: 8.3333333333%;
}

.col-2 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 16.6666666667%;
  -webkit-flex: 0 0 16.6666666667%;
  flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%;
}

.col-3 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 25%;
  -webkit-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 33.3333333333%;
  -webkit-flex: 0 0 33.3333333333%;
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
}

.col-5 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 41.6666666667%;
  -webkit-flex: 0 0 41.6666666667%;
  flex: 0 0 41.6666666667%;
  max-width: 41.6666666667%;
}

.col-6 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  -webkit-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 58.3333333333%;
  -webkit-flex: 0 0 58.3333333333%;
  flex: 0 0 58.3333333333%;
  max-width: 58.3333333333%;
}

.col-8 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 66.6666666667%;
  -webkit-flex: 0 0 66.6666666667%;
  flex: 0 0 66.6666666667%;
  max-width: 66.6666666667%;
}

.col-9 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 75%;
  -webkit-flex: 0 0 75%;
  flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 83.3333333333%;
  -webkit-flex: 0 0 83.3333333333%;
  flex: 0 0 83.3333333333%;
  max-width: 83.3333333333%;
}

.col-11 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 91.6666666667%;
  -webkit-flex: 0 0 91.6666666667%;
  flex: 0 0 91.6666666667%;
  max-width: 91.6666666667%;
}

.col-12 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  -webkit-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}

.order-first {
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: -1;
  -webkit-order: -1;
  order: -1;
}

.order-last {
  -webkit-box-ordinal-group: 14;
  -ms-flex-order: 13;
  -webkit-order: 13;
  order: 13;
}

.order-0 {
  -webkit-box-ordinal-group: 1;
  -ms-flex-order: 0;
  -webkit-order: 0;
  order: 0;
}

.order-1 {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  -webkit-order: 1;
  order: 1;
}

.order-2 {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  -webkit-order: 2;
  order: 2;
}

.order-3 {
  -webkit-box-ordinal-group: 4;
  -ms-flex-order: 3;
  -webkit-order: 3;
  order: 3;
}

.order-4 {
  -webkit-box-ordinal-group: 5;
  -ms-flex-order: 4;
  -webkit-order: 4;
  order: 4;
}

.order-5 {
  -webkit-box-ordinal-group: 6;
  -ms-flex-order: 5;
  -webkit-order: 5;
  order: 5;
}

.order-6 {
  -webkit-box-ordinal-group: 7;
  -ms-flex-order: 6;
  -webkit-order: 6;
  order: 6;
}

.order-7 {
  -webkit-box-ordinal-group: 8;
  -ms-flex-order: 7;
  -webkit-order: 7;
  order: 7;
}

.order-8 {
  -webkit-box-ordinal-group: 9;
  -ms-flex-order: 8;
  -webkit-order: 8;
  order: 8;
}

.order-9 {
  -webkit-box-ordinal-group: 10;
  -ms-flex-order: 9;
  -webkit-order: 9;
  order: 9;
}

.order-10 {
  -webkit-box-ordinal-group: 11;
  -ms-flex-order: 10;
  -webkit-order: 10;
  order: 10;
}

.order-11 {
  -webkit-box-ordinal-group: 12;
  -ms-flex-order: 11;
  -webkit-order: 11;
  order: 11;
}

.order-12 {
  -webkit-box-ordinal-group: 13;
  -ms-flex-order: 12;
  -webkit-order: 12;
  order: 12;
}

.offset-1 {
  margin-left: 8.3333333333%;
}

.offset-2 {
  margin-left: 16.6666666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.3333333333%;
}

.offset-5 {
  margin-left: 41.6666666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.3333333333%;
}

.offset-8 {
  margin-left: 66.6666666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.3333333333%;
}

.offset-11 {
  margin-left: 91.6666666667%;
}

.d-none {
  display: none !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: -webkit-flex !important;
  display: flex !important;
}

.d-inline-flex {
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: -webkit-inline-flex !important;
  display: inline-flex !important;
}

.flex-row {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: row !important;
  -webkit-flex-direction: row !important;
  flex-direction: row !important;
}

.flex-column {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: column !important;
  -webkit-flex-direction: column !important;
  flex-direction: column !important;
}

.flex-row-reverse {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: reverse !important;
  -ms-flex-direction: row-reverse !important;
  -webkit-flex-direction: row-reverse !important;
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: reverse !important;
  -ms-flex-direction: column-reverse !important;
  -webkit-flex-direction: column-reverse !important;
  flex-direction: column-reverse !important;
}

.flex-wrap {
  -ms-flex-wrap: wrap !important;
  -webkit-flex-wrap: wrap !important;
  flex-wrap: wrap !important;
}

.flex-nowrap {
  -ms-flex-wrap: nowrap !important;
  -webkit-flex-wrap: nowrap !important;
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  -ms-flex-wrap: wrap-reverse !important;
  -webkit-flex-wrap: wrap-reverse !important;
  flex-wrap: wrap-reverse !important;
}

.flex-fill {
  -webkit-box-flex: 1 !important;
  -ms-flex: 1 1 auto !important;
  -webkit-flex: 1 1 auto !important;
  flex: 1 1 auto !important;
}

.flex-grow-0 {
  -webkit-box-flex: 0 !important;
  -ms-flex-positive: 0 !important;
  -webkit-flex-grow: 0 !important;
  flex-grow: 0 !important;
}

.flex-grow-1 {
  -webkit-box-flex: 1 !important;
  -ms-flex-positive: 1 !important;
  -webkit-flex-grow: 1 !important;
  flex-grow: 1 !important;
}

.flex-shrink-0 {
  -ms-flex-negative: 0 !important;
  -webkit-flex-shrink: 0 !important;
  flex-shrink: 0 !important;
}

.flex-shrink-1 {
  -ms-flex-negative: 1 !important;
  -webkit-flex-shrink: 1 !important;
  flex-shrink: 1 !important;
}

.justify-content-start {
  -webkit-box-pack: start !important;
  -ms-flex-pack: start !important;
  -webkit-justify-content: flex-start !important;
  justify-content: flex-start !important;
}

.justify-content-end {
  -webkit-box-pack: end !important;
  -ms-flex-pack: end !important;
  -webkit-justify-content: flex-end !important;
  justify-content: flex-end !important;
}

.justify-content-center {
  -webkit-box-pack: center !important;
  -ms-flex-pack: center !important;
  -webkit-justify-content: center !important;
  justify-content: center !important;
}

.justify-content-between {
  -webkit-box-pack: justify !important;
  -ms-flex-pack: justify !important;
  -webkit-justify-content: space-between !important;
  justify-content: space-between !important;
}

.justify-content-around {
  -ms-flex-pack: distribute !important;
  -webkit-justify-content: space-around !important;
  justify-content: space-around !important;
}

.align-items-start {
  -webkit-box-align: start !important;
  -ms-flex-align: start !important;
  -webkit-align-items: flex-start !important;
  align-items: flex-start !important;
}

.align-items-end {
  -webkit-box-align: end !important;
  -ms-flex-align: end !important;
  -webkit-align-items: flex-end !important;
  align-items: flex-end !important;
}

.align-items-center {
  -webkit-box-align: center !important;
  -ms-flex-align: center !important;
  -webkit-align-items: center !important;
  align-items: center !important;
}

.align-items-baseline {
  -webkit-box-align: baseline !important;
  -ms-flex-align: baseline !important;
  -webkit-align-items: baseline !important;
  align-items: baseline !important;
}

.align-items-stretch {
  -webkit-box-align: stretch !important;
  -ms-flex-align: stretch !important;
  -webkit-align-items: stretch !important;
  align-items: stretch !important;
}

.align-content-start {
  -ms-flex-line-pack: start !important;
  -webkit-align-content: flex-start !important;
  align-content: flex-start !important;
}

.align-content-end {
  -ms-flex-line-pack: end !important;
  -webkit-align-content: flex-end !important;
  align-content: flex-end !important;
}

.align-content-center {
  -ms-flex-line-pack: center !important;
  -webkit-align-content: center !important;
  align-content: center !important;
}

.align-content-between {
  -ms-flex-line-pack: justify !important;
  -webkit-align-content: space-between !important;
  align-content: space-between !important;
}

.align-content-around {
  -ms-flex-line-pack: distribute !important;
  -webkit-align-content: space-around !important;
  align-content: space-around !important;
}

.align-content-stretch {
  -ms-flex-line-pack: stretch !important;
  -webkit-align-content: stretch !important;
  align-content: stretch !important;
}

.align-self-auto {
  -ms-flex-item-align: auto !important;
  -webkit-align-self: auto !important;
  align-self: auto !important;
}

.align-self-start {
  -ms-flex-item-align: start !important;
  -webkit-align-self: flex-start !important;
  align-self: flex-start !important;
}

.align-self-end {
  -ms-flex-item-align: end !important;
  -webkit-align-self: flex-end !important;
  align-self: flex-end !important;
}

.align-self-center {
  -ms-flex-item-align: center !important;
  -webkit-align-self: center !important;
  align-self: center !important;
}

.align-self-baseline {
  -ms-flex-item-align: baseline !important;
  -webkit-align-self: baseline !important;
  align-self: baseline !important;
}

.align-self-stretch {
  -ms-flex-item-align: stretch !important;
  -webkit-align-self: stretch !important;
  align-self: stretch !important;
}

.w-25 {
  width: 25% !important;
}

.w-50 {
  width: 50% !important;
}

.w-75 {
  width: 75% !important;
}

.w-100 {
  width: 100% !important;
}

.w-auto {
  width: auto !important;
}

.h-25 {
  height: 25% !important;
}

.h-50 {
  height: 50% !important;
}

.h-75 {
  height: 75% !important;
}

.h-100 {
  height: 100% !important;
}

.h-auto {
  height: auto !important;
}

.mw-100 {
  max-width: 100% !important;
}

.mh-100 {
  max-height: 100% !important;
}

.m-0 {
  margin: 0 !important;
}

.mt-0,
.my-0 {
  margin-top: 0 !important;
}

.mr-0,
.mx-0 {
  margin-right: 0 !important;
}

.mb-0,
.my-0 {
  margin-bottom: 0 !important;
}

.ml-0,
.mx-0 {
  margin-left: 0 !important;
}

.m-1 {
  margin: .25rem !important;
}

.mt-1,
.my-1 {
  margin-top: .25rem !important;
}

.mr-1,
.mx-1 {
  margin-right: .25rem !important;
}

.mb-1,
.my-1 {
  margin-bottom: .25rem !important;
}

.ml-1,
.mx-1 {
  margin-left: .25rem !important;
}

.m-2 {
  margin: .5rem !important;
}

.mt-2,
.my-2 {
  margin-top: .5rem !important;
}

.mr-2,
.mx-2 {
  margin-right: .5rem !important;
}

.mb-2,
.my-2 {
  margin-bottom: .5rem !important;
}

.ml-2,
.mx-2 {
  margin-left: .5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.mt-3,
.my-3 {
  margin-top: 1rem !important;
}

.mr-3,
.mx-3 {
  margin-right: 1rem !important;
}

.mb-3,
.my-3 {
  margin-bottom: 1rem !important;
}

.ml-3,
.mx-3 {
  margin-left: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.mt-4,
.my-4 {
  margin-top: 1.5rem !important;
}

.mr-4,
.mx-4 {
  margin-right: 1.5rem !important;
}

.mb-4,
.my-4 {
  margin-bottom: 1.5rem !important;
}

.ml-4,
.mx-4 {
  margin-left: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.mt-5,
.my-5 {
  margin-top: 3rem !important;
}

.mr-5,
.mx-5 {
  margin-right: 3rem !important;
}

.mb-5,
.my-5 {
  margin-bottom: 3rem !important;
}

.ml-5,
.mx-5 {
  margin-left: 3rem !important;
}

.p-0 {
  padding: 0 !important;
}

.pt-0,
.py-0 {
  padding-top: 0 !important;
}

.pr-0,
.px-0 {
  padding-right: 0 !important;
}

.pb-0,
.py-0 {
  padding-bottom: 0 !important;
}

.pl-0,
.px-0 {
  padding-left: 0 !important;
}

.p-1 {
  padding: .25rem !important;
}

.pt-1,
.py-1 {
  padding-top: .25rem !important;
}

.pr-1,
.px-1 {
  padding-right: .25rem !important;
}

.pb-1,
.py-1 {
  padding-bottom: .25rem !important;
}

.pl-1,
.px-1 {
  padding-left: .25rem !important;
}

.p-2 {
  padding: .5rem !important;
}

.pt-2,
.py-2 {
  padding-top: .5rem !important;
}

.pr-2,
.px-2 {
  padding-right: .5rem !important;
}

.pb-2,
.py-2 {
  padding-bottom: .5rem !important;
}

.pl-2,
.px-2 {
  padding-left: .5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.pt-3,
.py-3 {
  padding-top: 1rem !important;
}

.pr-3,
.px-3 {
  padding-right: 1rem !important;
}

.pb-3,
.py-3 {
  padding-bottom: 1rem !important;
}

.pl-3,
.px-3 {
  padding-left: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.pt-4,
.py-4 {
  padding-top: 1.5rem !important;
}

.pr-4,
.px-4 {
  padding-right: 1.5rem !important;
}

.pb-4,
.py-4 {
  padding-bottom: 1.5rem !important;
}

.pl-4,
.px-4 {
  padding-left: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.pt-5,
.py-5 {
  padding-top: 3rem !important;
}

.pr-5,
.px-5 {
  padding-right: 3rem !important;
}

.pb-5,
.py-5 {
  padding-bottom: 3rem !important;
}

.pl-5,
.px-5 {
  padding-left: 3rem !important;
}

.m-auto {
  margin: auto !important;
}

.mt-auto,
.my-auto {
  margin-top: auto !important;
}

.mr-auto,
.mx-auto {
  margin-right: auto !important;
}

.mb-auto,
.my-auto {
  margin-bottom: auto !important;
}

.ml-auto,
.mx-auto {
  margin-left: auto !important;
}

/*
    All UI Styles: Forms, Inputs, Textarea, Buttons, Links, Selects, Typography, etc.
*/

.btn-block {
  margin-top: 45px;
}

.btn-block * {
  margin-top: 0;
}

._button {
  height: 55px;
  display: inline-block;
  background: 0 0;
  border: 0px solid;
  font-family: GothamPro;
  font-size: 16px;
  font-weight: 500;
  padding: 15px 30px;
  min-width: 235px;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  margin-top: 40px;
  color: inherit;
  position: relative;
}

._button:after {
  display: block;
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  border-left: 1px solid;
  border-top: 1px solid;
  width: 100%;
  height: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}

._button:before {
  display: block;
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  border-right: 1px solid;
  border-bottom: 1px solid;
  width: 100%;
  height: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}

._button:hover::before,
._button:hover::after {
  width: 95px;
  height: 55px;
}

._button:hover::after {
  left: -5px;
  top: -5px;
}

._button:hover::before {
  right: -5px;
  bottom: -5px;
}

._button-fill {
  min-width: 235px;
  background: transparent;
  border: 1px solid #434343;
  font-family: GothamPro;
  -webkit-box-shadow: 0 0;
  box-shadow: 0 0;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  height: 55px;
  text-align: center;
  color: #434343;
  line-height: 55px;
  display: inline-block;
  margin-top: 35px;
}

._button-fill:hover {
  color: #fff;
  background: #434343;
}

._button-noborder {
  background: transparent;
  border: none;
  font-family: GothamPro;
  -webkit-box-shadow: 0 0;
  box-shadow: 0 0;
  display: inline-block;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  height: 55px;
  line-height: 55px;
  margin-top: 45px;
  padding: 0 25px;
}

._button-noborder:hover {
  opacity: 0.5;
}

._button-noborder._mutted {
  color: #9b9b9b;
}

._button-noborder._mutted:hover {
  color: #000;
  opacity: 1;
}

textarea {
  width: 100%;
  padding: 15px 21px;
  max-width: 755px;
  border: 1px solid #434343;
}

.swiper-container-horizontal > .swiper-pagination-bullets,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 0;
}

.swiper-button-next {
  background-image: url(/assets/images/front/icon/arrow-icon.svg);
  -webkit-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  transform: scale(-1, 1);
}

.swiper-button-prev {
  background-image: url(/assets/images/front/icon/arrow-icon.svg);
}

.swiper-pagination-bullet {
  padding: 20px 0 7px;
  width: 112px;
  -webkit-border-radius: 0;
  border-radius: 0;
  opacity: 0.4;
  background: transparent;
}

.swiper-pagination-bullet::after {
  content: '';
  display: block;
  height: 2px;
  background-color: #ffffff;
}

.swiper-pagination-bullet-active {
  opacity: 1;
}

.form-group {
  margin-bottom: 35px;
}

.input-file__item {
  position: relative;
  border: 1px solid #434343;
  width: 140px;
  height: 140px;
  display: inline-block;
  -webkit-background-size: cover;
  background-size: cover;
  background-position: center;
}

.input-file__item input {
  opacity: 0;
  position: absolute;
  width: 100%;
  left: 0px;
  cursor: pointer;
  top: 0;
  height: 100%;
  z-index: 10;
}

.input-file__item::before {
  content: '';
  display: block;
  padding-bottom: 100%;
}

.input-file__item::after {
  display: block;
  content: '+';
  font-family: Neumann;
  font-size: 80px;
  left: 50%;
  top: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
  -ms-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
  position: absolute;
}

.input-file__item:not(:last-child) {
  margin-right: 20px;
}

.input-file__close {
  color: red;
  font-family: Neumann;
  font-size: 50px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  width: 30px;
  line-height: 27px;
  text-align: center;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  display: block;
  position: absolute;
  cursor: no-drop;
  right: 0;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 0;
  top: 0;
  z-index: 30;
}

._load::after {
  opacity: 0;
}

._load .input-file__close {
  opacity: 1;
}

.input-file__close:hover {
  opacity: 0.6;
  z-index: 11;
}

.input-text {
  border: 0;
  width: 100%;
  padding: 5px 20px 12px;
  border-bottom: 1px solid #434343;
}

.input-text.valid {
  border-bottom: 1px solid #60a317;
  background: url(/assets/images/front/sprite/susses-icon.png) no-repeat right 5px center;
}

.input-text.error {
  border-bottom: 1px solid #d0021b;
  background: url(/assets/images/front/sprite/susses-error.png) no-repeat right 5px center;
}

.input-text.error::-webkit-input-placeholder {
  color: #d0021b;
  opacity: 1;
}

.input-text.error::-moz-placeholder {
  color: #d0021b;
  opacity: 1;
}

.input-text.error:-moz-placeholder {
  color: #d0021b;
  opacity: 1;
}

.input-text.error:-ms-input-placeholder {
  color: #d0021b;
  opacity: 1;
}

label {
  color: #9b9b9b;
  padding-left: 21px;
  margin: 35px 0;
}

[required] {
  position: relative;
  background: url(/assets/images/front/sprite/def-icon.png) no-repeat right 5px center;
}

.custom-control-label {
  position: relative;
  color: #9b9b9b;
}

.custom-control-label input {
  display: none;
}

.custom-control-label .custom-control-indicator {
  width: 12px;
  height: 12px;
  display: inline-block;
  margin-right: 8px;
  position: absolute;
  left: 0;
  top: 3px;
  border: 1px solid #979797;
}

.custom-control-label input:checked + .custom-control-indicator::after {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  position: absolute;
  left: 2px;
  top: 2px;
  background: #979797;
}

.custom-control-label .custom-control-input {
  display: none;
}

.form-group__labeltext {
  padding-left: 0;
  margin: 0;
}

.form-group__labeltext .input-text {
  margin-bottom: 10px;
}

.form-group__labeltext span {
  color: #9b9b9b;
  font-size: 12px;
  display: inline-block;
  padding-left: 20px;
}

.next-link {
  font-family: Neumann;
  font-size: 16px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  color: #434343;
}

.next-link::after {
  content: '';
  display: inline-block;
  width: 23px;
  height: 51px;
  background-image: url(/assets/images/front/icon/arrow-gray.svg);
  background-repeat: no-repeat;
  background-position: center;
  -webkit-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  transform: scale(-1, 1);
  margin-bottom: -19px;
  -webkit-transition: all 0.1s;
  -o-transition: all 0.1s;
  transition: all 0.1s;
  margin-left: 5px;
}

.next-link:hover {
  color: #000;
}

.prev-link {
  font-family: Neumann;
  font-size: 16px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  color: #434343;
}

.prev-link::before {
  content: '';
  display: inline-block;
  width: 23px;
  height: 51px;
  background-image: url(/assets/images/front/icon/arrow-gray.svg);
  background-repeat: no-repeat;
  background-position: center;
  margin-bottom: -19px;
  -webkit-transition: all 0.1s;
  -o-transition: all 0.1s;
  transition: all 0.1s;
  margin-right: 5px;
}

.prev-link:hover {
  color: #000;
}

b {
  font-weight: 500;
}

.typography {
  margin: 47px 0;
}

.typography a {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  color: #434343;
  font-weight: 500;
}

.typography a:hover {
  opacity: 0.6;
}

.typography ._small {
  font-size: 12px;
}

.typography ._border-link {
  display: inline-block;
  border-bottom: 1px solid #434343;
  text-decoration: none;
}

.typography ._border-link:hover {
  border-bottom: 1px solid transparent;
  opacity: 1;
}

.typography blockquote {
  font-style: italic;
  max-width: 750px;
  padding-top: 19px;
  padding-left: 28px;
  background-image: url(/assets/images/front/icon/blockquote.png);
  background-position: left top;
  background-repeat: no-repeat;
  line-height: 264.29%;
}

.typography ul {
  list-style: none;
  color: #898989;
  margin-bottom: 30px;
  list-style-position: inside;
}

.typography ul li {
  padding-left: 30px;
  position: relative;
  margin-bottom: 20px;
}

.typography ul li::after {
  width: 7px;
  height: 7px;
  content: '';
  left: 0;
  top: 6px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  position: absolute;
  border: 1px solid #898989;
}

.typography h2 {
  font-family: Neumann;
  font-size: 30px;
  font-weight: normal;
  letter-spacing: -0.06px;
  margin-top: -9px;
  margin-bottom: 20px;
}

.typography p {
  font-size: 14px;
  line-height: 264.29%;
  letter-spacing: -0.03px;
  margin-bottom: 26px;
}

.select {
  position: relative;
}

.select__gap {
  border: 1px solid #434343;
  padding: 17px 33px 17px 19px;
  cursor: pointer;
  color: #9b9b9b;
  position: relative;
}

.select__gap span {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
}

.select__gap::after {
  content: '';
  display: block;
  right: 17px;
  top: 50%;
  margin-top: -4px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  height: 8px;
  width: 12px;
  position: absolute;
  background-image: url(/assets/images/front/icon/select-arrow.svg);
  background-position: center;
  background-repeat: no-repeat;
}

.select__list {
  color: #9b9b9b;
  border: 1px solid #434343;
  border-top: 0px solid;
  list-style: none;
  width: 100%;
  background: #fff;
  top: 100%;
  margin-top: -2px;
  position: absolute;
  left: 0;
  z-index: 3;
  padding-bottom: 9px;
}

.select__list li {
  margin: 5px 10px 11px 20px;
  cursor: pointer;
}

.select__list li:hover {
  color: #d0021b;
}

.select__gap.on::after {
  -webkit-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

span.im-caret {
  -webkit-animation: 1s blink step-end infinite;
  animation: 1s blink step-end infinite;
}

@keyframes blink {
  from, to {
    border-right-color: black;
  }

  50% {
    border-right-color: transparent;
  }
}

@-webkit-keyframes blink {
  from, to {
    border-right-color: black;
  }

  50% {
    border-right-color: transparent;
  }
}

span.im-static {
  color: grey;
}

div.im-colormask {
  display: inline-block;
  border-style: inset;
  border-width: 2px;
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
}

div.im-colormask > input {
  position: absolute;
  display: inline-block;
  background-color: transparent;
  color: transparent;
  -webkit-appearance: caret;
  -moz-appearance: caret;
  appearance: caret;
  border-style: none;
  left: 0;
  /*calculated*/
}

div.im-colormask > input:focus {
  outline: none;
}

div.im-colormask > input::-moz-selection {
  background: none;
}

div.im-colormask > input::selection {
  background: none;
}

div.im-colormask > input::-moz-selection {
  background: none;
}

div.im-colormask > div {
  color: black;
  display: inline-block;
  width: 100px;
  /*calculated*/
}

.about-banner__img {
  width: 100%;
}

.about-banner__title {
  font-family: Neumann;
  font-size: 30px;
  letter-spacing: 0.04px;
}

.about-gallery {
  position: relative;
}

.about-gallery a {
  width: 0;
  padding: 0.4%;
  position: absolute;
  display: block;
}

.about-gallery .about-gallery__img-1 {
  left: 0;
  top: 0;
  width: 19.65%;
}

.about-gallery .about-gallery__img-2 {
  width: 14.24%;
  top: 0;
  left: 19.55%;
}

.about-gallery .about-gallery__img-3 {
  top: 0;
  width: 34.13%;
  left: 33.6%;
  position: relative;
}

.about-gallery .about-gallery__img-4 {
  top: 52.6%;
  width: 11.9%;
  left: 67.6%;
}

.about-gallery .about-gallery__img-5 {
  top: 52.6%;
  width: 20.75%;
  right: 0;
}

.about-gallery .about-gallery__img-6 {
  top: 0;
  width: 17.09%;
  left: 67.6%;
}

.about-gallery .about-gallery__img-7 {
  top: 42.8%;
  width: 16.63%;
  left: 17.2%;
}

.about-gallery img {
  width: 100%;
}

.auction-play-black-page {
  color: #fff;
  background-image: -webkit-gradient(linear, right top, left top, color-stop(-46%, #787878), to(#434343));
  background-image: -webkit-linear-gradient(right, #787878 -46%, #434343 100%);
  background-image: -o-linear-gradient(right, #787878 -46%, #434343 100%);
  background-image: linear-gradient(to left, #787878 -46%, #434343 100%);
}

.auction-gallery-thumbs {
  position: relative;
}

.auction-gallery-thumbs .swiper-container {
  padding: 5px 0 19px;
}

.auction-gallery-thumbs .swiper-button-prev.swiper-button-white {
  background-image: url(/assets/images/front/icon/arrow-gray2.svg);
  -webkit-background-size: initial initial;
  background-size: initial;
  width: 12px;
  margin-left: -32px;
  height: 25px;
  margin-top: -7px;
}

.auction-gallery-thumbs .swiper-button-next.swiper-button-white {
  margin-right: -32px;
  background-image: url(/assets/images/front/icon/arrow-gray2.svg);
  -webkit-background-size: initial initial;
  background-size: initial;
  width: 12px;
  height: 25px;
  margin-top: -7px;
}

.auction-gallery-thumbs .swiper-slide:not(._active) {
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: url(desaturate.svg#greyscale);
  filter: gray;
  -webkit-filter: grayscale(1);
}

.auction-gallery-thumbs ._active::before {
  content: '';
  display: block;
  width: -webkit-calc(100% + 8px);
  width: calc(100% + 8px);
  height: -webkit-calc(100% + 8px);
  height: calc(100% + 8px);
  margin-left: -4px;
  position: absolute;
  margin-top: -4px;
  background: #fff;
}

.auction-gallery-thumbs ._active::after {
  content: '';
  display: block;
  height: 12px;
  width: 12px;
  background: #fff;
  position: absolute;
  bottom: -10px;
  left: 50%;
  margin-left: -6px;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.auction-gallery-thumbs .swiper-slide {
  height: 72px;
}

.auction-gallery-thumbs .swiper-slide a {
  height: 72px;
  background-position: center;
  display: block;
  position: relative;
  z-index: 20;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
}

.auction-play-img {
  height: 416px;
  background-position: center;
  display: block;
  position: relative;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
  width: 100%;
  text-align: center;
}

.auction-play-img a {
  display: inline-block;
  position: relative;
}

.auction-play-img a img {
  margin: auto;
}

.auction-play-title {
  background-color: rgba(67, 67, 67, 0.43);
  color: #fff;
  font-size: 14px;
  padding: 13px 16px;
  font-weight: 900;
  display: inline-block;
  position: absolute;
  left: 0;
  bottom: 0;
}

.auction-top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  color: #9b9b9b;
  font-size: 9px;
  padding-bottom: 10px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1.78px;
}

.auction-top a {
  color: #9b9b9b;
  font-size: 10px;
  font-weight: 700;
}

.auction-top big {
  color: #fff;
  font-size: 12px;
}

.history {
  background: #fff;
  color: #434343;
  margin-bottom: 53px;
}

.history .history__wrapper {
  overflow: hidden;
  height: 100%;
  max-height: 357px;
}

.history table {
  border-spacing: 0;
  width: 100%;
  font-size: 13px;
  margin-top: -1px;
}

.history tr {
  position: relative;
}

.history tr::after {
  content: '';
  width: -webkit-calc(100% - 70px);
  width: calc(100% - 70px);
  border-bottom: 1px solid #9b9b9b;
  position: absolute;
  left: 20px;
}

.history td {
  padding: 17px 3px;
}

.history td:first-child {
  padding-left: 20px !important;
}

.history td:last-child {
  padding-right: 50px !important;
}

.history ._gray {
  background: #efeeef;
  position: relative;
}

.history ._gray td {
  padding-top: 30px;
  padding-bottom: 15px;
}

.history ._green {
  background: #cbe2b2;
}

.auction-play-pay {
  color: #9b9b9b;
  font-size: 10px;
  font-weight: 700;
}

.auction-play-pay__price {
  font-family: Neumann;
  font-size: 30px;
  color: #fff;
  font-weight: normal;
  line-height: 151%;
}

.auction-play-pay__inputprice {
  font-family: Neumann;
  font-size: 30px;
  color: #fff;
  max-width: 117px;
  border: 0 solid;
  margin-right: 10px;
  background: none;
  display: inline-block;
  text-align: center !important;
  border-bottom: 1px solid #9b9b9b;
}

.auction-play__button {
  border: 0 solid;
  color: #fff;
  text-align: center;
  width: 100%;
  background-color: #434343;
  -webkit-box-shadow: 0 0 4px rgba(136, 136, 136, 0.5);
  box-shadow: 0 0 4px rgba(136, 136, 136, 0.5);
  background-image: -webkit-linear-gradient(77deg, #787878 0%, #434343 100%);
  background-image: -o-linear-gradient(77deg, #787878 0%, #434343 100%);
  background-image: linear-gradient(13deg, #787878 0%, #434343 100%);
  margin-top: -13px;
  padding-top: 13px;
  padding-bottom: 10px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.auction-play__button._lider {
  background-color: #ade752;
  background-image: -webkit-linear-gradient(77deg, #429221 0%, #ade752 100%);
  background-image: -o-linear-gradient(77deg, #429221 0%, #ade752 100%);
  background-image: linear-gradient(13deg, #429221 0%, #ade752 100%);
}

.auction-play__button:hover {
  -webkit-box-shadow: 0px 0px 12px rgba(255, 255, 255, 0.5);
  box-shadow: 0px 0px 12px rgba(255, 255, 255, 0.5);
}

.lotstatus {
  letter-spacing: 1px;
  font-size: 10px;
  margin-top: 21px;
}

.lotstatus span {
  font-size: 15px;
}

.commissiya {
  color: #ff1f3a;
  font-size: 11px;
  letter-spacing: 1px;
  font-weight: 700;
}

.commissiya span {
  font-size: 14px;
}

.chat {
  margin-top: 45px;
}

.chat__title {
  font-family: Neumann;
  font-size: 40px;
  margin-bottom: 24px;
}

.chat__chat {
  background: #fff;
  padding: 18px 24px;
  min-height: 129px;
}

.chat__message {
  color: #434343;
  letter-spacing: 1.24px;
  font-weight: 500;
  font-style: italic;
  font-size: 12px;
  margin-bottom: 15px;
}

.chat__message span {
  font-style: normal;
  color: #d0021b;
  display: inline-block;
  margin-right: 9px;
}

.chat__message span._you {
  color: #9b9b9b;
}

.chat__ui {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  background-color: #f0f0f0;
}

.chat__ui input {
  font-size: 10px;
  padding: 4px 24px;
  border: 0;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  height: 45px;
  background-color: #f0f0f0;
}

.chat__ui button {
  background-color: #9b9b9b;
  max-width: 243px;
  font-size: 14px;
  font-weight: 700;
  width: 100%;
  color: #fff;
  display: block;
  height: 45px;
  border: 0 solid;
  letter-spacing: 2.49px;
}

._yourprice {
  color: #fff;
  background-image: -webkit-gradient(linear, right top, left top, color-stop(-46%, #787878), to(#434343));
  background-image: -webkit-linear-gradient(right, #787878 -46%, #434343 100%);
  background-image: -o-linear-gradient(right, #787878 -46%, #434343 100%);
  background-image: linear-gradient(to left, #787878 -46%, #434343 100%);
}

._yourprice .auction-r {
  border-bottom: 1px solid #434343;
}

._yourprice .auction-r a {
  color: #fff;
}

._yourprice .stavka__input {
  color: #fff;
}

._yourprice .stavka__btn {
  color: #fff;
  border: 1px solid #fff;
}

._yourprice .stavka__btn:hover {
  background: #fff;
  color: #434343;
}

._weeksale {
  background-image: -webkit-gradient(linear, right top, left top, color-stop(-46%, #e7dbe7), to(#bdc5e9));
  background-image: -webkit-linear-gradient(right, #e7dbe7 -46%, #bdc5e9 100%);
  background-image: -o-linear-gradient(right, #e7dbe7 -46%, #bdc5e9 100%);
  background-image: linear-gradient(to left, #e7dbe7 -46%, #bdc5e9 100%);
  color: #444444;
}

._weeksale .auction-r {
  border-bottom: 1px solid #444444;
}

._weeksale .auction-r a {
  color: #444444;
}

._weeksale .stavka__btn._sales {
  background: #fdfbfd;
}

._blackfriday {
  background-image: -webkit-gradient(linear, right top, left top, color-stop(-46%, #f7edde), to(#faf0e7));
  background-image: -webkit-linear-gradient(right, #f7edde -46%, #faf0e7 100%);
  background-image: -o-linear-gradient(right, #f7edde -46%, #faf0e7 100%);
  background-image: linear-gradient(to left, #f7edde -46%, #faf0e7 100%);
  color: #444444;
}

._blackfriday .auction-r {
  border-bottom: 1px solid #444444;
}

._blackfriday .auction-r a {
  color: #444444;
}

._blackfriday .stavka__btn._sales {
  background: #fdfbfd;
}

.auction-now {
  position: relative;
  background-image: -webkit-gradient(linear, right top, left top, from(#787878), to(#434343));
  background-image: -webkit-linear-gradient(right, #787878 0%, #434343 100%);
  background-image: -o-linear-gradient(right, #787878 0%, #434343 100%);
  background-image: linear-gradient(to left, #787878 0%, #434343 100%);
  height: 50px;
}

.auction-now .inner {
  max-width: 1040px;
  padding: 0 20px 0px 20px !important;
}

.auction-now__close {
  width: 15px;
  height: 15px;
  position: absolute;
  right: 30px;
  top: 17px;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  background: url(/assets/images/front/icon/close-bold.svg) no-repeat center;
}

.auction-now__close:hover {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.auction-now__btn {
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.97px;
  text-align: center;
  width: 100%;
  display: block;
  line-height: 50px;
}

.auction-now__content {
  color: #fff;
  background-image: -webkit-gradient(linear, right top, left top, from(#787878), to(#434343));
  background-image: -webkit-linear-gradient(right, #787878 0%, #434343 100%);
  background-image: -o-linear-gradient(right, #787878 0%, #434343 100%);
  background-image: linear-gradient(to left, #787878 0%, #434343 100%);
  padding-top: 33px;
  padding-bottom: 33px;
  position: relative;
  z-index: 56;
  display: none;
}

.auction-now__img {
  display: block;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-background-size: cover;
  background-size: cover;
}

.auction-now__lot {
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  line-height: 28px;
}

.auction-now__lot:hover {
  opacity: 0.7;
}

.auction-now__autor {
  color: #fff;
  font-family: Neumann;
  font-size: 20px;
  letter-spacing: -.04px;
  margin: 8px 0 3px 0;
  display: block;
}

.auction-now__desc {
  font-size: 12px;
  line-height: 28px;
  letter-spacing: -0.03px;
}

.auction-now__eskiz {
  font-size: 14px;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: -0.1px;
}

.auction-now__price-wrap {
  font-size: 12px;
  font-weight: 500;
  margin-top: 40px;
  letter-spacing: -0.03px;
}

.auction-now__price {
  font-family: Neumann;
  font-size: 30px;
  margin-top: 6px;
  letter-spacing: -0.06px;
}

.auction-item__img {
  height: 360px;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-background-size: cover;
  background-size: cover;
  margin-bottom: 20px;
  display: block;
}

.auction-item__data {
  font-size: 12px;
  line-height: 28px;
  margin-bottom: 5px;
  letter-spacing: -0.03px;
}

.auction-item__name {
  font-weight: 500;
  color: #434343;
  letter-spacing: -.03px;
  margin-bottom: 13px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  display: block;
}

.auction-item__name:hover {
  opacity: 0.6;
}

.text-hidden-toogle {
  color: #434343;
  font-size: 12px;
  display: inline-block;
  text-decoration: underline;
}

.text-hidden-toogle:hover {
  text-decoration: none;
}

.text-hidden-toogle {
  margin-top: 20px;
}

.auction-item__link-border {
  color: #434343;
  font-size: 12px;
  font-weight: 500;
  padding-bottom: 1px;
  margin-bottom: 9px;
  display: inline-block;
  border-bottom: 2px solid #434343;
}

.auction-item__link-border:hover {
  border-bottom: 2px solid transparent;
}

.auction__img {
  height: 100%;
  min-height: 400px;
  background-position: center;
  -webkit-background-size: cover;
  background-size: cover;
  max-height: 549px;
}

.auction-r {
  padding-bottom: 60px;
  margin-bottom: 60px;
  border-bottom: 1px solid #eaeaea;
}

.auction-r a {
  color: #434343;
}

.auction-play-pay__inputblock {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.auction-r__img {
  height: 100%;
/*  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex; */
  min-height: 240px;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-background-size: contain;
  background-size: contain;
}

.auction-r__img img {
  margin: auto;
}

.auction-r__lot {
  font-size: 14px;
  margin-top: 17px;
  font-weight: 700;
}

.auction-r__autor {
  font-family: Neumann;
  margin-top: 13px;
  margin-bottom: 18px;
  font-size: 20px;
}

.auction-r__name {
  font-weight: 500;
}

.auction-r__desc {
  font-size: 12px;
  margin-bottom: 17px;
  margin-top: 19px;
  line-height: 230%;
}

.text-hidden {
  max-height: 350px;
  overflow: hidden;
  position: relative;
}

.text-hidden:after {
  content: '';
  display: block;
  -webkit-box-shadow: 0px -20px 47px 26px #fff;
  box-shadow: 0px -20px 47px 26px #fff;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: -9px;
  width: 100%;
}

.text-hidden._visible {
  max-height: initial;
}

.text-hidden._visible:after {
  display: none;
}

.stavka__head {
  font-size: 14px;
  margin-top: 17px;
  font-weight: 700;
  text-transform: uppercase;
}

.stavka__price {
  font-family: Neumann;
  font-size: 20px;
  margin-top: 12px;
}

.stavka__input::-webkit-input-placeholder {
  font-size: 14px;
  font-family: GothamPro;
}

.stavka__input::-moz-placeholder {
  font-size: 14px;
  font-family: GothamPro;
}

.stavka__input:-ms-input-placeholder {
  font-size: 14px;
  font-family: GothamPro;
}

.stavka__input::-ms-input-placeholder {
  font-size: 14px;
  font-family: GothamPro;
}

.stavka__input::placeholder {
  font-size: 14px;
  font-family: GothamPro;
}

.auction-page .inner {
  position: relative;
}

.stavka__input {
  display: block;
  width: 100%;
  border: 0 solid;
  background: transparent;
  border-bottom: 1px solid #ccc;
  padding: 10px 10px 13px 10px;
  margin-top: 24px;
  margin-bottom: 35px;
  line-height: 100%;
  text-align: left !important;
  padding-left: 0;
  padding-right: 0;
  font-family: Neumann;
  font-size: 20px;
}

.stavka__btn {
  border: 1px solid #434343;
  height: 55px;
  width: 100%;
  max-width: 233px;
  margin-top: 0;
  font-size: 16px;
}

.stavka__btn._sales {
  border: 0 solid;
  background: #e9eae9;
  cursor: auto;
  color: #434343 !important;
}

.auction-r .row {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.your-lot {
  position: absolute;
  right: 20px;
  top: 10px;
  color: #434343;
  width: 100%;
  max-width: 400px;
  background: #fff;
  padding: 15px 15px;
  -webkit-border-radius: 7px;
  border-radius: 7px;
}

.your-lot table {
  width: 100%;
  margin-top: 15px;
  border-bottom: 1px solid #434343;
  border-top: 1px solid #434343;
  padding-bottom: 6px;
}

.your-lot th {
  font-size: 10px;
  padding-top: 29px;
  text-transform: uppercase;
  text-align: center;
}

.your-lot td {
  text-align: center;
  padding: 10px 0;
  font-weight: 500;
}

.your-lot th:first-child,
.your-lot td:first-child {
  text-align: left;
}

.your-lot th:last-child,
.your-lot td:last-child {
  text-align: right;
}

.your-lot ._you {
  color: #60a317;
}

.your-lot ._apponent {
  color: #d0021b;
}

.your-lot__title {
  position: relative;
  cursor: pointer;
}

.your-lot__title span {
  height: 20px;
  width: 20px;
  position: absolute;
  right: 0;
}

.your-lot__title span::after {
  content: '';
  display: block;
  height: 2px;
  width: 20px;
  top: 6px;
  background: #434343;
  position: absolute;
}

.your-lot__title span::before {
  content: '';
  display: block;
  height: 2px;
  width: 20px;
  top: 6px;
  background: #434343;
  position: absolute;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.your-lot._open .your-lot__title span::before {
  opacity: 0;
}

.your-lot__legend {
  text-transform: uppercase;
  font-weight: 500;
  color: #9f9f9f;
  padding: 22px 0 0 0;
  font-size: 11px;
}

.your-lot__legend-you {
  display: inline-block;
  margin-right: 20px;
}

.your-lot__legend-you:before {
  display: inline-block;
  content: '';
  width: 15px;
  margin-right: 11px;
  height: 15px;
  margin-bottom: -3px;
  background: #60a317;
}

.your-lot__legend-apponent {
  display: inline-block;
}

.your-lot__legend-apponent:before {
  display: inline-block;
  content: '';
  width: 15px;
  margin-right: 11px;
  height: 15px;
  margin-bottom: -3px;
  background: #d0021b;
}

.your-lot__img {
  background-image: url(/assets/images/front/temp/picture-1.jpg);
  display: block;
  height: 43px;
  width: 55px;
  background-position: center;
  -webkit-background-size: cover;
  background-size: cover;
}

.your-lot__title {
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 1px;
  cursor: pointer;
  text-transform: uppercase;
}

.stavka-modal, .message-modal {
  padding: 20px;
  background: rgba(0, 0, 0, 0.38);
  position: fixed;
  bottom: 0;
  height: -webkit-calc(100% - 100px);
  height: calc(100% - 100px);
  left: 0;
  width: 100%;
  overflow: auto;
}

.stavka-modal .wrapper, .message-modal .wrapper {
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  color: #434343;
  width: 100%;
  max-width: 528px;
  padding: 50px 20px;
  text-align: center;
}

.stavka-modal__close, .message-modal__close {
  width: 30px;
  height: 30px;
  position: absolute;
  cursor: pointer;
  top: 20px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  right: 20px;
}

.stavka-modal__close:after, .message-modal__close:after {
  content: '';
  display: block;
  width: 30px;
  position: absolute;
  height: 2px;
  top: 15px;
  background: #434343;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.stavka-modal__close:before, .message-modal__close:before {
  content: '';
  display: block;
  width: 30px;
  height: 2px;
  top: 15px;
  position: absolute;
  background: #434343;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.stavka-modal__close:hover, .message-modal__close:hover {
  -webkit-transform: rotate(180def);
  -ms-transform: rotate(180def);
  transform: rotate(180def);
}

.stavka-modal__title, .message-modal__title {
  font-family: Neumann;
  font-size: 22px;
}

.stavka-modal__img {
  width: 100%;
  height: 156px;
  display: block;
  margin-top: 48px;
  margin-bottom: 15px;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-background-size: contain;
  background-size: contain;
}

.stavka-modal__desc {
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 1.6px;
  margin-top: 28px;
}

.message-modal__desc {  font-weight: 400;
  font-size: 14px;
  letter-spacing: 1.1px;
}

.bio-item__title {
  color: #434343;
  font-family: 'Neumann';
  font-size: 25px;
  margin-bottom: 15px;
}

.bio-item__more {
  color: #434343;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: -0.02px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  border-bottom: 1px solid #434343;
  margin-top: 6px;
  display: inline-block;
  padding-bottom: 2px;
}

.bio-item__more:hover {
  border-bottom: 1px solid transparent;
}

.bio-item {
  margin-bottom: 65px;
}

.bio-item ul {
  list-style: none;
}

.bio-item ul li {
  margin: 10px 0 14px;
}

.bio-item ul a {
  color: #434343;
  font-size: 14px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  display: inline-block;
  padding-bottom: 3px;
  border-bottom: 1px solid transparent;
}

.bio-item ul a:hover {
  color: #9b9b9b;
  border-bottom: 1px solid #434343;
}

.bio-menu {
  border-bottom: 1px solid rgba(155, 155, 155, 0.28);
  color: #434343;
  font-family: Neumann;
  margin-right: -15px;
  font-size: 20px;
  white-space: nowrap;
  overflow-y: hidden;
  overflow-x: auto;
  margin-bottom: 20px;
  letter-spacing: -0.04px;
}

.bio-menu span {
  display: inline-block;
  padding-bottom: 10px;
  margin-right: 18px;
  cursor: pointer;
  margin-bottom: -1px;
}

.bio-menu span._active {
  border-bottom: 1px solid #9b9b9b;
}

.bio-item__more span:last-child {
  display: none;
}

._visible .bio-item__more span:first-child {
  display: none;
}

._visible .bio-item__more span:last-child {
  display: block;
}

.bio-item__hidden {
  display: none;
  -webkit-animation: fadeDown .25s forwards ease-in-out;
  animation: fadeDown .25s forwards ease-in-out;
}

._visible .bio-item__hidden {
  display: block;
}

/**
 * EasyZoom core styles
 */

.easyzoom {
  position: relative;
  /* 'Shrink-wrap' the element */
  display: inline-block;
  *display: inline;
  *zoom: 1;
  width:100%;
}

.easyzoom img {
  vertical-align: bottom;
}

.easyzoom.is-loading img {
  cursor: progress;
}

.easyzoom.is-ready img {
  cursor: crosshair;
}

.easyzoom.is-error img {
  cursor: not-allowed;
}

.easyzoom-notice {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 150;
  width: 10em;
  margin: -1em 0 0 -5em;
  line-height: 2em;
  text-align: center;
  background: #FFF;
  -webkit-box-shadow: 0 0 10px #888;
  box-shadow: 0 0 10px #888;
}

.easyzoom-flyout {
  position: absolute;
  z-index: 100;
  overflow: hidden;
  border: 6px solid #fff;
  margin-left: 15px;
  background: #FFF;
}

.easyzoom-flyout img {
  -webkit-transform: none !important;
  -ms-transform: none !important;
  transform: none !important;
  width: 1000px !important;
  max-height: inherit !important;
  max-width: 1000px !important;
}

/**
 * EasyZoom layout variations
 */

.easyzoom--overlay .easyzoom-flyout {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.easyzoom--adjacent .easyzoom-flyout {
  top: 0;
  left: 100%;
  width: 400px;
  max-width: 500px;
  height: 300px;
}

.searchcollection {
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #9b9b9b;
  height: 43px;
  font-size: 16px;
  font-family: Neumann;
  margin: 40px 0 56px;
}

.searchcollection input {
  max-width: 366px;
  margin: 0 10px;
}

.searchcollection button {
  background: none;
  color: #9b9b9b;
  border: 0 solid;
}

.searchcollection__input::-webkit-input-placeholder {
  color: #FFFFFF;
  opacity: 1;
}

/* webkit */

.searchcollection__input::-moz-placeholder {
  color: #FFFFFF;
  opacity: 1;
}

/* Firefox 19+ */

.searchcollection__input:-moz-placeholder {
  color: #FFFFFF;
  opacity: 1;
}

/* Firefox 18- */

.searchcollection__input:-ms-input-placeholder {
  color: #FFFFFF;
  opacity: 1;
}

/* IE */

.filter {
  margin: 20px 0 88px;
}

.filter__close {
  background-image: url(/assets/images/front/icon/close.svg);
  background-position: center;
  background-repeat: no-repeat;
  widows: 30px;
  margin-bottom: 22PX;
  height: 43px;
  MARGIN-TOP: 20PX;
}

.filter__item {
  width: 20%;
  margin:0 auto;
}

.collection-item {
  margin-bottom: 47px;
}

.collection-item._sales {
  opacity: 0.6;
}

.collection-item._sales button {
  background-color: #eaeaea;
  text-transform: uppercase;
  border: 0 solid;
  font-size: 16px;
}

.collection-item._sales button:hover {
  color: #434343;
}

.collection-item__img {
  -webkit-background-size: contain;
  background-size: contain;
  background-position: center right;
  background-repeat: no-repeat;
  background-color: #fff;
  height: 100%;
  display: block;
  min-height: 306px;
  position: relative;
}

.collection-item__img img {
  height: 100%;
  margin-left: auto;
  margin-right: auto;
}

.collection-item__autor {
  font-size: 14px;
  line-height: 37px;
  color: #434343;
  text-decoration: underline;
}

.collection-item__autor:hover {
  text-decoration: none;
}

.collection-item__name {
  font-family: Neumann;
  margin: 7px 0 10px;
  font-size: 30px;
  letter-spacing: -0.06px;
}

.collection-item__desc {
  line-height: 276%;
}

.collection-item__btnwrap {
  margin-top: 43px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  color: #9b9b9b;
  font-size: 12px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}

.collection-item__btnwrap button {
  margin-top: 0;
  font-size: 16px;
}

.collection-item__btnwrap span {
  margin-left: 15px;
}

.collection-item__price {
  color: #434343;
  font-family: Neumann;
  font-size: 30px;
  margin-right: auto;
  letter-spacing: -0.06px;
}

.searchresult-item__autor {
  font-family: Neumann;
  font-size: 18px;
  margin-top: -5px;
  margin-bottom: 10px;
}

.searchresult-item__desc {
  line-height: 160%;
}

.searchresult-item__name {
  font-size: 12px;
  margin-bottom: 13px;
}

@-webkit-keyframes animate-circle {
  from {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 1;
  }

  to {
    -webkit-transform: scale(4);
    transform: scale(4);
    opacity: 0;
  }
}

@keyframes animate-circle {
  from {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 1;
  }

  to {
    -webkit-transform: scale(4);
    transform: scale(4);
    opacity: 0;
  }
}

.marker {
  width: 94px;
  height: 94px;
  cursor: pointer;
  position: relative;
}

.marker__img {
  background-image: url(/assets/images/front/icon/label.svg);
  -webkit-background-size: contain;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  position: absolute;
}

.marker span {
  position: absolute;
  left: 50%;
  display: block;
  top: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  border: 1px solid rgba(151, 151, 151, 0.35);
  background: #d8d8d8;
  -webkit-animation: animate-circle 6s ease-out infinite;
  animation: animate-circle 6s ease-out infinite;
  width: 50px;
  height: 50px;
  margin-left: -25px;
  margin-top: -25px;
}

.marker span:nth-of-type(1) {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

.marker span:nth-of-type(2) {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.marker span:nth-of-type(3) {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.marker span:nth-of-type(4) {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}

.marker span:nth-of-type(5) {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}

.marker span:nth-of-type(6) {
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
}

#map {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}

.contact-page .inner {
  padding-bottom: 40px;
  padding-top: 1px;
}

.contact-page .page__main {
  position: relative;
}

.contact-page .page__main::after {
  content: "";
  display: block;
  position: absolute;
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(255, 255, 255, 0)), to(rgba(223, 223, 223, 0.78)));
  background-image: -webkit-linear-gradient(right, rgba(255, 255, 255, 0) 0%, rgba(223, 223, 223, 0.78) 100%);
  background-image: -o-linear-gradient(right, rgba(255, 255, 255, 0) 0%, rgba(223, 223, 223, 0.78) 100%);
  background-image: linear-gradient(-90deg, rgba(255, 255, 255, 0) 0%, rgba(223, 223, 223, 0.78) 100%);
  left: 0;
  height: 100%;
  top: 0;
  width: 50%;
}

.contact-inner {
  position: relative;
  z-index: 30;
  padding-bottom: 145px;
  display: inline-block;
}

.contact-page__grafick {
  font-family: Neumann;
  font-size: 25px;
  letter-spacing: -0.05px;
  margin-bottom: 36px;
}

.contact-page__phone {
  font-family: Neumann;
  font-size: 25px;
  letter-spacing: -0.55px;
  color: #434343;
}

.contact-page__mail {
  color: #434343;
  font-family: Neumann;
  font-size: 25px;
  text-decoration: underline;
  letter-spacing: -0.55px;
}

.contact-page__mail:hover {
  text-decoration: none;
}

.contact-page__social,
.contact-page__social a {
  color: #434343;
  font-family: Neumann;
  font-size: 20px;
  letter-spacing: -0.04px;
}

.contact-page__social {
  margin-top: 30px;
}

.contact-page__social a:hover {
  text-decoration: underline;
}

.contact-page__ps {
  position: absolute;
  font-family: Neumann;
  font-size: 16px;
  bottom: 74px;
}

.enter-page form {
  max-width: 480px;
}

.exhibition {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  margin-bottom: 68px;
}

.exhibition__imgwrap {
  min-width: 450px;
/*  max-width: 450px; */
  margin-right: 30px;
}

.exhibition__imgwrap img {
  width: 100%;
}

.exhibition__data {
  margin-top: 9px;
}

.exhibition__title {
  font-family: Neumann;
  margin-top: 23px;
  margin-bottom: 29px;
  font-size: 30px;
}

.exhibition__body {
  line-height: 264.29%;
  letter-spacing: -0.03px;
  margin-bottom: 6px;
}

.exhibitionsdetail__date {
  color: #d0021b;
  margin-bottom: 33px;
  font-family: Neumann;
  font-size: 24px;
  letter-spacing: -0.04px;
}

.exhibitionsdetail__place {
  font-family: Neumann;
  font-size: 30px;
  margin-bottom: 13px;
  margin-top: 33px;
  letter-spacing: -0.06px;
}

.exhibitionsdetail__begin {
  font-family: Neumann;
  font-size: 24px;
  margin-top: 13px;
  margin-bottom: 26px;
  letter-spacing: -0.04px;
}

.exhibitionsdetail__download,
.exhibitionsdetail__more {
  font-size: 12px;
  color: #434343;
  font-weight: 500;
  border-bottom: 1px #434343 solid;
  padding-bottom: 6px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.exhibitionsdetail__download:hover,
.exhibitionsdetail__more:hover {
  border-bottom: 1px solid transparent;
}

.exhibitionsdetail__download {
  margin-bottom: 4px;
}

.exhibitionslink-block {
  margin-bottom: 31px;
}

.exhibitionslink-block__link {
  font-size: 12px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  padding-bottom: 5px;
  font-weight: 500;
  color: #4a90e2!important;
  border-bottom: 1px #4a90e2 solid;
}

.exhibitionslink-block__link:hover {
  border-bottom: 1px solid transparent;
}

.exhibitionslink-block__desc {
  font-style: italic;
  margin-top: 11px;
}

.exhibitionprev {
    margin-bottom: 40px;
}

.exhibitionprev__autor {
    display: block;
    margin-top: 20px;
    margin-bottom: -20px;
}

.exhibitionprev__title {
  font-weight: 500;
  color: #434343;
  display: inline-block;
  margin-top: 20px;
  line-height: 201%;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.exhibitionprev__title:hover {
  opacity: 0.7;
}

.front-block {
  font-family: 'Neumann';
  text-align: center;
}

.front-block__title {
  font-size: 50px;
  font-weight: normal;
  margin-bottom: 30px;
}

.title-block .front-block__title {
  margin-bottom: 10px;
}

.front-block__desc {
  font-size: 30px;
  letter-spacing: -0.06px;
}

.front-block__subtitle {
  font-size: 40px;
  margin-bottom: 28px;
  letter-spacing: -0.07px;
}

.front-block__subtitle._small {	font-size: 26px;}

.jarallax {
  position: relative;
  z-index: 0;
  -webkit-background-size: cover;
  background-size: cover;
}

.jarallax > .jarallax-img {
  position: absolute;
  -o-object-fit: cover;
  object-fit: cover;
  /* support for plugin https://github.com/bfred-it/object-fit-images */
  font-family: 'object-fit: cover;';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.front-block__wrapper {
  padding-left: 110px;
  padding-right: 110px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-height: 440px;
  height: 100%;
  position: relative;
  z-index: 3;
}

.title-block-row {
  height: -webkit-calc(var(--vh, 1vh) * 100 - 106px);
  height: calc(var(--vh, 1vh) * 100 - 106px);
  max-height: 100%;
  min-height: calc(100vh - 106px);
}

.title-block {
  height: -webkit-calc(var(--vh, 1vh) * 100 - 106px);
  height: calc(var(--vh, 1vh) * 100 - 106px);
  max-height: 100%;
  min-height: calc(100vh - 106px);
}

.title-block .front-block__wrapper {
  height: calc(100vh - 106px);
}

._h100 {
  height: calc(100vh - 106px);
}

div .buy-and-sell .inner {
  padding-top: 30px;
  padding-bottom: 30px;
}

._dark-block .front-block__wrapper {
  color: #fff;
  background-color: rgba(0, 0, 0, 0.15);
}

._white-block .front-block__wrapper {
  color: #434343;
  background-image: -webkit-linear-gradient(225deg, #ffffff 0%, #dfdfdf 100%);
  background-image: -o-linear-gradient(225deg, #ffffff 0%, #dfdfdf 100%);
  background-image: linear-gradient(225deg, #ffffff 0%, #dfdfdf 100%);
}

._h50 {
  height: 50%;
  min-height: 220px;
}

._h50 .front-block {
  height: 100%;
}

._h50 .front-block__wrapper {
  min-height: 220px;
  height: 100%;
}

._h50 .swiper-slide {
  height: 100%;
  min-height: 220px;
}

._left {
  text-align: left;
}

._left .front-block__wrapper {
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}

.page__main > .row,
.page__main > .row > div {
  margin: 0;
  padding: 0;
}

.buy-and-sell {
  background-image: url(/upload/main/sale.jpg);
  -webkit-background-size: cover;
  background-size: cover;
  background-position: 50%;
}

.swiper-container .swiper-wrapper + .front-block__wrapper {
  left: 0;
  top: 0;
  position: absolute;
  width: 100%;
  z-index: 10;
}

.swiper-slide {
  height: 660px;
  -webkit-background-size: cover;
  background-size: cover;
}

.collections ._button {
  margin-top: 47px;
}

.slide__jaralax {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-position: 50%;
  -webkit-background-size: cover;
  background-size: cover;
  z-index: 1;
}

.swiper-pagination {
  width: 100%;
}

.front-block.about .inner {
  padding-top: 100px;
}

.video__prev {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  cursor: pointer;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-background-size: cover;
  background-size: cover;
  margin-bottom: 10px;
}

.video__prev:after {
  content: "";
  display: block;
  position: absolute;
  width: 42px;
  height: 42px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  background-image: url(/assets/images/front/icon/play.svg);
  background-position: center;
  background-repeat: no-repeat;
  -webkit-background-size: contain;
  background-size: contain;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}

.video {
  margin-bottom: 60px;
}

.video__title {
  font-family: Neumann;
  font-size: 24px;
  letter-spacing: -0.14px;
  margin-top: 15px;
}

.video__item {
  background: #000;
}

.video__item:hover .video__prev::after {
  -webkit-transform: translateX(-50%) translateY(-50%) scale(1.3);
  -ms-transform: translateX(-50%) translateY(-50%) scale(1.3);
  transform: translateX(-50%) translateY(-50%) scale(1.3);
}

.video__item {
  position: relative;
}

.video__item {
  position: relative;
  padding-bottom: 56.25%;
  /* задаёт высоту контейнера для 16:9 (если 4:3 — поставьте 75%) */
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}

.video__item iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.one-lot-slider .easyzoom-flyout {
  z-index: 100;
}

.one-lot-slider .swiper-slide {
  background-position: center;
  -webkit-background-size: cover;
  background-size: cover;
  height: initial;
}

.one-lot-slider .swiper-slide::before {
  padding-bottom: 72%;
  display: block;
  content: "";
}

.one-lot-slider__top {
  overflow: visible !important;
}

.one-lot-slider__top .swiper-slide::before {
  display: none;
}

.one-lot-slider__top .swiper-slide a > img {
  max-width: 100%;
  max-height: 100%;
  min-width: 100%;
 /* min-height: 100%; */
  margin: auto;
}

.one-lot-slider__bottom .swiper-slide {
  opacity: 0.6;
  cursor: pointer;
}

.one-lot-slider__bottom .swiper-slide-thumb-active {
  opacity: 1;
}

.one-lot:first-child {
  margin-top: 100px;
}

.one-lot {
  margin-bottom: 68px;
}

.one-lot__autor {
  font-family: Neumann;
  font-size: 30px;
  color: #434343;
  padding-bottom: 6px;
  margin-bottom: 33px;
  display: inline-block;
  border-bottom: 1px solid #434343;
  letter-spacing: -0.06px;
}

.one-lot__autor:hover {
  border-bottom: 1px solid transparent;
}

.one-lot__name {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 18px;
}

.one-lot__desc {
  letter-spacing: -0.03px;
  line-height: 270%;
  margin-bottom: 18px;
}

.one-lot__sold {
  color: #d0021b;
  font-family: Neumann;
  font-size: 30px;
  margin-top:30px;
}

.one-lot__process {
    font-family: Neumann;
    font-size: 30px;
    margin-top:30px;
}

.one-lot__price._sales {
  color: #d0021b;
}

.one-lot__price._oldprice {
  color: #c7c7c7;
}

.one-lot__price._oldprice .one-lot__price-data {
  position: relative;
}

.one-lot__price._oldprice .one-lot__price-data:after {
  content: '';
  border-bottom: 2px solid #c7c7c7;
  display: block;
  top: 25px;
  position: absolute;
  width: 100%;
}

.one-lot__price-label {
  font-size: 12px;
  font-weight: 500;
}

.one-lot-slider__top:hover {
  z-index: 4;
}

.one-lot-slider__top {
  margin-bottom: 21px;
}

.one-lot__price-data {
  font-family: Neumann;
  line-height: 140%;
  font-size: 30px;
  letter-spacing: -.06px;
  margin-top: 6px;
  display: inline-block;
}

.auction-head {
  font-family: Neumann;
  font-size: 26px;
  margin-bottom: 22px;
}

.page.one-lot {
  margin-bottom: 0;
}

.rating {
  width: 121px;
}

.rating svg {
  width: 15px;
  margin-left: 5px;
  fill: #d4d4d4;
}

.rating[data-raiting="1"] svg:nth-child(1) {
  fill: #f5a623;
}

.rating[data-raiting="2"] svg:nth-child(1),
.rating[data-raiting="2"] svg:nth-child(2) {
  fill: #f5a623;
}

.rating[data-raiting="3"] svg:nth-child(1),
.rating[data-raiting="3"] svg:nth-child(2),
.rating[data-raiting="3"] svg:nth-child(3) {
  fill: #f5a623;
}

.rating[data-raiting="4"] svg:nth-child(1),
.rating[data-raiting="4"] svg:nth-child(2),
.rating[data-raiting="4"] svg:nth-child(3),
.rating[data-raiting="4"] svg:nth-child(4) {
  fill: #f5a623;
}

.rating[data-raiting="5"] svg {
  fill: #f5a623;
}

.one-lot .table-responsive {
  margin-right: -15px;
  margin-left: -15px;
}

.one-lot-table {
  width: 100%;
  border-spacing: 0;
}

.one-lot-table th {
  text-align: left;
  color: #898989;
  font-size: 12px;
  font-weight: 500;
  padding: 18px 22px;
}

.one-lot-table ._sale {
  background-color: rgba(96, 163, 23, 0.15);
}

.one-lot-table td {
  padding: 19px 22px;
  font-size: 14px;
  white-space: nowrap;
  border-bottom: 1px solid #434343;
}

.modal-onelot .yourprice,
.modal-onelot .ownbid {
  width: 100%;
}

.yourprice .modal-onelot__content,
.ownbid .modal-onelot__content {
  max-width: 1149px;
  margin: 0 auto;
}

.modal-onelot__content {
  max-width: 493px;
  position: relative;
}
.modal-onelot__content.wide-modal {
  max-width: 650px;
  position: relative;
}

.modal-onelot__content p {
  font-size: 14px;
  line-height: 203%;
}

.modal-onelot__close {
  background-image: url(/assets/images/front/icon/close.svg);
  background-position: center;
  background-repeat: no-repeat;
  width: 45px;
  cursor: pointer;
  height: 45px;
  position: absolute;
  right: -45px;
  z-index: 3;
}

.modal-onelot__title {
  font-family: Neumann;
  font-size: 30px;
}

.modal-onelot__subtitle {
  font-family: Neumann;
  font-size: 24px;
  margin-bottom: 33px;
  color: #9b9b9b;
}

.modal-onelot__unregistr {
  color: #898989;
  font-family: Neumann;
  font-size: 20px;
  display: inline-block;
  margin-top: 44px;
  text-decoration: underline;
}

.modal-onelot__unregistr:hover {
  text-decoration: none;
}

.modal-onelot {
  position: fixed;
  background: #fff;
  display: none;
  width: 100%;
  top: 0;
  left: 0;
  height: -webkit-calc(var(--vh, 1vh) * 100 - 105px);
  height: calc(var(--vh, 1vh) * 100 - 105px);
  top: 105px;
  z-index: 22;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  padding: 20px;
}

.error.modal-onelot__wrapper button {
  margin-bottom: 30px;
}

.yourprice__img,
.ownbid__img {
  background-position: center;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
  min-height: 300px;
  height: 100%;
}

.yourprice__input,
.ownbid__input {
  margin-bottom: 21px;
  font-family: Neumann;
  font-size: 25px;
  text-align: left !important;
}

.modal-onelot__tell {
  color: #434343;
  font-family: Neumann;
  font-size: 25px;
  letter-spacing: -0.55px;
}

.ownbid__autor,
.yourprice__autor {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 14px;
}

.ownbid__h,
.yourprice__h {
  font-family: Neumann;
  font-size: 30px;
  margin-bottom: 44px;
}

.modal-onelot .ownbid p,
.modal-onelot .yourprice p {
  color: #898989;
}

.modal-onelot .ownbid button,
.modal-onelot .yourprice button {
  margin-top: 145px !important;
}

.one-lot-table-wrap {
  height: 400px;
}

.one-lot-table th:last-child {
  padding-right: 50px !important;
}

.one-lot-table td:last-child {
  padding-right: 50px !important;
}

.header {
  position: fixed;
  background: #fff;
  top: 0;
  left: 0;
  -webkit-box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.21);
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.21);
  height: 105px;
  z-index: 100;
  width: 100%;
}

.header .inner {
  padding: 0 33px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  max-width: 1690px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  height: 100%;
}

.header a {
  color: #434343;
  font-size: 14px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  letter-spacing: -0.03px;
}

.header a:hover {
  color: #d0021b;
}

.header ._search {
  padding-left: 22px;
  background-repeat: no-repeat;
  background-image: url(/assets/images/front/icon/lens.svg);
  background-position: left center;
}

.header a._more {
  margin-top: 20px;
  display: inline-block;
}

.header a._more,
.header a._more span {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: -.02px;
  border-bottom: 2px solid;
  position: relative;
  top: 2px;
  padding-bottom: 5px;
}

.header a._more:hover,
.header a._more span:hover {
  color: #fff;
  opacity: 1;
  border-bottom: 2px solid transparent;
}

.footer {
  background-color: #202020;
  color: #fff;
  width: 100%;
  font-size: 12px;
  padding-top: 45px;
  margin-top: auto;
  letter-spacing: 0.38px;
}

.footer .row {
  margin-bottom: 30px;
}

.footer a {
  color: #ffffff;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.footer a:hover {
  opacity: 0.5;
}

.footer h4 {
  font-size: 14px;
  font-weight: 500;
  color: #898989;
  margin-bottom: 13px;
  text-transform: uppercase;
}

.footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer li {
  margin-bottom: 9px;
}

.footer a._more {
  color: #9b9b9b;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: -.02px;
  border-bottom: 2px solid;
  position: relative;
  top: 2px;
  padding-bottom: 3px;
}

.footer a._more:hover {
  opacity: 1;
  border-bottom: 2px solid transparent;
}

.contact-block,
.contact-block a {
  color: #898989;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.03px;
}

.contact-block p {
  margin-bottom: 14px;
}

.footer__copy {
  margin-top: -10px;
  padding: 28px 0;
  font-size: 10px;
  background-color: #353535;
}

.footer__copy .inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 0 !important;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.inner {
  max-width: 1309px;
  padding: 0 15px;
  margin: 0 auto;
  width: 100%;
}

.page {
  min-height: 100vh;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-top: 105px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.header__subcontent {
  position: absolute;
  right: 33px;
  top: 9px;
}

.header__content {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  height: 100%;
  padding-left: 56px;
  min-width: 747px;
}

.primery-menu {
  list-style: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  height: 100%;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.primery-menu li {
  position: relative;
}

._hover > a {
  color: #d0021b;
}

.primery-submenu {
  list-style: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
}

.primery-submenu li:not(:last-child) {
  margin-right: 27px;
}

.primery-submenu a {
  color: #898989;
  font-size: 10px;
  font-weight: 500;
  border-bottom: 1px solid;
}

.primery-submenu a:hover {
  border-bottom: 1px solid transparent;
}

.primery-submenu a:not(:last-child) {
  position: relative;
  margin-right: 10px;
}

.primery-submenu a:not(:last-child):after {
  content: '|';
  position: absolute;
  right: -9px;
  opacity: 1 !important;
  top: 0;
  color: #898989 !important;
}

.search__btn {
  width: 19px;
  height: 30px;
  cursor: pointer;
  margin-left: 15px;
  display: block;
  background-repeat: no-repeat;
  background-image: url(/assets/images/front/icon/lens.svg);
  background-position: left center;
}

.search-block__result {
    margin: 59px auto 39px;
   /* max-width: 500px; */
}

.search-block__desc, .search-title {
    text-align: center;
}

._ct a {
  display: inline-block;
}

._ct a img {
  position: relative;
  top: 2px;
}

.primery-menu__sub {
  position: fixed;
  top: 103px;
  left: 0;
  width: 100%;
  height: 280px;
  display: none;
  background-image: -webkit-linear-gradient(135deg, #787878 0%, #434343 100%);
  background-image: -o-linear-gradient(135deg, #787878 0%, #434343 100%);
  background-image: linear-gradient(-45deg, #787878 0%, #434343 100%);
  color: #fff;
}

.primery-menu__sub a {
  color: #fff;
}

.sub-inner {
  padding-top: 34px;
  -webkit-transition: all .35s;
  -o-transition: all .35s;
  transition: all .35s;
  z-index: 2;
  opacity: 0;
  -webkit-animation: fadeUp .25s forwards ease-in-out;
  animation: fadeUp .25s forwards ease-in-out;
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

._hover .sub-inner {
  -webkit-animation: fadeDown .25s forwards ease-in-out;
  animation: fadeDown .25s forwards ease-in-out;
  -webkit-animation-delay: .15s;
  animation-delay: .15s;
}

.sub-menu,
.sub-menu ul {
  list-style: none;
}

.sub-menu li:not(:last-child) {
  margin-bottom: 10px;
}

.sub-menu li,
.sub-menu li a {
  font-family: 'Neumann' !important;
  font-size: 20px;
  letter-spacing: -0.04px;
}

.sub-menu a:hover {
  opacity: 0.5;
  color: #fff;
}

.sub-menu li li,
.sub-menu li li a {
  font-family: "GothamPro" !important;
  font-size: 14px;
  letter-spacing: -0.03px;
  color: #ffffff;
}

.sub-menu ul {
  padding-left: 22px;
  margin-top: 17px;
  margin-bottom: 17px;
}

._hover .primery-menu__sub {
  display: block;
}

.page {
  overflow: hidden;
}

.burger {
  width: 23px;
  height: 23px;
  min-width: 23px;
  cursor: pointer;
  margin-right: 19px;
  position: relative;
}

.burger span {
  height: 1px;
  background-color: #434343;
  display: block;
  left: 0;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  width: 100%;
  position: absolute;
}

.burger span:first-child {
  top: 5px;
}

.burger span:last-child {
  bottom: 4px;
}

.burger span:nth-child(2) {
  top: 50%;
}

.burger._open span:first-child {
  top: 11px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  width: 30px;
  left: -4px;
}

.burger._open span:nth-child(2) {
  opacity: 0;
}

.burger._open span:last-child {
  top: 11px;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  width: 30px;
  left: -4px;
}

li._hover::after {
  content: '';
  height: 30px;
  width: 30px;
  background: #fff;
  position: absolute;
  left: 50%;
  margin-left: -15px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  bottom: -45px;
}

._big {
  line-height: 224%;
  margin-bottom: 13px;
}

.sub-menu li li:not(:last-child) {
  margin-bottom: 12px;
}

._pdf {
  background-image: url(/assets/images/front/icon/pdf-icon.svg);
  background-repeat: no-repeat;
  background-position: left center;
  padding: 11px 0 18px 36px !important;
  border: 0 !important;
  display: inline-block;
}

._circle {
  list-style: disc;
  margin-left: 20px;
}

.page__main .inner {
  padding-bottom: 100px;
}

.parlx-children {
  max-height: initial !important;
  max-width: initial !important;
}

.page__title {
  font-family: 'Neumann';
  font-size: 50px;
  font-weight: normal;
  position: relative;
  letter-spacing: -0.06px;
  margin-top: 62px;
  margin-bottom: 42px;
}

.page__title ._prev {
  display: block;
  background-image: url(/assets/images/front/icon/prev.svg);
  background-repeat: no-repeat;
  background-position: center;
  width: 16px;
  height: 25px;
  position: absolute;
  left: -41px;
  top: 27px;
  cursor: pointer;
  -webkit-transition: 0.3s all;
  -o-transition: 0.3s all;
  transition: 0.3s all;
}

.page__title ._prev:hover {
  opacity: 0.7;
}

.page__subtitle {
  font-family: 'Neumann';
  font-size: 30px;
  font-weight: normal;
  margin-bottom: 34px;
  letter-spacing: -0.06px;
}

.breadcrumb {
  margin-top: 30px;
  margin-bottom: -30px;
}

.breadcrumb ul {
  list-style: none;
}

.breadcrumb ul a {
  color: #434343;
}

.breadcrumb ul a:hover {
  opacity: 0.7;
}

.breadcrumb ul li {
  font-size: 12px;
  display: inline-block;
  color: #9b9b9b;
}

.breadcrumb ul li:not(:last-child)::after {
  content: '>';
  padding: 0 3px 0 10px;
  display: inline-block;
}

.pagination-title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 62px;
  margin-bottom: 42px;
}

.pagination-title h1 {
  margin: 0;
  text-align: center;
}

.pagination-title .prev-link,
.pagination-title .next-link {
  width: 250px;
  margin-top: 10px;
  white-space: nowrap;
}

.pagination-title .next-link {
  text-align: right;
}

@-webkit-keyframes moveDown {
  from {
    height: 0;
  }

  to {
    height: 250px;
  }
}

@keyframes moveDown {
  from {
    height: 0;
  }

  to {
    height: 250px;
  }
}

@-webkit-keyframes moveUp {
  from {
    height: 250px;
  }

  to {
    height: 0;
  }
}

@keyframes moveUp {
  from {
    height: 250px;
  }

  to {
    height: 0;
  }
}

@-webkit-keyframes fadeDown {
  from {
    opacity: 0;
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}

@keyframes fadeDown {
  from {
    opacity: 0;
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}

@-webkit-keyframes fadeUp {
  from {
    opacity: 1;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }

  to {
    opacity: 0;
    -webkit-transform: translateY(-80px);
    transform: translateY(-80px);
  }
}

@keyframes fadeUp {
  from {
    opacity: 1;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }

  to {
    opacity: 0;
    -webkit-transform: translateY(-80px);
    transform: translateY(-80px);
  }
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.d-m {
  display: none;
}

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

  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

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

  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.loader {
  text-align: center;
  color: #dbdbdb;
  font-size: 12px;
  font-weight: 500;
  display: none;
}

.loader::before {
  content: '';
  display: block;
  margin: 0 auto;
  width: 49px;
  margin: 0 auto;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  height: 49px;
  margin-bottom: 10px;
  background-image: url(/assets/images/front/icon/loader.png);
  -webkit-animation-name: spin;
  animation-name: spin;
  -webkit-animation-duration: 6000ms;
  animation-duration: 6000ms;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

[modal-picture] {
  cursor: pointer;
}

.picture-item {
  border-bottom: 1px solid #eaeaea;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  padding: 25px 0;
  width: 100%;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

	.picture-artist {
		float: left;
	    margin: 0 40px 20px 0;
	    max-width: 200px;
	}

.picture-item._znakovaya {
  position: relative;
}

.picture-item._znakovaya:before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  position: absolute;
  border: 1px solid #d0021b;
  width: -webkit-calc(100% + 60px);
  width: calc(100% + 60px);
  height: 100%;
  margin-left: -30px;
}

.picture-item:last-child {
  border-bottom: 0 solid;
}

.picture-item__img-wrapper {
  width: 296px;
  height: 296px;
  margin-right: 45px;
  position: relative;
}

.picture-item__img-wrapper img {  max-height: 296px;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}

.picture-item__autor {
  margin-bottom: 17px;
  font-family: Neumann;
  font-size: 20px;
  letter-spacing: -0.04px;
}

.picture-item__name {
  font-weight: 500;
  margin-bottom: 22px;
  letter-spacing: -0.03px;
}

.picture-item__desc p {
  font-size: 12px;
  margin-bottom: 3px;
  line-height: 241%;
}

.modal-picture {
  background: #fff;
  position: fixed;
  height: -webkit-calc(var(--vh, 1vh) * 100 - 105px);
  height: calc(var(--vh, 1vh) * 100 - 105px);
  z-index: 12;
  padding-top: 30px;
  top: 105px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.modal-picture__close {
  width: 38px;
  height: 38px;
  position: absolute;
  background-image: url(/assets/images/front/icon/close.svg);
  right: 20px;
  top: 20px;
  cursor: pointer;
}

.modal-picture__close:hover {
  opacity: 0.7;
}

.modal-picture-slider .swiper-slide {
  background: #fff;
  height: inherit;
}

.modal-picture-slider .swiper-slide .row {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.modal-picture__img-wrapper {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  -webkit-background-size: contain;
  background-size: contain;
  background-position: center;
  min-height: 360px;
}

.modal-picture__img-wrapper a img {
  max-width: 100%;
  max-height: 421px;
  margin: auto;
}

.modal-picture__img-wrapper .easyzoom {
  width: 100%;
}

.modal-picture__img-wrapper2 {
  width: -webkit-calc(100% + 50px);
  width: calc(100% + 50px);
  margin: 0 -25px;
  min-height: 270px;
  background-color: #fff;
  background-repeat: no-repeat;
  -webkit-background-size: contain;
  background-size: contain;
  background-position: center;
}

.modal-picture-slider {
  overflow: visible;
}

.modal-picture__nav,
.picture-nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  max-width: 420px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 56px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.modal-picture__prev,
.picture-nav__prev {
  color: #9b9b9b;
  font-size: 12px;
  cursor: pointer;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}

.modal-picture__prev::before,
.picture-nav__prev::before {
  content: "";
  display: inline-block;
  border-left: 1px solid #9b9b9b;
  border-top: 1px solid #9b9b9b;
  width: 10px;
  height: 10px;
  margin-right: 7px;
  margin-left: 2px;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 1px;
  position: relative;
}

.modal-picture__prev:hover,
.picture-nav__prev:hover {
  opacity: 0.6;
}

.modal-picture__content p {
  line-height: 258%;
}

.modal-picture__next,
.picture-nav__next {
  color: #9b9b9b;
  font-size: 12px;
  cursor: pointer;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}

.modal-picture__next::after,
.picture-nav__next::after {
  content: "";
  margin-left: 7px;
  margin-right: 2px;
  display: inline-block;
  border-right: 1px solid #9b9b9b;
  border-bottom: 1px solid #9b9b9b;
  width: 10px;
  height: 10px;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 1px;
  position: relative;
}

.modal-picture__next:hover,
.picture-nav__next:hover {
  opacity: 0.6;
}

.modal-picture__lot,
.picture-nav__lot {
  padding: 0 10px;
  font-family: Neumann;
  font-size: 25px;
  text-transform: uppercase;
  letter-spacing: -0.05px;
}

.modal-picture__name {
    font-weight: 500;
}

.modal-picture__title {
  font-family: Neumann;
  font-size: 20px;
  color: #434343;
  display: inline-block;
  padding-bottom: 7px;
  display: inline-block;
  border-bottom: 1px solid #434343;
  margin-bottom: 26px;
  letter-spacing: -0.05px;
}

.modal-picture__title:hover {
  border-bottom: 1px solid transparent;
}

.picture-nav {
  margin-bottom: 20px;
}

.press-item {
  display: block;
  min-height: 300px;
  margin-bottom: 100px;
  position: relative;
}

.press-item::after {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  bottom: 0;
  height: 1px;
  background: #eaeaea;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.press-item:hover::after {
  height: 10px;
}

.press-item__imgwrap {
  height: 79px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 12px;
}

.press-item__text {
  color: #434343;
  font-family: Neumann;
  font-size: 24px;
}

/*************** SCROLLBAR BASE CSS ***************/

.scroll-wrapper {
  overflow: hidden !important;
  padding: 0 !important;
  position: relative;
}

.scroll-wrapper > .scroll-content {
  border: none !important;
  -webkit-box-sizing: content-box !important;
  box-sizing: content-box !important;
  height: auto;
  left: 0;
  margin: 0;
  max-height: none;
  max-width: none !important;
  overflow: scroll !important;
  padding: 0;
  position: relative !important;
  top: 0;
  width: auto !important;
}

.scroll-wrapper > .scroll-content::-webkit-scrollbar {
  height: 0;
  width: 0;
}

.scroll-element {
  display: none;
}

.scroll-element,
.scroll-element div {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

.scroll-element.scroll-x.scroll-scrollx_visible,
.scroll-element.scroll-y.scroll-scrolly_visible {
  display: block;
}

.scroll-element .scroll-bar,
.scroll-element .scroll-arrow {
  cursor: default;
}

.scroll-textarea {
  border: 1px solid #cccccc;
  border-top-color: #999999;
}

.scroll-textarea > .scroll-content {
  overflow: hidden !important;
}

.scroll-textarea > .scroll-content > textarea {
  border: none !important;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  height: 100% !important;
  margin: 0;
  max-height: none !important;
  max-width: none !important;
  overflow: scroll !important;
  outline: none;
  padding: 2px;
  position: relative !important;
  top: 0;
  width: 100% !important;
}

.scroll-textarea > .scroll-content > textarea::-webkit-scrollbar {
  height: 0;
  width: 0;
}

/*************** SIMPLE INNER SCROLLBAR ***************/

.scrollbar-inner > .scroll-element,
.scrollbar-inner > .scroll-element div {
  border: none;
  margin: 0;
  padding: 0;
  position: absolute;
  z-index: 10;
}

.scrollbar-inner > .scroll-element div {
  display: block;
  height: 100%;
  left: 0;
  top: 0;
  width: 100%;
}

.scrollbar-inner > .scroll-element.scroll-x {
  bottom: 2px;
  height: 8px;
  left: 0;
  width: 100%;
}

.scrollbar-inner > .scroll-element.scroll-y {
  height: 100%;
  right: 20px;
  height: -webkit-calc(100% - 40px);
  height: calc(100% - 40px);
  top: 20px;
  bottom: 20px;
  width: 3px;
}

.scrollbar-inner > .scroll-element .scroll-element_outer {
  overflow: hidden;
}

.scrollbar-inner > .scroll-element .scroll-element_outer,
.scrollbar-inner > .scroll-element .scroll-element_track,
.scrollbar-inner > .scroll-element .scroll-bar {
  -webkit-border-radius: 8px;
  border-radius: 8px;
}

.scrollbar-inner > .scroll-element .scroll-element_track,
.scrollbar-inner > .scroll-element .scroll-bar {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
  filter: alpha(opacity=40);
  opacity: 0.4;
}

.scrollbar-inner > .scroll-element .scroll-element_track {
  background-color: #c2c2c2;
}

.scrollbar-inner > .scroll-element .scroll-bar {
  background-color: #d0021b;
}

.scrollbar-inner > .scroll-element:hover .scroll-bar {
  background-color: #d0021b;
}

/* update scrollbar offset if both scrolls are visible */

.scrollbar-inner > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_track {
  left: -12px;
}

.scrollbar-inner > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_track {
  top: -12px;
}

.scrollbar-inner > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_size {
  left: -12px;
}

.scrollbar-inner > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_size {
  top: -12px;
}

/*************** SIMPLE OUTER SCROLLBAR ***************/

.scrollbar-outer > .scroll-element,
.scrollbar-outer > .scroll-element div {
  border: none;
  margin: 0;
  padding: 0;
  position: absolute;
  z-index: 10;
}

.scrollbar-outer > .scroll-element {
  background-color: #ffffff;
}

.scrollbar-outer > .scroll-element div {
  display: block;
  height: 100%;
  left: 0;
  top: 0;
  width: 100%;
}

.scrollbar-outer > .scroll-element.scroll-x {
  bottom: 0;
  height: 12px;
  left: 0;
  width: 100%;
}

.scrollbar-outer > .scroll-element.scroll-y {
  height: -webkit-calc(100% - 40px);
  height: calc(100% - 40px);
  right: 11px;
  top: 20px;
  bottom: 20px;
  width: 3px;
}

.scrollbar-outer > .scroll-element.scroll-x .scroll-element_outer {
  height: 8px;
  top: 2px;
}

.scrollbar-outer > .scroll-element.scroll-y .scroll-element_outer {
  left: 2px;
  width: 3px;
}

.scrollbar-outer > .scroll-element .scroll-element_outer {
  overflow: hidden;
}

.scrollbar-outer > .scroll-element .scroll-element_track {
  background-color: #eeeeee;
}

.scrollbar-outer > .scroll-element .scroll-bar {
  background-color: #d0021b;
}

.scrollbar-outer > .scroll-element .scroll-bar:hover {
  background-color: #d0021b;
}

.scrollbar-outer > .scroll-element.scroll-draggable .scroll-bar {
  background-color: #919191;
}

/* scrollbar height/width & offset from container borders */

.scrollbar-outer > .scroll-content.scroll-scrolly_visible {
  left: -12px;
  margin-left: 12px;
}

.scrollbar-outer > .scroll-content.scroll-scrollx_visible {
  top: -12px;
  margin-top: 12px;
}

.scrollbar-outer > .scroll-element.scroll-x .scroll-bar {
  min-width: 10px;
}

.scrollbar-outer > .scroll-element.scroll-y .scroll-bar {
  min-height: 10px;
}

/* update scrollbar offset if both scrolls are visible */

.scrollbar-outer > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_track {
  left: -14px;
}

.scrollbar-outer > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_track {
  top: -14px;
}

.scrollbar-outer > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_size {
  left: -14px;
}

.scrollbar-outer > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_size {
  top: -14px;
}

.search-block {
  max-width: 609px;
  position: fixed;
  right: 0;
  top: 0;
  background: #fff;
  z-index: 116;
  width: 100%;
}

.search-block::before {
  content: '';
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: #000000;
  opacity: 0.65;
  z-index: -1;
}

.search-block__inner {
  background: #fff;
  padding: 100px 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  overflow: visible;
  height: -webkit-calc(var(--vh, 1vh) * 100);
  height: calc(var(--vh, 1vh) * 100);
}

.searchresult-item__img {
  min-height: 125px;
  background-position: center;
  -webkit-background-size: cover;
  background-size: cover;
  margin-bottom: 15px;
}

.search-block__close {
  background-image: url(/assets/images/front/icon/close.svg);
  background-repeat: no-repeat;
  background-position: center;
  width: 45px;
  height: 45px;
  position: absolute;
  right: 26px;
  top: 29px;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.search-block__close:hover {
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.search-block__title {
  font-family: Neumann;
  font-size: 29px;
  margin-bottom: 17px;
}

.search-block__desc {
  margin-bottom: 43px;
}

.searchresult-item__label {
  margin: 59px 0 39px;
}

.front-block__wrapper {
  position: relative;
}

.slider__wrapper {
  height: 100%;
  position: relative;
  z-index: 10;
}

.slider__wrapper + .front-block__wrapper {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}

.slider__slide {
  position: absolute;
  height: 100%;
  left: 0;
  top: 0;
  width: 100%;
  opacity: 0;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.slider__slide.active {
  opacity: 1;
}

.slider {
  position: relative;
  height: 100%;
}

.collections,
.exhibitions {
  height: 660px;
}

.slider .swiper-pagination {
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.slider .swiper-pagination .swiper-pagination-bullet {
  margin: 0 4px;
  cursor: pointer;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }

  .col-sm {
    -ms-flex-preferred-size: 0;
    -webkit-flex-basis: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    -webkit-flex-grow: 1;
    flex-grow: 1;
    max-width: 100%;
  }

  .col-sm-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    -webkit-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }

  .col-sm-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.3333333333%;
    -webkit-flex: 0 0 8.3333333333%;
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .col-sm-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.6666666667%;
    -webkit-flex: 0 0 16.6666666667%;
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-sm-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    -webkit-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-sm-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.3333333333%;
    -webkit-flex: 0 0 33.3333333333%;
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .col-sm-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.6666666667%;
    -webkit-flex: 0 0 41.6666666667%;
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }

  .col-sm-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    -webkit-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-sm-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.3333333333%;
    -webkit-flex: 0 0 58.3333333333%;
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .col-sm-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.6666666667%;
    -webkit-flex: 0 0 66.6666666667%;
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }

  .col-sm-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    -webkit-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-sm-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.3333333333%;
    -webkit-flex: 0 0 83.3333333333%;
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .col-sm-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.6666666667%;
    -webkit-flex: 0 0 91.6666666667%;
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }

  .col-sm-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    -webkit-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-sm-first {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    -webkit-order: -1;
    order: -1;
  }

  .order-sm-last {
    -webkit-box-ordinal-group: 14;
    -ms-flex-order: 13;
    -webkit-order: 13;
    order: 13;
  }

  .order-sm-0 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    -webkit-order: 0;
    order: 0;
  }

  .order-sm-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    -webkit-order: 1;
    order: 1;
  }

  .order-sm-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
  }

  .order-sm-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    -webkit-order: 3;
    order: 3;
  }

  .order-sm-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    -webkit-order: 4;
    order: 4;
  }

  .order-sm-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    -webkit-order: 5;
    order: 5;
  }

  .order-sm-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    -webkit-order: 6;
    order: 6;
  }

  .order-sm-7 {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 7;
    -webkit-order: 7;
    order: 7;
  }

  .order-sm-8 {
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 8;
    -webkit-order: 8;
    order: 8;
  }

  .order-sm-9 {
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 9;
    -webkit-order: 9;
    order: 9;
  }

  .order-sm-10 {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    -webkit-order: 10;
    order: 10;
  }

  .order-sm-11 {
    -webkit-box-ordinal-group: 12;
    -ms-flex-order: 11;
    -webkit-order: 11;
    order: 11;
  }

  .order-sm-12 {
    -webkit-box-ordinal-group: 13;
    -ms-flex-order: 12;
    -webkit-order: 12;
    order: 12;
  }

  .offset-sm-0 {
    margin-left: 0;
  }

  .offset-sm-1 {
    margin-left: 8.3333333333%;
  }

  .offset-sm-2 {
    margin-left: 16.6666666667%;
  }

  .offset-sm-3 {
    margin-left: 25%;
  }

  .offset-sm-4 {
    margin-left: 33.3333333333%;
  }

  .offset-sm-5 {
    margin-left: 41.6666666667%;
  }

  .offset-sm-6 {
    margin-left: 50%;
  }

  .offset-sm-7 {
    margin-left: 58.3333333333%;
  }

  .offset-sm-8 {
    margin-left: 66.6666666667%;
  }

  .offset-sm-9 {
    margin-left: 75%;
  }

  .offset-sm-10 {
    margin-left: 83.3333333333%;
  }

  .offset-sm-11 {
    margin-left: 91.6666666667%;
  }

  .d-sm-none {
    display: none !important;
  }

  .d-sm-inline {
    display: inline !important;
  }

  .d-sm-inline-block {
    display: inline-block !important;
  }

  .d-sm-block {
    display: block !important;
  }

  .d-sm-table {
    display: table !important;
  }

  .d-sm-table-row {
    display: table-row !important;
  }

  .d-sm-table-cell {
    display: table-cell !important;
  }

  .d-sm-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: -webkit-flex !important;
    display: flex !important;
  }

  .d-sm-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: -webkit-inline-flex !important;
    display: inline-flex !important;
  }

  .flex-sm-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    -webkit-flex-direction: row !important;
    flex-direction: row !important;
  }

  .flex-sm-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    -webkit-flex-direction: column !important;
    flex-direction: column !important;
  }

  .flex-sm-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    -webkit-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }

  .flex-sm-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    -webkit-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }

  .flex-sm-wrap {
    -ms-flex-wrap: wrap !important;
    -webkit-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }

  .flex-sm-nowrap {
    -ms-flex-wrap: nowrap !important;
    -webkit-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }

  .flex-sm-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    -webkit-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }

  .flex-sm-fill {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 1 auto !important;
    -webkit-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }

  .flex-sm-grow-0 {
    -webkit-box-flex: 0 !important;
    -ms-flex-positive: 0 !important;
    -webkit-flex-grow: 0 !important;
    flex-grow: 0 !important;
  }

  .flex-sm-grow-1 {
    -webkit-box-flex: 1 !important;
    -ms-flex-positive: 1 !important;
    -webkit-flex-grow: 1 !important;
    flex-grow: 1 !important;
  }

  .flex-sm-shrink-0 {
    -ms-flex-negative: 0 !important;
    -webkit-flex-shrink: 0 !important;
    flex-shrink: 0 !important;
  }

  .flex-sm-shrink-1 {
    -ms-flex-negative: 1 !important;
    -webkit-flex-shrink: 1 !important;
    flex-shrink: 1 !important;
  }

  .justify-content-sm-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    -webkit-justify-content: flex-start !important;
    justify-content: flex-start !important;
  }

  .justify-content-sm-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    -webkit-justify-content: flex-end !important;
    justify-content: flex-end !important;
  }

  .justify-content-sm-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    -webkit-justify-content: center !important;
    justify-content: center !important;
  }

  .justify-content-sm-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    -webkit-justify-content: space-between !important;
    justify-content: space-between !important;
  }

  .justify-content-sm-around {
    -ms-flex-pack: distribute !important;
    -webkit-justify-content: space-around !important;
    justify-content: space-around !important;
  }

  .align-items-sm-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    -webkit-align-items: flex-start !important;
    align-items: flex-start !important;
  }

  .align-items-sm-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    -webkit-align-items: flex-end !important;
    align-items: flex-end !important;
  }

  .align-items-sm-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    -webkit-align-items: center !important;
    align-items: center !important;
  }

  .align-items-sm-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    -webkit-align-items: baseline !important;
    align-items: baseline !important;
  }

  .align-items-sm-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    -webkit-align-items: stretch !important;
    align-items: stretch !important;
  }

  .align-content-sm-start {
    -ms-flex-line-pack: start !important;
    -webkit-align-content: flex-start !important;
    align-content: flex-start !important;
  }

  .align-content-sm-end {
    -ms-flex-line-pack: end !important;
    -webkit-align-content: flex-end !important;
    align-content: flex-end !important;
  }

  .align-content-sm-center {
    -ms-flex-line-pack: center !important;
    -webkit-align-content: center !important;
    align-content: center !important;
  }

  .align-content-sm-between {
    -ms-flex-line-pack: justify !important;
    -webkit-align-content: space-between !important;
    align-content: space-between !important;
  }

  .align-content-sm-around {
    -ms-flex-line-pack: distribute !important;
    -webkit-align-content: space-around !important;
    align-content: space-around !important;
  }

  .align-content-sm-stretch {
    -ms-flex-line-pack: stretch !important;
    -webkit-align-content: stretch !important;
    align-content: stretch !important;
  }

  .align-self-sm-auto {
    -ms-flex-item-align: auto !important;
    -webkit-align-self: auto !important;
    align-self: auto !important;
  }

  .align-self-sm-start {
    -ms-flex-item-align: start !important;
    -webkit-align-self: flex-start !important;
    align-self: flex-start !important;
  }

  .align-self-sm-end {
    -ms-flex-item-align: end !important;
    -webkit-align-self: flex-end !important;
    align-self: flex-end !important;
  }

  .align-self-sm-center {
    -ms-flex-item-align: center !important;
    -webkit-align-self: center !important;
    align-self: center !important;
  }

  .align-self-sm-baseline {
    -ms-flex-item-align: baseline !important;
    -webkit-align-self: baseline !important;
    align-self: baseline !important;
  }

  .align-self-sm-stretch {
    -ms-flex-item-align: stretch !important;
    -webkit-align-self: stretch !important;
    align-self: stretch !important;
  }

  .m-sm-0 {
    margin: 0 !important;
  }

  .mt-sm-0,
  .my-sm-0 {
    margin-top: 0 !important;
  }

  .mr-sm-0,
  .mx-sm-0 {
    margin-right: 0 !important;
  }

  .mb-sm-0,
  .my-sm-0 {
    margin-bottom: 0 !important;
  }

  .ml-sm-0,
  .mx-sm-0 {
    margin-left: 0 !important;
  }

  .m-sm-1 {
    margin: .25rem !important;
  }

  .mt-sm-1,
  .my-sm-1 {
    margin-top: .25rem !important;
  }

  .mr-sm-1,
  .mx-sm-1 {
    margin-right: .25rem !important;
  }

  .mb-sm-1,
  .my-sm-1 {
    margin-bottom: .25rem !important;
  }

  .ml-sm-1,
  .mx-sm-1 {
    margin-left: .25rem !important;
  }

  .m-sm-2 {
    margin: .5rem !important;
  }

  .mt-sm-2,
  .my-sm-2 {
    margin-top: .5rem !important;
  }

  .mr-sm-2,
  .mx-sm-2 {
    margin-right: .5rem !important;
  }

  .mb-sm-2,
  .my-sm-2 {
    margin-bottom: .5rem !important;
  }

  .ml-sm-2,
  .mx-sm-2 {
    margin-left: .5rem !important;
  }

  .m-sm-3 {
    margin: 1rem !important;
  }

  .mt-sm-3,
  .my-sm-3 {
    margin-top: 1rem !important;
  }

  .mr-sm-3,
  .mx-sm-3 {
    margin-right: 1rem !important;
  }

  .mb-sm-3,
  .my-sm-3 {
    margin-bottom: 1rem !important;
  }

  .ml-sm-3,
  .mx-sm-3 {
    margin-left: 1rem !important;
  }

  .m-sm-4 {
    margin: 1.5rem !important;
  }

  .mt-sm-4,
  .my-sm-4 {
    margin-top: 1.5rem !important;
  }

  .mr-sm-4,
  .mx-sm-4 {
    margin-right: 1.5rem !important;
  }

  .mb-sm-4,
  .my-sm-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-sm-4,
  .mx-sm-4 {
    margin-left: 1.5rem !important;
  }

  .m-sm-5 {
    margin: 3rem !important;
  }

  .mt-sm-5,
  .my-sm-5 {
    margin-top: 3rem !important;
  }

  .mr-sm-5,
  .mx-sm-5 {
    margin-right: 3rem !important;
  }

  .mb-sm-5,
  .my-sm-5 {
    margin-bottom: 3rem !important;
  }

  .ml-sm-5,
  .mx-sm-5 {
    margin-left: 3rem !important;
  }

  .p-sm-0 {
    padding: 0 !important;
  }

  .pt-sm-0,
  .py-sm-0 {
    padding-top: 0 !important;
  }

  .pr-sm-0,
  .px-sm-0 {
    padding-right: 0 !important;
  }

  .pb-sm-0,
  .py-sm-0 {
    padding-bottom: 0 !important;
  }

  .pl-sm-0,
  .px-sm-0 {
    padding-left: 0 !important;
  }

  .p-sm-1 {
    padding: .25rem !important;
  }

  .pt-sm-1,
  .py-sm-1 {
    padding-top: .25rem !important;
  }

  .pr-sm-1,
  .px-sm-1 {
    padding-right: .25rem !important;
  }

  .pb-sm-1,
  .py-sm-1 {
    padding-bottom: .25rem !important;
  }

  .pl-sm-1,
  .px-sm-1 {
    padding-left: .25rem !important;
  }

  .p-sm-2 {
    padding: .5rem !important;
  }

  .pt-sm-2,
  .py-sm-2 {
    padding-top: .5rem !important;
  }

  .pr-sm-2,
  .px-sm-2 {
    padding-right: .5rem !important;
  }

  .pb-sm-2,
  .py-sm-2 {
    padding-bottom: .5rem !important;
  }

  .pl-sm-2,
  .px-sm-2 {
    padding-left: .5rem !important;
  }

  .p-sm-3 {
    padding: 1rem !important;
  }

  .pt-sm-3,
  .py-sm-3 {
    padding-top: 1rem !important;
  }

  .pr-sm-3,
  .px-sm-3 {
    padding-right: 1rem !important;
  }

  .pb-sm-3,
  .py-sm-3 {
    padding-bottom: 1rem !important;
  }

  .pl-sm-3,
  .px-sm-3 {
    padding-left: 1rem !important;
  }

  .p-sm-4 {
    padding: 1.5rem !important;
  }

  .pt-sm-4,
  .py-sm-4 {
    padding-top: 1.5rem !important;
  }

  .pr-sm-4,
  .px-sm-4 {
    padding-right: 1.5rem !important;
  }

  .pb-sm-4,
  .py-sm-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-sm-4,
  .px-sm-4 {
    padding-left: 1.5rem !important;
  }

  .p-sm-5 {
    padding: 3rem !important;
  }

  .pt-sm-5,
  .py-sm-5 {
    padding-top: 3rem !important;
  }

  .pr-sm-5,
  .px-sm-5 {
    padding-right: 3rem !important;
  }

  .pb-sm-5,
  .py-sm-5 {
    padding-bottom: 3rem !important;
  }

  .pl-sm-5,
  .px-sm-5 {
    padding-left: 3rem !important;
  }

  .m-sm-auto {
    margin: auto !important;
  }

  .mt-sm-auto,
  .my-sm-auto {
    margin-top: auto !important;
  }

  .mr-sm-auto,
  .mx-sm-auto {
    margin-right: auto !important;
  }

  .mb-sm-auto,
  .my-sm-auto {
    margin-bottom: auto !important;
  }

  .ml-sm-auto,
  .mx-sm-auto {
    margin-left: auto !important;
  }
}

@media screen and (min-width: 641px) {
  /* line 4, ../scss/components/modules/_content.scss */

  html:not([data-lc-type=error]) #lightcase-content {
    position: relative;
    z-index: 1;
    text-shadow: none;
    background-color: #fff;
    -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    -o-box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    -webkit-backface-visibility: hidden;
  }

  /* line 23, ../scss/components/modules/_content.scss */

  html[data-lc-type=image] #lightcase-content,
  html[data-lc-type=video] #lightcase-content {
    background-color: #333;
  }

  /* line 100, ../scss/components/modules/_content.scss */

  html:not([data-lc-type=error]) #lightcase-content .lightcase-contentInner .lightcase-inlineWrap {
    padding: 30px;
    overflow: auto;
    -webkit-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
  }

  /* line 117, ../scss/components/modules/_content.scss */

  #lightcase-content h1,
  #lightcase-content h2,
  #lightcase-content h3,
  #lightcase-content h4,
  #lightcase-content h5,
  #lightcase-content h6,
  #lightcase-content p {
    color: #333;
  }

  /* line 3, ../scss/components/modules/_error.scss */

  #lightcase-case p.lightcase-error {
    padding: 0;
  }

  /* line 38, ../scss/components/modules/_navigation.scss */

  a[class*='lightcase-icon-'].lightcase-icon-pause,
  a[class*='lightcase-icon-'].lightcase-icon-play {
    opacity: 0;
  }

  /* line 2, ../scss/components/modules/_navigation.scss */

  a[class*='lightcase-icon-'] {
    bottom: 50%;
    margin-bottom: -0.5em;
  }

  /* line 57, ../scss/components/modules/_navigation.scss */

  a[class*='lightcase-icon-']:hover,
  #lightcase-case:hover ~ a[class*='lightcase-icon-'] {
    opacity: 1;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }

  .text-md-right {
    text-align: right !important;
  }

  .col-md {
    -ms-flex-preferred-size: 0;
    -webkit-flex-basis: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    -webkit-flex-grow: 1;
    flex-grow: 1;
    max-width: 100%;
  }

  .col-md-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    -webkit-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }

  .col-md-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.3333333333%;
    -webkit-flex: 0 0 8.3333333333%;
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .col-md-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.6666666667%;
    -webkit-flex: 0 0 16.6666666667%;
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-md-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    -webkit-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-md-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.3333333333%;
    -webkit-flex: 0 0 33.3333333333%;
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .col-md-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.6666666667%;
    -webkit-flex: 0 0 41.6666666667%;
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }

  .col-md-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    -webkit-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-md-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.3333333333%;
    -webkit-flex: 0 0 58.3333333333%;
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .col-md-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.6666666667%;
    -webkit-flex: 0 0 66.6666666667%;
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }

  .col-md-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    -webkit-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-md-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.3333333333%;
    -webkit-flex: 0 0 83.3333333333%;
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .col-md-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.6666666667%;
    -webkit-flex: 0 0 91.6666666667%;
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }

  .col-md-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    -webkit-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-md-first {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    -webkit-order: -1;
    order: -1;
  }

  .order-md-last {
    -webkit-box-ordinal-group: 14;
    -ms-flex-order: 13;
    -webkit-order: 13;
    order: 13;
  }

  .order-md-0 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    -webkit-order: 0;
    order: 0;
  }

  .order-md-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    -webkit-order: 1;
    order: 1;
  }

  .order-md-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
  }

  .order-md-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    -webkit-order: 3;
    order: 3;
  }

  .order-md-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    -webkit-order: 4;
    order: 4;
  }

  .order-md-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    -webkit-order: 5;
    order: 5;
  }

  .order-md-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    -webkit-order: 6;
    order: 6;
  }

  .order-md-7 {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 7;
    -webkit-order: 7;
    order: 7;
  }

  .order-md-8 {
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 8;
    -webkit-order: 8;
    order: 8;
  }

  .order-md-9 {
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 9;
    -webkit-order: 9;
    order: 9;
  }

  .order-md-10 {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    -webkit-order: 10;
    order: 10;
  }

  .order-md-11 {
    -webkit-box-ordinal-group: 12;
    -ms-flex-order: 11;
    -webkit-order: 11;
    order: 11;
  }

  .order-md-12 {
    -webkit-box-ordinal-group: 13;
    -ms-flex-order: 12;
    -webkit-order: 12;
    order: 12;
  }

  .offset-md-0 {
    margin-left: 0;
  }

  .offset-md-1 {
    margin-left: 8.3333333333%;
  }

  .offset-md-2 {
    margin-left: 16.6666666667%;
  }

  .offset-md-3 {
    margin-left: 25%;
  }

  .offset-md-4 {
    margin-left: 33.3333333333%;
  }

  .offset-md-5 {
    margin-left: 41.6666666667%;
  }

  .offset-md-6 {
    margin-left: 50%;
  }

  .offset-md-7 {
    margin-left: 58.3333333333%;
  }

  .offset-md-8 {
    margin-left: 66.6666666667%;
  }

  .offset-md-9 {
    margin-left: 75%;
  }

  .offset-md-10 {
    margin-left: 83.3333333333%;
  }

  .offset-md-11 {
    margin-left: 91.6666666667%;
  }

  .d-md-none {
    display: none !important;
  }

  .d-md-inline {
    display: inline !important;
  }

  .d-md-inline-block {
    display: inline-block !important;
  }

  .d-md-block {
    display: block !important;
  }

  .d-md-table {
    display: table !important;
  }

  .d-md-table-row {
    display: table-row !important;
  }

  .d-md-table-cell {
    display: table-cell !important;
  }

  .d-md-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: -webkit-flex !important;
    display: flex !important;
  }

  .d-md-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: -webkit-inline-flex !important;
    display: inline-flex !important;
  }

  .flex-md-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    -webkit-flex-direction: row !important;
    flex-direction: row !important;
  }

  .flex-md-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    -webkit-flex-direction: column !important;
    flex-direction: column !important;
  }

  .flex-md-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    -webkit-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }

  .flex-md-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    -webkit-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }

  .flex-md-wrap {
    -ms-flex-wrap: wrap !important;
    -webkit-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }

  .flex-md-nowrap {
    -ms-flex-wrap: nowrap !important;
    -webkit-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }

  .flex-md-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    -webkit-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }

  .flex-md-fill {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 1 auto !important;
    -webkit-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }

  .flex-md-grow-0 {
    -webkit-box-flex: 0 !important;
    -ms-flex-positive: 0 !important;
    -webkit-flex-grow: 0 !important;
    flex-grow: 0 !important;
  }

  .flex-md-grow-1 {
    -webkit-box-flex: 1 !important;
    -ms-flex-positive: 1 !important;
    -webkit-flex-grow: 1 !important;
    flex-grow: 1 !important;
  }

  .flex-md-shrink-0 {
    -ms-flex-negative: 0 !important;
    -webkit-flex-shrink: 0 !important;
    flex-shrink: 0 !important;
  }

  .flex-md-shrink-1 {
    -ms-flex-negative: 1 !important;
    -webkit-flex-shrink: 1 !important;
    flex-shrink: 1 !important;
  }

  .justify-content-md-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    -webkit-justify-content: flex-start !important;
    justify-content: flex-start !important;
  }

  .justify-content-md-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    -webkit-justify-content: flex-end !important;
    justify-content: flex-end !important;
  }

  .justify-content-md-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    -webkit-justify-content: center !important;
    justify-content: center !important;
  }

  .justify-content-md-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    -webkit-justify-content: space-between !important;
    justify-content: space-between !important;
  }

  .justify-content-md-around {
    -ms-flex-pack: distribute !important;
    -webkit-justify-content: space-around !important;
    justify-content: space-around !important;
  }

  .align-items-md-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    -webkit-align-items: flex-start !important;
    align-items: flex-start !important;
  }

  .align-items-md-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    -webkit-align-items: flex-end !important;
    align-items: flex-end !important;
  }

  .align-items-md-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    -webkit-align-items: center !important;
    align-items: center !important;
  }

  .align-items-md-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    -webkit-align-items: baseline !important;
    align-items: baseline !important;
  }

  .align-items-md-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    -webkit-align-items: stretch !important;
    align-items: stretch !important;
  }

  .align-content-md-start {
    -ms-flex-line-pack: start !important;
    -webkit-align-content: flex-start !important;
    align-content: flex-start !important;
  }

  .align-content-md-end {
    -ms-flex-line-pack: end !important;
    -webkit-align-content: flex-end !important;
    align-content: flex-end !important;
  }

  .align-content-md-center {
    -ms-flex-line-pack: center !important;
    -webkit-align-content: center !important;
    align-content: center !important;
  }

  .align-content-md-between {
    -ms-flex-line-pack: justify !important;
    -webkit-align-content: space-between !important;
    align-content: space-between !important;
  }

  .align-content-md-around {
    -ms-flex-line-pack: distribute !important;
    -webkit-align-content: space-around !important;
    align-content: space-around !important;
  }

  .align-content-md-stretch {
    -ms-flex-line-pack: stretch !important;
    -webkit-align-content: stretch !important;
    align-content: stretch !important;
  }

  .align-self-md-auto {
    -ms-flex-item-align: auto !important;
    -webkit-align-self: auto !important;
    align-self: auto !important;
  }

  .align-self-md-start {
    -ms-flex-item-align: start !important;
    -webkit-align-self: flex-start !important;
    align-self: flex-start !important;
  }

  .align-self-md-end {
    -ms-flex-item-align: end !important;
    -webkit-align-self: flex-end !important;
    align-self: flex-end !important;
  }

  .align-self-md-center {
    -ms-flex-item-align: center !important;
    -webkit-align-self: center !important;
    align-self: center !important;
  }

  .align-self-md-baseline {
    -ms-flex-item-align: baseline !important;
    -webkit-align-self: baseline !important;
    align-self: baseline !important;
  }

  .align-self-md-stretch {
    -ms-flex-item-align: stretch !important;
    -webkit-align-self: stretch !important;
    align-self: stretch !important;
  }

  .m-md-0 {
    margin: 0 !important;
  }

  .mt-md-0,
  .my-md-0 {
    margin-top: 0 !important;
  }

  .mr-md-0,
  .mx-md-0 {
    margin-right: 0 !important;
  }

  .mb-md-0,
  .my-md-0 {
    margin-bottom: 0 !important;
  }

  .ml-md-0,
  .mx-md-0 {
    margin-left: 0 !important;
  }

  .m-md-1 {
    margin: .25rem !important;
  }

  .mt-md-1,
  .my-md-1 {
    margin-top: .25rem !important;
  }

  .mr-md-1,
  .mx-md-1 {
    margin-right: .25rem !important;
  }

  .mb-md-1,
  .my-md-1 {
    margin-bottom: .25rem !important;
  }

  .ml-md-1,
  .mx-md-1 {
    margin-left: .25rem !important;
  }

  .m-md-2 {
    margin: .5rem !important;
  }

  .mt-md-2,
  .my-md-2 {
    margin-top: .5rem !important;
  }

  .mr-md-2,
  .mx-md-2 {
    margin-right: .5rem !important;
  }

  .mb-md-2,
  .my-md-2 {
    margin-bottom: .5rem !important;
  }

  .ml-md-2,
  .mx-md-2 {
    margin-left: .5rem !important;
  }

  .m-md-3 {
    margin: 1rem !important;
  }

  .mt-md-3,
  .my-md-3 {
    margin-top: 1rem !important;
  }

  .mr-md-3,
  .mx-md-3 {
    margin-right: 1rem !important;
  }

  .mb-md-3,
  .my-md-3 {
    margin-bottom: 1rem !important;
  }

  .ml-md-3,
  .mx-md-3 {
    margin-left: 1rem !important;
  }

  .m-md-4 {
    margin: 1.5rem !important;
  }

  .mt-md-4,
  .my-md-4 {
    margin-top: 1.5rem !important;
  }

  .mr-md-4,
  .mx-md-4 {
    margin-right: 1.5rem !important;
  }

  .mb-md-4,
  .my-md-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-md-4,
  .mx-md-4 {
    margin-left: 1.5rem !important;
  }

  .m-md-5 {
    margin: 3rem !important;
  }

  .mt-md-5,
  .my-md-5 {
    margin-top: 3rem !important;
  }

  .mr-md-5,
  .mx-md-5 {
    margin-right: 3rem !important;
  }

  .mb-md-5,
  .my-md-5 {
    margin-bottom: 3rem !important;
  }

  .ml-md-5,
  .mx-md-5 {
    margin-left: 3rem !important;
  }

  .p-md-0 {
    padding: 0 !important;
  }

  .pt-md-0,
  .py-md-0 {
    padding-top: 0 !important;
  }

  .pr-md-0,
  .px-md-0 {
    padding-right: 0 !important;
  }

  .pb-md-0,
  .py-md-0 {
    padding-bottom: 0 !important;
  }

  .pl-md-0,
  .px-md-0 {
    padding-left: 0 !important;
  }

  .p-md-1 {
    padding: .25rem !important;
  }

  .pt-md-1,
  .py-md-1 {
    padding-top: .25rem !important;
  }

  .pr-md-1,
  .px-md-1 {
    padding-right: .25rem !important;
  }

  .pb-md-1,
  .py-md-1 {
    padding-bottom: .25rem !important;
  }

  .pl-md-1,
  .px-md-1 {
    padding-left: .25rem !important;
  }

  .p-md-2 {
    padding: .5rem !important;
  }

  .pt-md-2,
  .py-md-2 {
    padding-top: .5rem !important;
  }

  .pr-md-2,
  .px-md-2 {
    padding-right: .5rem !important;
  }

  .pb-md-2,
  .py-md-2 {
    padding-bottom: .5rem !important;
  }

  .pl-md-2,
  .px-md-2 {
    padding-left: .5rem !important;
  }

  .p-md-3 {
    padding: 1rem !important;
  }

  .pt-md-3,
  .py-md-3 {
    padding-top: 1rem !important;
  }

  .pr-md-3,
  .px-md-3 {
    padding-right: 1rem !important;
  }

  .pb-md-3,
  .py-md-3 {
    padding-bottom: 1rem !important;
  }

  .pl-md-3,
  .px-md-3 {
    padding-left: 1rem !important;
  }

  .p-md-4 {
    padding: 1.5rem !important;
  }

  .pt-md-4,
  .py-md-4 {
    padding-top: 1.5rem !important;
  }

  .pr-md-4,
  .px-md-4 {
    padding-right: 1.5rem !important;
  }

  .pb-md-4,
  .py-md-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-md-4,
  .px-md-4 {
    padding-left: 1.5rem !important;
  }

  .p-md-5 {
    padding: 3rem !important;
  }

  .pt-md-5,
  .py-md-5 {
    padding-top: 3rem !important;
  }

  .pr-md-5,
  .px-md-5 {
    padding-right: 3rem !important;
  }

  .pb-md-5,
  .py-md-5 {
    padding-bottom: 3rem !important;
  }

  .pl-md-5,
  .px-md-5 {
    padding-left: 3rem !important;
  }

  .m-md-auto {
    margin: auto !important;
  }

  .mt-md-auto,
  .my-md-auto {
    margin-top: auto !important;
  }

  .mr-md-auto,
  .mx-md-auto {
    margin-right: auto !important;
  }

  .mb-md-auto,
  .my-md-auto {
    margin-bottom: auto !important;
  }

  .ml-md-auto,
  .mx-md-auto {
    margin-left: auto !important;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }

  .col-lg {
    -ms-flex-preferred-size: 0;
    -webkit-flex-basis: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    -webkit-flex-grow: 1;
    flex-grow: 1;
    max-width: 100%;
  }

  .col-lg-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    -webkit-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }

  .col-lg-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.3333333333%;
    -webkit-flex: 0 0 8.3333333333%;
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .col-lg-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.6666666667%;
    -webkit-flex: 0 0 16.6666666667%;
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-lg-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    -webkit-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-lg-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.3333333333%;
    -webkit-flex: 0 0 33.3333333333%;
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .col-lg-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.6666666667%;
    -webkit-flex: 0 0 41.6666666667%;
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }

  .col-lg-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    -webkit-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-lg-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.3333333333%;
    -webkit-flex: 0 0 58.3333333333%;
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .col-lg-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.6666666667%;
    -webkit-flex: 0 0 66.6666666667%;
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }

  .col-lg-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    -webkit-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-lg-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.3333333333%;
    -webkit-flex: 0 0 83.3333333333%;
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .col-lg-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.6666666667%;
    -webkit-flex: 0 0 91.6666666667%;
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }

  .col-lg-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    -webkit-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-lg-first {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    -webkit-order: -1;
    order: -1;
  }

  .order-lg-last {
    -webkit-box-ordinal-group: 14;
    -ms-flex-order: 13;
    -webkit-order: 13;
    order: 13;
  }

  .order-lg-0 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    -webkit-order: 0;
    order: 0;
  }

  .order-lg-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    -webkit-order: 1;
    order: 1;
  }

  .order-lg-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
  }

  .order-lg-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    -webkit-order: 3;
    order: 3;
  }

  .order-lg-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    -webkit-order: 4;
    order: 4;
  }

  .order-lg-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    -webkit-order: 5;
    order: 5;
  }

  .order-lg-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    -webkit-order: 6;
    order: 6;
  }

  .order-lg-7 {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 7;
    -webkit-order: 7;
    order: 7;
  }

  .order-lg-8 {
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 8;
    -webkit-order: 8;
    order: 8;
  }

  .order-lg-9 {
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 9;
    -webkit-order: 9;
    order: 9;
  }

  .order-lg-10 {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    -webkit-order: 10;
    order: 10;
  }

  .order-lg-11 {
    -webkit-box-ordinal-group: 12;
    -ms-flex-order: 11;
    -webkit-order: 11;
    order: 11;
  }

  .order-lg-12 {
    -webkit-box-ordinal-group: 13;
    -ms-flex-order: 12;
    -webkit-order: 12;
    order: 12;
  }

  .offset-lg-0 {
    margin-left: 0;
  }

  .offset-lg-1 {
    margin-left: 8.3333333333%;
  }

  .offset-lg-2 {
    margin-left: 16.6666666667%;
  }

  .offset-lg-3 {
    margin-left: 25%;
  }

  .offset-lg-4 {
    margin-left: 33.3333333333%;
  }

  .offset-lg-5 {
    margin-left: 41.6666666667%;
  }

  .offset-lg-6 {
    margin-left: 50%;
  }

  .offset-lg-7 {
    margin-left: 58.3333333333%;
  }

  .offset-lg-8 {
    margin-left: 66.6666666667%;
  }

  .offset-lg-9 {
    margin-left: 75%;
  }

  .offset-lg-10 {
    margin-left: 83.3333333333%;
  }

  .offset-lg-11 {
    margin-left: 91.6666666667%;
  }

  .d-lg-none {
    display: none !important;
  }

  .d-lg-inline {
    display: inline !important;
  }

  .d-lg-inline-block {
    display: inline-block !important;
  }

  .d-lg-block {
    display: block !important;
  }

  .d-lg-table {
    display: table !important;
  }

  .d-lg-table-row {
    display: table-row !important;
  }

  .d-lg-table-cell {
    display: table-cell !important;
  }

  .d-lg-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: -webkit-flex !important;
    display: flex !important;
  }

  .d-lg-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: -webkit-inline-flex !important;
    display: inline-flex !important;
  }

  .flex-lg-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    -webkit-flex-direction: row !important;
    flex-direction: row !important;
  }

  .flex-lg-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    -webkit-flex-direction: column !important;
    flex-direction: column !important;
  }

  .flex-lg-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    -webkit-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }

  .flex-lg-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    -webkit-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }

  .flex-lg-wrap {
    -ms-flex-wrap: wrap !important;
    -webkit-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }

  .flex-lg-nowrap {
    -ms-flex-wrap: nowrap !important;
    -webkit-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }

  .flex-lg-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    -webkit-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }

  .flex-lg-fill {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 1 auto !important;
    -webkit-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }

  .flex-lg-grow-0 {
    -webkit-box-flex: 0 !important;
    -ms-flex-positive: 0 !important;
    -webkit-flex-grow: 0 !important;
    flex-grow: 0 !important;
  }

  .flex-lg-grow-1 {
    -webkit-box-flex: 1 !important;
    -ms-flex-positive: 1 !important;
    -webkit-flex-grow: 1 !important;
    flex-grow: 1 !important;
  }

  .flex-lg-shrink-0 {
    -ms-flex-negative: 0 !important;
    -webkit-flex-shrink: 0 !important;
    flex-shrink: 0 !important;
  }

  .flex-lg-shrink-1 {
    -ms-flex-negative: 1 !important;
    -webkit-flex-shrink: 1 !important;
    flex-shrink: 1 !important;
  }

  .justify-content-lg-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    -webkit-justify-content: flex-start !important;
    justify-content: flex-start !important;
  }

  .justify-content-lg-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    -webkit-justify-content: flex-end !important;
    justify-content: flex-end !important;
  }

  .justify-content-lg-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    -webkit-justify-content: center !important;
    justify-content: center !important;
  }

  .justify-content-lg-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    -webkit-justify-content: space-between !important;
    justify-content: space-between !important;
  }

  .justify-content-lg-around {
    -ms-flex-pack: distribute !important;
    -webkit-justify-content: space-around !important;
    justify-content: space-around !important;
  }

  .align-items-lg-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    -webkit-align-items: flex-start !important;
    align-items: flex-start !important;
  }

  .align-items-lg-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    -webkit-align-items: flex-end !important;
    align-items: flex-end !important;
  }

  .align-items-lg-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    -webkit-align-items: center !important;
    align-items: center !important;
  }

  .align-items-lg-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    -webkit-align-items: baseline !important;
    align-items: baseline !important;
  }

  .align-items-lg-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    -webkit-align-items: stretch !important;
    align-items: stretch !important;
  }

  .align-content-lg-start {
    -ms-flex-line-pack: start !important;
    -webkit-align-content: flex-start !important;
    align-content: flex-start !important;
  }

  .align-content-lg-end {
    -ms-flex-line-pack: end !important;
    -webkit-align-content: flex-end !important;
    align-content: flex-end !important;
  }

  .align-content-lg-center {
    -ms-flex-line-pack: center !important;
    -webkit-align-content: center !important;
    align-content: center !important;
  }

  .align-content-lg-between {
    -ms-flex-line-pack: justify !important;
    -webkit-align-content: space-between !important;
    align-content: space-between !important;
  }

  .align-content-lg-around {
    -ms-flex-line-pack: distribute !important;
    -webkit-align-content: space-around !important;
    align-content: space-around !important;
  }

  .align-content-lg-stretch {
    -ms-flex-line-pack: stretch !important;
    -webkit-align-content: stretch !important;
    align-content: stretch !important;
  }

  .align-self-lg-auto {
    -ms-flex-item-align: auto !important;
    -webkit-align-self: auto !important;
    align-self: auto !important;
  }

  .align-self-lg-start {
    -ms-flex-item-align: start !important;
    -webkit-align-self: flex-start !important;
    align-self: flex-start !important;
  }

  .align-self-lg-end {
    -ms-flex-item-align: end !important;
    -webkit-align-self: flex-end !important;
    align-self: flex-end !important;
  }

  .align-self-lg-center {
    -ms-flex-item-align: center !important;
    -webkit-align-self: center !important;
    align-self: center !important;
  }

  .align-self-lg-baseline {
    -ms-flex-item-align: baseline !important;
    -webkit-align-self: baseline !important;
    align-self: baseline !important;
  }

  .align-self-lg-stretch {
    -ms-flex-item-align: stretch !important;
    -webkit-align-self: stretch !important;
    align-self: stretch !important;
  }

  .m-lg-0 {
    margin: 0 !important;
  }

  .mt-lg-0,
  .my-lg-0 {
    margin-top: 0 !important;
  }

  .mr-lg-0,
  .mx-lg-0 {
    margin-right: 0 !important;
  }

  .mb-lg-0,
  .my-lg-0 {
    margin-bottom: 0 !important;
  }

  .ml-lg-0,
  .mx-lg-0 {
    margin-left: 0 !important;
  }

  .m-lg-1 {
    margin: .25rem !important;
  }

  .mt-lg-1,
  .my-lg-1 {
    margin-top: .25rem !important;
  }

  .mr-lg-1,
  .mx-lg-1 {
    margin-right: .25rem !important;
  }

  .mb-lg-1,
  .my-lg-1 {
    margin-bottom: .25rem !important;
  }

  .ml-lg-1,
  .mx-lg-1 {
    margin-left: .25rem !important;
  }

  .m-lg-2 {
    margin: .5rem !important;
  }

  .mt-lg-2,
  .my-lg-2 {
    margin-top: .5rem !important;
  }

  .mr-lg-2,
  .mx-lg-2 {
    margin-right: .5rem !important;
  }

  .mb-lg-2,
  .my-lg-2 {
    margin-bottom: .5rem !important;
  }

  .ml-lg-2,
  .mx-lg-2 {
    margin-left: .5rem !important;
  }

  .m-lg-3 {
    margin: 1rem !important;
  }

  .mt-lg-3,
  .my-lg-3 {
    margin-top: 1rem !important;
  }

  .mr-lg-3,
  .mx-lg-3 {
    margin-right: 1rem !important;
  }

  .mb-lg-3,
  .my-lg-3 {
    margin-bottom: 1rem !important;
  }

  .ml-lg-3,
  .mx-lg-3 {
    margin-left: 1rem !important;
  }

  .m-lg-4 {
    margin: 1.5rem !important;
  }

  .mt-lg-4,
  .my-lg-4 {
    margin-top: 1.5rem !important;
  }

  .mr-lg-4,
  .mx-lg-4 {
    margin-right: 1.5rem !important;
  }

  .mb-lg-4,
  .my-lg-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-lg-4,
  .mx-lg-4 {
    margin-left: 1.5rem !important;
  }

  .m-lg-5 {
    margin: 3rem !important;
  }

  .mt-lg-5,
  .my-lg-5 {
    margin-top: 3rem !important;
  }

  .mr-lg-5,
  .mx-lg-5 {
    margin-right: 3rem !important;
  }

  .mb-lg-5,
  .my-lg-5 {
    margin-bottom: 3rem !important;
  }

  .ml-lg-5,
  .mx-lg-5 {
    margin-left: 3rem !important;
  }

  .p-lg-0 {
    padding: 0 !important;
  }

  .pt-lg-0,
  .py-lg-0 {
    padding-top: 0 !important;
  }

  .pr-lg-0,
  .px-lg-0 {
    padding-right: 0 !important;
  }

  .pb-lg-0,
  .py-lg-0 {
    padding-bottom: 0 !important;
  }

  .pl-lg-0,
  .px-lg-0 {
    padding-left: 0 !important;
  }

  .p-lg-1 {
    padding: .25rem !important;
  }

  .pt-lg-1,
  .py-lg-1 {
    padding-top: .25rem !important;
  }

  .pr-lg-1,
  .px-lg-1 {
    padding-right: .25rem !important;
  }

  .pb-lg-1,
  .py-lg-1 {
    padding-bottom: .25rem !important;
  }

  .pl-lg-1,
  .px-lg-1 {
    padding-left: .25rem !important;
  }

  .p-lg-2 {
    padding: .5rem !important;
  }

  .pt-lg-2,
  .py-lg-2 {
    padding-top: .5rem !important;
  }

  .pr-lg-2,
  .px-lg-2 {
    padding-right: .5rem !important;
  }

  .pb-lg-2,
  .py-lg-2 {
    padding-bottom: .5rem !important;
  }

  .pl-lg-2,
  .px-lg-2 {
    padding-left: .5rem !important;
  }

  .p-lg-3 {
    padding: 1rem !important;
  }

  .pt-lg-3,
  .py-lg-3 {
    padding-top: 1rem !important;
  }

  .pr-lg-3,
  .px-lg-3 {
    padding-right: 1rem !important;
  }

  .pb-lg-3,
  .py-lg-3 {
    padding-bottom: 1rem !important;
  }

  .pl-lg-3,
  .px-lg-3 {
    padding-left: 1rem !important;
  }

  .p-lg-4 {
    padding: 1.5rem !important;
  }

  .pt-lg-4,
  .py-lg-4 {
    padding-top: 1.5rem !important;
  }

  .pr-lg-4,
  .px-lg-4 {
    padding-right: 1.5rem !important;
  }

  .pb-lg-4,
  .py-lg-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-lg-4,
  .px-lg-4 {
    padding-left: 1.5rem !important;
  }

  .p-lg-5 {
    padding: 3rem !important;
  }

  .pt-lg-5,
  .py-lg-5 {
    padding-top: 3rem !important;
  }

  .pr-lg-5,
  .px-lg-5 {
    padding-right: 3rem !important;
  }

  .pb-lg-5,
  .py-lg-5 {
    padding-bottom: 3rem !important;
  }

  .pl-lg-5,
  .px-lg-5 {
    padding-left: 3rem !important;
  }

  .m-lg-auto {
    margin: auto !important;
  }

  .mt-lg-auto,
  .my-lg-auto {
    margin-top: auto !important;
  }

  .mr-lg-auto,
  .mx-lg-auto {
    margin-right: auto !important;
  }

  .mb-lg-auto,
  .my-lg-auto {
    margin-bottom: auto !important;
  }

  .ml-lg-auto,
  .mx-lg-auto {
    margin-left: auto !important;
  }

  .filter {
    margin: 20px 0 88px;
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
    opacity: 1 !important;
  }

  ._h50 .jarallax > div > div {
    height: -webkit-calc(var(--vh, 1vh) * 50 + 65px) !important;
    height: calc(var(--vh, 1vh) * 50 + 65px) !important;
  }

  .collection-item.row {  	margin-bottom:150px;  }
}

@media (min-width: 992px) and (max-height: 670px) {
  .acceptance-block .front-block__desc {
    font-size: 20px;
  }

  ._h50 .jarallax > div > div {
    height: -webkit-calc(var(--vh, 1vh) * 70 + 65px) !important;
    height: calc(var(--vh, 1vh) * 70 + 65px) !important;
    min-height: 600px  initial !important;
  }

  .acceptance-block ._button {
    margin-top: 15px;
  }
}

@media (min-width: 993px) {
  .about-gallery {
    margin: 0 -35px;
  }

  .about-banner__title {
    color: #ffffff;
    padding: 48px 58px;
  }

  .about-banner__title {
    position: absolute;
    bottom: 0px;
    padding: 30px;
    z-index: 30;
  }

  .about-banner {
    position: relative;
    margin: 0 -30px;
  }

  .about-banner::after {
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.04)), to(#202020));
    background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.04) 0%, #202020 100%);
    background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.04) 0%, #202020 100%);
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0%, #202020 100%);
    opacity: 0.67;
    content: '';
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    top: 0;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }

  .col-xl {
    -ms-flex-preferred-size: 0;
    -webkit-flex-basis: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    -webkit-flex-grow: 1;
    flex-grow: 1;
    max-width: 100%;
  }

  .col-xl-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    -webkit-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }

  .col-xl-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.3333333333%;
    -webkit-flex: 0 0 8.3333333333%;
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .col-xl-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.6666666667%;
    -webkit-flex: 0 0 16.6666666667%;
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-xl-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    -webkit-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-xl-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.3333333333%;
    -webkit-flex: 0 0 33.3333333333%;
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .col-xl-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.6666666667%;
    -webkit-flex: 0 0 41.6666666667%;
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }

  .col-xl-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    -webkit-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-xl-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.3333333333%;
    -webkit-flex: 0 0 58.3333333333%;
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .col-xl-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.6666666667%;
    -webkit-flex: 0 0 66.6666666667%;
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }

  .col-xl-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    -webkit-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-xl-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.3333333333%;
    -webkit-flex: 0 0 83.3333333333%;
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .col-xl-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.6666666667%;
    -webkit-flex: 0 0 91.6666666667%;
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }

  .col-xl-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    -webkit-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-xl-first {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    -webkit-order: -1;
    order: -1;
  }

  .order-xl-last {
    -webkit-box-ordinal-group: 14;
    -ms-flex-order: 13;
    -webkit-order: 13;
    order: 13;
  }

  .order-xl-0 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    -webkit-order: 0;
    order: 0;
  }

  .order-xl-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    -webkit-order: 1;
    order: 1;
  }

  .order-xl-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
  }

  .order-xl-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    -webkit-order: 3;
    order: 3;
  }

  .order-xl-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    -webkit-order: 4;
    order: 4;
  }

  .order-xl-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    -webkit-order: 5;
    order: 5;
  }

  .order-xl-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    -webkit-order: 6;
    order: 6;
  }

  .order-xl-7 {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 7;
    -webkit-order: 7;
    order: 7;
  }

  .order-xl-8 {
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 8;
    -webkit-order: 8;
    order: 8;
  }

  .order-xl-9 {
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 9;
    -webkit-order: 9;
    order: 9;
  }

  .order-xl-10 {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    -webkit-order: 10;
    order: 10;
  }

  .order-xl-11 {
    -webkit-box-ordinal-group: 12;
    -ms-flex-order: 11;
    -webkit-order: 11;
    order: 11;
  }

  .order-xl-12 {
    -webkit-box-ordinal-group: 13;
    -ms-flex-order: 12;
    -webkit-order: 12;
    order: 12;
  }

  .offset-xl-0 {
    margin-left: 0;
  }

  .offset-xl-1 {
    margin-left: 8.3333333333%;
  }

  .offset-xl-2 {
    margin-left: 16.6666666667%;
  }

  .offset-xl-3 {
    margin-left: 25%;
  }

  .offset-xl-4 {
    margin-left: 33.3333333333%;
  }

  .offset-xl-5 {
    margin-left: 41.6666666667%;
  }

  .offset-xl-6 {
    margin-left: 50%;
  }

  .offset-xl-7 {
    margin-left: 58.3333333333%;
  }

  .offset-xl-8 {
    margin-left: 66.6666666667%;
  }

  .offset-xl-9 {
    margin-left: 75%;
  }

  .offset-xl-10 {
    margin-left: 83.3333333333%;
  }

  .offset-xl-11 {
    margin-left: 91.6666666667%;
  }

  .d-xl-none {
    display: none !important;
  }

  .d-xl-inline {
    display: inline !important;
  }

  .d-xl-inline-block {
    display: inline-block !important;
  }

  .d-xl-block {
    display: block !important;
  }

  .d-xl-table {
    display: table !important;
  }

  .d-xl-table-row {
    display: table-row !important;
  }

  .d-xl-table-cell {
    display: table-cell !important;
  }

  .d-xl-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: -webkit-flex !important;
    display: flex !important;
  }

  .d-xl-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: -webkit-inline-flex !important;
    display: inline-flex !important;
  }

  .flex-xl-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    -webkit-flex-direction: row !important;
    flex-direction: row !important;
  }

  .flex-xl-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    -webkit-flex-direction: column !important;
    flex-direction: column !important;
  }

  .flex-xl-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    -webkit-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }

  .flex-xl-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    -webkit-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }

  .flex-xl-wrap {
    -ms-flex-wrap: wrap !important;
    -webkit-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }

  .flex-xl-nowrap {
    -ms-flex-wrap: nowrap !important;
    -webkit-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }

  .flex-xl-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    -webkit-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }

  .flex-xl-fill {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 1 auto !important;
    -webkit-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }

  .flex-xl-grow-0 {
    -webkit-box-flex: 0 !important;
    -ms-flex-positive: 0 !important;
    -webkit-flex-grow: 0 !important;
    flex-grow: 0 !important;
  }

  .flex-xl-grow-1 {
    -webkit-box-flex: 1 !important;
    -ms-flex-positive: 1 !important;
    -webkit-flex-grow: 1 !important;
    flex-grow: 1 !important;
  }

  .flex-xl-shrink-0 {
    -ms-flex-negative: 0 !important;
    -webkit-flex-shrink: 0 !important;
    flex-shrink: 0 !important;
  }

  .flex-xl-shrink-1 {
    -ms-flex-negative: 1 !important;
    -webkit-flex-shrink: 1 !important;
    flex-shrink: 1 !important;
  }

  .justify-content-xl-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    -webkit-justify-content: flex-start !important;
    justify-content: flex-start !important;
  }

  .justify-content-xl-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    -webkit-justify-content: flex-end !important;
    justify-content: flex-end !important;
  }

  .justify-content-xl-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    -webkit-justify-content: center !important;
    justify-content: center !important;
  }

  .justify-content-xl-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    -webkit-justify-content: space-between !important;
    justify-content: space-between !important;
  }

  .justify-content-xl-around {
    -ms-flex-pack: distribute !important;
    -webkit-justify-content: space-around !important;
    justify-content: space-around !important;
  }

  .align-items-xl-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    -webkit-align-items: flex-start !important;
    align-items: flex-start !important;
  }

  .align-items-xl-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    -webkit-align-items: flex-end !important;
    align-items: flex-end !important;
  }

  .align-items-xl-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    -webkit-align-items: center !important;
    align-items: center !important;
  }

  .align-items-xl-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    -webkit-align-items: baseline !important;
    align-items: baseline !important;
  }

  .align-items-xl-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    -webkit-align-items: stretch !important;
    align-items: stretch !important;
  }

  .align-content-xl-start {
    -ms-flex-line-pack: start !important;
    -webkit-align-content: flex-start !important;
    align-content: flex-start !important;
  }

  .align-content-xl-end {
    -ms-flex-line-pack: end !important;
    -webkit-align-content: flex-end !important;
    align-content: flex-end !important;
  }

  .align-content-xl-center {
    -ms-flex-line-pack: center !important;
    -webkit-align-content: center !important;
    align-content: center !important;
  }

  .align-content-xl-between {
    -ms-flex-line-pack: justify !important;
    -webkit-align-content: space-between !important;
    align-content: space-between !important;
  }

  .align-content-xl-around {
    -ms-flex-line-pack: distribute !important;
    -webkit-align-content: space-around !important;
    align-content: space-around !important;
  }

  .align-content-xl-stretch {
    -ms-flex-line-pack: stretch !important;
    -webkit-align-content: stretch !important;
    align-content: stretch !important;
  }

  .align-self-xl-auto {
    -ms-flex-item-align: auto !important;
    -webkit-align-self: auto !important;
    align-self: auto !important;
  }

  .align-self-xl-start {
    -ms-flex-item-align: start !important;
    -webkit-align-self: flex-start !important;
    align-self: flex-start !important;
  }

  .align-self-xl-end {
    -ms-flex-item-align: end !important;
    -webkit-align-self: flex-end !important;
    align-self: flex-end !important;
  }

  .align-self-xl-center {
    -ms-flex-item-align: center !important;
    -webkit-align-self: center !important;
    align-self: center !important;
  }

  .align-self-xl-baseline {
    -ms-flex-item-align: baseline !important;
    -webkit-align-self: baseline !important;
    align-self: baseline !important;
  }

  .align-self-xl-stretch {
    -ms-flex-item-align: stretch !important;
    -webkit-align-self: stretch !important;
    align-self: stretch !important;
  }

  .m-xl-0 {
    margin: 0 !important;
  }

  .mt-xl-0,
  .my-xl-0 {
    margin-top: 0 !important;
  }

  .mr-xl-0,
  .mx-xl-0 {
    margin-right: 0 !important;
  }

  .mb-xl-0,
  .my-xl-0 {
    margin-bottom: 0 !important;
  }

  .ml-xl-0,
  .mx-xl-0 {
    margin-left: 0 !important;
  }

  .m-xl-1 {
    margin: .25rem !important;
  }

  .mt-xl-1,
  .my-xl-1 {
    margin-top: .25rem !important;
  }

  .mr-xl-1,
  .mx-xl-1 {
    margin-right: .25rem !important;
  }

  .mb-xl-1,
  .my-xl-1 {
    margin-bottom: .25rem !important;
  }

  .ml-xl-1,
  .mx-xl-1 {
    margin-left: .25rem !important;
  }

  .m-xl-2 {
    margin: .5rem !important;
  }

  .mt-xl-2,
  .my-xl-2 {
    margin-top: .5rem !important;
  }

  .mr-xl-2,
  .mx-xl-2 {
    margin-right: .5rem !important;
  }

  .mb-xl-2,
  .my-xl-2 {
    margin-bottom: .5rem !important;
  }

  .ml-xl-2,
  .mx-xl-2 {
    margin-left: .5rem !important;
  }

  .m-xl-3 {
    margin: 1rem !important;
  }

  .mt-xl-3,
  .my-xl-3 {
    margin-top: 1rem !important;
  }

  .mr-xl-3,
  .mx-xl-3 {
    margin-right: 1rem !important;
  }

  .mb-xl-3,
  .my-xl-3 {
    margin-bottom: 1rem !important;
  }

  .ml-xl-3,
  .mx-xl-3 {
    margin-left: 1rem !important;
  }

  .m-xl-4 {
    margin: 1.5rem !important;
  }

  .mt-xl-4,
  .my-xl-4 {
    margin-top: 1.5rem !important;
  }

  .mr-xl-4,
  .mx-xl-4 {
    margin-right: 1.5rem !important;
  }

  .mb-xl-4,
  .my-xl-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-xl-4,
  .mx-xl-4 {
    margin-left: 1.5rem !important;
  }

  .m-xl-5 {
    margin: 3rem !important;
  }

  .mt-xl-5,
  .my-xl-5 {
    margin-top: 3rem !important;
  }

  .mr-xl-5,
  .mx-xl-5 {
    margin-right: 3rem !important;
  }

  .mb-xl-5,
  .my-xl-5 {
    margin-bottom: 3rem !important;
  }

  .ml-xl-5,
  .mx-xl-5 {
    margin-left: 3rem !important;
  }

  .p-xl-0 {
    padding: 0 !important;
  }

  .pt-xl-0,
  .py-xl-0 {
    padding-top: 0 !important;
  }

  .pr-xl-0,
  .px-xl-0 {
    padding-right: 0 !important;
  }

  .pb-xl-0,
  .py-xl-0 {
    padding-bottom: 0 !important;
  }

  .pl-xl-0,
  .px-xl-0 {
    padding-left: 0 !important;
  }

  .p-xl-1 {
    padding: .25rem !important;
  }

  .pt-xl-1,
  .py-xl-1 {
    padding-top: .25rem !important;
  }

  .pr-xl-1,
  .px-xl-1 {
    padding-right: .25rem !important;
  }

  .pb-xl-1,
  .py-xl-1 {
    padding-bottom: .25rem !important;
  }

  .pl-xl-1,
  .px-xl-1 {
    padding-left: .25rem !important;
  }

  .p-xl-2 {
    padding: .5rem !important;
  }

  .pt-xl-2,
  .py-xl-2 {
    padding-top: .5rem !important;
  }

  .pr-xl-2,
  .px-xl-2 {
    padding-right: .5rem !important;
  }

  .pb-xl-2,
  .py-xl-2 {
    padding-bottom: .5rem !important;
  }

  .pl-xl-2,
  .px-xl-2 {
    padding-left: .5rem !important;
  }

  .p-xl-3 {
    padding: 1rem !important;
  }

  .pt-xl-3,
  .py-xl-3 {
    padding-top: 1rem !important;
  }

  .pr-xl-3,
  .px-xl-3 {
    padding-right: 1rem !important;
  }

  .pb-xl-3,
  .py-xl-3 {
    padding-bottom: 1rem !important;
  }

  .pl-xl-3,
  .px-xl-3 {
    padding-left: 1rem !important;
  }

  .p-xl-4 {
    padding: 1.5rem !important;
  }

  .pt-xl-4,
  .py-xl-4 {
    padding-top: 1.5rem !important;
  }

  .pr-xl-4,
  .px-xl-4 {
    padding-right: 1.5rem !important;
  }

  .pb-xl-4,
  .py-xl-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-xl-4,
  .px-xl-4 {
    padding-left: 1.5rem !important;
  }

  .p-xl-5 {
    padding: 3rem !important;
  }

  .pt-xl-5,
  .py-xl-5 {
    padding-top: 3rem !important;
  }

  .pr-xl-5,
  .px-xl-5 {
    padding-right: 3rem !important;
  }

  .pb-xl-5,
  .py-xl-5 {
    padding-bottom: 3rem !important;
  }

  .pl-xl-5,
  .px-xl-5 {
    padding-left: 3rem !important;
  }

  .m-xl-auto {
    margin: auto !important;
  }

  .mt-xl-auto,
  .my-xl-auto {
    margin-top: auto !important;
  }

  .mr-xl-auto,
  .mx-xl-auto {
    margin-right: auto !important;
  }

  .mb-xl-auto,
  .my-xl-auto {
    margin-bottom: auto !important;
  }

  .ml-xl-auto,
  .mx-xl-auto {
    margin-left: auto !important;
  }
}

@media (max-width: 1002px) {
  .one-lot-table thead {
    display: none;
  }

  .one-lot-table tr {
    padding: 10px 0;
    display: block;
    border-bottom: 1px solid #434343;
  }

  .one-lot-table td {
    display: block;
    border: 0 solid;
    padding: 1px 10px !important;
    width: 100%;
    text-align: center !important;
  }

  .one-lot-table .rating {
    margin: 0 auto;
  }
}

@media (max-width: 992px) {
  .typography {
    margin: 20px 0 50px 0;
  }

  .typography ._border-link {
    border-bottom: 0 solid;
  }

  .typography p {
    font-size: 12px;
    line-height: 217%;
  }

  .typography blockquote {
    padding-top: 0;
    padding-left: 0;
    -webkit-background-size: 92px 92px;
    background-size: 92px;
    line-height: 188%;
    font-size: 13px;
  }

  .typography a {
    color: #434343;
    text-decoration: underline;
  }

  .typography a:hover {
    text-decoration: none;
  }

  .about-banner__title {
    font-size: 20px;
  }

  .about-banner__img {
    margin: 0 -15px 30px;
    width: -webkit-calc(100% + 30px);
    width: calc(100% + 30px);
    max-width: inherit;
  }

  .auction-page h2.page__title {
    font-size: 25px;
  }

  .auction-r__img {
    margin-left: -15px;
    margin-right: -15px;
  }

  .auction__img {
    margin: 0 -15px 20px -15px;
  }

  .page__subtitle {
    margin-top: 30px;
  }

  .bio-item {
    -webkit-animation: fadeDown 1s forwards ease-in-out;
    animation: fadeDown 1s forwards ease-in-out;
   /* display: none; */
  }

  .bio-item._active {
    display: block;
  }

  .searchcollection {
    margin: 45px 0 0;
    height: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .searchcollection span {
    display: none;
  }

  .searchcollection input {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 12px;
  }

  .filter__apply {
    margin-bottom: 30px;
  }

  .filter-visible {
    margin-bottom: 38px;
  }

  .filter {
    display: none;
    position: fixed;
    overflow: scroll;
    background: #fff;
    width: 100%;
    margin: 0;
    top: 80px;
    left: 0;
    min-height: -webkit-calc(var(--vh, 1vh) * 100 - 80px);
    min-height: calc(var(--vh, 1vh) * 100 - 80px);
    height: -webkit-calc(var(--vh, 1vh) * 100 - 80px);
    height: calc(var(--vh, 1vh) * 100 - 80px);
    z-index: 3;
  }

  .collection-item__name {
    margin: -5px 0 14px;
    font-size: 16px;
  }

  .collection-item__price {
    font-size: 25px;
    margin-bottom: 10px;
  }

  .collection-item__btnwrap {
    margin-top: 25px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-bottom: 43px;
    margin-bottom: 0px;
  }

  .collection-item__desc {
    font-size: 10px;
    line-height: 191%;
  }

  .collection-item__autor {
    font-size: 12px;
  }

  .filter__name {
    font-family: Neumann;
    font-size: 21px;
    text-transform: uppercase;
    letter-spacing: -0.4px;
    margin-top: 38px;
    margin-bottom: 40px;
  }

  .filter__item {
    width: 100%;
    margin-bottom: 10px;
  }

  .searchcollection__input::-webkit-input-placeholder {
    color: #9b9b9b;
    opacity: 1;
  }

  .searchcollection__input::-moz-placeholder {
    color: #9b9b9b;
    opacity: 1;
  }

  .searchcollection__input:-moz-placeholder {
    color: #9b9b9b;
    opacity: 1;
  }

  .searchcollection__input:-ms-input-placeholder {
    color: #9b9b9b;
    opacity: 1;
  }

  .easyzoom-flyout {
    display: none;
  }

  .contact-inner {
    position: initial;
    width: 100%;
    margin-top: 28px;
    padding-bottom: 10px;
  }

  .contact-page .page__main::after {
    display: none;
  }

  #map {
    height: 360px;
    position: relative;
    margin: 0 -15px;
    width: -webkit-calc(100% + 30px);
    width: calc(100% + 30px);
    margin-top: 120px;
  }

  .contact-page .page__main .inner {
    position: relative;
  }

  .contact-page .page__subtitle {
    margin-bottom: 13px;
  }

  .contact-page .col-auto {
    width: 100%;
    margin-bottom: 22px;
    text-align: center;
  }

  .contact-page__grafick {
    margin-bottom: 24px;
  }

  .contact-page__step-2 {
    text-align: center;
  }

  .contact-page__grafick,
  .contact-page__mail,
  .contact-page__phone {
    font-size: 20px;
  }

  .contact-page__social {
    margin-top: -3px;
  }

  .contact-page .page__main .inner {
    padding-bottom: 63px;
  }

  .contact-page .page__title {
    line-height: 125%;
    margin-bottom: 22px;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    background: #fff;
    padding-bottom: 22px;
    padding-top: 45px;
    margin: 0;
  }

  .contact-page__social,
  .contact-page__social a {
    font-size: 15px;
  }

  .contact-page__ps {
    font-family: Neumann;
    font-size: 16px;
    margin-top: 0px;
    margin-bottom: 80px;
    text-align: center;
    bottom: 0;
    position: relative;
  }

  .exhibitionsdetail-page .typography {
    margin: 20px 0 22px;
  }

  .exhibitionprev {
    margin-bottom: 35px;
  }

  .exhibition__imgwrap {
    min-width: 300px;
    margin-top: 25px;
    margin-right: 30px;
  }

  .exhibitionsdetail__date {
    text-align: center;
    font-size: 19px;
    margin-bottom: 20px;
  }

  .exhibitionsdetail__place {
    font-size: 19px;
    margin-bottom: 13px;
    margin-top: 28px;
  }

  .exhibitionsdetail__begin {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .exhibitionslink-block__link {
    font-size: 10px;
  }

  .exhibitionslink-block {
    margin-bottom: 21px;
  }

  .exhibitionslink-block__desc {
    font-size: 12px;
  }

  .exhibitionprev__title {
    margin-top: 8px;
    font-size: 12px;
  }

  .front-block.about .front-block__wrapper {
    height: initial;
  }

  .front-block.about .inner {
    padding: 50px 0;
  }

  ._h50 {
    height: 330px;
  }

  .collections,
  .exhibitions {
    height: -webkit-calc(var(--vh, 1vh) * 100 - 80px);
    height: calc(var(--vh, 1vh) * 100 - 80px);
  }

  .ownbid__autor,
  .yourprice__autor {
    margin-top: 30px;
  }

  .modal-onelot__title {
    font-family: Neumann;
    font-size: 23px;
  }

  .ownbid__h,
  .yourprice__h {
    font-size: 20px;
  }

  .modal-onelot__content {
    padding-top: 55px;
    height: 100%;
  }

  .modal-onelot__close {
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }

  .modal-onelot__unregistr {
    font-size: 18px;
    margin-top: 6px;
  }

  .one-lot:first-child {
    margin-top: 50px;
  }

  .modal-onelot__wrapper {
    max-height: 100%;
    height: 100%;
  }

  .one-lot__desc {
    line-height: 222%;
  }

  .modal-onelot__subtitle {
    font-size: 19px;
    margin-bottom: 33px;
  }

  .modal-onelot__scroll {
    height: 100%;
    overflow: scroll;
  }

  .modal-onelot {
    background: #fff;
    top: 80px;
    height: -webkit-calc(var(--vh, 1vh) * 100 - 80px);
    height: calc(var(--vh, 1vh) * 100 - 80px);
  }

  .one-lot__autor {
    margin-top: 30px;
  }

  .ownbid__h,
  .yourprice__h {
    margin-bottom: 10px;
  }

  .modal-onelot .ownbid button,
  .modal-onelot .yourprice button {
    margin-top: 14px !important;
  }

  ._h50 {
    height: -webkit-calc(var(--vh, 1vh) * 50 - 40px);
    height: calc(var(--vh, 1vh) * 50 - 40px);
  }

  .sub-menu li {
    font-size: 17px;
  }

  .sub-menu ul {
    padding-left: 20px;
    margin-top: 4px;
    margin-bottom: 10px;
  }

  .primery-menu li:not(:last-child) .sub-menu li:not(:last-child) {
    margin-bottom: 7px;
  }

  .d-m {
    display: block;
  }

  .page__subtitle {
    font-size: 19px;
    line-height: 161%;
    margin-bottom: 34px;
  }

  .pagination-title .prev-link,
  .pagination-title .next-link {
    width: 50px;
    font-size: 0;
  }

  .page__title {
    text-align: center;
    font-size: 40px;
    margin-top: 45px;
    line-height: 125%;
    margin-bottom: 22px;
  }

  .header a:hover {
    color: #fff;
    opacity: 0.5;
  }

  .footer ._lang {
    margin-bottom: 20px;
  }

  .footer ._lang a {
    display: inline-block;
    margin: 0 10px;
  }

  .footer ._lang a:hover,
  .footer ._lang a._active {
    color: #fff;
  }

  .contact-block p {
    margin-bottom: 20px;
  }

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

  .contact-block ._social a,
  .contact-block ._mail a {
    color: #fff;
  }

  .swiper-pagination {
    display: none;
  }

  .header {
    height: 80px;
  }

  .header .inner {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .page {
    padding-top: 80px;
  }

  .front-block__wrapper,
  .swiper-slide {
    height: -webkit-calc(var(--vh, 1vh) * 100 - 80px);
    height: calc(var(--vh, 1vh) * 100 - 80px);
    max-height: inherit;
    min-height: inherit;
  }

  .h50 .swiper-slide {
    min-height: -webkit-calc(var(--vh, 1vh) * 100 / 2 - 80px);
    min-height: calc(var(--vh, 1vh) * 100 / 2 - 80px);
    height: -webkit-calc(var(--vh, 1vh) * 100 / 2 - 80px);
    height: calc(var(--vh, 1vh) * 100 / 2 - 80px);
  }

  .front-block__title {
    font-size: 40px;
  }

  .front-block__desc {
    font-size: 20px;
  }

  .front-block__subtitle {
    font-size: 25px;
  }

  .front-block__wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }

  .button {
    font-family: "GothamPro";
    font-size: 14px;
    line-height: 50px;
    text-align: center;
    letter-spacing: 0.17px;
    display: block;
  }

  .button._login {
    color: #fff;
    border: 1px solid #ffffff;
  }

  .button._singup {
    color: #898989;
  }

  .header__content {
    display: none;
    overflow: auto;
    position: absolute;
    left: 0;
    top: 80px;
    min-height: -webkit-calc(100vh - 80px);
    min-height: calc(100vh - 80px);
    height: -webkit-calc(100vh - 80px);
    height: calc(100vh - 80px);
    padding: 38px 60px;
    width: 100%;
    min-width: auto;
    background-image: -webkit-linear-gradient(261deg, #787878 0%, #434343 100%);
    background-image: -o-linear-gradient(261deg, #787878 0%, #434343 100%);
    background-image: linear-gradient(189deg, #787878 0%, #434343 100%);
  }

  .header__content a {
    color: #fff;
  }

  .primery-menu {
    display: block;
    height: auto;
  }

  .primery-menu ._search {
    display: none;
  }

  .primery-menu a {
    font-family: "GothamPro" !important;
    font-size: 14px !important;
    display: inline;
  }

  .primery-menu li {
    margin-bottom: 0;
  }

  .primery-menu li:not(:last-child) {
    margin-bottom: 29px;
  }

  .primery-menu li:not(:last-child) .sub-menu li:not(:last-child) {
    margin-bottom: 7px;
  }

  .primery-menu .dropdown {
    position: relative;
  }

  .primery-menu .dropdown::before {
    content: '';
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    position: absolute;
    display: block;
    width: 11px;
    right: 0;
    top: 6px;
    height: 6px;
    background-image: url(/assets/images/front/icon/arrow-down.svg);
    background-repeat: no-repeat;
    background-position: center;
  }

  .primery-menu ._hover.dropdown::before {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
  }

  .primery-menu .primery-menu__sub {
    position: relative;
    background: none;
    top: 0;
    height: auto;
  }

  .primery-menu li._hover::after {
    display: none;
  }

  .primery-menu ._pdf {
    background-position: left 4px;
    -webkit-background-size: 14px 14px;
    background-size: 14px;
    padding: 0px 0 2px 24px !important;
    margin-top: 0 !important;
  }

  .primery-menu .sub-inner {
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
  }

  ul._mutted {
    list-style-position: inside;
  }

  .title-block {
    min-height: 483px;
  }

  .btn-block {
    margin-top: 45px;
    text-align: center;
  }

  .footer__copy .inner {
    text-align: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  ._left .front-block__wrapper {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .title-block .front-block__title {
    text-align: center;
  }

  .title-block {
    height: -webkit-calc(var(--vh,1vh) * 100 - 80px);
    height: calc(var(--vh,1vh) * 100 - 80px);
  }

  .title-block .front-block__wrapper {
    min-height: 100%;
  }

  .title-block-row {
    height: auto;
  }

  .title-block::after {
    content: '';
    display: block;
    width: 27px;
    height: 17px;
    bottom: 10px;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: 15px;
    background: url(/assets/images/front/icon/arrow-down2.svg) no-repeat;
  }

  .page__title ._prev {
    left: -7px;
    top: 9px;
  }

  .modal-picture {
    top: 80px;
    height: -webkit-calc(var(--vh, 1vh) * 100 - 80px);
    height: calc(var(--vh, 1vh) * 100 - 80px);
  }

  .modal-picture .swiper-button-disabled {
    opacity: 0.6;
  }

  .modal-picture__prev,
  .modal-picture__next {
    font-size: 10px;
  }

  .picture-item__autor {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .picture-item__name {
    font-size: 12px;
  }

  body .modal-picture {
    height: -webkit-calc(100% - 80px);
    height: calc(100% - 80px);
  }

  .picture-nav {
    margin-bottom: 0;
    margin-top: 50px;
    margin-left: auto;
    margin-right: auto;
  }

  .press-item__imgwrap {
    height: 59px;
  }

  .press-item__imgwrap img {
    max-width: 134px;
  }

  .press-item {
    min-height: 224px;
    margin-bottom: 31px;
  }

  .press-item__text {
    font-size: 13px;
  }

  .search-block__inner {
    padding: 100px 14px 30px 14px;
  }

  .searchresult-item__autor {
    font-size: 16px;
  }

  .searchresult-item__name {
    font-size: 12px;
    margin-bottom: 5px;
  }

  .searchresult-item {
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .easyzoom::after {
    content: '';
    display: block;
    z-index: 32;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
  }

  .picture-item._znakovaya:before {
    margin-left: -10px;
    width: -webkit-calc(100% + 20px);
    width: calc(100% + 20px);
  }

  .modal-picture__close {
    position: relative;
    top: 0;
    margin: 0 auto;
    right: 0;
    margin-bottom: 20px;
  }

  body .modal-picture {
    overflow: scroll;
  }

  body .modal-picture .footer {
    margin-top: 50px;
    margin-left: -25px;
    margin-right: -25px;
    width: auto;
  }

  .modal-picture .inner {
    height: 100%;
  }

  .modal-picture__lot {
    font-size: 20px;
  }

  .modal-picture__nav {
    margin-bottom: 37px;
    margin-left: auto;
    margin-right: auto;
  }

  .modal-picture__title {
    padding-bottom: 7px;
    border-bottom: 0px solid #434343;
    margin-bottom: 2px;
    text-align: center;
    margin-top: 31px;
    display: block;
  }

  .modal-picture__content p {
    line-height: 204%;
    text-align: center;
    font-size: 10px;
  }

  .picture-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 16px 0;
  }

  .picture-item__name {
    margin-bottom: 13px;
  }

  .picture-item__img-wrapper {
    margin: 0;
    width: inherit;
    height: inherit;
    margin-bottom: 20px;
  }

  .picture-item__img-wrapper img  {    position: unset;
    -webkit-transform: unset;
    -ms-transform: unset;
    transform: unset;
  }

  .picture-item__img-wrapper .auction-r__img > img {
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    position: relative;
    top: 0;
  }

  .picture-item__content {
    max-width: 450px;
    width: 100%;
    text-align: left;
  }

  .picture-item__desc p {
    font-size: 10px;
    margin-bottom: 8px;
    line-height: 195%;
  }
}

@media screen and (max-width: 640px) {
  /* line 16, ../scss/components/modules/_case.scss */

  html[data-lc-type=inline] #lightcase-case,
  html[data-lc-type=ajax] #lightcase-case {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    margin: 0 !important;
    padding: 55px 0 70px 0;
    width: 100% !important;
    height: 100% !important;
    overflow: auto !important;
  }

  /* line 31, ../scss/components/modules/_content.scss */

  html[data-lc-type=inline] #lightcase-content,
  html[data-lc-type=ajax] #lightcase-content,
  html[data-lc-type=error] #lightcase-content {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    background: none !important;
  }

  /* line 43, ../scss/components/modules/_content.scss */

  html[data-lc-type=inline] #lightcase-content .lightcase-contentInner,
  html[data-lc-type=ajax] #lightcase-content .lightcase-contentInner,
  html[data-lc-type=error] #lightcase-content .lightcase-contentInner {
    padding: 15px;
  }

  /* line 52, ../scss/components/modules/_content.scss */

  html[data-lc-type=inline] #lightcase-content .lightcase-contentInner,
  html[data-lc-type=inline] #lightcase-content .lightcase-contentInner > *,
  html[data-lc-type=ajax] #lightcase-content .lightcase-contentInner,
  html[data-lc-type=ajax] #lightcase-content .lightcase-contentInner > *,
  html[data-lc-type=error] #lightcase-content .lightcase-contentInner,
  html[data-lc-type=error] #lightcase-content .lightcase-contentInner > * {
    width: 100% !important;
    max-width: none !important;
  }

  /* line 59, ../scss/components/modules/_content.scss */

  html[data-lc-type=inline] #lightcase-content .lightcase-contentInner > *:not(iframe),
  html[data-lc-type=ajax] #lightcase-content .lightcase-contentInner > *:not(iframe),
  html[data-lc-type=error] #lightcase-content .lightcase-contentInner > *:not(iframe) {
    height: auto !important;
    max-height: none !important;
  }

  /* line 70, ../scss/components/modules/_content.scss */

  html.lightcase-isMobileDevice[data-lc-type=iframe] #lightcase-content .lightcase-contentInner iframe {
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }

  /* line 91, ../scss/components/modules/_content.scss */

  html[data-lc-type=inline] #lightcase-content .lightcase-contentInner .lightcase-inlineWrap,
  html[data-lc-type=ajax] #lightcase-content .lightcase-contentInner .lightcase-inlineWrap,
  html[data-lc-type=error] #lightcase-content .lightcase-contentInner .lightcase-inlineWrap {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    background: none !important;
  }

  /* line 117, ../scss/components/modules/_content.scss */

  #lightcase-content h1,
  #lightcase-content h2,
  #lightcase-content h3,
  #lightcase-content h4,
  #lightcase-content h5,
  #lightcase-content h6,
  #lightcase-content p {
    color: #aaa;
  }

  /* line 3, ../scss/components/modules/_error.scss */

  #lightcase-case p.lightcase-error {
    padding: 30px 0;
  }

  /* line 19, ../scss/components/modules/_info.scss */

  #lightcase-info #lightcase-title {
    position: fixed;
    top: 10px;
    left: 0;
    max-width: 87.5%;
    padding: 5px 15px;
    background: #333;
  }

  /* line 45, ../scss/components/modules/_info.scss */

  .lightcase-fullScreenMode #lightcase-info {
    padding-left: 15px;
    padding-right: 15px;
  }

  /* line 51, ../scss/components/modules/_info.scss */

  html:not([data-lc-type=image]):not([data-lc-type=video]):not([data-lc-type=flash]):not([data-lc-type=error]) #lightcase-info {
    position: static;
  }

  /* line 2, ../scss/components/modules/_navigation.scss */

  a[class*='lightcase-icon-'] {
    bottom: 15px;
    font-size: 24px;
  }

  /* line 1, ../scss/components/modules/_overlay.scss */

  #lightcase-overlay {
    opacity: 1 !important;
  }
}

@media (max-width: 630px) {
  .exhibition {
    margin-bottom: 45px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .exhibition__data {
    font-size: 11px;
  }

  .exhibition__title {
    font-size: 16px;
    line-height: 165%;
    margin-top: 11px;
    margin-bottom: 17px;
  }

  .exhibition__body {
    line-height: 192.29%;
  }

  .exhibition__imgwrap {
    margin-right: 0;
    margin: 0 -15px;
  }

  .exhibition ._button-fill {
    margin-top: 21px;
  }

  .exhibitionsdetail-page .page__title {
    font-size: 29px;
  }
}

@media (max-width: 600px) {
  .auction-play-img {
    margin-bottom: 30px;
  }

  .auction-top span:last-child {
    text-align: right;
  }

  .auction-top a:last-child {
    text-align: right;
  }

  .auction-top {
    -webkit-box-align: baseline;
    -webkit-align-items: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
  }

  .history .history__wrapper tr {
    display: block;
    text-align: center;
    padding: 5px 0 !important;
  }

  .history .history__wrapper td {
    display: block;
    width: 100%;
    padding: 0 10px !important;
  }

  .history tr::after {
    content: '';
    width: -webkit-calc(100% - 70px);
    width: calc(100% - 70px);
    border-bottom: 1px solid #9b9b9b;
    position: absolute;
    left: 35px;
    bottom: 0;
  }

  .auction-play-pay > div {
    margin-bottom: 15px;
  }

  .auction-play__button {
    margin-top: 0;
  }
}

@media (max-width: 500px) {
  .prev-link,
  .next-link {
    margin-top: 3px  !important;
    width: 24px !important;
  }

	.picture-artist {
		float: unset;
	    margin: 20px auto;
	    max-width: 200px;
	}

	.bio-item ul a {
	   font-size:16px;
	}

  .prev-link::before {
    content: '';
    display: inline-block;
    width: 23px;
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
    height: 51px;
    background-image: url(/assets/images/front/icon/prev.svg);
    background-repeat: no-repeat;
    background-position: center;
    margin-bottom: -19px;
    -webkit-transition: all 0.1s;
    -o-transition: all 0.1s;
    transition: all 0.1s;
    margin-left: 5px;
  }

  .next-link::after {
    content: '';
    display: inline-block;
    width: 23px;
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
    height: 51px;
    background-image: url(/assets/images/front/icon/prev.svg);
    background-repeat: no-repeat;
    background-position: center;
    -webkit-transform: scale(-1, 1);
    -ms-transform: scale(-1, 1);
    transform: scale(-1, 1);
    margin-bottom: -19px;
    -webkit-transition: all 0.1s;
    -o-transition: all 0.1s;
    transition: all 0.1s;
    margin-left: 5px;
  }

  .text-center {
    width: 100%;
    text-align: center;
  }

  .front-block__desc br {
    display: none;
  }

  .header .inner {
    padding: 0 10px;
  }


	._bfchange .auction_lots-item-bg {
	    height: 55vw;
	}
}

@media screen and (max-width: 640px) and (min-width: 641px) {
  /* line 74, ../scss/components/modules/_content.scss */

  html[data-lc-type=image] #lightcase-content .lightcase-contentInner,
  html[data-lc-type=video] #lightcase-content .lightcase-contentInner {
    line-height: 0.75;
  }
}

@media print {
  .d-print-none {
    display: none !important;
  }

  .d-print-inline {
    display: inline !important;
  }

  .d-print-inline-block {
    display: inline-block !important;
  }

  .d-print-block {
    display: block !important;
  }

  .d-print-table {
    display: table !important;
  }

  .d-print-table-row {
    display: table-row !important;
  }

  .d-print-table-cell {
    display: table-cell !important;
  }

  .d-print-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: -webkit-flex !important;
    display: flex !important;
  }

  .d-print-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: -webkit-inline-flex !important;
    display: inline-flex !important;
  }
}

@media (max-height: 900px) {
  ._h50 .jarallax > div > div {
    min-height: initial !important;
  }
}

.alert {    padding:10px;
    margin-bottom:20px;
}

.alert-danger {    background-color: #f2dede;
    color: #a94442;}

.alert-success {
    background-color: #dff0d8;
    color: #3c763d;
}

.danger {	 color: #a94442;}

.success {
    color: #3c763d;
}

.formfield_error {	color: #a94442;
	font-size:0.75em;
	padding:5px;
}

.col-lg-3.col-md-4 .auction-item {
    margin-bottom: 40px;
}

.select__gap.active span {
    color: #d0021b;
}

label#identity-error {	padding:0!important;}

.title-block._right .slider__slide div {
    background-position: 50%!important;
}

._full {display:none; margin-bottom:100px;}

.brief__img {
    display: block;
    width: 200px;
    height: 200px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;}

/* brief view addon */

.auction_lots-item.old {
    background-color: rgb(244, 244, 244);
}
.auction_lots-item {
    width: 100%;
    max-width: 360px;
    box-sizing: border-box;
    display: block;
    color: rgb(32, 32, 32);
    max-height: 650px;
    text-align: center;
    cursor: pointer;
    background-color: rgb(255, 255, 255);
    transition: all 0.5s ease 0s;
    box-sizing:border-box;
}

.auction_lots-item.old .auction_lots-item-bg {
    background-color: rgb(255, 255, 255);
    padding: 20px;
}

@media only screen and (min-width: 1920px) {
	.auction_lots-item-bg {
    	height: 14.2857vw;
	}
}
.auction_lots-item-bg {
    width: 100%;
    height: 15vw;
    max-height: 360px;
    box-sizing: border-box;
    background-color: rgb(244, 244, 244);
    overflow: hidden;
    padding: 0px;
}

@media only screen and (max-width: 700px) {
	.auction_lots-item-bg {
    height: 50vw;
	}
}

@media only screen and (max-width: 1400px) {
	.auction_lots-item-bg {
    height: 25vw;
	}
}

.auction_lots-item-bg div {
    width: 100%;
    height: 100%;
    background-size: contain;
    background-position: 50% center;
    background-repeat: no-repeat;
    transition: all 0.35s ease-in-out 0s;
}

.auction_lots-item-info {
    box-sizing: border-box;
    position: relative;
    background-color: rgb(244, 244, 244);
    padding: 0px 20px 25px;
    transition: background-color 0.35s ease 0s;
}

.auction_lots-item-info::before {
    content: "";
    display: block;
    position: absolute;
    width: 0px;
    height: 0px;
    top: -34px;
    left: 50%;
    margin-left: -20px;
    opacity: 0;
    border-width: 20px;
    border-style: solid;
    border-color: transparent transparent rgb(255, 255, 255);
    border-image: initial;
    border-bottom: 20px solid rgb(244, 244, 244);
    transition: opacity 0.5s ease 0s;
}

.auction_lots-item-number {
    font-size: 24px;
    color: rgb(32, 32, 32);
    opacity: 0.2;
    font-family: AvenirNextBold, sans-serif;
    letter-spacing: 0.1px;
    padding-top: 24px;
}

.auction_lots-item-title {
    font-size: 14px;
    color: rgb(32, 32, 32);
    line-height: 24px;
    letter-spacing: 0.25px;
    text-transform: uppercase;
    padding-top: 11px;
    padding-bottom: 7px;
}

.auction_lots-item-estimate, .auction_lots-item-text {
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0.1px;
    color: rgb(32, 32, 32);
}

.collection-item._brief {
    margin-bottom: 0;
    padding:0;
    display: flex;
    border: solid rgb(222, 222, 222);
    border-width: 0 1px 1px 0;
    border-collapse: collapse;

}

.auction_lots-item:hover .auction_lots-item-bg div {
    transform: scale(1.05);
}
.auction_lots-item:hover .auction_lots-item-info::before {
	opacity:1;
}
._bfchange {
    border: solid #eee;
    border-width: 1px 0 0 1px;
}


.justify-content-center._bfchange {
/*    -webkit-box-pack: left !important;
    -ms-flex-pack: left !important;
    -webkit-justify-content: left !important;
    justify-content: left !important; */
}

.modal-onelot__spinner {
    width: 200px;
    height: 200px;
    background: url(/assets/images/loader.gif) no-repeat;
}

.noscript {	padding:50px 5%;}

.noscript a {
	text-decoration:underline;
	color:#f00;
}

._status .auction_lots-item.old {	opacity:0.4}

.video-container {
	position: relative;
	padding-bottom: 56.25%;
	padding-top: 30px; height: 0; overflow: hidden;
}

.video-container iframe,
.video-container object,
.video-container embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}


.collections.slider .slider__wrapper {
    z-index: 5;
}

/* LEAVE MODAL */

#leave_modal {
  font-family: Neumann;
  font-size: 20px;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 200;
}
#leave_modal .underlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0,0,0,0.5);
  cursor: pointer;
  -webkit-animation: fadein 0.5s;
  animation: fadein 0.5s;
}
#leave_modal .modal {
  width: 600px;
  height: 280px;
  background-color: #fff;
  z-index: 1;
  position: absolute;
  margin: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 4px;
  -webkit-animation: popin 0.3s;
  animation: popin 0.3s;
}
#leave_modal .modal-title {
  font-size: 18px;
  background-color: #252525;
  color: #fff;
  padding: 10px;
  margin: 0;
  border-radius: 4px 4px 0 0;
  text-align: center;
}
#leave_modal .modal-body {
  padding: 30px 35px;
}
#leave_modal h3 {
  font-size:26px;
  margin-bottom:20px;
  font-weight:400;
}

#leave_modal p {
  color: #000;
}

#leave_modal .modal-footer {
  float:right;
}

#leave_modal .modal-footer.centered {	float:none;
	text-align:center;}

.modal-footer p {
    text-decoration: underline;
    cursor: pointer;
    margin-top: 30px;
    font-size: 16px;
}

#leave_modal input[type=text] {
 margin:30px 0;
}

#leave_modal button {
 font-size:16px;
}

#thx_modal {	display:none;
}

@-webkit-keyframes fadein {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}
@-ms-keyframes fadein {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}
@keyframes fadein {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}
@-webkit-keyframes popin {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 0;
  }

  85% {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@-ms-keyframes popin {
  0% {
    -ms-transform: scale(0);
    transform: scale(0);
    opacity: 0;
  }

  85% {
    -ms-transform: scale(1.05);
    transform: scale(1.05);
    opacity: 1;
  }

  100% {
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes popin {
  0% {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    opacity: 0;
  }

  85% {
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

html.magnifying > body {
  overflow-x: hidden !important;
}
.magnify,
.magnify > .magnify-lens,
.magnify-mobile,
.lens-mobile { /* Reset */
  min-width: 0;
  min-height: 0;
  animation: none;
  border: none;
  float: none;
  margin: 0;
  opacity: 1;
  outline: none;
  overflow: visible;
  padding: 0;
  text-indent: 0;
  transform: none;
  transition: none;
}
.magnify {
  position: relative;
  width: auto;
  height: auto;
  box-shadow: none;
  display: inline-block;
  z-index: inherit;
}
.magnify > .magnify-lens { /* Magnifying lens */
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 100%;
  /* Multiple box shadows to achieve the glass lens effect */
  box-shadow: 0 0 0 7px rgba(255, 255, 255, 0.85),
    0 0 7px 7px rgba(0, 0, 0, 0.25),
    inset 0 0 40px 2px rgba(0, 0, 0, 0.25);
  cursor: none;
  display: none;
  z-index: 99;
}
.magnify > .magnify-lens.loading {
  background: #333 !important;
  opacity: 0.8;
}
.magnify > .magnify-lens.loading:after { /* Loading text */
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  color: #fff;
  content: 'Loading...';
  font: italic normal 16px/1 Calibri, sans-serif;
  letter-spacing: 1px;
  margin-top: -8px;
  text-align: center;
  text-shadow: 0 0 2px rgba(51, 51, 51, 0.8);
  text-transform: none;
}

._brief .new_arrival {
    background-color: #d0021b;
    color: #fff;
    font-size: 12px;
    display: inline;
    padding: 2px 10px;
}

