/* required styles */

.leaflet-pane,
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-tile-container,
.leaflet-pane > svg,
.leaflet-pane > canvas,
.leaflet-zoom-box,
.leaflet-image-layer,
.leaflet-layer {
	position: absolute;
	left: 0;
	top: 0;
	}
.leaflet-container {
	overflow: hidden;
	}
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow {
	-webkit-user-select: none;
	   -moz-user-select: none;
	        user-select: none;
	  -webkit-user-drag: none;
	}
/* Safari renders non-retina tile on retina better with this, but Chrome is worse */
.leaflet-safari .leaflet-tile {
	image-rendering: -webkit-optimize-contrast;
	}
/* hack that prevents hw layers "stretching" when loading new tiles */
.leaflet-safari .leaflet-tile-container {
	width: 1600px;
	height: 1600px;
	-webkit-transform-origin: 0 0;
	}
.leaflet-marker-icon,
.leaflet-marker-shadow {
	display: block;
	}
/* .leaflet-container svg: reset svg max-width decleration shipped in Joomla! (joomla.org) 3.x */
/* .leaflet-container img: map is broken in FF if you have max-width: 100% on tiles */
.leaflet-container .leaflet-overlay-pane svg,
.leaflet-container .leaflet-marker-pane img,
.leaflet-container .leaflet-shadow-pane img,
.leaflet-container .leaflet-tile-pane img,
.leaflet-container img.leaflet-image-layer {
	max-width: none !important;
	max-height: none !important;
	}

.leaflet-container.leaflet-touch-zoom {
	-ms-touch-action: pan-x pan-y;
	touch-action: pan-x pan-y;
	}
.leaflet-container.leaflet-touch-drag {
	-ms-touch-action: pinch-zoom;
	/* Fallback for FF which doesn't support pinch-zoom */
	touch-action: none;
	touch-action: pinch-zoom;
}
.leaflet-container.leaflet-touch-drag.leaflet-touch-zoom {
	-ms-touch-action: none;
	touch-action: none;
}
.leaflet-container {
	-webkit-tap-highlight-color: transparent;
}
.leaflet-container a {
	-webkit-tap-highlight-color: rgba(51, 181, 229, 0.4);
}
.leaflet-tile {
	filter: inherit;
	visibility: hidden;
	}
.leaflet-tile-loaded {
	visibility: inherit;
	}
.leaflet-zoom-box {
	width: 0;
	height: 0;
	-moz-box-sizing: border-box;
	     box-sizing: border-box;
	z-index: 800;
	}
/* workaround for https://bugzilla.mozilla.org/show_bug.cgi?id=888319 */
.leaflet-overlay-pane svg {
	-moz-user-select: none;
	}

.leaflet-pane         { z-index: 400; }

.leaflet-tile-pane    { z-index: 200; }
.leaflet-overlay-pane { z-index: 400; }
.leaflet-shadow-pane  { z-index: 500; }
.leaflet-marker-pane  { z-index: 600; }
.leaflet-tooltip-pane   { z-index: 650; }
.leaflet-popup-pane   { z-index: 700; }

.leaflet-map-pane canvas { z-index: 100; }
.leaflet-map-pane svg    { z-index: 200; }

.leaflet-vml-shape {
	width: 1px;
	height: 1px;
	}
.lvml {
	behavior: url(#default#VML);
	display: inline-block;
	position: absolute;
	}


/* control positioning */

.leaflet-control {
	position: relative;
	z-index: 800;
	pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
	pointer-events: auto;
	}
.leaflet-top,
.leaflet-bottom {
	position: absolute;
	z-index: 1000;
	pointer-events: none;
	}
.leaflet-top {
	top: 0;
	}
.leaflet-right {
	right: 0;
	}
.leaflet-bottom {
	bottom: 0;
	}
.leaflet-left {
	left: 0;
	}
.leaflet-control {
	float: left;
	clear: both;
	}
.leaflet-right .leaflet-control {
	float: right;
	}
.leaflet-top .leaflet-control {
	margin-top: 10px;
	}
.leaflet-bottom .leaflet-control {
	margin-bottom: 10px;
	}
.leaflet-left .leaflet-control {
	margin-left: 10px;
	}
.leaflet-right .leaflet-control {
	margin-right: 10px;
	}


/* zoom and fade animations */

.leaflet-fade-anim .leaflet-tile {
	will-change: opacity;
	}
.leaflet-fade-anim .leaflet-popup {
	opacity: 0;
	-webkit-transition: opacity 0.2s linear;
	   -moz-transition: opacity 0.2s linear;
	     -o-transition: opacity 0.2s linear;
	        transition: opacity 0.2s linear;
	}
.leaflet-fade-anim .leaflet-map-pane .leaflet-popup {
	opacity: 1;
	}
.leaflet-zoom-animated {
	-webkit-transform-origin: 0 0;
	    -ms-transform-origin: 0 0;
	        transform-origin: 0 0;
	}
.leaflet-zoom-anim .leaflet-zoom-animated {
	will-change: transform;
	}
.leaflet-zoom-anim .leaflet-zoom-animated {
	-webkit-transition: -webkit-transform 0.25s cubic-bezier(0,0,0.25,1);
	   -moz-transition:    -moz-transform 0.25s cubic-bezier(0,0,0.25,1);
	     -o-transition:      -o-transform 0.25s cubic-bezier(0,0,0.25,1);
	        transition:         transform 0.25s cubic-bezier(0,0,0.25,1);
	}
.leaflet-zoom-anim .leaflet-tile,
.leaflet-pan-anim .leaflet-tile {
	-webkit-transition: none;
	   -moz-transition: none;
	     -o-transition: none;
	        transition: none;
	}

.leaflet-zoom-anim .leaflet-zoom-hide {
	visibility: hidden;
	}


/* cursors */

.leaflet-interactive {
	cursor: pointer;
	}
.leaflet-grab {
	cursor: -webkit-grab;
	cursor:    -moz-grab;
	}
.leaflet-crosshair,
.leaflet-crosshair .leaflet-interactive {
	cursor: crosshair;
	}
.leaflet-popup-pane,
.leaflet-control {
	cursor: auto;
	}
.leaflet-dragging .leaflet-grab,
.leaflet-dragging .leaflet-grab .leaflet-interactive,
.leaflet-dragging .leaflet-marker-draggable {
	cursor: move;
	cursor: -webkit-grabbing;
	cursor:    -moz-grabbing;
	}

/* marker & overlays interactivity */
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-image-layer,
.leaflet-pane > svg path,
.leaflet-tile-container {
	pointer-events: none;
	}

.leaflet-marker-icon.leaflet-interactive,
.leaflet-image-layer.leaflet-interactive,
.leaflet-pane > svg path.leaflet-interactive {
	pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
	pointer-events: auto;
	}

/* visual tweaks */

.leaflet-container {
	background: #ddd;
	outline: 0;
	}
.leaflet-container a {
	color: #0078A8;
	}
.leaflet-container a.leaflet-active {
	outline: 2px solid orange;
	}
.leaflet-zoom-box {
	border: 2px dotted #38f;
	background: rgba(255,255,255,0.5);
	}


/* general typography */
.leaflet-container {
	font: 12px/1.5 "Helvetica Neue", Arial, Helvetica, sans-serif;
	}


/* general toolbar styles */

.leaflet-bar {
	box-shadow: 0 1px 5px rgba(0,0,0,0.65);
	border-radius: 4px;
	}
.leaflet-bar a,
.leaflet-bar a:hover {
	background-color: #fff;
	border-bottom: 1px solid #ccc;
	width: 26px;
	height: 26px;
	line-height: 26px;
	display: block;
	text-align: center;
	text-decoration: none;
	color: black;
	}
.leaflet-bar a,
.leaflet-control-layers-toggle {
	background-position: 50% 50%;
	background-repeat: no-repeat;
	display: block;
	}
.leaflet-bar a:hover {
	background-color: #f4f4f4;
	}
.leaflet-bar a:first-child {
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
	}
.leaflet-bar a:last-child {
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
	border-bottom: none;
	}
.leaflet-bar a.leaflet-disabled {
	cursor: default;
	background-color: #f4f4f4;
	color: #bbb;
	}

.leaflet-touch .leaflet-bar a {
	width: 30px;
	height: 30px;
	line-height: 30px;
	}
.leaflet-touch .leaflet-bar a:first-child {
	border-top-left-radius: 2px;
	border-top-right-radius: 2px;
	}
.leaflet-touch .leaflet-bar a:last-child {
	border-bottom-left-radius: 2px;
	border-bottom-right-radius: 2px;
	}

/* zoom control */

.leaflet-control-zoom-in,
.leaflet-control-zoom-out {
	font: bold 18px 'Lucida Console', Monaco, monospace;
	text-indent: 1px;
	}

.leaflet-touch .leaflet-control-zoom-in, .leaflet-touch .leaflet-control-zoom-out  {
	font-size: 22px;
	}


/* layers control */

.leaflet-control-layers {
	box-shadow: 0 1px 5px rgba(0,0,0,0.4);
	background: #fff;
	border-radius: 5px;
	}
.leaflet-control-layers-toggle {
	background-image: url(/packs/_/_/node_modules/leaflet/dist/images/layers-a6137456ed160d7606981aa57c559898.png);
	width: 36px;
	height: 36px;
	}
.leaflet-retina .leaflet-control-layers-toggle {
	background-image: url(/packs/_/_/node_modules/leaflet/dist/images/layers-2x-4f0283c6ce28e888000e978e537a6a56.png);
	background-size: 26px 26px;
	}
.leaflet-touch .leaflet-control-layers-toggle {
	width: 44px;
	height: 44px;
	}
.leaflet-control-layers .leaflet-control-layers-list,
.leaflet-control-layers-expanded .leaflet-control-layers-toggle {
	display: none;
	}
.leaflet-control-layers-expanded .leaflet-control-layers-list {
	display: block;
	position: relative;
	}
.leaflet-control-layers-expanded {
	padding: 6px 10px 6px 6px;
	color: #333;
	background: #fff;
	}
.leaflet-control-layers-scrollbar {
	overflow-y: scroll;
	overflow-x: hidden;
	padding-right: 5px;
	}
.leaflet-control-layers-selector {
	margin-top: 2px;
	position: relative;
	top: 1px;
	}
.leaflet-control-layers label {
	display: block;
	}
.leaflet-control-layers-separator {
	height: 0;
	border-top: 1px solid #ddd;
	margin: 5px -10px 5px -6px;
	}

/* Default icon URLs */
.leaflet-default-icon-path {
	background-image: url(/packs/_/_/node_modules/leaflet/dist/images/marker-icon-2273e3d8ad9264b7daa5bdbf8e6b47f8.png);
	}


/* attribution and scale controls */

.leaflet-container .leaflet-control-attribution {
	background: #fff;
	background: rgba(255, 255, 255, 0.7);
	margin: 0;
	}
.leaflet-control-attribution,
.leaflet-control-scale-line {
	padding: 0 5px;
	color: #333;
	}
.leaflet-control-attribution a {
	text-decoration: none;
	}
.leaflet-control-attribution a:hover {
	text-decoration: underline;
	}
.leaflet-container .leaflet-control-attribution,
.leaflet-container .leaflet-control-scale {
	font-size: 11px;
	}
.leaflet-left .leaflet-control-scale {
	margin-left: 5px;
	}
.leaflet-bottom .leaflet-control-scale {
	margin-bottom: 5px;
	}
.leaflet-control-scale-line {
	border: 2px solid #777;
	border-top: none;
	line-height: 1.1;
	padding: 2px 5px 1px;
	font-size: 11px;
	white-space: nowrap;
	overflow: hidden;
	-moz-box-sizing: border-box;
	     box-sizing: border-box;

	background: #fff;
	background: rgba(255, 255, 255, 0.5);
	}
.leaflet-control-scale-line:not(:first-child) {
	border-top: 2px solid #777;
	border-bottom: none;
	margin-top: -2px;
	}
.leaflet-control-scale-line:not(:first-child):not(:last-child) {
	border-bottom: 2px solid #777;
	}

.leaflet-touch .leaflet-control-attribution,
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
	box-shadow: none;
	}
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
	border: 2px solid rgba(0,0,0,0.2);
	background-clip: padding-box;
	}


/* popup */

.leaflet-popup {
	position: absolute;
	text-align: center;
	margin-bottom: 20px;
	}
.leaflet-popup-content-wrapper {
	padding: 1px;
	text-align: left;
	border-radius: 12px;
	}
.leaflet-popup-content {
	margin: 13px 19px;
	line-height: 1.4;
	}
.leaflet-popup-content p {
	margin: 18px 0;
	}
.leaflet-popup-tip-container {
	width: 40px;
	height: 20px;
	position: absolute;
	left: 50%;
	margin-left: -20px;
	overflow: hidden;
	pointer-events: none;
	}
.leaflet-popup-tip {
	width: 17px;
	height: 17px;
	padding: 1px;

	margin: -10px auto 0;

	-webkit-transform: rotate(45deg);
	   -moz-transform: rotate(45deg);
	    -ms-transform: rotate(45deg);
	     -o-transform: rotate(45deg);
	        transform: rotate(45deg);
	}
.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
	background: white;
	color: #333;
	box-shadow: 0 3px 14px rgba(0,0,0,0.4);
	}
.leaflet-container a.leaflet-popup-close-button {
	position: absolute;
	top: 0;
	right: 0;
	padding: 4px 4px 0 0;
	border: none;
	text-align: center;
	width: 18px;
	height: 14px;
	font: 16px/14px Tahoma, Verdana, sans-serif;
	color: #c3c3c3;
	text-decoration: none;
	font-weight: bold;
	background: transparent;
	}
.leaflet-container a.leaflet-popup-close-button:hover {
	color: #999;
	}
.leaflet-popup-scrolled {
	overflow: auto;
	border-bottom: 1px solid #ddd;
	border-top: 1px solid #ddd;
	}

.leaflet-oldie .leaflet-popup-content-wrapper {
	zoom: 1;
	}
.leaflet-oldie .leaflet-popup-tip {
	width: 24px;
	margin: 0 auto;

	-ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)";
	filter: progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678);
	}
.leaflet-oldie .leaflet-popup-tip-container {
	margin-top: -1px;
	}

.leaflet-oldie .leaflet-control-zoom,
.leaflet-oldie .leaflet-control-layers,
.leaflet-oldie .leaflet-popup-content-wrapper,
.leaflet-oldie .leaflet-popup-tip {
	border: 1px solid #999;
	}


/* div icon */

.leaflet-div-icon {
	background: #fff;
	border: 1px solid #666;
	}


/* Tooltip */
/* Base styles for the element that has a tooltip */
.leaflet-tooltip {
	position: absolute;
	padding: 6px;
	background-color: #fff;
	border: 1px solid #fff;
	border-radius: 3px;
	color: #222;
	white-space: nowrap;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	pointer-events: none;
	box-shadow: 0 1px 3px rgba(0,0,0,0.4);
	}
.leaflet-tooltip.leaflet-clickable {
	cursor: pointer;
	pointer-events: auto;
	}
.leaflet-tooltip-top:before,
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
	position: absolute;
	pointer-events: none;
	border: 6px solid transparent;
	background: transparent;
	content: "";
	}

/* Directions */

.leaflet-tooltip-bottom {
	margin-top: 6px;
}
.leaflet-tooltip-top {
	margin-top: -6px;
}
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-top:before {
	left: 50%;
	margin-left: -6px;
	}
.leaflet-tooltip-top:before {
	bottom: 0;
	margin-bottom: -12px;
	border-top-color: #fff;
	}
.leaflet-tooltip-bottom:before {
	top: 0;
	margin-top: -12px;
	margin-left: -6px;
	border-bottom-color: #fff;
	}
.leaflet-tooltip-left {
	margin-left: -6px;
}
.leaflet-tooltip-right {
	margin-left: 6px;
}
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
	top: 50%;
	margin-top: -6px;
	}
.leaflet-tooltip-left:before {
	right: 0;
	margin-right: -12px;
	border-left-color: #fff;
	}
.leaflet-tooltip-right:before {
	left: 0;
	margin-left: -12px;
	border-right-color: #fff;
	}
/**
 * Swiper 4.2.0
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://www.idangero.us/swiper/
 *
 * Copyright 2014-2018 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: March 16, 2018
 */
.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-invisible-blank-slide {
  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 {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}
.swiper-container-vertical > .swiper-pagination-progressbar {
  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;
}
/*===============================
=            Choices            =
===============================*/
.choices {
  position: relative;
  margin-bottom: 24px;
  font-size: 16px;
}

.choices:focus {
  outline: none;
}

.choices:last-child {
  margin-bottom: 0;
}

.choices.is-disabled .choices__inner, .choices.is-disabled .choices__input {
  background-color: #EAEAEA;
  cursor: not-allowed;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.choices.is-disabled .choices__item {
  cursor: not-allowed;
}

.choices[data-type*="select-one"] {
  cursor: pointer;
}

.choices[data-type*="select-one"] .choices__inner {
  padding-bottom: 7.5px;
}

.choices[data-type*="select-one"] .choices__input {
  display: block;
  width: 100%;
  padding: 10px;
  border-bottom: 1px solid #DDDDDD;
  background-color: #FFFFFF;
  margin: 0;
}

.choices[data-type*="select-one"] .choices__button {
  background-image: url(/packs/_/_/node_modules/choices.js/assets/icons/cross-inverse-46980de878e36e449f6e472cb2f9bd24.svg);
  padding: 0;
  background-size: 8px;
  height: 100%;
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -10px;
  margin-right: 25px;
  height: 20px;
  width: 20px;
  border-radius: 10em;
  opacity: .5;
}

.choices[data-type*="select-one"] .choices__button:hover, .choices[data-type*="select-one"] .choices__button:focus {
  opacity: 1;
}

.choices[data-type*="select-one"] .choices__button:focus {
  box-shadow: 0px 0px 0px 2px #00BCD4;
}

.choices[data-type*="select-one"]:after {
  content: "";
  height: 0;
  width: 0;
  border-style: solid;
  border-color: #333333 transparent transparent transparent;
  border-width: 5px;
  position: absolute;
  right: 11.5px;
  top: 50%;
  margin-top: -2.5px;
  pointer-events: none;
}

.choices[data-type*="select-one"].is-open:after {
  border-color: transparent transparent #333333 transparent;
  margin-top: -7.5px;
}

.choices[data-type*="select-one"][dir="rtl"]:after {
  left: 11.5px;
  right: auto;
}

.choices[data-type*="select-one"][dir="rtl"] .choices__button {
  right: auto;
  left: 0;
  margin-left: 25px;
  margin-right: 0;
}

.choices[data-type*="select-multiple"] .choices__inner, .choices[data-type*="text"] .choices__inner {
  cursor: text;
}

.choices[data-type*="select-multiple"] .choices__button, .choices[data-type*="text"] .choices__button {
  position: relative;
  display: inline-block;
  margin-top: 0;
  margin-right: -4px;
  margin-bottom: 0;
  margin-left: 8px;
  padding-left: 16px;
  border-left: 1px solid #008fa1;
  background-image: url(/packs/_/_/node_modules/choices.js/assets/icons/cross-26f0a45f7da51fd7483bfa5552e71381.svg);
  background-size: 8px;
  width: 8px;
  line-height: 1;
  opacity: .75;
}

.choices[data-type*="select-multiple"] .choices__button:hover, .choices[data-type*="select-multiple"] .choices__button:focus, .choices[data-type*="text"] .choices__button:hover, .choices[data-type*="text"] .choices__button:focus {
  opacity: 1;
}

.choices__inner {
  display: inline-block;
  vertical-align: top;
  width: 100%;
  background-color: #f9f9f9;
  padding: 7.5px 7.5px 3.75px;
  border: 1px solid #DDDDDD;
  border-radius: 2.5px;
  font-size: 14px;
  min-height: 44px;
  overflow: hidden;
}

.is-focused .choices__inner, .is-open .choices__inner {
  border-color: #b7b7b7;
}

.is-open .choices__inner {
  border-radius: 2.5px 2.5px 0 0;
}

.is-flipped.is-open .choices__inner {
  border-radius: 0 0 2.5px 2.5px;
}

.choices__list {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.choices__list--single {
  display: inline-block;
  padding: 4px 16px 4px 4px;
  width: 100%;
}

[dir="rtl"] .choices__list--single {
  padding-right: 4px;
  padding-left: 16px;
}

.choices__list--single .choices__item {
  width: 100%;
}

.choices__list--multiple {
  display: inline;
}

.choices__list--multiple .choices__item {
  display: inline-block;
  vertical-align: middle;
  border-radius: 20px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 500;
  margin-right: 3.75px;
  margin-bottom: 3.75px;
  background-color: #00BCD4;
  border: 1px solid #00a5bb;
  color: #FFFFFF;
  word-break: break-all;
}

.choices__list--multiple .choices__item[data-deletable] {
  padding-right: 5px;
}

[dir="rtl"] .choices__list--multiple .choices__item {
  margin-right: 0;
  margin-left: 3.75px;
}

.choices__list--multiple .choices__item.is-highlighted {
  background-color: #00a5bb;
  border: 1px solid #008fa1;
}

.is-disabled .choices__list--multiple .choices__item {
  background-color: #aaaaaa;
  border: 1px solid #919191;
}

.choices__list--dropdown {
  display: none;
  z-index: 1;
  position: absolute;
  width: 100%;
  background-color: #FFFFFF;
  border: 1px solid #DDDDDD;
  top: 100%;
  margin-top: -1px;
  border-bottom-left-radius: 2.5px;
  border-bottom-right-radius: 2.5px;
  overflow: hidden;
  word-break: break-all;
}

.choices__list--dropdown.is-active {
  display: block;
}

.is-open .choices__list--dropdown {
  border-color: #b7b7b7;
}

.is-flipped .choices__list--dropdown {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: -1px;
  border-radius: .25rem .25rem 0 0;
}

.choices__list--dropdown .choices__list {
  position: relative;
  max-height: 300px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  will-change: scroll-position;
}

.choices__list--dropdown .choices__item {
  position: relative;
  padding: 10px;
  font-size: 14px;
}

[dir="rtl"] .choices__list--dropdown .choices__item {
  text-align: right;
}

@media (min-width: 640px) {
  .choices__list--dropdown .choices__item--selectable {
    padding-right: 100px;
  }
  .choices__list--dropdown .choices__item--selectable:after {
    content: attr(data-select-text);
    font-size: 12px;
    opacity: 0;
    position: absolute;
    right: 10px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  [dir="rtl"] .choices__list--dropdown .choices__item--selectable {
    text-align: right;
    padding-left: 100px;
    padding-right: 10px;
  }
  [dir="rtl"] .choices__list--dropdown .choices__item--selectable:after {
    right: auto;
    left: 10px;
  }
}

.choices__list--dropdown .choices__item--selectable.is-highlighted {
  background-color: #f2f2f2;
}

.choices__list--dropdown .choices__item--selectable.is-highlighted:after {
  opacity: .5;
}

.choices__item {
  cursor: default;
}

.choices__item--selectable {
  cursor: pointer;
}

.choices__item--disabled {
  cursor: not-allowed;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  opacity: .5;
}

.choices__heading {
  font-weight: 600;
  font-size: 12px;
  padding: 10px;
  border-bottom: 1px solid #f7f7f7;
  color: gray;
}

.choices__button {
  text-indent: -9999px;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  border: 0;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
}

.choices__button:focus {
  outline: none;
}

.choices__input {
  display: inline-block;
  vertical-align: baseline;
  background-color: #f9f9f9;
  font-size: 14px;
  margin-bottom: 5px;
  border: 0;
  border-radius: 0;
  max-width: 100%;
  padding: 4px 0 4px 2px;
}

.choices__input:focus {
  outline: 0;
}

[dir="rtl"] .choices__input {
  padding-right: 2px;
  padding-left: 0;
}

.choices__placeholder {
  opacity: .5;
}

/*=====  End of Choices  ======*/
/* normalize.css v6.0.0 | MIT License | github.com/necolas/normalize.css */
html {
  -webkit-text-size-adjust: 100%; /* 1 */
  line-height: 1.15; /* 2 */
  -ms-text-size-adjust: 100%; /* 2 */
}
article,
aside,
footer,
header,
nav,
section {
  display: block;
}
h1 {
  margin: 0.67em 0;
  font-size: 2em;
}
figcaption,
figure,
main {
/* 1 */
  display: block;
}
figure {
  margin: 1em 40px;
}
hr {
  overflow: visible; /* 1 */
  box-sizing: content-box; /* 1 */
  height: 0; /* 2 */
}
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}
a {
  background-color: transparent; /* 1 */
  -webkit-text-decoration-skip: objects; /* 2 */
}
abbr[title] {
  text-decoration: underline; /* 1 */
  text-decoration: underline dotted; /* 2 */
  border-bottom: none; /* 2 */
}
b,
strong {
  font-weight: inherit;
}
b,
strong {
  font-weight: bolder;
}
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}
dfn {
  font-style: italic;
}
mark {
  background-color: #ff0;
  color: #000;
}
small {
  font-size: 80%;
}
sub,
sup {
  position: relative;
  vertical-align: baseline;
  font-size: 75%;
  line-height: 0;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
audio,
video {
  display: inline-block;
}
audio:not([controls]) {
  display: none;
  height: 0;
}
img {
  border-style: none;
}
svg:not(:root) {
  overflow: hidden;
}
button,
input,
optgroup,
select,
textarea {
  margin: 0;
}
button,
input {
/* 1 */
  overflow: visible;
}
button,
select {
/* 1 */
  text-transform: none;
}
button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button; /* 2 */
}
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}
legend {
  display: table; /* 1 */
  box-sizing: border-box; /* 2 */
  max-width: 100%; /* 1 */
  padding: 0; /* 1 */
  white-space: normal; /* 3 */
  color: inherit; /* 1 */
}
progress {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}
textarea {
  overflow: auto;
}
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
[type="search"] {
  outline-offset: -2px; /* 1 */
}
[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
::-webkit-file-upload-button {
  font: inherit; /* 1 */
  -webkit-appearance: button; /* 2 */
}
details,
menu {
  display: block;
}
summary {
  display: list-item;
}
canvas {
  display: inline-block;
}
template {
  display: none;
}
[hidden] {
  display: none;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
}
fieldset {
  padding: 0;
  border: none;
}
button {
  outline: 0;
  padding: 0;
  font: inherit;
  border: 0;
  background: none;
  cursor: pointer;
}
button:active {
  color: currentColor;
}
textarea,
input {
  outline: 0;
  padding: 0;
  font: inherit;
  border: 0;
  background: none;
  -webkit-appearance: none;
  border-radius: 0;
}
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: inherit;
}
p {
  margin-top: 0;
}
.company-page__menu {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
@media only screen and (max-width: 46.9em) {
  .company-page__menu {
    display: none;
  }
}
.company-page__menu-item {
  text-transform: uppercase;
}
.company-page__menu-item:not(:last-child) {
  margin-right: 55px;
}
.company-page__menu-link {
  text-decoration: none;
  color: currentColor;
  transition: color 0.2s ease;
  position: relative;
  display: inline-block;
  vertical-align: top;
  padding-bottom: 40px;
}
.company-page__menu-link:hover,
.company-page__menu-link.active {
  color: #0cc;
}
.company-page__menu-link.active:after {
  opacity: 1;
}
.company-page__menu-link:after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: currentColor;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.company-page__scroll-indicator {
  position: fixed;
  right: 100%;
  bottom: 0;
  width: 100%;
  height: 5px;
  background: #0cc;
  transition: transform 0.5s ease;
  z-index: 3;
}
.contact .contact__form {
  min-height: auto;
}
.contact__inner {
  max-width: 820px;
}
.contact .contact__controls {
  margin-bottom: 36px;
}
.contact__banner {
  background-color: #f9f9f9;
  background-size: cover;
  background-position: 50%;
  padding-top: 90px;
  padding-bottom: 1px;
}
@media only screen and (max-width: 46.9em) {
  .contact__banner {
    padding-top: 40px;
  }
}
.contact__banner-inner {
  padding-left: 40px;
  padding-right: 40px;
  margin-left: auto;
  margin-right: auto;
  max-width: 1250px;
  display: flex;
  align-items: flex-start;
}
@media only screen and (max-width: 80em) {
  .contact__banner-inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media only screen and (max-width: 80em) {
  .contact__banner-inner {
    display: block;
  }
}
.contact__column {
  width: 50%;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-bottom: 60px;
}
@media only screen and (max-width: 80em) {
  .contact__column {
    width: 100%;
  }
}
@media only screen and (max-width: 46.9em) {
  .contact__column {
    margin-bottom: 40px;
  }
}
.contact__column:last-child {
  padding-left: 20px;
}
@media only screen and (max-width: 80em) {
  .contact__column:last-child {
    padding-left: 0;
  }
}
.contact__subcolumn {
  width: 50%;
  padding-right: 20px;
  min-width: 165px;
}
.contact__title {
  font-family: 'Avalon', Helvetica, sans-serif;
  font-weight: 600;
  font-size: 38px;
  text-transform: uppercase;
  width: 100%;
  margin-bottom: 50px;
}
@media only screen and (max-width: 46.9em) {
  .contact__title {
    font-size: 32px;
  }
}
.contact__subtitle {
  font-family: 'Avalon', Helvetica, sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.666666666666667;
  text-transform: uppercase;
  margin-bottom: 14px;
}
@media only screen and (max-width: 46.9em) {
  .contact__subtitle {
    font-size: 16px;
  }
}
.contact__text p {
  font-size: 15px;
  line-height: 1.615384615384615;
  text-transform: uppercase;
  margin-bottom: 34px;
}
@media only screen and (max-width: 46.9em) {
  .contact__text p {
    font-size: 14px;
  }
}
.contact__text a {
  text-decoration: none;
  color: currentColor;
  transition: color 0.2s ease;
}
.contact__text a:hover,
.contact__text a.active {
  color: #0cc;
}
.contact li,
.contact__list-item {
  font-size: 15px;
  line-height: 1.615384615384615;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-left: 26px;
  position: relative;
  background-image: url(/packs/assets/images/check-a1b1e3fee284a5258d7def758462a7af.svg);
  background-repeat: no-repeat;
  background-size: 10px;
  background-position: 1px 8px;
}
@media only screen and (max-width: 46.9em) {
  .contact li,
  .contact__list-item {
    font-size: 14px;
  }
}
.contact li .icon,
.contact__list-item .icon {
  font-size: 6px;
  position: absolute;
  left: 0;
  top: 7px;
}
.contact__call-block {
  max-width: 826px;
  position: relative;
}
.contact__call-buttons {
  display: flex;
  flex-wrap: wrap;
}
.contact__call-item {
  height: 215px;
  width: 50%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: opacity 0.3s ease;
}
.contact__call-item:after {
  position: absolute;
  content: '';
  background: #f7f7f7;
  z-index: 1;
  transition: left 0.3s, top 0.3s, right 0.3s, bottom 0.3s;
  will-change: left, top, right, bottomit;
  left: 13px;
  right: 13px;
  top: 13px;
  bottom: 13px;
}
@media only screen and (max-width: 46.9em) {
  .contact__call-item:after {
    left: 10px;
    right: 10px;
    top: 10px;
    bottom: 10px;
  }
}
.contact__call-block_opened .contact__call-item:after {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.contact__call-item-inner {
  opacity: 1;
  transition: opacity 0.3s ease;
  position: relative;
  z-index: 2;
}
.contact__call-block_opened .contact__call-item-inner {
  opacity: 0;
}
.contact__call-item-icon {
  display: block;
  height: 36px;
  max-width: 36px;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
}
.contact__call-title {
  font-size: 15px;
  line-height: 1.615384615384615;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  vertical-align: top;
  padding-bottom: 10px;
  transition: color 0.2s ease;
  overflow: hidden;
  line-height: 1;
  transform: translateZ(0);
}
@media only screen and (max-width: 46.9em) {
  .contact__call-title {
    font-size: 14px;
  }
}
.contact__call-title:after {
  content: '';
  width: 100%;
  height: 2px;
  right: 100%;
  bottom: 0;
  background: #0cc;
  position: absolute;
  transform: translateX(0%) translateZ(0);
  transition: transform 0.2s ease;
}
.contact__call-item:hover .contact__call-title:after {
  transform: translateX(100%) translateZ(0);
}
.contact__call-window {
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 46px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2;
}
@media only screen and (max-width: 46.9em) {
  .contact__call-window {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.contact__window-close {
  font-size: 15px;
  line-height: 1.615384615384615;
  position: relative;
  display: inline-block;
  vertical-align: top;
  padding-bottom: 8px;
  text-decoration: none;
  color: currentColor;
  transition: color 0.2s ease;
  overflow: hidden;
  line-height: 1.2;
  transform: translateZ(0);
  text-transform: uppercase;
  position: absolute;
  right: 30px;
  top: 30px;
}
@media only screen and (max-width: 46.9em) {
  .contact__window-close {
    font-size: 14px;
  }
}
.contact__window-close:hover:not([disabled]),
.contact__window-close:focus:not([disabled]),
.contact__window-close.active {
  color: currentColor;
}
.contact__window-close:hover:not([disabled]):after,
.contact__window-close:focus:not([disabled]):after,
.contact__window-close.active:after {
  transform: translateX(100%) translateZ(0);
}
.contact__window-close:after {
  content: '';
  width: 100%;
  height: 2px;
  right: 100%;
  bottom: 0;
  background: #0cc;
  position: absolute;
  transform: translateX(0%) translateZ(0);
  transition: transform 0.2s ease;
}
@media only screen and (max-width: 46.9em) {
  .contact__window-close {
    right: 20px;
    top: 20px;
  }
}
.contact__window-head {
  font-size: 26px;
  line-height: 1.666666666666667;
  text-align: center;
  width: 100%;
  margin-bottom: 44px;
}
@media only screen and (max-width: 46.9em) {
  .contact__window-head {
    font-size: 20px;
  }
}
@media only screen and (max-width: 46.9em) {
  .contact__window-head {
    margin-bottom: 30px;
  }
}
.contact__window-head a {
  text-decoration: none;
  color: currentColor;
  transition: color 0.2s ease;
}
.contact__window-head a:hover,
.contact__window-head a.active {
  color: #0cc;
}
.contact__window-head .icon {
  font-size: 0.833333333333333em;
  vertical-align: inherit;
  margin-right: 0.583333333333333em;
}
.contact__window-column-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
.contact__window-column {
  width: 50%;
  padding-left: 20px;
  padding-right: 20px;
  margin-bottom: 40px;
}
@media only screen and (max-width: 46.9em) {
  .contact__window-column {
    padding-left: 10px;
    padding-right: 10px;
    width: 100%;
  }
}
.contact__window-title {
  font-size: 16px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.contact__window-list {
  font-size: 15px;
  line-height: 1.615384615384615;
  display: flex;
  flex-wrap: wrap;
  text-transform: uppercase;
  line-height: inherit;
}
@media only screen and (max-width: 46.9em) {
  .contact__window-list {
    font-size: 14px;
  }
}
.contact__window-item {
  width: 50%;
}
.contact__window-item:nth-child(2n + 1) {
  padding-right: 10px;
}
.contact__window-item:nth-child(2n) {
  padding-left: 10px;
}
.contact__window-subtitle {
  color: #565656;
}
.contact__window-text {
  font-size: 15px;
  line-height: 1.615384615384615;
  max-width: 280px;
}
@media only screen and (max-width: 46.9em) {
  .contact__window-text {
    font-size: 14px;
  }
}
.contact__window-text p {
  margin-bottom: 20px;
}
.contact__window-text a {
  text-decoration: none;
  color: currentColor;
  transition: color 0.2s ease;
  color: #0cc;
}
.contact__window-text a:hover,
.contact__window-text a.active {
  color: #0cc;
}
.contact__window-text a:hover {
  color: currentColor;
}
.downloads__body-mobile {
  padding-left: 40px;
  padding-right: 40px;
  margin-left: auto;
  margin-right: auto;
  font-size: 20px;
  line-height: 1.666666666666667;
  padding-top: 50px;
  padding-bottom: 100px;
  background: #161616;
  color: #fff;
  text-align: center;
  display: none;
}
@media only screen and (max-width: 80em) {
  .downloads__body-mobile {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media only screen and (max-width: 46.9em) {
  .downloads__body-mobile {
    font-size: 16px;
  }
}
@media only screen and (max-width: 46.9em) {
  .downloads__body-mobile {
    display: block;
  }
}
.downloads__body {
  background: #f6f6f6;
}
@media only screen and (max-width: 46.9em) {
  .downloads__body {
    display: none;
  }
}
.downloads__body-mobile-text {
  max-width: 260px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}
.downloads__result {
  padding-bottom: 100px;
}
.downloads__table-wrapper {
  overflow-x: auto;
}
.downloads__table {
  width: 100%;
  border-collapse: collapse;
}
.downloads__table tr:nth-child(2n + 1):not(:first-child) {
  background: #efefef;
}
.downloads__table th,
.downloads__table td {
  padding-left: 40px;
  padding-right: 40px;
  margin-left: auto;
  margin-right: auto;
  font-size: 15px;
  line-height: 1.615384615384615;
}
@media only screen and (max-width: 80em) {
  .downloads__table th,
  .downloads__table td {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media only screen and (max-width: 46.9em) {
  .downloads__table th,
  .downloads__table td {
    font-size: 14px;
  }
}
.downloads__table th:not(:last-child),
.downloads__table td:not(:last-child) {
  padding-right: 0;
}
.downloads__table th:last-child,
.downloads__table td:last-child {
  width: 180px;
}
.downloads__table th {
  text-transform: uppercase;
  text-align: left;
  padding-top: 22px;
  padding-bottom: 22px;
  font-weight: inherit;
}
.downloads__table td {
  font-family: 'Avalon', Helvetica, sans-serif;
  font-weight: 600;
  padding-top: 7px;
  padding-bottom: 4px;
}
.downloads__table a {
  font-family: 'Futura', Helvetica, sans-serif;
  font-weight: 300;
  position: relative;
  display: inline-block;
  vertical-align: top;
  padding-bottom: 8px;
  text-decoration: none;
  color: currentColor;
  transition: color 0.2s ease;
  overflow: hidden;
  line-height: 1.2;
  transform: translateZ(0);
  text-transform: uppercase;
  line-height: inherit;
  padding-bottom: 4px;
}
.downloads__table a:hover:not([disabled]),
.downloads__table a:focus:not([disabled]),
.downloads__table a.active {
  color: currentColor;
}
.downloads__table a:hover:not([disabled]):after,
.downloads__table a:focus:not([disabled]):after,
.downloads__table a.active:after {
  transform: translateX(100%) translateZ(0);
}
.downloads__table a:after {
  content: '';
  width: 100%;
  height: 2px;
  right: 100%;
  bottom: 0;
  background: #0cc;
  position: absolute;
  transform: translateX(0%) translateZ(0);
  transition: transform 0.2s ease;
}
.error-page__title {
  font-family: 'Avalon', Helvetica, sans-serif;
  font-weight: 600;
  font-size: 200px;
  line-height: 1;
  margin-bottom: 46px;
}
@media only screen and (max-width: 46.9em) {
  .error-page__title {
    font-size: 120px;
  }
}
.error-page__description {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 48px;
}
.error-page__buttons {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 46.9em) {
  .error-page__buttons {
    margin-left: -10px;
    margin-right: -10px;
  }
}
.error-page__button {
  font-size: 15px;
  line-height: 1.615384615384615;
  display: inline-block;
  vertical-align: top;
  text-decoration: none;
  padding: 15px 20px;
  background: #252525;
  color: #fff;
  text-transform: uppercase;
  margin: 0 24px;
  transition: background 0.3s ease;
  transform: translateZ(0);
}
@media only screen and (max-width: 46.9em) {
  .error-page__button {
    font-size: 14px;
  }
}
@media only screen and (max-width: 46.9em) {
  .error-page__button {
    margin: 0 10px;
  }
}
.error-page__button:hover {
  background: #0cc;
}
@media only screen and (max-width: 46.9em) {
  .knowledge-center__search-link {
    display: none !important;
  }
}
.knowledge-center__search-select {
  display: none;
  margin-right: auto;
  flex-grow: 1;
}
@media only screen and (max-width: 46.9em) {
  .knowledge-center__search-select {
    width: 130px;
    display: inline-block;
    vertical-align: top;
  }
}
.login {
  align-items: center;
}
.login__inner {
  max-width: 604px;
}
.login__title {
  font-family: 'Avalon', Helvetica, sans-serif;
  font-weight: 600;
  font-size: 120px;
  line-height: 1.304347826086957;
  text-transform: uppercase;
  margin-bottom: 62px;
  text-align: center;
}
@media only screen and (max-width: 46.9em) {
  .login__title {
    font-size: 50px;
  }
}
.news-page .news-page__head {
  display: flex;
  align-items: flex-end;
  padding-bottom: 50px;
}
.news-page__date {
  text-transform: uppercase;
}
.news-page__tags {
  margin-top: 74px;
  text-transform: uppercase;
}
.news-page .news-page__title {
  padding-top: 8px;
}
.regional-websites {
  background-size: cover;
  background-position: 50%;
  background-color: #fff;
}
.regional-websites__title {
  font-family: 'Avalon', Helvetica, sans-serif;
  font-weight: 600;
  font-size: 80px;
  line-height: 1.125;
  text-transform: uppercase;
}
@media only screen and (max-width: 80em) {
  .regional-websites__title {
    font-size: 60px;
  }
}
@media only screen and (max-width: 46.9em) {
  .regional-websites__title {
    font-size: 50px;
  }
}
.regional-websites__list {
  width: 50%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 92px;
  display: flex;
  flex-wrap: wrap;
}
@media only screen and (max-width: 80em) {
  .regional-websites__list {
    width: 100%;
  }
}
@media only screen and (max-width: 46.9em) {
  .regional-websites__list {
    max-width: 220px;
  }
}
.regional-websites__item {
  font-size: 26px;
  line-height: 1.666666666666667;
  line-height: 1;
  position: relative;
  text-transform: uppercase;
  margin-bottom: 26px;
  width: 50%;
  margin-left: 0;
  white-space: nowrap;
}
@media only screen and (max-width: 46.9em) {
  .regional-websites__item {
    font-size: 20px;
  }
}
@media only screen and (max-width: 46.9em) {
  .regional-websites__item {
    width: 100%;
  }
}
.regional-websites__item:nth-child(2n) {
  padding-left: 40px;
}
@media only screen and (max-width: 46.9em) {
  .regional-websites__item:nth-child(2n) {
    padding-left: 0;
  }
}
.regional-websites__link {
  position: relative;
  display: inline-block;
  vertical-align: top;
  padding-bottom: 8px;
  text-decoration: none;
  color: currentColor;
  transition: color 0.2s ease;
  overflow: hidden;
  line-height: 1.2;
  transform: translateZ(0);
  padding-bottom: 8px;
}
.regional-websites__link:hover:not([disabled]),
.regional-websites__link:focus:not([disabled]),
.regional-websites__link.active {
  color: #161616;
}
.regional-websites__link:hover:not([disabled]):after,
.regional-websites__link:focus:not([disabled]):after,
.regional-websites__link.active:after {
  transform: translateX(100%) translateZ(0);
}
.regional-websites__link:after {
  content: '';
  width: 100%;
  height: 2px;
  right: 100%;
  bottom: 0;
  background: #0cc;
  position: absolute;
  transform: translateX(0%) translateZ(0);
  transition: transform 0.2s ease;
}
.regional-websites__flag-image {
  display: inline-block;
  vertical-align: top;
  margin-top: 5px;
  margin-right: 20px;
  width: 24px;
  height: auto;
}
@media only screen and (max-width: 46.9em) {
  .regional-websites__flag-image {
    position: relative;
    right: 0;
  }
}
.register-product__inner {
  max-width: 820px;
}
.search-page {
  padding-left: 40px;
  padding-right: 40px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 180px;
  min-height: 100vh;
  padding-bottom: 100px;
}
@media only screen and (max-width: 80em) {
  .search-page {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media only screen and (max-width: 46.9em) {
  .search-page {
    padding-top: 120px;
  }
}
.search-page__container {
  padding-left: 280px;
  padding-right: 170px;
}
@media only screen and (max-width: 80em) {
  .search-page__container {
    padding: 0;
  }
}
.search-page__form {
  position: relative;
  margin-bottom: 40px;
}
.search-page__form .icon {
  position: absolute;
  font-size: 22px;
  color: currentColor;
  top: 0;
  left: 0;
}
.search-page__input {
  font-size: 15px;
  line-height: 1.615384615384615;
  width: 100%;
  color: currentColor;
  height: 40px;
  padding-bottom: 16px;
  border-bottom: 1px solid #ccc;
  padding-left: 40px;
}
.search-page__input:-webkit-autofill,
.search-page__input:-webkit-autofill:hover,
.search-page__input:-webkit-autofill:focus {
  transition: background-color 5000s ease-in-out 0s;
  -webkit-text-fill-color: #161616;
  border-color: #161616;
}
@media only screen and (max-width: 46.9em) {
  .search-page__input {
    font-size: 14px;
  }
}
.search-page__submit {
  font-size: 15px;
  line-height: 1.615384615384615;
  position: relative;
  display: inline-block;
  vertical-align: top;
  padding-bottom: 8px;
  text-decoration: none;
  color: currentColor;
  transition: color 0.2s ease;
  overflow: hidden;
  line-height: 1.2;
  transform: translateZ(0);
  position: absolute;
  right: 0;
  top: 5px;
}
@media only screen and (max-width: 46.9em) {
  .search-page__submit {
    font-size: 14px;
  }
}
.search-page__submit:hover:not([disabled]),
.search-page__submit:focus:not([disabled]),
.search-page__submit.active {
  color: #161616;
}
.search-page__submit:hover:not([disabled]):after,
.search-page__submit:focus:not([disabled]):after,
.search-page__submit.active:after {
  transform: translateX(100%) translateZ(0);
}
.search-page__submit:after {
  content: '';
  width: 100%;
  height: 2px;
  right: 100%;
  bottom: 0;
  background: #0cc;
  position: absolute;
  transform: translateX(0%) translateZ(0);
  transition: transform 0.2s ease;
}
.search-page__subtitle {
  font-size: 15px;
  line-height: 1.615384615384615;
  margin-bottom: 14px;
}
@media only screen and (max-width: 46.9em) {
  .search-page__subtitle {
    font-size: 14px;
  }
}
.search-page__carousel {
  padding-bottom: 16px;
  border-bottom: 1px solid #e5e5e5;
  margin-bottom: 28px;
}
.search-page__tabs {
  margin-top: 28px;
}
.search-page__result-list-item {
  background: #f9f9f9;
  padding: 16px 16px 10px;
}
.search-page__result-list-item:not(:last-child) {
  margin-bottom: 1px;
}
.search-page__result-list-link {
  font-size: 15px;
  line-height: 1.615384615384615;
  position: relative;
  display: inline-block;
  vertical-align: top;
  padding-bottom: 8px;
  text-decoration: none;
  color: currentColor;
  transition: color 0.2s ease;
  overflow: hidden;
  line-height: 1.2;
  transform: translateZ(0);
  color: #606060;
}
@media only screen and (max-width: 46.9em) {
  .search-page__result-list-link {
    font-size: 14px;
  }
}
.search-page__result-list-link:hover:not([disabled]),
.search-page__result-list-link:focus:not([disabled]),
.search-page__result-list-link.active {
  color: #161616;
}
.search-page__result-list-link:hover:not([disabled]):after,
.search-page__result-list-link:focus:not([disabled]):after,
.search-page__result-list-link.active:after {
  transform: translateX(100%) translateZ(0);
}
.search-page__result-list-link:after {
  content: '';
  width: 100%;
  height: 2px;
  right: 100%;
  bottom: 0;
  background: #0cc;
  position: absolute;
  transform: translateX(0%) translateZ(0);
  transition: transform 0.2s ease;
}
.search-page__search-menu-wrapper {
  margin-top: 40px;
  margin-bottom: 36px;
}
.search-page__search-menu {
  color: #999;
}
.search-page__search-menu-item {
  margin-bottom: 22px;
}
.search-page__search-menu-link {
  font-size: 15px;
  line-height: 1.615384615384615;
  position: relative;
  display: inline-block;
  vertical-align: top;
  padding-bottom: 8px;
  text-decoration: none;
  color: currentColor;
  transition: color 0.2s ease;
  overflow: hidden;
  line-height: 1.2;
  transform: translateZ(0);
}
@media only screen and (max-width: 46.9em) {
  .search-page__search-menu-link {
    font-size: 14px;
  }
}
.search-page__search-menu-link:hover:not([disabled]),
.search-page__search-menu-link:focus:not([disabled]),
.search-page__search-menu-link.active {
  color: currentColor;
}
.search-page__search-menu-link:hover:not([disabled]):after,
.search-page__search-menu-link:focus:not([disabled]):after,
.search-page__search-menu-link.active:after {
  transform: translateX(100%) translateZ(0);
}
.search-page__search-menu-link:after {
  content: '';
  width: 100%;
  height: 2px;
  right: 100%;
  bottom: 0;
  background: #0cc;
  position: absolute;
  transform: translateX(0%) translateZ(0);
  transition: transform 0.2s ease;
}
.sitemap {
  padding-left: 40px;
  padding-right: 40px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 135px;
  padding-bottom: 50px;
}
@media only screen and (max-width: 80em) {
  .sitemap {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.sitemap__title {
  font-family: 'Avalon', Helvetica, sans-serif;
  font-weight: 600;
  font-size: 80px;
  line-height: 1.125;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 130px;
}
@media only screen and (max-width: 80em) {
  .sitemap__title {
    font-size: 60px;
  }
}
@media only screen and (max-width: 46.9em) {
  .sitemap__title {
    font-size: 50px;
  }
}
.sitemap__list {
  display: flex;
  justify-content: center;
}
@media only screen and (max-width: 46.9em) {
  .sitemap__list {
    display: block;
  }
}
.sitemap__column {
  width: 25%;
  text-align: left;
  text-transform: uppercase;
  padding-right: 20px;
  margin-bottom: 30px;
}
@media only screen and (max-width: 80em) {
  .sitemap__column {
    width: 33.333333333333336%;
  }
}
@media only screen and (max-width: 46.9em) {
  .sitemap__column {
    width: 100%;
    padding-right: 0;
  }
}
.sitemap__column a {
  position: relative;
  display: inline-block;
  vertical-align: top;
  padding-bottom: 8px;
  text-decoration: none;
  color: currentColor;
  transition: color 0.2s ease;
  overflow: hidden;
  line-height: 1.2;
  transform: translateZ(0);
}
.sitemap__column a:hover:not([disabled]),
.sitemap__column a:focus:not([disabled]),
.sitemap__column a.active {
  color: currentColor;
}
.sitemap__column a:hover:not([disabled]):after,
.sitemap__column a:focus:not([disabled]):after,
.sitemap__column a.active:after {
  transform: translateX(100%) translateZ(0);
}
.sitemap__column a:after {
  content: '';
  width: 100%;
  height: 2px;
  right: 100%;
  bottom: 0;
  background: #0cc;
  position: absolute;
  transform: translateX(0%) translateZ(0);
  transition: transform 0.2s ease;
}
.sitemap__subgroup {
  padding-left: 22px;
}
.sitemap__group-item {
  font-size: 26px;
  line-height: 1.666666666666667;
  margin-bottom: 17px;
}
@media only screen and (max-width: 46.9em) {
  .sitemap__group-item {
    font-size: 20px;
  }
}
.sitemap__subgroup-item {
  font-size: 20px;
  line-height: 1.666666666666667;
  margin-bottom: 15px;
}
@media only screen and (max-width: 46.9em) {
  .sitemap__subgroup-item {
    font-size: 16px;
  }
}
.sitemap__item {
  font-size: 15px;
  line-height: 1.615384615384615;
  margin-bottom: 17px;
}
@media only screen and (max-width: 46.9em) {
  .sitemap__item {
    font-size: 14px;
  }
}
.support__subtitle {
  padding-left: 40px;
  padding-right: 40px;
  margin-left: auto;
  margin-right: auto;
  font-family: 'Avalon', Helvetica, sans-serif;
  font-weight: 600;
  font-size: 50px;
  line-height: 1.2;
  text-align: center;
  padding-top: 60px;
  padding-bottom: 55px;
}
@media only screen and (max-width: 80em) {
  .support__subtitle {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media only screen and (max-width: 46.9em) {
  .support__subtitle {
    font-size: 40px;
  }
}
.support__buttons {
  display: flex;
}
@media only screen and (max-width: 46.9em) {
  .support__buttons {
    flex-wrap: wrap;
  }
}
.support__button-input {
  opacity: 0;
  width: 0;
  height: 0;
}
.support__button-input:checked + .support__button-label {
  background: #f7f7f7;
  color: #000;
}
.support__button-label {
  padding-left: 40px;
  padding-right: 40px;
  margin-left: auto;
  margin-right: auto;
  font-size: 15px;
  line-height: 1.615384615384615;
  width: 25%;
  text-align: center;
  padding-top: 100px;
  padding-bottom: 100px;
  background: #fff;
  transition: all 0.3s ease;
  color: #8b8b8b;
  cursor: pointer;
}
@media only screen and (max-width: 80em) {
  .support__button-label {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media only screen and (max-width: 46.9em) {
  .support__button-label {
    font-size: 14px;
  }
}
@media only screen and (max-width: 46.9em) {
  .support__button-label {
    width: 50%;
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.support__button-label:hover {
  color: #000;
}
.support__button-icon {
  display: block;
  margin-left: auto;
  margin-right: auto;
  height: 64px;
  max-width: 64px;
  margin-bottom: 90px;
  opacity: 0.4;
  transition: opacity 0.3s;
  transform: translateZ(0);
}
.support__button-label:hover .support__button-icon,
.support__button-input:checked + .support__button-label .support__button-icon {
  opacity: 1;
}
@media only screen and (max-width: 46.9em) {
  .support__button-icon {
    height: 40px;
    max-width: 40px;
    margin-bottom: 20px;
  }
}
.support__select-wrapper {
  padding-left: 40px;
  padding-right: 40px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 80px;
  padding-bottom: 80px;
  max-width: 460px;
}
@media only screen and (max-width: 80em) {
  .support__select-wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.support .support__select {
  border-color: #c6c6c6;
}
.support__product {
  padding-left: 40px;
  padding-right: 40px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 200px;
  padding-bottom: 200px;
}
@media only screen and (max-width: 80em) {
  .support__product {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media only screen and (max-width: 46.9em) {
  .support__product {
    padding-top: 20px;
    padding-bottom: 80px;
  }
}
.support__product-inner {
  display: flex;
}
@media only screen and (max-width: 46.9em) {
  .support__product-inner {
    display: block;
  }
}
.support__preview-wrapper {
  width: 50%;
  padding-right: 40px;
}
@media only screen and (max-width: 46.9em) {
  .support__preview-wrapper {
    width: 100%;
    margin-bottom: 60px;
    padding-right: 0;
  }
}
.support__preview-inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 420px;
  width: 100%;
}
.support__product-content {
  width: 50%;
}
@media only screen and (max-width: 46.9em) {
  .support__product-content {
    width: 100%;
  }
}
.support__product-name {
  font-size: 15px;
  line-height: 1.615384615384615;
  text-transform: uppercase;
  margin-bottom: 45px;
}
@media only screen and (max-width: 46.9em) {
  .support__product-name {
    font-size: 14px;
  }
}
.support__product-image {
  max-width: 100%;
}
.support__tab-button {
  text-transform: uppercase;
}
.support__document {
  padding-top: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #e6e6e6;
  display: flex;
  align-items: center;
}
.support__document-title {
  text-transform: uppercase;
  display: flex;
  align-items: center;
  margin-right: auto;
}
.support__document-title .icon {
  font-size: 24px;
  margin-right: 12px;
  color: #bfbfbf;
}
.where-to-buy {
  position: relative;
  min-height: 100vh;
}
.where-to-buy__map-wrapper,
.where-to-buy__map {
  height: 100vh;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
}
.where-to-buy__map-wrapper img,
.where-to-buy__map img {
  opacity: 0.4 !important;
  filter: grayscale();
}
.where-to-buy__title {
  font-family: 'Avalon', Helvetica, sans-serif;
  font-weight: 600;
  font-size: 60px;
  line-height: 1.2;
  text-transform: uppercase;
  padding-top: 180px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 46.9em) {
  .where-to-buy__title {
    font-size: 40px;
  }
}
@media only screen and (max-width: 46.9em) {
  .where-to-buy__title {
    padding-top: 80px;
  }
}
.where-to-buy__mobile-controls {
  position: relative;
  z-index: 2;
  display: flex;
  margin-top: 35px;
}
.where-to-buy__mobile-control-wrapper {
  width: 50%;
}
.where-to-buy__mobile-control-wrapper:first-child {
  padding-right: 20px;
}
.where-to-buy__mobile-control-wrapper:last-child {
  padding-left: 20px;
}
.where-to-buy__mobile-control {
  position: relative;
  display: inline-block;
  vertical-align: top;
  padding-bottom: 8px;
  text-decoration: none;
  color: currentColor;
  transition: color 0.2s ease;
  overflow: hidden;
  line-height: 1.2;
  transform: translateZ(0);
  font-size: 22px;
  display: none;
  width: 100%;
  text-transform: uppercase;
  text-align: left;
}
.where-to-buy__mobile-control:hover:not([disabled]),
.where-to-buy__mobile-control:focus:not([disabled]),
.where-to-buy__mobile-control.active {
  color: currentColor;
}
.where-to-buy__mobile-control:hover:not([disabled]):after,
.where-to-buy__mobile-control:focus:not([disabled]):after,
.where-to-buy__mobile-control.active:after {
  transform: translateX(100%) translateZ(0);
}
.where-to-buy__mobile-control:after {
  content: '';
  width: 100%;
  height: 2px;
  right: 100%;
  bottom: 0;
  background: #0cc;
  position: absolute;
  transform: translateX(0%) translateZ(0);
  transition: transform 0.2s ease;
}
@media only screen and (max-width: 46.9em) {
  .where-to-buy__mobile-control {
    display: block;
  }
}
.where-to-buy__subtitle {
  font-size: 26px;
  line-height: 1.666666666666667;
  text-transform: uppercase;
  margin-bottom: 46px;
}
@media only screen and (max-width: 46.9em) {
  .where-to-buy__subtitle {
    font-size: 20px;
  }
}
@media only screen and (max-width: 46.9em) {
  .where-to-buy__subtitle {
    display: none;
  }
}
.where-to-buy__content {
  padding-left: 40px;
  padding-right: 40px;
  margin-left: auto;
  margin-right: auto;
  margin-top: -100vh;
  max-width: 75%;
  padding-bottom: 100px;
}
@media only screen and (max-width: 80em) {
  .where-to-buy__content {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media only screen and (max-width: 80em) {
  .where-to-buy__content {
    max-width: 100%;
  }
}
.where-to-buy__head {
  position: relative;
  z-index: 2;
  max-width: 500px;
}
.where-to-buy__list {
  margin-top: 92px;
  position: relative;
  z-index: 2;
  max-width: 300px;
}
@media only screen and (max-width: 46.9em) {
  .where-to-buy__list {
    margin-top: 50px;
  }
}
.where-to-buy__item {
  margin-bottom: 9px;
}
.where-to-buy__link {
  position: relative;
  display: inline-block;
  vertical-align: top;
  padding-bottom: 8px;
  text-decoration: none;
  color: currentColor;
  transition: color 0.2s ease;
  overflow: hidden;
  line-height: 1.2;
  transform: translateZ(0);
  text-transform: uppercase;
  padding-bottom: 8px;
}
.where-to-buy__link:hover:not([disabled]),
.where-to-buy__link:focus:not([disabled]),
.where-to-buy__link.active {
  color: #161616;
}
.where-to-buy__link:hover:not([disabled]):after,
.where-to-buy__link:focus:not([disabled]):after,
.where-to-buy__link.active:after {
  transform: translateX(100%) translateZ(0);
}
.where-to-buy__link:after {
  content: '';
  width: 100%;
  height: 2px;
  right: 100%;
  bottom: 0;
  background: #0cc;
  position: absolute;
  transform: translateX(0%) translateZ(0);
  transition: transform 0.2s ease;
}
.where-to-buy__item-icon {
  margin-right: 8px;
  width: 10px;
  height: auto;
}
.where-to-buy__marker {
  opacity: 1;
  transition: opacity 0.3s ease;
}
.where-to-buy__marker-icon {
  width: 100%;
  height: 100%;
  border-radius: 100%;
  background: #0cc;
}
.where-to-buy__marker-title {
  position: absolute;
  left: 30px;
  top: -3px;
  text-transform: uppercase;
  min-width: 150px;
  line-height: 2;
}
.about {
  padding-left: 40px;
  padding-right: 40px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  min-height: 50vh;
}
@media only screen and (max-width: 80em) {
  .about {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media only screen and (max-width: 46.9em) {
  .about {
    min-height: auto;
  }
}
.about__inner {
  width: 100%;
}
.about__title {
  font-family: 'Avalon', Helvetica, sans-serif;
  font-weight: 600;
  font-size: 80px;
  line-height: 1.125;
  text-transform: uppercase;
  text-align: center;
  padding-top: 180px;
  padding-bottom: 100px;
}
@media only screen and (max-width: 80em) {
  .about__title {
    font-size: 60px;
  }
}
@media only screen and (max-width: 46.9em) {
  .about__title {
    font-size: 50px;
  }
}
@media only screen and (max-width: 46.9em) {
  .about__title {
    padding-top: 100px;
    padding-bottom: 60px;
  }
}
.about__title p {
  margin: 0;
}
.about__menu {
  margin-bottom: 70px;
}
@media only screen and (max-width: 46.9em) {
  .about__menu {
    margin-bottom: 20px;
  }
}
.bright-block {
  display: flex;
  background-size: cover;
  background-position: 50%;
  position: relative;
  z-index: 0;
}
@media only screen and (max-width: 46.9em) {
  .bright-block {
    display: block;
  }
}
.bright-block_ui_black {
  color: #202020;
}
.bright-block_ui_white {
  color: #fff;
}
.bright-block__column {
  padding-left: 40px;
  padding-right: 40px;
  margin-left: auto;
  margin-right: auto;
  width: 25%;
  padding-top: 40px;
  padding-bottom: 40px;
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 800px;
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 80em) {
  .bright-block__column {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media only screen and (max-width: 46.9em) {
  .bright-block__column {
    padding-top: 20px;
    padding-bottom: 20px;
    width: 100%;
    min-height: 100px;
  }
}
.bright-block__column:hover:before,
.bright-block__column.active:before {
  opacity: 0;
}
.bright-block__column:before {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  content: '';
  background: rgba(32,32,32,0.2);
  opacity: 1;
  transition: opacity 0.3s;
  z-index: 1;
}
.bright-block__column:not(:last-child):after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 1px;
  background: currentColor;
  opacity: 0.15;
}
@media only screen and (max-width: 46.9em) {
  .bright-block__column:not(:last-child):after {
    width: 100%;
    height: 1px;
  }
}
.bright-block__cover {
  background-size: cover;
  background-position: 50%;
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  right: 0;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s;
}
.bright-block__cover.active {
  opacity: 1;
  z-index: 3;
}
.bright-block__cover:hover:after {
  opacity: 0.5;
}
.bright-block__cover:after {
  content: '+';
  position: absolute;
  top: 15px;
  right: 20px;
  transform: rotate(45deg) translateZ(0);
  font-size: 26px;
  opacity: 1;
  transition: opacity 0.3s;
}
.bright-block__head {
  font-size: 26px;
  line-height: 1.666666666666667;
  text-align: right;
  position: absolute;
  top: 10px;
  right: 20px;
  left: 20px;
  z-index: 2;
  opacity: 1;
  transition: opacity 0.3s;
}
@media only screen and (max-width: 46.9em) {
  .bright-block__head {
    font-size: 20px;
  }
}
.bright-block:hover .bright-block__head {
  opacity: 0.4;
}
.bright-block__column:hover .bright-block__head {
  opacity: 1;
}
.bright-block__content {
  position: relative;
  z-index: 2;
  opacity: 1;
  transition: opacity 0.3s;
}
.bright-block:hover .bright-block__content {
  opacity: 0.4;
}
.bright-block__column:hover .bright-block__content {
  opacity: 1;
}
.bright-block__title {
  font-family: 'Avalon', Helvetica, sans-serif;
  font-weight: 600;
  font-size: 32px;
  margin-bottom: 10px;
}
@media only screen and (max-width: 46.9em) {
  .bright-block__title {
    font-size: 18px;
  }
}
.bright-block__text {
  font-size: 15px;
  line-height: 1.615384615384615;
  line-height: initial;
  min-height: 40px;
}
@media only screen and (max-width: 46.9em) {
  .bright-block__text {
    font-size: 14px;
  }
}
@media only screen and (max-width: 46.9em) {
  .bright-block__text {
    min-height: auto;
  }
}
.button-cross {
  position: relative;
  width: 40px;
  height: 40px;
  color: currentColor;
  cursor: pointer;
  transition: transform 0.3s ease, opacity 0.3s ease, color 0.3s ease;
  transform: rotate(0) translateZ(0);
  cursor: pointer;
}
.button-cross:after {
  position: absolute;
  display: block;
  content: '';
  left: -40%;
  right: -40%;
  top: -40%;
  bottom: -40%;
}
@media only screen and (max-width: 46.9em) {
  .button-cross {
    width: 30px;
    height: 30px;
  }
}
.button-cross:hover .button-cross__inner:before {
  transform: translateY(-4px) rotate(0deg) translateZ(0);
}
.button-cross:hover .button-cross__inner:after {
  transform: translateY(4px) rotate(0deg) translateZ(0);
}
.button-cross_state_cross .button-cross__inner:before {
  transform: rotate(45deg) translateY(0px) translateZ(0) !important;
}
.button-cross_state_cross .button-cross__inner:after {
  transform: rotate(-45deg) translateY(0px) translateZ(0) !important;
}
.button-cross_color_black {
  color: #202020;
}
.button-cross_disabled {
  cursor: default;
  opacity: 0.4;
}
.button-cross__inner {
  display: block;
  position: absolute;
  height: 3px;
  top: 8px;
  width: 100%;
}
.button-cross__inner:before,
.button-cross__inner:after {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  content: '';
  transform-origin: 50%;
  width: 100%;
  background: currentColor;
  transition: transform 0.3s ease;
}
.button-cross__inner:before {
  transform: rotate(0) translateY(-6px) translateZ(0);
}
.button-cross__inner:after {
  transform: rotate(0) translateY(6px) translateZ(0);
}
.button {
  font-size: 15px;
  line-height: 1.615384615384615;
  text-decoration: none;
  display: inline-block;
  vertical-align: top;
  text-align: center;
  padding: 10px 30px;
  text-transform: uppercase;
  background-position: 50% 50%;
  color: #fff;
  transition: all 0.3s ease;
}
@media only screen and (max-width: 46.9em) {
  .button {
    font-size: 14px;
  }
}
.button:hover {
  background-position: 0% 0%;
}
.button_size_big {
  padding: 15px 25px;
}
.button_color_blue {
  background: #0cc;
  color: #161616;
}
.button_color_blue:hover {
  color: #fff;
}
.button_color_gray {
  background: #e6e6e6;
  color: #161616;
}
.button_color_gray:hover {
  background: #0cc;
  color: #fff;
}
.cards-block {
  padding-left: 40px;
  padding-right: 40px;
  margin-left: auto;
  margin-right: auto;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #161616;
  color: #fff;
  padding-top: 70px;
  padding-bottom: 25px;
}
@media only screen and (max-width: 80em) {
  .cards-block {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cards-block__title {
  font-size: 38px;
  text-align: center;
  margin-bottom: 45px;
}
@media only screen and (max-width: 46.9em) {
  .cards-block__title {
    font-size: 32px;
  }
}
.cards-block__items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
@media only screen and (max-width: 46.9em) {
  .cards-block__items {
    display: block;
  }
}
.cards-block__item {
  padding: 40px 30px 130px;
  max-width: 325px;
  width: 100%;
  background: #fff;
  color: #161616;
  margin-left: 45px;
  margin-right: 45px;
  margin-bottom: 45px;
  position: relative;
}
@media only screen and (max-width: 46.9em) {
  .cards-block__item {
    padding: 30px 20px 110px;
    margin-left: auto;
    margin-right: auto;
  }
}
.cards-block__item-title {
  font-size: 26px;
  line-height: 1.666666666666667;
  text-transform: uppercase;
  margin-bottom: 20px;
}
@media only screen and (max-width: 46.9em) {
  .cards-block__item-title {
    font-size: 20px;
  }
}
.cards-block__item-text {
  font-size: 15px;
  line-height: 1.615384615384615;
}
@media only screen and (max-width: 46.9em) {
  .cards-block__item-text {
    font-size: 14px;
  }
}
.cards-block__item-button {
  position: absolute;
  left: 30px;
  bottom: 50px;
}
@media only screen and (max-width: 46.9em) {
  .cards-block__item-button {
    left: 20px;
    bottom: 30px;
  }
}
.catalog-banner {
  padding-left: 40px;
  padding-right: 40px;
  margin-left: auto;
  margin-right: auto;
  background-size: cover;
  background-color: #fff;
  background-position: 50% 50%;
  padding-top: 140px;
  padding-bottom: 85px;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 80em) {
  .catalog-banner {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.catalog-banner_ui_white {
  background-color: #202020;
  color: #fff;
}
@media only screen and (max-width: 46.9em) {
  .catalog-banner {
    display: block;
  }
}
.catalog-banner__content {
  width: 50%;
  padding-right: 40px;
  text-align: center;
}
@media only screen and (max-width: 46.9em) {
  .catalog-banner__content {
    padding: 0;
    width: 100%;
    margin-bottom: 40px;
  }
}
.catalog-banner__content-inner {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.catalog-banner__image-wrapper {
  width: 50%;
  text-align: center;
  padding-left: 40px;
}
@media only screen and (max-width: 46.9em) {
  .catalog-banner__image-wrapper {
    padding: 0;
    width: 100%;
  }
}
.catalog-banner__image {
  max-width: 100%;
}
.catalog-banner__title {
  font-family: 'Avalon', Helvetica, sans-serif;
  font-weight: 600;
  font-size: 60px;
  line-height: 1.2;
  text-transform: uppercase;
  text-transform: none;
  margin-bottom: 35px;
}
@media only screen and (max-width: 46.9em) {
  .catalog-banner__title {
    font-size: 40px;
  }
}
.catalog-banner__description {
  font-size: 20px;
  line-height: 1.666666666666667;
}
@media only screen and (max-width: 46.9em) {
  .catalog-banner__description {
    font-size: 16px;
  }
}
.catalog {
  position: relative;
}
.catalog__body {
  background: #f9f9f9;
  position: relative;
  z-index: 1;
}
.catalog__body_ui_white {
  background-image: url(/packs/assets/images/noise-dark-8e0f50744c511a623d94364d7a60da58.jpg);
  background-color: #1f1f1f;
  background-repeat: repeat;
}
.catalog .catalog__filter {
  position: relative;
  z-index: 10;
}
.catalog__list {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  width: 100%;
  position: relative;
  z-index: 1;
}
.catalog__line {
  display: flex;
  width: 100%;
}
@media only screen and (max-width: 62em) {
  .catalog__line {
    display: block;
  }
}
.catalog__group {
  display: flex;
  flex-wrap: wrap;
  width: 50%;
  order: 2;
}
.catalog__line:nth-child(2n) .catalog__group:nth-child(2n) {
  order: 1;
}
@media only screen and (max-width: 62em) {
  .catalog__line:nth-child(2n) .catalog__group:nth-child(2n) {
    order: 2;
  }
}
@media only screen and (max-width: 62em) {
  .catalog__group {
    width: 100%;
    display: block;
  }
}
.catalog__item {
  width: 50%;
  flex-grow: 1;
  background: #fff;
}
@media only screen and (max-width: 62em) {
  .catalog__item {
    width: 100%;
  }
}
.catalog__item_simple {
  width: 25%;
  flex-grow: 0;
}
@media only screen and (max-width: 62em) {
  .catalog__item_simple {
    width: 100%;
  }
}
.catalog__item_simple:nth-child(8n + 1):not(.catalog__item_ui_white),
.catalog__item_simple:nth-child(8n + 3):not(.catalog__item_ui_white),
.catalog__item_simple:nth-child(8n + 6):not(.catalog__item_ui_white),
.catalog__item_simple:nth-child(8n + 8):not(.catalog__item_ui_white) {
  background: #f9f9f9;
}
@media only screen and (max-width: 62em) {
  .catalog__item_simple:nth-child(8n + 1):not(.catalog__item_ui_white),
  .catalog__item_simple:nth-child(8n + 3):not(.catalog__item_ui_white),
  .catalog__item_simple:nth-child(8n + 6):not(.catalog__item_ui_white),
  .catalog__item_simple:nth-child(8n + 8):not(.catalog__item_ui_white) {
    background: #fff;
  }
}
@media only screen and (max-width: 62em) {
  .catalog__item_simple:nth-child(2n):not(.catalog__item_ui_white) {
    background: #f9f9f9 !important;
  }
}
.catalog__item_grouped:nth-child(2):not(.catalog__item_ui_white),
.catalog__item_grouped:nth-child(3):not(.catalog__item_ui_white) {
  background: #f9f9f9;
}
.catalog__item_bordered:not(.catalog__item_ui_white) {
  border: 1px solid #f9f9f9;
}
@media only screen and (max-width: 46.9em) {
  .catalog__item_bordered:not(.catalog__item_ui_white) {
    border-bottom-color: rgba(22,22,22,0.1);
  }
}
.catalog__item_ui_white {
  background-image: url(/packs/assets/images/noise-darker-41f191971f3e57408c1fc84549829dd9.jpg);
  background-color: #171a18;
  background-repeat: repeat;
  color: #fff;
}
.catalog__item_ui_white.catalog__item_simple:nth-child(8n + 1),
.catalog__item_ui_white.catalog__item_simple:nth-child(8n + 3),
.catalog__item_ui_white.catalog__item_simple:nth-child(8n + 6),
.catalog__item_ui_white.catalog__item_simple:nth-child(8n + 8) {
  background-image: url(/packs/assets/images/noise-dark-8e0f50744c511a623d94364d7a60da58.jpg);
  background-color: #1f1f1f;
}
@media only screen and (max-width: 62em) {
  .catalog__item_ui_white.catalog__item_simple:nth-child(8n + 1),
  .catalog__item_ui_white.catalog__item_simple:nth-child(8n + 3),
  .catalog__item_ui_white.catalog__item_simple:nth-child(8n + 6),
  .catalog__item_ui_white.catalog__item_simple:nth-child(8n + 8) {
    background-image: url(/packs/assets/images/noise-darker-41f191971f3e57408c1fc84549829dd9.jpg);
    background-color: #171a18;
  }
}
@media only screen and (max-width: 62em) {
  .catalog__item_ui_white:nth-child(2n) {
    background-image: url(/packs/assets/images/noise-dark-8e0f50744c511a623d94364d7a60da58.jpg) !important;
    background-color: #1f1f1f !important;
  }
}
.catalog__item_ui_white.catalog__item_grouped:nth-child(2),
.catalog__item_ui_white.catalog__item_grouped:nth-child(3) {
  background-image: url(/packs/assets/images/noise-dark-8e0f50744c511a623d94364d7a60da58.jpg);
  background-color: #1f1f1f;
}
.catalog__item_ui_white.catalog__item_bordered {
  border: 1px solid #1e211d;
}
@media only screen and (max-width: 46.9em) {
  .catalog__search-link {
    display: none !important;
  }
}
.catalog__search-select {
  display: none;
  margin-right: auto;
  flex-grow: 1;
}
@media only screen and (max-width: 46.9em) {
  .catalog__search-select {
    width: 130px;
    display: inline-block;
    vertical-align: top;
  }
}
.collapse-list {
  padding-left: 40px;
  padding-right: 40px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 80px;
  padding-bottom: 130px;
}
@media only screen and (max-width: 80em) {
  .collapse-list {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media only screen and (max-width: 46.9em) {
  .collapse-list {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.collapse-list__item:not(:last-child) {
  border-bottom: 1px solid #d6d6d6;
}
.collapse-list__head {
  font-size: 15px;
  line-height: 1.615384615384615;
  text-transform: uppercase;
  text-align: left;
  padding-left: 35px;
  padding-top: 20px;
  padding-bottom: 20px;
  position: relative;
}
@media only screen and (max-width: 46.9em) {
  .collapse-list__head {
    font-size: 14px;
  }
}
.collapse-list__head:before,
.collapse-list__head:after {
  content: '';
  background: currentColor;
  position: absolute;
}
.collapse-list__head:before {
  width: 14px;
  height: 2px;
  left: 0;
  top: 30px;
}
.collapse-list__head:after {
  height: 14px;
  width: 2px;
  left: 6px;
  top: 24px;
  transform: scale(1, 1);
  transition: transform 0.3s ease;
}
.collapse-list__item_opened .collapse-list__head:after {
  transform: scale(1, 0);
}
.collapse-list__body {
  text-transform: uppercase;
  padding-left: 35px;
  line-height: 1.75;
  color: #454545;
  display: none;
}
.collapse-list__body-inner {
  padding-bottom: 20px;
}
.cookies-popup {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  z-index: 100;
  padding: 15px 0;
}
.cookies-popup__content {
  padding-left: 40px;
  padding-right: 40px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 80em) {
  .cookies-popup__content {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media only screen and (max-width: 46.9em) {
  .cookies-popup__content {
    display: block;
  }
}
.cookies-popup__info {
  flex-grow: 1;
  margin-bottom: 5px;
  padding-right: 20px;
}
@media only screen and (max-width: 46.9em) {
  .cookies-popup__info {
    margin-bottom: 15px;
  }
}
.cookies-popup__title {
  font-family: 'Avalon', Helvetica, sans-serif;
  font-weight: 600;
  font-size: 26px;
  line-height: 1.666666666666667;
}
@media only screen and (max-width: 46.9em) {
  .cookies-popup__title {
    font-size: 20px;
  }
}
.cookies-popup__text {
  font-size: 15px;
  line-height: 1.615384615384615;
}
@media only screen and (max-width: 46.9em) {
  .cookies-popup__text {
    font-size: 14px;
  }
}
.cookies-popup__button {
  margin-left: auto;
}
.discover-title {
  padding-left: 40px;
  padding-right: 40px;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  text-align: center;
  bottom: 180px;
  left: 0;
  right: 0;
  overflow: hidden;
  z-index: 2;
}
@media only screen and (max-width: 80em) {
  .discover-title {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media only screen and (max-width: 80em) {
  .discover-title {
    bottom: 140px;
  }
}
@media only screen and (max-width: 46.9em) {
  .discover-title {
    bottom: 100px;
  }
}
.discover-title_horizontal-align_left {
  text-align: left;
}
.discover-title_horizontal-align_right {
  text-align: right;
}
.discover-title_vertical-align_center {
  bottom: 50%;
  transform: translateY(50%);
}
.discover-title__link {
  font-family: 'Avalon', Helvetica, sans-serif;
  font-weight: 600;
  font-size: 80px;
  line-height: 1.125;
  text-transform: uppercase;
  text-transform: none;
  line-height: 1;
  padding-top: 0.125em;
  padding-bottom: 0.25em;
  text-decoration: none;
  color: currentColor;
  display: inline-block;
  vertical-align: top;
  position: relative;
  transform: translateY(0);
  transition: transform 0.3s;
}
@media only screen and (max-width: 80em) {
  .discover-title__link {
    font-size: 60px;
  }
}
@media only screen and (max-width: 46.9em) {
  .discover-title__link {
    font-size: 50px;
  }
}
.discover-title__link:hover {
  transform: translateY(-0.7em);
}
@media only screen and (max-width: 46.9em) {
  .discover-title__link:hover {
    transform: translateY(0);
  }
}
.discover-title__text {
  display: block;
}
.discover-title__text-hover {
  font-size: 32px;
  position: absolute;
  width: 100%;
  top: 100%;
  left: 0;
}
@media only screen and (max-width: 46.9em) {
  .discover-title__text-hover {
    font-size: 18px;
  }
}
.feature {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-decoration: none;
  color: currentColor;
  padding-top: 20px;
  padding-bottom: 20px;
}
@media only screen and (max-width: 46.9em) {
  .feature {
    padding-left: 40px;
    padding-right: 40px;
    margin-left: auto;
    margin-right: auto;
    min-height: 300px;
  }
}
.feature__title {
  padding-left: 40px;
  padding-right: 40px;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  bottom: 180px;
  text-transform: uppercase;
  text-align: center;
  width: 100%;
  left: 0;
  margin-bottom: -0.667em;
  overflow: hidden;
  transform: translateZ(0);
  transition: opacity 0.3s;
  transition-delay: 0.3s;
  z-index: 5;
}
@media only screen and (max-width: 80em) {
  .feature__title {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media only screen and (max-width: 46.9em) {
  .feature__title {
    bottom: 20px;
  }
}
.feature__title_big {
  font-size: 26px;
  line-height: 1.666666666666667;
}
@media only screen and (max-width: 46.9em) {
  .feature__title_big {
    font-size: 20px;
  }
}
.feature__title-text,
.feature__hover-title-text {
  display: block;
  position: relative;
  padding-bottom: 1px;
}
.feature__image-wrapper {
  width: 100%;
}
.feature__image {
  display: block;
  max-width: 50%;
  max-height: 22vh;
  margin-bottom: 50px;
  margin-left: auto;
  margin-right: auto;
}
.feature__overlay {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: none;
  z-index: 1;
  content: '';
  background: #efefef;
}
.feature__hover {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.feature__hover-image {
  display: block;
  max-width: 80%;
  max-height: 32vh;
  margin-bottom: 50px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 46.9em) and (max-width: 80em) {
  .feature {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.features {
  height: 100vh;
  display: flex;
}
@media only screen and (max-width: 46.9em) {
  .features {
    flex-wrap: wrap;
    height: auto;
  }
}
.features__item {
  width: 25%;
  height: 100%;
  width: calc((100% - 80px) / 4);
  position: relative;
}
@media only screen and (max-width: 46.9em) {
  .features__item {
    width: 50%;
  }
}
.features__item:not(:last-child):after {
  content: '';
  display: block;
  position: absolute;
  right: 0;
  top: 50%;
  height: 60%;
  max-height: 400px;
  width: 1px;
  background: #efefef;
  transform: translateY(-50%);
  background: linear-gradient(to bottom, rgba(239,239,239,0) 0%, #efefef 15%, #efefef 85%, rgba(239,239,239,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}
.features__item:first-of-type,
.features__item:last-of-type {
  width: calc((100% - 80px) / 4 + 40px);
}
@media only screen and (max-width: 46.9em) {
  .features__item:first-of-type,
  .features__item:last-of-type {
    width: 50%;
  }
}
@media only screen and (max-width: 46.9em) {
  .page_where_to_buy_index .footer {
    display: none;
  }
}
.footer__body {
  padding-left: 40px;
  padding-right: 40px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 40px;
  padding-top: 80px;
  background: #101010;
  color: #999;
  display: flex;
  flex-wrap: wrap;
  min-height: 50%;
}
@media only screen and (max-width: 80em) {
  .footer__body {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media only screen and (max-width: 46.9em) {
  .footer__body {
    padding-top: 40px;
    padding-bottom: 20px;
    display: block;
  }
}
.footer__logo {
  font-size: 14px;
  color: currentColor;
}
.footer__menu-groups {
  display: flex;
  margin-bottom: 100px;
  width: 100%;
  flex-wrap: wrap;
  align-items: flex-start;
}
@media only screen and (max-width: 80em) {
  .footer__menu-groups {
    display: block;
  }
}
@media only screen and (max-width: 46.9em) {
  .footer__menu-groups {
    margin-bottom: 0;
  }
}
.footer__menu-group {
  display: flex;
  width: 50%;
  flex-wrap: wrap;
}
@media only screen and (max-width: 80em) {
  .footer__menu-group {
    width: 100%;
    margin-bottom: 40px;
  }
}
@media only screen and (max-width: 46.9em) {
  .footer__menu-group {
    margin-bottom: 20px;
  }
}
.footer__menu {
  font-family: 'Avalon', Helvetica, sans-serif;
  font-weight: 600;
  width: 25%;
  padding-right: 40px;
}
@media only screen and (max-width: 46.9em) {
  .footer__menu {
    width: 50%;
    padding-right: 20px;
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 80em) {
  .footer__menu:empty {
    display: none;
  }
}
.footer__menu_side_right {
  text-align: right;
  padding-right: 0;
  padding-left: 40px;
}
@media only screen and (max-width: 80em) {
  .footer__menu_side_right {
    text-align: left;
    padding-left: 0;
  }
}
.footer .footer__global-site-link {
  position: relative;
  display: inline-block;
  vertical-align: top;
  padding-bottom: 8px;
  text-decoration: none;
  color: currentColor;
  transition: color 0.2s ease;
  overflow: hidden;
  line-height: 1.2;
  transform: translateZ(0);
  color: #5e5e5e;
}
.footer .footer__global-site-link:hover:not([disabled]),
.footer .footer__global-site-link:focus:not([disabled]),
.footer .footer__global-site-link.active {
  color: #fff;
}
.footer .footer__global-site-link:hover:not([disabled]):after,
.footer .footer__global-site-link:focus:not([disabled]):after,
.footer .footer__global-site-link.active:after {
  transform: translateX(100%) translateZ(0);
}
.footer .footer__global-site-link:after {
  content: '';
  width: 100%;
  height: 2px;
  right: 100%;
  bottom: 0;
  background: #0cc;
  position: absolute;
  transform: translateX(0%) translateZ(0);
  transition: transform 0.2s ease;
}
.footer__submenu {
  display: flex;
  align-items: flex-start;
}
@media only screen and (max-width: 46.9em) {
  .footer__submenu {
    display: block;
    margin-bottom: 40px;
  }
}
.footer__submenu-item {
  font-family: 'Avalon', Helvetica, sans-serif;
  font-weight: 600;
  color: rgba(255,255,255,0.2);
  margin-right: 34px;
}
@media only screen and (max-width: 46.9em) {
  .footer__submenu-item {
    margin-bottom: 10px;
  }
}
.footer__submenu-link {
  position: relative;
  display: inline-block;
  vertical-align: top;
  padding-bottom: 8px;
  text-decoration: none;
  color: currentColor;
  transition: color 0.2s ease;
  overflow: hidden;
  line-height: 1.2;
  transform: translateZ(0);
}
.footer__submenu-link:hover:not([disabled]),
.footer__submenu-link:focus:not([disabled]),
.footer__submenu-link.active {
  color: #fff;
}
.footer__submenu-link:hover:not([disabled]):after,
.footer__submenu-link:focus:not([disabled]):after,
.footer__submenu-link.active:after {
  transform: translateX(100%) translateZ(0);
}
.footer__submenu-link:after {
  content: '';
  width: 100%;
  height: 2px;
  right: 100%;
  bottom: 0;
  background: #0cc;
  position: absolute;
  transform: translateX(0%) translateZ(0);
  transition: transform 0.2s ease;
}
.footer__socials-title {
  color: rgba(255,255,255,0.2);
  margin-bottom: 18px;
}
.footer__socials {
  display: flex;
  align-items: flex-end;
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  width: 25%;
  margin-bottom: 16px;
}
@media only screen and (max-width: 46.9em) {
  .footer__socials {
    width: 100%;
  }
}
.footer__social-link {
  text-decoration: none;
  color: currentColor;
  transition: color 0.2s ease;
  text-align: center;
  display: block;
  min-width: 1em;
  margin-right: 18px;
  flex-shrink: 0;
}
.footer__social-link:hover,
.footer__social-link.active {
  color: #0cc;
}
@media only screen and (max-width: 46.9em) {
  .footer__social-link {
    margin-left: 0;
  }
}
.footer__twitter-widget {
  margin-left: 50%;
  width: 50%;
}
@media only screen and (max-width: 80em) {
  .footer__twitter-widget {
    margin-left: 0;
  }
}
@media only screen and (max-width: 46.9em) {
  .footer__twitter-widget {
    width: 100%;
  }
}
.footer__twitter-widget a {
  position: relative;
  display: inline-block;
  vertical-align: top;
  padding-bottom: 8px;
  text-decoration: none;
  color: currentColor;
  transition: color 0.2s ease;
  overflow: hidden;
  line-height: 1.2;
  transform: translateZ(0);
}
.footer__twitter-widget a:hover:not([disabled]),
.footer__twitter-widget a:focus:not([disabled]),
.footer__twitter-widget a.active {
  color: #fff;
}
.footer__twitter-widget a:hover:not([disabled]):after,
.footer__twitter-widget a:focus:not([disabled]):after,
.footer__twitter-widget a.active:after {
  transform: translateX(100%) translateZ(0);
}
.footer__twitter-widget a:after {
  content: '';
  width: 100%;
  height: 2px;
  right: 100%;
  bottom: 0;
  background: #0cc;
  position: absolute;
  transform: translateX(0%) translateZ(0);
  transition: transform 0.2s ease;
}
.form {
  text-align: left;
  width: 100%;
  display: flex;
  min-height: 100vh;
  padding-top: 170px;
  padding-bottom: 80px;
}
@media only screen and (max-width: 46.9em) {
  .form {
    padding-top: 120px;
  }
}
.form__inner {
  padding-left: 40px;
  padding-right: 40px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
@media only screen and (max-width: 80em) {
  .form__inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.form__title {
  font-family: 'Avalon', Helvetica, sans-serif;
  font-weight: 600;
  font-size: 80px;
  line-height: 1.125;
  text-transform: uppercase;
  text-transform: uppercase;
  margin-bottom: 60px;
  text-align: center;
}
@media only screen and (max-width: 80em) {
  .form__title {
    font-size: 60px;
  }
}
@media only screen and (max-width: 46.9em) {
  .form__title {
    font-size: 50px;
  }
}
.form__row {
  display: flex;
  margin-left: -20px;
  margin-right: -20px;
}
@media only screen and (max-width: 46.9em) {
  .form__row {
    display: block;
  }
}
.form__column {
  padding-left: 20px;
  padding-right: 20px;
  width: 50%;
}
@media only screen and (max-width: 46.9em) {
  .form__column {
    width: 100%;
  }
}
.form__input {
  position: relative;
}
.form__input-error {
  position: absolute;
  top: 100%;
  right: 0;
  padding-top: 3px;
  color: #e11432;
  text-transform: uppercase;
  text-align: right;
}
.form__checkbox {
  margin-top: 45px;
}
.form__footer {
  text-align: center;
  margin-top: 130px;
}
@media only screen and (max-width: 46.9em) {
  .form__footer {
    margin-top: 80px;
  }
}
.form__button,
.form__submit {
  font-size: 26px;
  line-height: 1.666666666666667;
  position: relative;
  display: inline-block;
  vertical-align: top;
  padding-bottom: 8px;
  text-decoration: none;
  color: currentColor;
  transition: color 0.2s ease;
  overflow: hidden;
  line-height: 1.2;
  transform: translateZ(0);
  text-transform: uppercase;
}
@media only screen and (max-width: 46.9em) {
  .form__button,
  .form__submit {
    font-size: 20px;
  }
}
.form__button:hover:not([disabled]),
.form__submit:hover:not([disabled]),
.form__button:focus:not([disabled]),
.form__submit:focus:not([disabled]),
.form__button.active,
.form__submit.active {
  color: #161616;
}
.form__button:hover:not([disabled]):after,
.form__submit:hover:not([disabled]):after,
.form__button:focus:not([disabled]):after,
.form__submit:focus:not([disabled]):after,
.form__button.active:after,
.form__submit.active:after {
  transform: translateX(100%) translateZ(0);
}
.form__button:after,
.form__submit:after {
  content: '';
  width: 100%;
  height: 2px;
  right: 100%;
  bottom: 0;
  background: #0cc;
  position: absolute;
  transform: translateX(0%) translateZ(0);
  transition: transform 0.2s ease;
}
.form__button:disabled,
.form__submit:disabled {
  cursor: default;
}
.form__message {
  font-size: 15px;
  line-height: 1.615384615384615;
  margin-top: 160px;
  margin-bottom: 160px;
  text-transform: uppercase;
  text-align: center;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 46.9em) {
  .form__message {
    font-size: 14px;
  }
}
.form__message p {
  margin-bottom: 24px;
}
.gallery-slider {
  height: 100vh;
  background-color: #000;
  color: #fff;
  overflow: hidden;
  position: relative;
}
.gallery-slider__title {
  font-family: 'Avalon', Helvetica, sans-serif;
  font-weight: 600;
  font-size: 80px;
  line-height: 1.125;
  text-transform: uppercase;
  position: absolute;
  top: 180px;
  z-index: 2;
  text-align: center;
  color: #fff;
  left: 50%;
  transform: translateX(-50%);
  overflow: hidden;
}
@media only screen and (max-width: 80em) {
  .gallery-slider__title {
    font-size: 60px;
  }
}
@media only screen and (max-width: 46.9em) {
  .gallery-slider__title {
    font-size: 50px;
  }
}
.gallery-slider__title-inner {
  transform: translateY(0%) translateZ(0);
  transition: transform 0.3s ease;
  transition-delay: 0.8s;
}
.gallery-slider_hidden .gallery-slider__title-inner {
  transform: translateY(-100%) translateZ(0);
}
.gallery-slider__container {
  height: 100%;
  transform: translateX(0%) translateZ(0);
  transition: transform 0.8s ease;
}
.gallery-slider_hidden .gallery-slider__container {
  transform: translateX(100%) translateZ(0);
}
.gallery-slider__slide {
  height: 100%;
  width: 33.333333333333336%;
}
@media only screen and (max-width: 46.9em) {
  .gallery-slider__slide {
    width: 100%;
  }
}
.gallery-slider__slide-wrapper {
  position: absolute;
  top: 0;
  background-color: #000;
  background-size: cover;
  background-position: 50%;
  height: 100%;
  width: 100%;
  transition: width 0.5s ease, left 0.5s ease, transform 0.5s ease;
  will-change: width, left;
  transform: translateX(-50%) translateZ(0);
  left: 50%;
  overflow: hidden;
}
.swiper-slide-active .gallery-slider__slide-wrapper {
  width: 151% !important;
}
@media only screen and (max-width: 46.9em) {
  .swiper-slide-active .gallery-slider__slide-wrapper {
    width: 100% !important;
  }
}
.swiper-slide-prev .gallery-slider__slide-wrapper {
  width: 76% !important;
  left: 37%;
}
@media only screen and (max-width: 46.9em) {
  .swiper-slide-prev .gallery-slider__slide-wrapper {
    width: 100% !important;
    left: 50%;
  }
}
.swiper-slide-next .gallery-slider__slide-wrapper {
  width: 76% !important;
  left: 63%;
}
@media only screen and (max-width: 46.9em) {
  .swiper-slide-next .gallery-slider__slide-wrapper {
    width: 100% !important;
    left: 50%;
  }
}
.gallery-slider__slide-inner {
  height: 100%;
  width: 100%;
  opacity: 0.4;
  transition: opacity 0.5s ease;
}
.swiper-slide-active .gallery-slider__slide-inner {
  opacity: 1;
}
.gallery-slider__navigation_left:hover ~ .swiper-wrapper .swiper-slide-prev .gallery-slider__slide-inner {
  opacity: 0.8;
}
.gallery-slider__navigation_right:hover ~ .swiper-wrapper .swiper-slide-next .gallery-slider__slide-inner {
  opacity: 0.8;
}
.gallery-slider__slide-cover {
  position: absolute;
  left: 50%;
  top: 0;
  height: 100%;
  width: 100%;
  min-width: 50vw;
  transform: translateX(-50%);
  background-size: cover;
  background-position: 50%;
}
.gallery-slider__content {
  padding-left: 40px;
  padding-right: 40px;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
}
@media only screen and (max-width: 80em) {
  .gallery-slider__content {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.gallery-slider__content_centred {
  text-align: center;
}
.gallery-slider__date {
  display: flex;
  margin-bottom: 14px;
}
.gallery-slider__day {
  font-family: 'Avalon', Helvetica, sans-serif;
  font-weight: 600;
  font-size: 60px;
  line-height: 1.2;
  text-transform: uppercase;
}
@media only screen and (max-width: 46.9em) {
  .gallery-slider__day {
    font-size: 40px;
  }
}
.gallery-slider__month {
  font-size: 26px;
  line-height: 1.666666666666667;
  text-transform: uppercase;
  margin-top: 4px;
  margin-left: 24px;
}
@media only screen and (max-width: 46.9em) {
  .gallery-slider__month {
    font-size: 20px;
  }
}
.gallery-slider__slide-title {
  font-size: 15px;
  line-height: 1.615384615384615;
  text-transform: uppercase;
}
@media only screen and (max-width: 46.9em) {
  .gallery-slider__slide-title {
    font-size: 14px;
  }
}
.gallery-slider__link {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  color: currentColor;
  text-decoration: none;
}
.gallery-slider__navigation {
  position: absolute;
  width: 25%;
  top: 0;
  bottom: 0;
  z-index: 2;
}
@media only screen and (max-width: 46.9em) {
  .gallery-slider__navigation {
    display: none;
  }
}
.gallery-slider__navigation_left {
  left: 0;
}
.gallery-slider__navigation_right {
  right: 0;
}
.header {
  padding-left: 40px;
  padding-right: 40px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 40px;
  padding-bottom: 40px;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 10;
  color: #fff;
  justify-content: space-between;
}
@media only screen and (max-width: 80em) {
  .header {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media only screen and (max-width: 46.9em) {
  .header {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
.header_ui_white {
  color: #fff;
}
.header_ui_black {
  color: #202020;
}
.header__back-link {
  position: relative;
  display: inline-block;
  vertical-align: top;
  padding-bottom: 8px;
  text-decoration: none;
  color: currentColor;
  transition: color 0.2s ease;
  overflow: hidden;
  line-height: 1.2;
  transform: translateZ(0);
  position: absolute;
  top: 0;
  right: 215px;
  z-index: 2;
  text-transform: uppercase;
  line-height: 1;
  margin-top: 2px;
}
.header__back-link:hover:not([disabled]),
.header__back-link:focus:not([disabled]),
.header__back-link.active {
  color: #fff;
}
.header__back-link:hover:not([disabled]):after,
.header__back-link:focus:not([disabled]):after,
.header__back-link.active:after {
  transform: translateX(100%) translateZ(0);
}
.header__back-link:after {
  content: '';
  width: 100%;
  height: 2px;
  right: 100%;
  bottom: 0;
  background: #0cc;
  position: absolute;
  transform: translateX(0%) translateZ(0);
  transition: transform 0.2s ease;
}
.header .header__back-link:hover {
  color: currentColor;
}
.header__container {
  position: relative;
}
.header__logo {
  display: flex;
  align-items: flex-start;
  color: currentColor;
  text-decoration: none;
  font-size: 22px;
  transition: color 0.2s;
  z-index: 31;
  position: absolute;
  left: 0;
  top: 0;
}
.header__menu-wrapper {
  position: relative;
  z-index: 30;
}
.header__menu {
  white-space: nowrap;
  display: flex;
  justify-content: center;
  padding-top: 2px;
}
@media only screen and (max-width: 46.9em) {
  .header__menu {
    display: none;
  }
}
.header__menu-item {
  text-transform: uppercase;
  margin-left: 38px;
  margin-right: 38px;
}
@media only screen and (max-width: 80em) {
  .header__menu-item {
    margin-left: 28px;
    margin-right: 28px;
  }
}
@media only screen and (max-width: 62em) {
  .header__menu-item {
    margin-left: 18px;
    margin-right: 18px;
  }
}
.header__menu-link {
  position: relative;
  display: inline-block;
  vertical-align: top;
  padding-bottom: 8px;
  text-decoration: none;
  color: currentColor;
  transition: color 0.2s ease;
  overflow: hidden;
  line-height: 1.2;
  transform: translateZ(0);
  font-size: 13px;
  letter-spacing: 0.1em;
}
.header__menu-link:hover:not([disabled]),
.header__menu-link:focus:not([disabled]),
.header__menu-link.active {
  color: #fff;
}
.header__menu-link:hover:not([disabled]):after,
.header__menu-link:focus:not([disabled]):after,
.header__menu-link.active:after {
  transform: translateX(100%) translateZ(0);
}
.header__menu-link:after {
  content: '';
  width: 100%;
  height: 2px;
  right: 100%;
  bottom: 0;
  background: #0cc;
  position: absolute;
  transform: translateX(0%) translateZ(0);
  transition: transform 0.2s ease;
}
.html-block {
  background-size: cover;
  background-position: 50%;
  padding-top: 85px;
  padding-bottom: 80px;
}
@media only screen and (max-width: 46.9em) {
  .html-block {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
.html-block_ui_black {
  color: #202020;
  background-color: #fff;
}
.html-block_ui_white {
  color: #fff;
  background-color: #101010;
}
@media only screen and (max-width: 46.9em) {
  .html-block_mobile-bg_black {
    background: rgba(22,22,22,0.6);
  }
}
@media only screen and (max-width: 46.9em) {
  .html-block_mobile-bg_white {
    background: rgba(255,255,255,0.6);
  }
}
.html-block p:not(:last-child) {
  margin-bottom: 18px;
}
.html-block img {
  margin-bottom: 20px;
  max-width: 100%;
}
.html-block td {
  padding-right: 40px;
  line-height: 1.6;
  padding-bottom: 20px;
}
.html-block td strong {
  display: block;
  margin-bottom: 4px;
}
.html-block strong {
  font-family: 'Avalon', Helvetica, sans-serif;
  font-weight: 600;
  font-size: 16px;
}
.html-block__container {
  padding-left: 40px;
  padding-right: 40px;
  margin-left: auto;
  margin-right: auto;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 80em) {
  .html-block__container {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.html-block__container_align_center {
  text-align: center;
}
.html-block__container_size_small {
  max-width: 580px;
}
.html-block__container_size_large {
  max-width: 1380px;
}
.html-block__row {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 46.9em) {
  .html-block__row {
    display: block;
  }
}
.html-block__row_height_large {
  min-height: 600px;
}
@media only screen and (max-width: 46.9em) {
  .html-block__row_height_large {
    min-height: auto;
  }
}
.html-block__column {
  padding-left: 40px;
  padding-right: 40px;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
  margin-left: 0;
  margin-right: 0;
}
@media only screen and (max-width: 80em) {
  .html-block__column {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media only screen and (max-width: 80em) {
  .html-block__column {
    padding-left: 0;
    padding-right: 0;
  }
}
@media only screen and (max-width: 46.9em) {
  .html-block__column {
    width: 100%;
  }
}
@media only screen and (max-width: 46.9em) {
  .html-block__column:not(:last-child) {
    margin-bottom: 40px;
  }
}
.html-block__title {
  font-family: 'Avalon', Helvetica, sans-serif;
  font-weight: 600;
  font-size: 50px;
  line-height: 1.2;
  margin-bottom: 28px;
}
@media only screen and (max-width: 46.9em) {
  .html-block__title {
    font-size: 40px;
  }
}
.html-block__text {
  font-size: 15px;
  line-height: 1.615384615384615;
  opacity: 0.75;
}
@media only screen and (max-width: 46.9em) {
  .html-block__text {
    font-size: 14px;
  }
}
.html-block__text:not(:last-child) {
  margin-bottom: 46px;
}
.html-block__button {
  font-size: 13px;
  padding: 16px 20px;
  display: inline-block;
  vertical-align: top;
  text-decoration: none;
  background: #fff;
  color: #202020;
  text-transform: uppercase;
  transition: all 0.3s ease;
}
.html-block__button:hover {
  background: #0cc;
  color: #202020;
}
.image-comparison {
  position: relative;
  overflow: hidden;
  -webkit-user-select: none;
}
.image-comparison__title {
  padding-left: 40px;
  padding-right: 40px;
  margin-left: auto;
  margin-right: auto;
  font-family: 'Avalon', Helvetica, sans-serif;
  font-weight: 600;
  font-size: 50px;
  line-height: 1.2;
  position: absolute;
  top: 22%;
  z-index: 2;
  color: #fff;
  width: 50%;
  white-space: nowrap;
}
@media only screen and (max-width: 80em) {
  .image-comparison__title {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media only screen and (max-width: 46.9em) {
  .image-comparison__title {
    font-size: 40px;
  }
}
@media only screen and (max-width: 80em) {
  .image-comparison__title {
    top: 15%;
    padding-left: 0;
    padding-right: 0;
  }
}
@media only screen and (max-width: 46.9em) {
  .image-comparison__title {
    font-family: 'Avalon', Helvetica, sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.666666666666667;
    top: 20px;
  }
}
@media only screen and (max-width: 46.9em) and (max-width: 46.9em) {
  .image-comparison__title {
    font-size: 16px;
  }
}
.image-comparison__title-inner {
  padding-left: 40px;
  padding-right: 40px;
  margin-left: auto;
  margin-right: auto;
  max-width: 580px;
  margin: auto;
}
@media only screen and (max-width: 80em) {
  .image-comparison__title-inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.image-comparison__image {
  display: block;
  width: 100%;
}
.image-comparison__overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.image-comparison__slider {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 50%;
  margin-top: -20px;
  left: 50%;
  background: #fff;
  opacity: 0.8;
  z-index: 3;
  cursor: -webkit-grab;
}
.image-comparison__slider:active {
  cursor: -webkit-grabbing;
}
.image-comparison__slider:hover {
  opacity: 1;
}
.image-comparison__slider:before,
.image-comparison__slider:after {
  content: '';
  display: block;
  margin-top: -4px;
  position: absolute;
  top: 50%;
}
.image-comparison__slider:before {
  width: 0;
  height: 0;
  background: 0;
  border-style: solid;
  border-width: 4.5px 6px 4.5px 0;
  border-color: transparent #000 transparent transparent;
  left: 6px;
}
.image-comparison__slider:after {
  width: 0;
  height: 0;
  background: 0;
  border-style: solid;
  border-width: 4.5px 0 4.5px 6px;
  border-color: transparent transparent transparent #000;
  right: 6px;
}
.image-comparison__label {
  font-family: 'Avalon', Helvetica, sans-serif;
  font-weight: 600;
  position: absolute;
  bottom: 30px;
  font-size: 16px;
  color: #fff;
  z-index: 1;
  white-space: nowrap;
}
@media only screen and (max-width: 46.9em) {
  .image-comparison__label {
    font-size: 14px;
    bottom: 20px;
  }
}
.image-comparison__label_left {
  left: 30px;
}
@media only screen and (max-width: 46.9em) {
  .image-comparison__label_left {
    left: 20px;
  }
}
.image-comparison__label_right {
  right: 30px;
}
@media only screen and (max-width: 46.9em) {
  .image-comparison__label_right {
    right: 20px;
  }
}
.image-grid {
  display: flex;
}
@media only screen and (max-width: 46.9em) {
  .image-grid {
    display: block;
  }
}
.image-grid__column {
  width: 50%;
  display: flex;
  flex-wrap: wrap;
}
@media only screen and (max-width: 46.9em) {
  .image-grid__column {
    width: 100%;
  }
}
.image-grid__item {
  flex-grow: 1;
  width: 50%;
  padding-bottom: 50%;
  background-size: cover;
  background-position: 50%;
}
.image-grid__item_large {
  width: 100%;
}
.input-checkbox {
  position: relative;
}
.input-checkbox input[type="checkbox"] {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}
.input-checkbox input[type="checkbox"]:checked ~ label:after {
  opacity: 1;
}
.input-checkbox input[type="checkbox"]:focus ~ label:before {
  border-color: #0cc;
}
.input-checkbox label {
  display: inline-block;
  vertical-align: top;
  position: relative;
  padding-left: 36px;
  padding-top: 5px;
  cursor: pointer;
  text-transform: uppercase;
}
.input-checkbox label:hover:before {
  border-color: #0cc;
}
.input-checkbox label:before,
.input-checkbox label:after {
  content: '';
  display: block;
  box-sizing: border-box;
  position: absolute;
}
.input-checkbox label:before {
  left: 0;
  top: 0;
  height: 26px;
  width: 26px;
  border: 2px solid currentColor;
  transition: border 0.3s ease;
}
.input-checkbox label:after {
  left: 10px;
  top: 10px;
  width: 6px;
  height: 6px;
  background: currentColor;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.input-select {
  margin-bottom: 15px;
  position: relative;
  width: 100%;
}
.input-select:after {
  width: 0;
  height: 0;
  background: 0;
  border-style: solid;
  border-width: 5px 4.5px 0 4.5px;
  border-color: currentColor transparent transparent transparent;
  content: '';
  display: block;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -3px;
}
.input-select__input-wrapper {
  overflow: hidden;
}
.input-select__input {
  font-size: 15px;
  line-height: 1.615384615384615;
  text-transform: uppercase;
  width: 103%;
  height: 42px;
  -webkit-appearance: none;
  border: 0;
  background: none;
  border-bottom: 2px solid currentColor;
  transition: border 0.3s ease;
  border-radius: 0;
  font-weight: 300;
  font-family: inherit;
  outline: 0;
  padding: 0;
}
@media only screen and (max-width: 46.9em) {
  .input-select__input {
    font-size: 14px;
  }
}
.input-select__input:hover,
.input-select__input:focus {
  border-color: #0cc;
}
.input-select__input option[value=""][disabled] {
  display: none;
}
.input-text {
  margin-bottom: 15px;
}
.input-text__input {
  font-size: 15px;
  line-height: 1.615384615384615;
  width: 100%;
  height: 42px;
  border-bottom: 2px solid currentColor;
  transition: border 0.3s ease;
  border-radius: 0;
}
.input-text__input:-webkit-autofill,
.input-text__input:-webkit-autofill:hover,
.input-text__input:-webkit-autofill:focus {
  transition: background-color 5000s ease-in-out 0s;
  -webkit-text-fill-color: #161616;
  border-color: #161616;
}
@media only screen and (max-width: 46.9em) {
  .input-text__input {
    font-size: 14px;
  }
}
.input-text__input::-webkit-input-placeholder {
  color: currentColor !important;
  text-transform: uppercase;
  color: currentColor;
  opacity: 1;
  transition: opacity 0.3s ease;
}
.input-text__input:-moz-placeholder {
  color: currentColor !important;
  text-transform: uppercase;
  color: currentColor;
  opacity: 1;
  transition: opacity 0.3s ease;
}
.input-text__input::-moz-placeholder {
  color: currentColor !important;
  text-transform: uppercase;
  color: currentColor;
  opacity: 1;
  transition: opacity 0.3s ease;
}
.input-text__input:-ms-input-placeholder {
  color: currentColor !important;
  text-transform: uppercase;
  color: currentColor;
  opacity: 1;
  transition: opacity 0.3s ease;
}
.input-text__input.placeholder {
  color: currentColor !important;
  text-transform: uppercase;
  color: currentColor;
  opacity: 1;
  transition: opacity 0.3s ease;
}
.input-text__input:hover,
.input-text__input:focus {
  border-color: #0cc;
}
.input-text__input:focus::-webkit-input-placeholder {
  color: currentColor !important;
  opacity: 0;
}
.input-text__input:focus:-moz-placeholder {
  color: currentColor !important;
  opacity: 0;
}
.input-text__input:focus::-moz-placeholder {
  color: currentColor !important;
  opacity: 0;
}
.input-text__input:focus:-ms-input-placeholder {
  color: currentColor !important;
  opacity: 0;
}
.input-text__input:focus.placeholder {
  color: currentColor !important;
  opacity: 0;
}
.input-textarea {
  margin-bottom: 15px;
}
.input-textarea__input {
  font-size: 15px;
  line-height: 1.615384615384615;
  width: 100%;
  height: 42px;
  border-bottom: 2px solid currentColor;
  transition: border 0.3s ease;
  border-radius: 0;
  resize: none;
  padding-top: 10px;
}
.input-textarea__input:-webkit-autofill,
.input-textarea__input:-webkit-autofill:hover,
.input-textarea__input:-webkit-autofill:focus {
  transition: background-color 5000s ease-in-out 0s;
  -webkit-text-fill-color: #161616;
  border-color: #161616;
}
@media only screen and (max-width: 46.9em) {
  .input-textarea__input {
    font-size: 14px;
  }
}
.input-textarea__input::-webkit-input-placeholder {
  color: currentColor !important;
  text-transform: uppercase;
  color: currentColor;
  opacity: 1;
  transition: opacity 0.3s ease;
}
.input-textarea__input:-moz-placeholder {
  color: currentColor !important;
  text-transform: uppercase;
  color: currentColor;
  opacity: 1;
  transition: opacity 0.3s ease;
}
.input-textarea__input::-moz-placeholder {
  color: currentColor !important;
  text-transform: uppercase;
  color: currentColor;
  opacity: 1;
  transition: opacity 0.3s ease;
}
.input-textarea__input:-ms-input-placeholder {
  color: currentColor !important;
  text-transform: uppercase;
  color: currentColor;
  opacity: 1;
  transition: opacity 0.3s ease;
}
.input-textarea__input.placeholder {
  color: currentColor !important;
  text-transform: uppercase;
  color: currentColor;
  opacity: 1;
  transition: opacity 0.3s ease;
}
.input-textarea__input:hover,
.input-textarea__input:focus {
  border-color: #0cc;
}
.input-textarea__input:focus::-webkit-input-placeholder {
  color: currentColor !important;
  opacity: 0;
}
.input-textarea__input:focus:-moz-placeholder {
  color: currentColor !important;
  opacity: 0;
}
.input-textarea__input:focus::-moz-placeholder {
  color: currentColor !important;
  opacity: 0;
}
.input-textarea__input:focus:-ms-input-placeholder {
  color: currentColor !important;
  opacity: 0;
}
.input-textarea__input:focus.placeholder {
  color: currentColor !important;
  opacity: 0;
}
.main-menu__modal {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 20;
  background: rgba(0,0,0,0.8);
  color: #fff;
  display: none;
}
.main-menu__modal-wrapper {
  position: relative;
  height: 100%;
  z-index: 2;
}
.main-menu__modal-inner {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  padding-left: 40px;
  padding-right: 40px;
  margin-left: auto;
  margin-right: auto;
  display: none;
  height: 100%;
  padding-top: 40px;
  padding-bottom: 40px;
}
@media only screen and (max-width: 80em) {
  .main-menu__modal-inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media only screen and (max-width: 46.9em) {
  .main-menu__modal-inner {
    max-height: 100%;
    overflow: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
.main-menu__modal-contents-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  height: 100%;
  padding-top: 80px;
  position: relative;
}
@media only screen and (max-width: 46.9em) {
  .main-menu__modal-contents-inner {
    height: auto;
    min-height: 100%;
    display: block;
    padding-top: 70px;
    padding-bottom: 140px;
  }
}
.main-menu__categories-menu {
  display: none;
}
@media only screen and (max-width: 46.9em) {
  .main-menu__categories-menu {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 45px;
  }
}
.main-menu__categories-menu-item {
  text-transform: uppercase;
  margin-bottom: 30px;
  width: 50%;
}
@media only screen and (max-width: 46.9em) {
  .main-menu__categories-menu-item {
    margin-bottom: 10px;
  }
}
.main-menu__categories-menu-item:nth-child(2n) {
  text-align: right;
}
.main-menu__categories-menu-link {
  position: relative;
  display: inline-block;
  vertical-align: top;
  padding-bottom: 8px;
  text-decoration: none;
  color: currentColor;
  transition: color 0.2s ease;
  overflow: hidden;
  line-height: 1.2;
  transform: translateZ(0);
  color: #999;
  font-size: 16px;
}
.main-menu__categories-menu-link:hover:not([disabled]),
.main-menu__categories-menu-link:focus:not([disabled]),
.main-menu__categories-menu-link.active {
  color: #fff;
}
.main-menu__categories-menu-link:hover:not([disabled]):after,
.main-menu__categories-menu-link:focus:not([disabled]):after,
.main-menu__categories-menu-link.active:after {
  transform: translateX(100%) translateZ(0);
}
.main-menu__categories-menu-link:after {
  content: '';
  width: 100%;
  height: 2px;
  right: 100%;
  bottom: 0;
  background: #0cc;
  position: absolute;
  transform: translateX(0%) translateZ(0);
  transition: transform 0.2s ease;
}
.main-menu__categories-menu-link:hover {
  color: #fff;
}
.main-menu__submenu {
  width: 50%;
  padding-left: 25%;
  padding-top: 3px;
  position: relative;
  padding-right: 40px;
}
@media only screen and (max-width: 46.9em) {
  .main-menu__submenu {
    width: 100%;
    padding-left: 0;
    padding-right: 20px;
    position: absolute;
    bottom: -12px;
    left: 0;
    right: 0;
  }
}
.main-menu__submenu-item {
  text-transform: uppercase;
  margin-bottom: 30px;
}
@media only screen and (max-width: 46.9em) {
  .main-menu__submenu-item {
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 46.9em) {
  .main-menu__submenu-item_language {
    text-align: right;
    position: absolute;
    max-width: 70%;
    right: 0;
    bottom: 0;
  }
}
.main-menu__submenu-image {
  display: inline-block;
  vertical-align: top;
  margin-top: 3px;
  margin-right: 10px;
}
.main-menu__submenu-link {
  position: relative;
  display: inline-block;
  vertical-align: top;
  padding-bottom: 8px;
  text-decoration: none;
  color: currentColor;
  transition: color 0.2s ease;
  overflow: hidden;
  line-height: 1.2;
  transform: translateZ(0);
  color: #999;
  font-size: 16px;
}
.main-menu__submenu-link:hover:not([disabled]),
.main-menu__submenu-link:focus:not([disabled]),
.main-menu__submenu-link.active {
  color: #fff;
}
.main-menu__submenu-link:hover:not([disabled]):after,
.main-menu__submenu-link:focus:not([disabled]):after,
.main-menu__submenu-link.active:after {
  transform: translateX(100%) translateZ(0);
}
.main-menu__submenu-link:after {
  content: '';
  width: 100%;
  height: 2px;
  right: 100%;
  bottom: 0;
  background: #0cc;
  position: absolute;
  transform: translateX(0%) translateZ(0);
  transition: transform 0.2s ease;
}
.main-menu__submenu-link:hover {
  color: #fff;
}
.main-menu__menu {
  width: 50%;
  padding-left: 40px;
}
@media only screen and (max-width: 46.9em) {
  .main-menu__menu {
    width: 100%;
    padding-left: 0;
  }
}
.main-menu__menu-item {
  margin-bottom: 28px;
}
@media only screen and (max-width: 46.9em) {
  .main-menu__menu-item {
    margin-bottom: 10px;
  }
}
.main-menu__menu-link {
  font-family: 'Avalon', Helvetica, sans-serif;
  font-weight: 600;
  position: relative;
  display: inline-block;
  vertical-align: top;
  padding-bottom: 8px;
  text-decoration: none;
  color: currentColor;
  transition: color 0.2s ease;
  overflow: hidden;
  line-height: 1.2;
  transform: translateZ(0);
  font-size: 40px;
  color: #999;
}
.main-menu__menu-link:hover:not([disabled]),
.main-menu__menu-link:focus:not([disabled]),
.main-menu__menu-link.active {
  color: #fff;
}
.main-menu__menu-link:hover:not([disabled]):after,
.main-menu__menu-link:focus:not([disabled]):after,
.main-menu__menu-link.active:after {
  transform: translateX(100%) translateZ(0);
}
.main-menu__menu-link:after {
  content: '';
  width: 100%;
  height: 2px;
  right: 100%;
  bottom: 0;
  background: #0cc;
  position: absolute;
  transform: translateX(0%) translateZ(0);
  transition: transform 0.2s ease;
}
@media only screen and (max-width: 46.9em) {
  .main-menu__menu-link {
    text-transform: uppercase;
    font-size: 26px;
  }
}
.main-menu__menu-link:hover {
  color: #fff;
}
.main-menu__button {
  position: absolute;
  top: 40px;
  right: 40px;
  z-index: 30;
}
@media only screen and (max-width: 46.9em) {
  .main-menu__button {
    top: 20px;
    right: 20px;
  }
}
.main-menu__button-search {
  position: relative;
  position: absolute;
  margin-right: 80px;
  font-size: 22px;
  color: currentColor;
  top: 40px;
  right: 40px;
  z-index: 30;
  transition: color 0.3s ease;
}
.main-menu__button-search:after {
  position: absolute;
  display: block;
  content: '';
  left: -80%;
  right: -80%;
  top: -80%;
  bottom: -80%;
}
@media only screen and (max-width: 46.9em) {
  .main-menu__button-search {
    top: 20px;
    right: 20px;
    margin-right: 60px;
  }
}
.main-menu__button-search:hover {
  color: #0cc;
}
.main-menu__search-wrapper {
  margin-left: 280px;
  margin-right: 175px;
  overflow: hidden;
}
@media only screen and (max-width: 46.9em) {
  .main-menu__search-wrapper {
    margin-left: 0;
    margin-right: 0;
    margin-top: 80px;
    margin-bottom: 20px;
  }
}
.main-menu__search-form {
  position: relative;
}
.main-menu__search-input {
  font-size: 15px;
  line-height: 1.615384615384615;
  width: 100%;
  color: currentColor;
  height: 40px;
  padding-bottom: 16px;
  border-bottom: 1px solid currentColor;
  padding-left: 40px;
  border-radius: 0;
}
.main-menu__search-input:-webkit-autofill,
.main-menu__search-input:-webkit-autofill:hover,
.main-menu__search-input:-webkit-autofill:focus {
  transition: background-color 5000s ease-in-out 0s;
  -webkit-text-fill-color: #fff;
  border-color: #fff;
}
@media only screen and (max-width: 46.9em) {
  .main-menu__search-input {
    font-size: 14px;
  }
}
@media only screen and (max-width: 46.9em) {
  .main-menu__search-input {
    padding-left: 0;
  }
}
.main-menu__search-submit {
  font-size: 15px;
  line-height: 1.615384615384615;
  position: relative;
  display: inline-block;
  vertical-align: top;
  padding-bottom: 8px;
  text-decoration: none;
  color: currentColor;
  transition: color 0.2s ease;
  overflow: hidden;
  line-height: 1.2;
  transform: translateZ(0);
  position: absolute;
  right: 0;
  top: 5px;
}
@media only screen and (max-width: 46.9em) {
  .main-menu__search-submit {
    font-size: 14px;
  }
}
.main-menu__search-submit:hover:not([disabled]),
.main-menu__search-submit:focus:not([disabled]),
.main-menu__search-submit.active {
  color: #fff;
}
.main-menu__search-submit:hover:not([disabled]):after,
.main-menu__search-submit:focus:not([disabled]):after,
.main-menu__search-submit.active:after {
  transform: translateX(100%) translateZ(0);
}
.main-menu__search-submit:after {
  content: '';
  width: 100%;
  height: 2px;
  right: 100%;
  bottom: 0;
  background: #0cc;
  position: absolute;
  transform: translateX(0%) translateZ(0);
  transition: transform 0.2s ease;
}
.main-menu__search-menu-wrapper {
  margin-top: 40px;
  display: flex;
  padding-left: 280px;
  padding-right: 175px;
}
@media only screen and (max-width: 46.9em) {
  .main-menu__search-menu-wrapper {
    padding-left: 0;
    padding-right: 0;
  }
}
.main-menu__search-menu {
  color: #999;
}
.main-menu__search-menu-item {
  margin-bottom: 22px;
}
.main-menu__search-menu-link {
  font-size: 15px;
  line-height: 1.615384615384615;
  position: relative;
  display: inline-block;
  vertical-align: top;
  padding-bottom: 8px;
  text-decoration: none;
  color: currentColor;
  transition: color 0.2s ease;
  overflow: hidden;
  line-height: 1.2;
  transform: translateZ(0);
}
@media only screen and (max-width: 46.9em) {
  .main-menu__search-menu-link {
    font-size: 14px;
  }
}
.main-menu__search-menu-link:hover:not([disabled]),
.main-menu__search-menu-link:focus:not([disabled]),
.main-menu__search-menu-link.active {
  color: #fff;
}
.main-menu__search-menu-link:hover:not([disabled]):after,
.main-menu__search-menu-link:focus:not([disabled]):after,
.main-menu__search-menu-link.active:after {
  transform: translateX(100%) translateZ(0);
}
.main-menu__search-menu-link:after {
  content: '';
  width: 100%;
  height: 2px;
  right: 100%;
  bottom: 0;
  background: #0cc;
  position: absolute;
  transform: translateX(0%) translateZ(0);
  transition: transform 0.2s ease;
}
.main-slider {
  height: 100%;
}
.main-slider__container {
  height: 100%;
}
.main-slider__slide {
  height: 100%;
  overflow: hidden;
  position: relative;
  background-size: cover;
  background-position: 50%;
  background-color: #202020;
  color: #fff;
}
.main-slider__description {
  position: relative;
  display: inline-block;
  vertical-align: top;
  padding-bottom: 8px;
  text-decoration: none;
  color: currentColor;
  transition: color 0.2s ease;
  overflow: hidden;
  line-height: 1.2;
  transform: translateZ(0);
  text-transform: uppercase;
}
.main-slider__description:hover:not([disabled]),
.main-slider__description:focus:not([disabled]),
.main-slider__description.active {
  color: #fff;
}
.main-slider__description:hover:not([disabled]):after,
.main-slider__description:focus:not([disabled]):after,
.main-slider__description.active:after {
  transform: translateX(100%) translateZ(0);
}
.main-slider__description:after {
  content: '';
  width: 100%;
  height: 2px;
  right: 100%;
  bottom: 0;
  background: #0cc;
  position: absolute;
  transform: translateX(0%) translateZ(0);
  transition: transform 0.2s ease;
}
.main-slider__nav {
  position: absolute;
  top: 0;
  height: 100%;
  min-width: 100px;
  color: currentColor;
  padding: 40px;
  display: flex;
  align-items: flex-end;
  cursor: pointer;
  max-width: 50%;
}
@media only screen and (max-width: 46.9em) {
  .main-slider__nav {
    padding: 20px;
  }
}
.main-slider__nav:hover .main-slider__description:after {
  transform: translateX(100%) translateZ(0);
}
.main-slider__nav_side_left {
  left: 0;
}
.main-slider__nav_side_right {
  right: 0;
  text-align: right;
}
.menu-column_side_right {
  text-align: right;
}
.menu-column__item {
  text-transform: uppercase;
  margin-bottom: 16px;
}
.menu-column__item_normal {
  text-transform: none;
}
.menu-column__link {
  position: relative;
  display: inline-block;
  vertical-align: top;
  padding-bottom: 8px;
  text-decoration: none;
  color: currentColor;
  transition: color 0.2s ease;
  overflow: hidden;
  line-height: 1.2;
  transform: translateZ(0);
}
.menu-column__link:hover:not([disabled]),
.menu-column__link:focus:not([disabled]),
.menu-column__link.active {
  color: #fff;
}
.menu-column__link:hover:not([disabled]):after,
.menu-column__link:focus:not([disabled]):after,
.menu-column__link.active:after {
  transform: translateX(100%) translateZ(0);
}
.menu-column__link:after {
  content: '';
  width: 100%;
  height: 2px;
  right: 100%;
  bottom: 0;
  background: #0cc;
  position: absolute;
  transform: translateX(0%) translateZ(0);
  transition: transform 0.2s ease;
}
.menu-line {
  display: flex;
  flex-wrap: wrap;
}
.menu-line_centered {
  justify-content: center;
}
.menu-line__item {
  text-transform: uppercase;
  margin-bottom: 20px;
}
.menu-line__item:not(:last-child) {
  margin-right: 28px;
}
.menu-line__link {
  position: relative;
  display: inline-block;
  vertical-align: top;
  padding-bottom: 8px;
  text-decoration: none;
  color: currentColor;
  transition: color 0.2s ease;
  overflow: hidden;
  line-height: 1.2;
  transform: translateZ(0);
}
.menu-line__link:hover:not([disabled]),
.menu-line__link:focus:not([disabled]),
.menu-line__link.active {
  color: #161616;
}
.menu-line__link:hover:not([disabled]):after,
.menu-line__link:focus:not([disabled]):after,
.menu-line__link.active:after {
  transform: translateX(100%) translateZ(0);
}
.menu-line__link:after {
  content: '';
  width: 100%;
  height: 2px;
  right: 100%;
  bottom: 0;
  background: #0cc;
  position: absolute;
  transform: translateX(0%) translateZ(0);
  transition: transform 0.2s ease;
}
.news-card {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: block;
  background: #000;
  text-decoration: none;
  color: #fff;
  padding-bottom: 100%;
}
.news-card__image {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-size: cover;
  background-position: 50%;
  z-index: 1;
  opacity: 0.8;
  transform: scale(1.2);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.news-card:hover .news-card__image {
  transform: scale(1);
  opacity: 0.6;
}
.news-card__content {
  font-size: 15px;
  line-height: 1.615384615384615;
  text-transform: uppercase;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 25px;
}
@media only screen and (max-width: 46.9em) {
  .news-card__content {
    font-size: 14px;
  }
}
@media only screen and (min-width: 46.91em) {
  .news-card_size_large .news-card__content {
    font-size: 20px;
    padding: 50px;
  }
}
.news-card__label {
  display: inline-block;
  vertical-align: top;
  padding: 0 8px 1px;
  margin-left: -8px;
  margin-bottom: 12px;
}
@media only screen and (min-width: 46.91em) {
  .news-card_size_large .news-card__label {
    padding: 3px 15px 4px;
    margin-left: -15px;
    margin-bottom: 14px;
  }
}
.news-card__label_color_red {
  background: #f24841;
}
.news-card__label_color_blue {
  background: #686bb1;
}
.news-card__label_color_orange {
  background: #f98e3c;
}
.news-card__date {
  display: flex;
  margin-bottom: 8px;
}
@media only screen and (min-width: 46.91em) {
  .news-card_size_large .news-card__date {
    margin-bottom: 10px;
  }
}
.news-card__day {
  font-family: 'Avalon', Helvetica, sans-serif;
  font-weight: 600;
  font-size: 40px;
  line-height: 1;
  margin-right: 10px;
  margin-left: -4px;
}
@media only screen and (min-width: 46.91em) {
  .news-card_size_large .news-card__day {
    font-size: 72px;
    margin-left: -8px;
    margin-right: 20px;
  }
}
@media only screen and (min-width: 46.91em) {
  .news-card_size_large .news-card__month {
    padding-top: 2px;
  }
}
.page {
  position: relative;
  min-height: 100vh;
}
@media only screen and (max-width: 46.9em) {
  .page {
    min-height: auto;
  }
}
.page__section {
  padding-left: 40px;
  padding-right: 40px;
  margin-left: auto;
  margin-right: auto;
  min-height: 50vh;
  padding-top: 100px;
  padding-bottom: 80px;
  position: relative;
}
@media only screen and (max-width: 80em) {
  .page__section {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media only screen and (max-width: 46.9em) {
  .page__section {
    padding-top: 60px;
    padding-bottom: 40px;
    min-height: auto;
  }
}
.page__section_size_full {
  min-height: 100vh;
}
.page__section_centered {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 80px;
}
.page__cover {
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #202020;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.page__cover-inner {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}
.page__container {
  width: 100%;
  max-width: 740px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}
.page__title {
  font-family: 'Avalon', Helvetica, sans-serif;
  font-weight: 600;
  font-size: 60px;
  line-height: 1.2;
  text-transform: uppercase;
  padding-top: 80px;
}
@media only screen and (max-width: 46.9em) {
  .page__title {
    font-size: 40px;
  }
}
@media only screen and (max-width: 46.9em) {
  .page__title {
    padding-top: 40px;
  }
}
.page__title:not(:last-child) {
  margin-bottom: 40px;
}
.page__title_centered {
  text-align: center;
}
.page__title_bigger {
  font-family: 'Avalon', Helvetica, sans-serif;
  font-weight: 600;
  font-size: 80px;
  line-height: 1.125;
  text-transform: uppercase;
}
@media only screen and (max-width: 80em) {
  .page__title_bigger {
    font-size: 60px;
  }
}
@media only screen and (max-width: 46.9em) {
  .page__title_bigger {
    font-size: 50px;
  }
}
.page__title-description {
  font-size: 20px;
  line-height: 1.666666666666667;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 46.9em) {
  .page__title-description {
    font-size: 16px;
  }
}
.page__subtitle {
  font-size: 26px;
  line-height: 1.666666666666667;
  text-transform: uppercase;
  margin-bottom: 28px;
}
@media only screen and (max-width: 46.9em) {
  .page__subtitle {
    font-size: 20px;
  }
}
.page__text {
  font-size: 15px;
  line-height: 1.615384615384615;
  margin-bottom: 48px;
  max-width: 610px;
}
@media only screen and (max-width: 46.9em) {
  .page__text {
    font-size: 14px;
  }
}
@media only screen and (max-width: 46.9em) {
  .page__text:last-child {
    margin-bottom: 0;
  }
}
.page__text p {
  margin-bottom: 25px;
}
.page__text h2 {
  font-size: 26px;
  line-height: 1.666666666666667;
  text-transform: uppercase;
  margin-bottom: 28px;
}
@media only screen and (max-width: 46.9em) {
  .page__text h2 {
    font-size: 20px;
  }
}
.page__text img {
  margin-bottom: 2px;
  max-width: 100%;
}
.page__image {
  margin: 0 0 25px;
}
.page__image-item {
  margin-bottom: 2px;
  max-width: 100%;
}
.page__image-description {
  opacity: 0.4;
}
.product-card {
  position: relative;
  width: 100%;
  overflow: hidden;
}
@media only screen and (min-width: 46.91em) {
  .product-card {
    padding-bottom: 100%;
  }
}
.product-card_ui_white {
  color: #fff;
}
.product-card__body {
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 18px;
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 46.91em) {
  .product-card__body {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
  }
}
.product-card_size_large .product-card__body {
  padding-top: 36px;
}
@media only screen and (max-width: 46.9em) {
  .product-card_size_large .product-card__body {
    padding-top: 20px;
  }
}
.product-card__head {
  display: flex;
  justify-content: space-between;
  flex-shrink: 0;
  align-items: flex-start;
  position: relative;
  z-index: 3;
}
@media only screen and (min-width: 46.91em) {
  .product-card_size_large .product-card__head {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.product-card__image-wrapper {
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
  text-align: center;
  height: 50%;
  margin-top: auto;
  margin-bottom: auto;
  padding-top: 40px;
  padding-bottom: 40px;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 46.9em) {
  .product-card__image-wrapper {
    height: 300px;
  }
}
.product-card__image-inner {
  width: 100%;
  height: 100%;
  position: relative;
}
.product-card__image {
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.product-card__hover {
  z-index: 2;
  padding-bottom: 80px;
  transition: opacity 0.3s ease;
}
@media only screen and (min-width: 46.91em) {
  .product-card__hover {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    padding-left: 20px;
    padding-right: 20px;
    background: #fff;
    opacity: 0;
    padding-top: 66px;
  }
}
@media only screen and (min-width: 46.91em) {
  .product-card_size_large .product-card__hover {
    padding-left: 40px;
    padding-right: 40px;
    padding-top: 120px;
  }
}
@media only screen and (min-width: 46.91em) {
  .product-card_ui_white .product-card__hover {
    background: #020202;
  }
}
.product-card__hover:hover {
  opacity: 1;
}
.product-card__hover-body {
  overflow: hidden;
  height: 100%;
  position: relative;
}
.product-card__hover-body:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 15px;
  background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, #fff 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}
@media only screen and (max-width: 46.9em) {
  .product-card__hover-body:after {
    display: none;
  }
}
.product-card_ui_white .product-card__hover-body:after {
  background: linear-gradient(to bottom, rgba(2,2,2,0) 0%, #020202 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}
.product-card__hover-title {
  font-size: 20px;
  line-height: 1.666666666666667;
  position: relative;
  display: inline-block;
  vertical-align: top;
  padding-bottom: 8px;
  text-decoration: none;
  color: currentColor;
  transition: color 0.2s ease;
  overflow: hidden;
  line-height: 1.2;
  transform: translateZ(0);
  text-transform: uppercase;
  margin-bottom: 20px;
}
@media only screen and (max-width: 46.9em) {
  .product-card__hover-title {
    font-size: 16px;
  }
}
.product-card__hover-title:hover:not([disabled]),
.product-card__hover-title:focus:not([disabled]),
.product-card__hover-title.active {
  color: currentColor;
}
.product-card__hover-title:hover:not([disabled]):after,
.product-card__hover-title:focus:not([disabled]):after,
.product-card__hover-title.active:after {
  transform: translateX(100%) translateZ(0);
}
.product-card__hover-title:after {
  content: '';
  width: 100%;
  height: 2px;
  right: 100%;
  bottom: 0;
  background: #0cc;
  position: absolute;
  transform: translateX(0%) translateZ(0);
  transition: transform 0.2s ease;
}
@media only screen and (min-width: 46.91em) {
  .product-card_size_large .product-card__hover-title {
    font-size: 32px;
    margin-bottom: 40px;
  }
}
@media only screen and (min-width: 46.91em) and (max-width: 46.9em) {
  .product-card_size_large .product-card__hover-title {
    font-size: 18px;
  }
}
.product-card__hover-title strong {
  color: #0cc;
}
.product-card__options-list {
  margin-bottom: 10px;
}
@media only screen and (min-width: 46.91em) {
  .product-card_size_large .product-card__options-list {
    font-size: 20px;
    line-height: 1.666666666666667;
  }
}
@media only screen and (min-width: 46.91em) and (max-width: 46.9em) {
  .product-card_size_large .product-card__options-list {
    font-size: 16px;
  }
}
.product-card__option {
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 22px;
  position: relative;
}
.product-card__option:not(:last-child) {
  border-bottom: 1px solid currentColor;
}
@media only screen and (min-width: 46.91em) {
  .product-card_size_large .product-card__option:not(:last-child) {
    border-width: 2px;
  }
}
.product-card__option:before {
  content: '';
  position: absolute;
  width: 4px;
  height: 4px;
  background: currentColor;
  border-radius: 100%;
  left: 2px;
  top: 14px;
}
@media only screen and (min-width: 46.91em) {
  .product-card_size_large .product-card__option:before {
    width: 6px;
    height: 6px;
    top: 23px;
  }
}
.product-card__hover-footer {
  font-size: 20px;
  line-height: 1.666666666666667;
  line-height: 1.2;
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
  align-items: center;
  left: 20px;
  right: 20px;
  bottom: 20px;
}
@media only screen and (max-width: 46.9em) {
  .product-card__hover-footer {
    font-size: 16px;
  }
}
@media only screen and (min-width: 46.91em) {
  .product-card__hover-footer {
    position: absolute;
  }
}
@media only screen and (max-width: 80em) {
  .product-card__hover-footer {
    left: 20px;
    right: 20px;
    bottom: 20px;
  }
}
.product-card_size_large .product-card__hover-footer {
  left: 40px;
  right: 40px;
  bottom: 40px;
}
@media only screen and (min-width: 46.91em) {
  .product-card_size_large .product-card__hover-footer {
    font-size: 26px;
    line-height: 1.666666666666667;
  }
}
@media only screen and (min-width: 46.91em) and (max-width: 46.9em) {
  .product-card_size_large .product-card__hover-footer {
    font-size: 20px;
  }
}
.product-card__description-left {
  font-size: 26px;
  line-height: 1.666666666666667;
  margin-top: -0.14em;
}
@media only screen and (max-width: 46.9em) {
  .product-card__description-left {
    font-size: 20px;
  }
}
@media only screen and (min-width: 46.91em) {
  .product-card_size_large .product-card__description-left {
    font-size: 38px;
  }
}
@media only screen and (min-width: 46.91em) and (max-width: 46.9em) {
  .product-card_size_large .product-card__description-left {
    font-size: 32px;
  }
}
.product-card__description-right {
  font-size: 20px;
  line-height: 1.666666666666667;
}
@media only screen and (max-width: 46.9em) {
  .product-card__description-right {
    font-size: 16px;
  }
}
@media only screen and (min-width: 46.91em) {
  .product-card_size_large .product-card__description-right {
    font-size: 26px;
    line-height: 1.666666666666667;
  }
}
@media only screen and (min-width: 46.91em) and (max-width: 46.9em) {
  .product-card_size_large .product-card__description-right {
    font-size: 20px;
  }
}
.product-card__description {
  font-size: 20px;
  line-height: 1.666666666666667;
  margin-bottom: 30px;
  text-align: center;
  margin-top: 20px;
}
@media only screen and (max-width: 46.9em) {
  .product-card__description {
    font-size: 16px;
  }
}
.product-card__icons {
  margin-bottom: 80px;
  text-align: center;
}
.product-card__icon {
  margin-left: 20px;
  margin-right: 20px;
  display: inline-block;
  vertical-align: middle;
  max-height: 35px;
}
@media only screen and (max-width: 46.9em) {
  .product-card__icon {
    margin-left: 15px;
    margin-right: 15px;
    max-height: 25px;
  }
}
.product-card__button {
  position: relative;
  display: inline-block;
  vertical-align: top;
  padding-bottom: 8px;
  text-decoration: none;
  color: currentColor;
  transition: color 0.2s ease;
  overflow: hidden;
  line-height: 1.2;
  transform: translateZ(0);
  color: #0cc;
  margin-bottom: -10px;
}
.product-card__button:hover:not([disabled]),
.product-card__button:focus:not([disabled]),
.product-card__button.active {
  color: #0cc;
}
.product-card__button:hover:not([disabled]):after,
.product-card__button:focus:not([disabled]):after,
.product-card__button.active:after {
  transform: translateX(100%) translateZ(0);
}
.product-card__button:after {
  content: '';
  width: 100%;
  height: 2px;
  right: 100%;
  bottom: 0;
  background: #0cc;
  position: absolute;
  transform: translateX(0%) translateZ(0);
  transition: transform 0.2s ease;
}
.product-card_ui_white .product-card__button {
  position: relative;
  display: inline-block;
  vertical-align: top;
  padding-bottom: 8px;
  text-decoration: none;
  color: currentColor;
  transition: color 0.2s ease;
  overflow: hidden;
  line-height: 1.2;
  transform: translateZ(0);
  color: #0cc;
}
.product-card_ui_white .product-card__button:hover:not([disabled]),
.product-card_ui_white .product-card__button:focus:not([disabled]),
.product-card_ui_white .product-card__button.active {
  color: #0cc;
}
.product-card_ui_white .product-card__button:hover:not([disabled]):after,
.product-card_ui_white .product-card__button:focus:not([disabled]):after,
.product-card_ui_white .product-card__button.active:after {
  transform: translateX(100%) translateZ(0);
}
.product-card_ui_white .product-card__button:after {
  content: '';
  width: 100%;
  height: 2px;
  right: 100%;
  bottom: 0;
  background: #0cc;
  position: absolute;
  transform: translateX(0%) translateZ(0);
  transition: transform 0.2s ease;
}
.product-carousel__container {
  padding-bottom: 25px;
}
.product-carousel__item {
  width: 200px;
  text-decoration: none;
  color: currentColor;
}
.product-carousel__item-image-wrapper {
  height: 130px;
  padding: 24px 35px;
  background: #f9f9f9;
  margin-bottom: 12px;
}
.product-carousel__item-image {
  display: block;
  max-width: 100%;
  max-height: 100%;
  margin-left: auto;
  margin-right: auto;
}
.product-carousel__item-title {
  position: relative;
  display: inline-block;
  vertical-align: top;
  padding-bottom: 8px;
  text-decoration: none;
  color: currentColor;
  transition: color 0.2s ease;
  overflow: hidden;
  transform: translateZ(0);
  line-height: 1.5;
}
.product-carousel__item-title:after {
  content: '';
  width: 100%;
  height: 2px;
  right: 100%;
  bottom: 0;
  background: #0cc;
  position: absolute;
  transform: translateX(0%) translateZ(0);
  transition: transform 0.2s ease;
}
.product-carousel__item:hover .product-carousel__item-title:after {
  transform: translateX(100%) translateZ(0);
}
.product-carousel .swiper-scrollbar {
  background: #f1f1f1;
  left: 0;
  width: 100%;
}
.product-carousel .swiper-scrollbar-drag {
  background: #161616;
}
.product__head {
  padding-top: 180px;
  padding-bottom: 120px;
  background-size: cover;
  background-position: 50%;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 46.9em) {
  .product__head {
    display: block;
    padding-top: 120px;
    padding-bottom: 10px;
  }
}
.product__head_ui_black {
  color: #202020;
  background-color: #fff;
}
.product__head_ui_white {
  color: #fff;
  background-color: #101010;
}
.product__head-image-column {
  width: 50%;
}
@media only screen and (max-width: 46.9em) {
  .product__head-image-column {
    width: 100%;
    margin-bottom: 40px;
  }
}
.product__head-image-column:first-child {
  padding-right: 40px;
}
@media only screen and (max-width: 46.9em) {
  .product__head-image-column:first-child {
    padding-right: 0;
  }
}
.product__head-image-column:last-child {
  text-align: right;
}
.product__head-text-column {
  width: 50%;
  padding-right: 40px;
}
@media only screen and (max-width: 46.9em) {
  .product__head-text-column {
    padding-left: 40px;
    padding-right: 40px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    margin-bottom: 40px;
  }
}
.product__head-text-column:first-child {
  padding-left: 40px;
}
@media only screen and (max-width: 46.9em) {
  .product__head-text-column:first-child {
    padding-right: 0;
  }
}
@media only screen and (max-width: 46.9em) and (max-width: 80em) {
  .product__head-text-column {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.product__head-image {
  max-width: 100%;
}
.product__head-description {
  font-size: 15px;
  line-height: 1.615384615384615;
  margin-bottom: 4px;
}
@media only screen and (max-width: 46.9em) {
  .product__head-description {
    font-size: 14px;
  }
}
.product__head-title {
  font-family: 'Avalon', Helvetica, sans-serif;
  font-weight: 600;
  font-size: 50px;
  line-height: 1.2;
  margin-bottom: 18px;
}
@media only screen and (max-width: 46.9em) {
  .product__head-title {
    font-size: 40px;
  }
}
.product__head-name {
  font-size: 15px;
  line-height: 1.615384615384615;
  margin-bottom: 30px;
}
@media only screen and (max-width: 46.9em) {
  .product__head-name {
    font-size: 14px;
  }
}
.product__head-features {
  margin-bottom: 28px;
}
.product__head-feature {
  display: inline-block;
  vertical-align: top;
  margin-right: 20px;
  max-width: 26px;
}
.product__head-buttons {
  display: block;
}
.product__head-button {
  display: inline-block;
  vertical-align: top;
  padding: 16px 18px;
  margin-right: 8px;
  margin-bottom: 12px;
  color: currentColor;
  text-decoration: none;
  transition: 0.3s;
}
.product__head_ui_white .product__head-button {
  background: #1c1c1c;
}
.product__head_ui_white .product__head-button:hover {
  background: #0cc;
}
.product__head_ui_black .product__head-button {
  background: #999;
}
.product__head_ui_black .product__head-button:hover {
  background: #0cc;
  color: #fff;
}
.product__menu {
  display: block;
  position: relative;
  z-index: 1;
}
.product__menu-inner {
  font-size: 15px;
  line-height: 1.615384615384615;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding-top: 104px;
  background: #151515;
  color: #fff;
}
@media only screen and (max-width: 46.9em) {
  .product__menu-inner {
    font-size: 14px;
  }
}
@media only screen and (max-width: 46.9em) {
  .product__menu-inner {
    padding-top: 65px;
  }
}
.product__menu-list {
  margin-left: auto;
}
.product__menu-link {
  padding-left: 40px;
  padding-right: 40px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 18px;
  padding-bottom: 18px;
  color: currentColor;
  display: inline-block;
  vertical-align: top;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
}
@media only screen and (max-width: 80em) {
  .product__menu-link {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media only screen and (max-width: 46.9em) {
  .product__menu-link {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
.product__menu-link:hover {
  color: #fff;
  background: #0cc;
}
.product__menu-link_markered {
  background: #0cc;
  color: #202020;
}
.product__menu-link_markered:hover {
  color: #fff;
}
@media only screen and (max-width: 46.9em) {
  .product__stick-bar {
    display: none;
  }
}
.product__full-image {
  width: 100%;
  display: block;
}
.product__block {
  position: relative;
  background-size: cover;
  background-position: 50%;
  z-index: 0;
}
.product__support-list {
  display: flex;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 100px;
}
@media only screen and (max-width: 46.9em) {
  .product__support-list {
    display: block;
    padding-bottom: 30px;
  }
}
.product__support-item {
  padding-left: 40px;
  padding-right: 40px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
@media only screen and (max-width: 80em) {
  .product__support-item {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media only screen and (max-width: 46.9em) {
  .product__support-item {
    margin-bottom: 40px;
  }
}
.product__support-item-link {
  text-decoration: none;
  color: currentColor;
}
.product__support-icon-wrapper {
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  font-size: 38px;
}
.product__support-title {
  font-family: 'Avalon', Helvetica, sans-serif;
  font-weight: 600;
  position: relative;
  display: inline-block;
  font-size: 16px;
  margin-bottom: 5px;
  overflow: hidden;
  padding-bottom: 8px;
}
.product__support-title:after {
  content: '';
  width: 100%;
  height: 2px;
  right: 100%;
  bottom: 0;
  background: #0cc;
  position: absolute;
  transform: translateX(0%) translateZ(0);
  transition: transform 0.2s ease;
}
.product__support-item-link:hover .product__support-title:after {
  transform: translateX(100%) translateZ(0);
}
.product__support-text {
  font-size: 15px;
  line-height: 1.615384615384615;
  color: #5c5c5c;
}
@media only screen and (max-width: 46.9em) {
  .product__support-text {
    font-size: 14px;
  }
}
.promo-block {
  height: 50vh;
  min-height: 400px;
  position: relative;
  background-size: cover;
  background-position: 50%;
  background-color: #202020;
  color: #fff;
}
.promo-block:before {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  content: '';
  opacity: 0.1;
  background: #202020;
  z-index: 1;
}
.promo-block__content {
  padding-left: 40px;
  padding-right: 40px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 80em) {
  .promo-block__content {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.promo-block__content-inner {
  width: 100%;
  max-width: 740px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: space-between;
  height: 100%;
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
  z-index: 2;
}
.promo-block__title {
  font-size: 26px;
  line-height: 1.666666666666667;
  text-transform: uppercase;
  margin-top: -0.417em;
}
@media only screen and (max-width: 46.9em) {
  .promo-block__title {
    font-size: 20px;
  }
}
.raw-html h2 {
  font-family: 'Avalon', Helvetica, sans-serif;
  font-weight: 600;
  font-size: 50px;
  line-height: 1.2;
  margin-bottom: 1em;
}
@media only screen and (max-width: 46.9em) {
  .raw-html h2 {
    font-size: 40px;
  }
}
.raw-html h3 {
  font-size: 38px;
  margin-bottom: 1em;
}
@media only screen and (max-width: 46.9em) {
  .raw-html h3 {
    font-size: 32px;
  }
}
.raw-html p {
  font-size: 15px;
  line-height: 1.615384615384615;
  margin-bottom: 1em;
}
@media only screen and (max-width: 46.9em) {
  .raw-html p {
    font-size: 14px;
  }
}
.raw-html ul,
.raw-html ol {
  font-size: 15px;
  line-height: 1.615384615384615;
  margin-bottom: 1em;
  list-style-position: inside;
}
@media only screen and (max-width: 46.9em) {
  .raw-html ul,
  .raw-html ol {
    font-size: 14px;
  }
}
.raw-html ol {
  list-style-type: decimal;
}
.raw-html ul {
  list-style-type: disc;
}
.raw-html a {
  position: relative;
  display: inline-block;
  vertical-align: top;
  padding-bottom: 8px;
  text-decoration: none;
  color: currentColor;
  transition: color 0.2s ease;
  overflow: hidden;
  line-height: 1.2;
  transform: translateZ(0);
}
.raw-html a:hover:not([disabled]),
.raw-html a:focus:not([disabled]),
.raw-html a.active {
  color: currentColor;
}
.raw-html a:hover:not([disabled]):after,
.raw-html a:focus:not([disabled]):after,
.raw-html a.active:after {
  transform: translateX(100%) translateZ(0);
}
.raw-html a:after {
  content: '';
  width: 100%;
  height: 2px;
  right: 100%;
  bottom: 0;
  background: #0cc;
  position: absolute;
  transform: translateX(0%) translateZ(0);
  transition: transform 0.2s ease;
}
.reviews-slider {
  background-color: #1a1a1a;
  color: #fff;
  overflow: hidden;
  position: relative;
}
.reviews-slider__container {
  padding-bottom: 70px;
}
@media only screen and (max-width: 46.9em) {
  .reviews-slider__container {
    padding-bottom: 40px;
  }
}
.reviews-slider__slide {
  padding-left: 40px;
  padding-right: 40px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}
@media only screen and (max-width: 80em) {
  .reviews-slider__slide {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.reviews-slider__navigation {
  position: absolute;
  width: 25%;
  top: 0;
  bottom: 0;
  z-index: 2;
}
.reviews-slider__navigation_left {
  left: 0;
}
.reviews-slider__navigation_right {
  right: 0;
}
.reviews-slider__slide-container {
  padding-left: 40px;
  padding-right: 40px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 100px;
  padding-bottom: 100px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
@media only screen and (max-width: 80em) {
  .reviews-slider__slide-container {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media only screen and (max-width: 46.9em) {
  .reviews-slider__slide-container {
    padding-top: 40px;
    padding-bottom: 60px;
  }
}
.reviews-slider__slide-container:before,
.reviews-slider__slide-container:after {
  font-family: 'Avalon', Helvetica, sans-serif;
  font-weight: 600;
  font-size: 50px;
  line-height: 1.2;
  position: absolute;
  top: 100px;
  color: #45dd95;
}
@media only screen and (max-width: 46.9em) {
  .reviews-slider__slide-container:before,
  .reviews-slider__slide-container:after {
    font-size: 40px;
  }
}
.reviews-slider__slide-container:before {
  content: '\201C';
  right: 100%;
}
@media only screen and (max-width: 46.9em) {
  .reviews-slider__slide-container:before {
    margin-right: -10px;
  }
}
.reviews-slider__slide-container:after {
  content: '\201D';
  left: 100%;
}
@media only screen and (max-width: 46.9em) {
  .reviews-slider__slide-container:after {
    margin-left: -10px;
  }
}
.reviews-slider__slide-text {
  font-size: 38px;
  margin-bottom: 45px;
}
@media only screen and (max-width: 46.9em) {
  .reviews-slider__slide-text {
    font-size: 32px;
  }
}
.reviews-slider__slide-image {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.reviews-slider .swiper-pagination {
  bottom: 75px;
}
@media only screen and (max-width: 46.9em) {
  .reviews-slider .swiper-pagination {
    bottom: 40px;
  }
}
.reviews-slider .swiper-pagination-bullet {
  background: #444;
  opacity: 1;
  width: 6px;
  height: 6px;
}
.reviews-slider .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #45dd95;
}
.scroll-top {
  position: fixed;
  right: 40px;
  bottom: 40px;
  width: 50px;
  height: 50px;
  z-index: 10;
  font-size: 8px;
  background: #d1d1d1;
  transition: background 0.3s ease;
  color: #fff;
  border-radius: 100%;
  display: none;
}
@media only screen and (max-width: 46.9em) {
  .scroll-top {
    right: 20px;
    bottom: 20px;
  }
}
.scroll-top:hover {
  background: #0cc;
}
.search-message {
  display: flex;
  min-height: 500px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #9e9e9e;
}
.search-message__message-icon {
  margin-bottom: 10px;
  color: #c9c9c9;
  width: 500px;
  max-width: 100%;
  text-align: center;
}
.search-message__message-icon img {
  max-width: 100%;
}
.search-message__message-text {
  font-size: 15px;
  line-height: 1.615384615384615;
  text-align: center;
  text-transform: uppercase;
}
@media only screen and (max-width: 46.9em) {
  .search-message__message-text {
    font-size: 14px;
  }
}
.select {
  position: relative;
  width: 100%;
  height: 60px;
}
@media only screen and (max-width: 46.9em) {
  .select {
    height: 50px;
  }
}
.select__input {
  padding-left: 40px;
  padding-right: 40px;
  margin-left: auto;
  margin-right: auto;
  font-size: 15px;
  line-height: 1.615384615384615;
  text-transform: uppercase;
  width: 100%;
  border-radius: 0;
  -webkit-appearance: none;
  border: 0;
  background: #fff;
  position: relative;
  height: 100%;
}
@media only screen and (max-width: 80em) {
  .select__input {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media only screen and (max-width: 46.9em) {
  .select__input {
    font-size: 14px;
  }
}
.select__overlay {
  display: none;
  position: absolute;
  left: 0;
  width: 100%;
  top: 100%;
  height: 100vh;
  background: rgba(0,0,0,0.25);
  z-index: 2;
  transform: translateZ(0);
}
.choices__list.choices__list--dropdown {
  color: #161616;
}
.choices {
  height: 100%;
}
.choices__inner {
  padding-left: 40px;
  padding-right: 40px;
  margin-left: auto;
  margin-right: auto;
  border: 0;
  height: 100%;
  display: flex;
  align-items: center;
  width: 100%;
  background: none;
}
@media only screen and (max-width: 80em) {
  .choices__inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.choices[data-type*="select-one"]:after {
  right: 24px;
}
.choices__list {
  padding: 0;
}
.choices__list--dropdown {
  border: 0;
  border-radius: 0;
  z-index: 3;
}
.choices__item {
  font-size: 15px;
  line-height: 1.615384615384615;
}
@media only screen and (max-width: 46.9em) {
  .choices__item {
    font-size: 14px;
  }
}
.choices__list--single .choices__item {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.choices__list--dropdown .choices__item {
  font-size: 15px;
  line-height: 1.615384615384615;
}
@media only screen and (max-width: 46.9em) {
  .choices__list--dropdown .choices__item {
    font-size: 14px;
  }
}
.choices .choices__item--choice {
  padding-left: 40px;
  padding-right: 40px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 22px;
  padding-bottom: 22px;
}
@media only screen and (max-width: 80em) {
  .choices .choices__item--choice {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.choices__item--choice:after {
  display: none;
}
.simple-slider {
  font-size: 14px;
  position: relative;
}
.simple-slider__container {
  padding-bottom: 45px;
}
.simple-slider__slide {
  position: relative;
}
.simple-slider__description {
  position: absolute;
  top: 100%;
  left: 0;
  text-transform: uppercase;
  padding-top: 8px;
  width: 100%;
  padding-right: 60px;
  opacity: 0.4;
}
.simple-slider__image {
  width: 100%;
  display: block;
}
.simple-slider .simple-slider__pagination {
  position: absolute;
  bottom: 19px;
  right: 0;
  width: auto;
  left: auto;
  opacity: 0.4;
}
.simple-slider__navigation {
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background: #fff;
  bottom: 50%;
  z-index: 2;
  transition: color 0.3s ease;
}
.simple-slider__navigation.swiper-button-disabled {
  cursor: default;
  opacity: 0.4;
}
.simple-slider__navigation:hover:not(.swiper-button-disabled) {
  color: #0cc;
}
.simple-slider__navigation:after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.simple-slider__navigation_left {
  left: 12px;
}
.simple-slider__navigation_left:after {
  width: 0;
  height: 0;
  background: 0;
  border-style: solid;
  border-width: 4.5px 6px 4.5px 0;
  border-color: transparent currentColor transparent transparent;
  margin-left: -1px;
}
.simple-slider__navigation_right {
  right: 12px;
}
.simple-slider__navigation_right:after {
  width: 0;
  height: 0;
  background: 0;
  border-style: solid;
  border-width: 4.5px 0 4.5px 6px;
  border-color: transparent transparent transparent currentColor;
  margin-left: 1px;
}
.specs-block {
  background: #141414;
  color: #fff;
  text-align: center;
  padding-top: 88px;
  padding-bottom: 100px;
}
@media only screen and (max-width: 46.9em) {
  .specs-block {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.specs-block__title {
  font-family: 'Avalon', Helvetica, sans-serif;
  font-weight: 600;
  font-size: 50px;
  line-height: 1.2;
  padding-left: 40px;
  padding-right: 40px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 28px;
}
@media only screen and (max-width: 46.9em) {
  .specs-block__title {
    font-size: 40px;
  }
}
@media only screen and (max-width: 80em) {
  .specs-block__title {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.specs-block__title strong {
  color: #0cc;
}
.specs-block__text {
  font-size: 15px;
  line-height: 1.615384615384615;
  padding-left: 40px;
  padding-right: 40px;
  margin-left: auto;
  margin-right: auto;
  color: #b4b4b4;
  margin-bottom: 46px;
}
@media only screen and (max-width: 46.9em) {
  .specs-block__text {
    font-size: 14px;
  }
}
@media only screen and (max-width: 80em) {
  .specs-block__text {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.specs-block__list {
  margin-top: 110px;
}
@media only screen and (max-width: 46.9em) {
  .specs-block__list {
    margin-top: 40px;
  }
}
.specs-block__line {
  display: flex;
  justify-content: center;
}
@media only screen and (max-width: 46.9em) {
  .specs-block__line {
    display: block;
  }
}
.specs-block__line:not(:last-child) {
  border-bottom: 1px solid #222;
}
@media only screen and (max-width: 46.9em) {
  .specs-block__line:not(:last-child) {
    border: 0;
  }
}
.specs-block__item {
  padding-left: 40px;
  padding-right: 40px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 50px;
  padding-bottom: 55px;
  margin: 0;
  width: 100%;
  max-width: 430px;
}
@media only screen and (max-width: 80em) {
  .specs-block__item {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media only screen and (max-width: 46.9em) {
  .specs-block__item {
    padding-top: 0;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #222;
    margin-right: auto;
    margin-left: auto;
  }
}
.specs-block__item:not(:last-child) {
  border-right: 1px solid #222;
}
@media only screen and (max-width: 46.9em) {
  .specs-block__item:not(:last-child) {
    border-right: 0;
  }
}
.specs-block__line:first-child .specs-block__item {
  padding-top: 0;
}
.specs-block__line:last-child .specs-block__item {
  padding-bottom: 0;
}
@media only screen and (max-width: 46.9em) {
  .specs-block__line:last-child .specs-block__item {
    padding-bottom: 20px;
  }
}
.specs-block__item-title {
  font-family: 'Avalon', Helvetica, sans-serif;
  font-weight: 600;
  font-size: 38px;
  color: #0cc;
  margin-bottom: 3px;
}
@media only screen and (max-width: 46.9em) {
  .specs-block__item-title {
    font-size: 32px;
  }
}
.specs-block__item-title sup {
  font-size: 0.6em;
  top: -0.7em;
}
.specs-block__item-text {
  font-size: 15px;
  line-height: 1.615384615384615;
  color: #b4b4b4;
}
@media only screen and (max-width: 46.9em) {
  .specs-block__item-text {
    font-size: 14px;
  }
}
.specs-list {
  background: #141414;
  color: #fff;
  padding-bottom: 100px;
}
@media only screen and (max-width: 46.9em) {
  .specs-list {
    padding-bottom: 80px;
  }
}
.specs-list__more {
  padding-left: 40px;
  padding-right: 40px;
  margin-left: auto;
  margin-right: auto;
  max-width: 1350px;
  display: none;
}
@media only screen and (max-width: 80em) {
  .specs-list__more {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.specs-list__more-inner {
  padding-bottom: 60px;
}
.specs-list__more-group {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 6px;
}
.specs-list__more-title {
  font-family: 'Avalon', Helvetica, sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.666666666666667;
  width: 100%;
  margin-bottom: 27px;
}
@media only screen and (max-width: 46.9em) {
  .specs-list__more-title {
    font-size: 16px;
  }
}
.specs-list__more-item {
  width: 25%;
  padding-right: 40px;
  margin-bottom: 30px;
}
@media only screen and (max-width: 46.9em) {
  .specs-list__more-item {
    width: 50%;
  }
}
.specs-list__more-item-name {
  color: #ccc;
  font-size: 13px;
  margin-bottom: 6px;
}
.specs-list__more-item-value {
  font-size: 15px;
  line-height: 1.615384615384615;
  color: #fff;
  word-break: break-all;
  word-break: break-word;
}
@media only screen and (max-width: 46.9em) {
  .specs-list__more-item-value {
    font-size: 14px;
  }
}
.specs-list__button {
  border-radius: 50px;
  height: 50px;
  font-size: 15px;
  line-height: 50px;
  padding: 0 20px;
  text-transform: uppercase;
  color: currentColor;
  display: flex;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid #7e7e7e;
}
.specs-list .specs-list__button_opened .icon {
  transform: scale(1, -1);
}
.specs-list__button .icon {
  font-size: 7px;
  margin-left: 15px;
  transform: scale(1, 1);
  transition: transform 0.3s ease;
}
.specs-list__button-text-wrapper {
  overflow: hidden;
  height: 50px;
}
.specs-list__button-text {
  transform: translateY(0%);
  transition: transform 0.3s ease;
}
.specs-list__button_opened .specs-list__button-text {
  transform: translateY(-100%);
}
.stick-bar {
  position: relative;
  z-index: 2;
}
.stick-bar__inner {
  font-size: 15px;
  line-height: 1.615384615384615;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  background: #151515;
  color: #fff;
  position: relative;
}
@media only screen and (max-width: 46.9em) {
  .stick-bar__inner {
    font-size: 14px;
  }
}
.stick-bar_ui_black .stick-bar__inner {
  background: #fff;
  color: #161616;
}
.stick-bar_ui_white .stick-bar__inner {
  background: #d5d5d5;
  color: #161616;
}
.stick-bar__column {
  width: 25%;
  display: flex;
  border-right: 1px solid #f9f9f9;
  border-left: 1px solid #f9f9f9;
}
@media only screen and (max-width: 46.9em) {
  .stick-bar__column {
    width: 50%;
  }
}
.stick-bar__column:first-child {
  border-left: 0;
}
.stick-bar__column:last-child {
  border-right: 0;
  border-left: 0;
  margin-left: auto;
}
@media only screen and (max-width: 46.9em) {
  .stick-bar__column:nth-child(2n) {
    border: 0;
  }
}
.stick-bar_ui_white .stick-bar__column {
  border-color: #c8c8c8;
}
.stick-bar__text {
  padding-left: 40px;
  padding-right: 40px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 15px;
  padding-bottom: 15px;
  margin-left: 0;
}
@media only screen and (max-width: 80em) {
  .stick-bar__text {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.stick-bar__input-wrapper {
  padding-left: 40px;
  padding-right: 40px;
  margin-left: auto;
  margin-right: auto;
  align-self: stretch;
  margin-left: 0;
  display: flex;
  flex-grow: 1;
}
@media only screen and (max-width: 80em) {
  .stick-bar__input-wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media only screen and (max-width: 46.9em) {
  .stick-bar__input-wrapper {
    padding-right: 20px;
  }
}
.stick-bar__input-label {
  align-self: center;
  height: 14px;
}
.stick-bar__input-label .icon {
  font-size: 14px;
  margin-right: 16px;
}
.stick-bar__input {
  color: #fff;
  min-height: 60px;
  flex-grow: 1;
}
.stick-bar__input:-webkit-autofill,
.stick-bar__input:-webkit-autofill:hover,
.stick-bar__input:-webkit-autofill:focus {
  transition: background-color 5000s ease-in-out 0s;
  -webkit-text-fill-color: #fff;
  border-color: #fff;
}
.stick-bar__input::-webkit-input-placeholder {
  color: currentColor !important;
  text-transform: uppercase;
  opacity: 1;
  transition: opacity 0.3s ease;
}
.stick-bar__input:-moz-placeholder {
  color: currentColor !important;
  text-transform: uppercase;
  opacity: 1;
  transition: opacity 0.3s ease;
}
.stick-bar__input::-moz-placeholder {
  color: currentColor !important;
  text-transform: uppercase;
  opacity: 1;
  transition: opacity 0.3s ease;
}
.stick-bar__input:-ms-input-placeholder {
  color: currentColor !important;
  text-transform: uppercase;
  opacity: 1;
  transition: opacity 0.3s ease;
}
.stick-bar__input.placeholder {
  color: currentColor !important;
  text-transform: uppercase;
  opacity: 1;
  transition: opacity 0.3s ease;
}
@media only screen and (max-width: 46.9em) {
  .stick-bar__input {
    min-height: 50px;
    width: 80px;
  }
}
.stick-bar__input:focus::-webkit-input-placeholder {
  color: currentColor !important;
  opacity: 0;
}
.stick-bar__input:focus:-moz-placeholder {
  color: currentColor !important;
  opacity: 0;
}
.stick-bar__input:focus::-moz-placeholder {
  color: currentColor !important;
  opacity: 0;
}
.stick-bar__input:focus:-ms-input-placeholder {
  color: currentColor !important;
  opacity: 0;
}
.stick-bar__input:focus.placeholder {
  color: currentColor !important;
  opacity: 0;
}
.stick-bar__list {
  margin-left: auto;
  display: flex;
}
@media only screen and (max-width: 390px) {
  .stick-bar__list {
    flex-grow: 1;
  }
}
.stick-bar__link {
  padding-left: 40px;
  padding-right: 40px;
  margin-left: auto;
  margin-right: auto;
  display: inline-block;
  vertical-align: top;
  text-transform: uppercase;
  text-decoration: none;
  color: currentColor;
  transition: all 0.3s ease;
  min-height: 60px;
  padding-top: 18px;
  text-align: center;
  cursor: pointer;
}
@media only screen and (max-width: 80em) {
  .stick-bar__link {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media only screen and (max-width: 46.9em) {
  .stick-bar__link {
    min-height: 50px;
  }
}
.stick-bar__link:empty:not(input) {
  display: none;
}
.stick-bar__link_primary {
  background: #0cc;
  color: #202020;
  padding-bottom: 18px;
}
@media only screen and (max-width: 46.9em) {
  .stick-bar__link_primary {
    padding-top: 16px;
    padding-bottom: 15px;
    margin: 0;
  }
}
.stick-bar__link_primary:hover {
  color: #fff;
  background: #0cc;
}
.stick-bar__link:hover:not([disabled]) .stick-bar__link-inner:after,
.stick-bar__link:focus:not([disabled]) .stick-bar__link-inner:after,
.stick-bar__link.active .stick-bar__link-inner:after {
  transform: translateX(100%) translateZ(0);
}
.stick-bar__link.active {
  color: #0cc;
}
.stick-bar__column .stick-bar__link {
  margin: 0;
  flex-grow: 1;
  flex-shrink: 0;
  flex-basis: 50%;
  padding-left: 5px;
  padding-right: 5px;
}
.stick-bar__link-inner {
  position: relative;
  display: inline-block;
  vertical-align: top;
  padding-bottom: 8px;
  text-decoration: none;
  color: currentColor;
  transition: color 0.2s ease;
  overflow: hidden;
  line-height: 1.2;
  transform: translateZ(0);
  margin-top: 0.2em;
}
.stick-bar__link-inner:hover:not([disabled]),
.stick-bar__link-inner:focus:not([disabled]),
.stick-bar__link-inner.active {
  color: #fff;
}
.stick-bar__link-inner:hover:not([disabled]):after,
.stick-bar__link-inner:focus:not([disabled]):after,
.stick-bar__link-inner.active:after {
  transform: translateX(100%) translateZ(0);
}
.stick-bar__link-inner:after {
  content: '';
  width: 100%;
  height: 2px;
  right: 100%;
  bottom: 0;
  background: #0cc;
  position: absolute;
  transform: translateX(0%) translateZ(0);
  transition: transform 0.2s ease;
}
.subscribe-block {
  background: #161616;
  color: #fff;
  padding-top: 120px;
  padding-bottom: 100px;
}
@media only screen and (max-width: 46.9em) {
  .subscribe-block {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.subscribe-block__inner {
  padding-left: 40px;
  padding-right: 40px;
  margin-left: auto;
  margin-right: auto;
  max-width: 1250px;
  display: flex;
  align-items: flex-start;
}
@media only screen and (max-width: 80em) {
  .subscribe-block__inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media only screen and (max-width: 46.9em) {
  .subscribe-block__inner {
    display: block;
  }
}
.subscribe-block__title {
  font-family: 'Avalon', Helvetica, sans-serif;
  font-weight: 600;
  font-size: 26px;
  line-height: 1.666666666666667;
  width: 50%;
  padding-right: 40px;
  line-height: 1.333333333333333;
  margin-bottom: 40px;
  margin-top: -9px;
}
@media only screen and (max-width: 46.9em) {
  .subscribe-block__title {
    font-size: 20px;
  }
}
@media only screen and (max-width: 46.9em) {
  .subscribe-block__title {
    margin-top: 0;
    width: 100%;
  }
}
.subscribe-block__form-wrapper {
  min-width: 40%;
  margin-left: auto;
}
.subscribe-block__message {
  font-family: 'Avalon', Helvetica, sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.666666666666667;
  margin-top: -8px;
}
@media only screen and (max-width: 46.9em) {
  .subscribe-block__message {
    font-size: 16px;
  }
}
.subscribe-block__form {
  display: flex;
  align-items: flex-start;
  margin-top: -1px;
  border-bottom: 1px solid #454545;
  padding: 0;
  min-height: auto;
}
@media only screen and (max-width: 46.9em) {
  .subscribe-block__form {
    width: 100%;
  }
}
.subscribe-block__input-wrapper {
  flex-grow: 1;
  margin-right: 40px;
}
.subscribe-block__input {
  font-family: 'Avalon', Helvetica, sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.666666666666667;
  padding: 0;
  color: currentColor;
  line-height: 1;
  margin-top: -3px;
  padding-bottom: 15px;
  width: 100%;
}
.subscribe-block__input:-webkit-autofill,
.subscribe-block__input:-webkit-autofill:hover,
.subscribe-block__input:-webkit-autofill:focus {
  transition: background-color 5000s ease-in-out 0s;
  -webkit-text-fill-color: #fff;
  border-color: #fff;
}
@media only screen and (max-width: 46.9em) {
  .subscribe-block__input {
    font-size: 16px;
  }
}
.subscribe-block__input::-webkit-input-placeholder {
  color: currentColor !important;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}
.subscribe-block__input:-moz-placeholder {
  color: currentColor !important;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}
.subscribe-block__input::-moz-placeholder {
  color: currentColor !important;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}
.subscribe-block__input:-ms-input-placeholder {
  color: currentColor !important;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}
.subscribe-block__input.placeholder {
  color: currentColor !important;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}
@media only screen and (max-width: 46.9em) {
  .subscribe-block__input {
    margin-right: 20px;
  }
}
.subscribe-block__input:focus::-webkit-input-placeholder {
  color: currentColor !important;
  opacity: 0;
}
.subscribe-block__input:focus:-moz-placeholder {
  color: currentColor !important;
  opacity: 0;
}
.subscribe-block__input:focus::-moz-placeholder {
  color: currentColor !important;
  opacity: 0;
}
.subscribe-block__input:focus:-ms-input-placeholder {
  color: currentColor !important;
  opacity: 0;
}
.subscribe-block__input:focus.placeholder {
  color: currentColor !important;
  opacity: 0;
}
.subscribe-block__input-error {
  text-align: left;
  left: 0;
}
.subscribe-block__submit {
  font-family: 'Avalon', Helvetica, sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.666666666666667;
  position: relative;
  display: inline-block;
  vertical-align: top;
  padding-bottom: 8px;
  text-decoration: none;
  color: currentColor;
  transition: color 0.2s ease;
  overflow: hidden;
  line-height: 1.2;
  transform: translateZ(0);
  text-align: right;
  color: currentColor;
  margin-left: auto;
  flex-shrink: 0;
}
@media only screen and (max-width: 46.9em) {
  .subscribe-block__submit {
    font-size: 16px;
  }
}
.subscribe-block__submit:hover:not([disabled]),
.subscribe-block__submit:focus:not([disabled]),
.subscribe-block__submit.active {
  color: #fff;
}
.subscribe-block__submit:hover:not([disabled]):after,
.subscribe-block__submit:focus:not([disabled]):after,
.subscribe-block__submit.active:after {
  transform: translateX(100%) translateZ(0);
}
.subscribe-block__submit:after {
  content: '';
  width: 100%;
  height: 2px;
  right: 100%;
  bottom: 0;
  background: #0cc;
  position: absolute;
  transform: translateX(0%) translateZ(0);
  transition: transform 0.2s ease;
}
.tabs {
  position: relative;
}
.tabs__head {
  display: flex;
  margin-bottom: 24px;
}
.tabs__head_centered {
  justify-content: center;
}
.tabs__button {
  font-size: 15px;
  line-height: 1.615384615384615;
  position: relative;
  display: inline-block;
  vertical-align: top;
  padding-bottom: 8px;
  text-decoration: none;
  color: currentColor;
  transition: color 0.2s ease;
  overflow: hidden;
  line-height: 1.2;
  transform: translateZ(0);
  line-height: 1;
}
@media only screen and (max-width: 46.9em) {
  .tabs__button {
    font-size: 14px;
  }
}
.tabs__button:hover:not([disabled]),
.tabs__button:focus:not([disabled]),
.tabs__button.active {
  color: #161616;
}
.tabs__button:hover:not([disabled]):after,
.tabs__button:focus:not([disabled]):after,
.tabs__button.active:after {
  transform: translateX(100%) translateZ(0);
}
.tabs__button:after {
  content: '';
  width: 100%;
  height: 2px;
  right: 100%;
  bottom: 0;
  background: #0cc;
  position: absolute;
  transform: translateX(0%) translateZ(0);
  transition: transform 0.2s ease;
}
.tabs__button:not(:last-child) {
  margin-right: 40px;
}
.tabs__button_big {
  font-size: 26px;
  line-height: 1.666666666666667;
  line-height: 1;
}
@media only screen and (max-width: 46.9em) {
  .tabs__button_big {
    font-size: 20px;
  }
}
@media only screen and (max-width: 46.9em) {
  .tabs__button_big {
    font-size: 15px;
    line-height: 1.615384615384615;
    line-height: 1;
  }
}
.tabs__button_big:not(:last-child) {
  margin-right: 56px;
}
@media only screen and (max-width: 46.9em) {
  .tabs__button_big:not(:last-child) {
    margin-right: 40px;
  }
}
@media only screen and (max-width: 46.9em) and (max-width: 46.9em) {
  .tabs__button_big {
    font-size: 14px;
  }
}
.tabs__body {
  position: relative;
}
.tabs__content {
  left: 0;
  top: 0;
  width: 100%;
}
.top-menu {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.9);
  color: #fff;
  z-index: 1;
}
.top-menu__menu {
  padding-left: 40px;
  padding-right: 40px;
  margin-left: auto;
  margin-right: auto;
  display: none;
  width: 100%;
  left: 0;
  top: 0;
}
@media only screen and (max-width: 80em) {
  .top-menu__menu {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.top-menu__inner {
  display: flex;
  min-height: 50vh;
  padding-top: 180px;
  padding-bottom: 40px;
  max-width: 1380px;
  margin-left: auto;
  margin-right: auto;
}
.top-menu__info-column {
  width: 40%;
}
.top-menu__cards-column {
  width: 60%;
}
.top-menu__title {
  font-family: 'Avalon', Helvetica, sans-serif;
  font-weight: 600;
  font-size: 50px;
  line-height: 1.2;
  margin-bottom: 70px;
}
@media only screen and (max-width: 46.9em) {
  .top-menu__title {
    font-size: 40px;
  }
}
.top-menu__list-wrapper {
  display: flex;
}
.top-menu__list {
  width: 50%;
}
.top-menu__list-item {
  font-size: 15px;
  line-height: 1.615384615384615;
  padding-right: 40px;
  margin-bottom: 18px;
}
@media only screen and (max-width: 46.9em) {
  .top-menu__list-item {
    font-size: 14px;
  }
}
.top-menu__list-link {
  display: flex;
  justify-content: space-between;
  color: currentColor;
  transition: color 0.2s ease;
  text-decoration: none;
}
.top-menu__list-link-text {
  position: relative;
  display: inline-block;
  vertical-align: top;
  padding-bottom: 7px;
  text-transform: uppercase;
  overflow: hidden;
}
.top-menu__list-link-text:after {
  content: '';
  width: 100%;
  height: 2px;
  right: 100%;
  bottom: 0;
  background: #0cc;
  position: absolute;
  transform: translateX(0%) translateZ(0);
  transition: transform 0.2s ease;
}
.top-menu__list-link:hover .top-menu__list-link-text:after {
  transform: translateX(100%) translateZ(0);
}
.top-menu__list-link-description {
  width: 30%;
  min-width: 80px;
  transition: opacity 0.2s ease;
  padding-bottom: 7px;
}
.top-menu__list-link:hover .top-menu__list-link-description {
  color: #0cc;
}
.top-menu__cards {
  display: flex;
  margin-left: -15px;
  margin-right: -15px;
  margin-bottom: 30px;
}
.top-menu__card-wrapper {
  width: 50%;
  position: relative;
  padding-left: 15px;
  padding-right: 15px;
}
.top-menu__card {
  text-decoration: none;
  color: currentColor;
  transition: color 0.2s ease;
  position: relative;
  display: block;
}
.top-menu__card:hover,
.top-menu__card.active {
  color: #0cc;
}
.top-menu__card-image {
  max-width: 100%;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.top-menu__card-title {
  position: absolute;
  text-transform: uppercase;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 20px;
  z-index: 2;
}
.top-menu__bottom-link-wrapper {
  text-align: right;
}
.top-menu__bottom-link {
  font-size: 15px;
  line-height: 1.615384615384615;
  position: relative;
  display: inline-block;
  vertical-align: top;
  padding-bottom: 8px;
  text-decoration: none;
  color: currentColor;
  transition: color 0.2s ease;
  overflow: hidden;
  line-height: 1.2;
  transform: translateZ(0);
  text-transform: uppercase;
  margin-left: auto;
}
@media only screen and (max-width: 46.9em) {
  .top-menu__bottom-link {
    font-size: 14px;
  }
}
.top-menu__bottom-link:hover:not([disabled]),
.top-menu__bottom-link:focus:not([disabled]),
.top-menu__bottom-link.active {
  color: #fff;
}
.top-menu__bottom-link:hover:not([disabled]):after,
.top-menu__bottom-link:focus:not([disabled]):after,
.top-menu__bottom-link.active:after {
  transform: translateX(100%) translateZ(0);
}
.top-menu__bottom-link:after {
  content: '';
  width: 100%;
  height: 2px;
  right: 100%;
  bottom: 0;
  background: #0cc;
  position: absolute;
  transform: translateX(0%) translateZ(0);
  transition: transform 0.2s ease;
}
.video {
  position: relative;
  overflow: hidden;
  background: #202020;
  width: 100%;
  height: 100%;
}
.video__element {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: auto;
  min-width: 100%;
  height: auto;
  min-height: 100%;
  transition: 0.5s;
  opacity: 0.8;
}
@media (min-aspect-ratio: 16/9) {
  .video__element_limited_size {
    max-width: 100%;
  }
}
@media (max-aspect-ratio: 16/9) {
  .video__element_limited_size {
    max-height: 100%;
  }
}
.video__element_solid {
  position: relative;
  transform: none;
  top: auto;
  left: auto;
  width: 100%;
}
.video_played .video__element {
  opacity: 1;
}
.video__content {
  position: relative;
  height: 100%;
  z-index: 2;
  transform: translateZ(0);
}
.video__button-pause,
.video__button-play {
  text-decoration: none;
  color: currentColor;
  transition: color 0.2s ease;
  color: #202020;
  background: #fff;
  position: absolute;
  width: 70px;
  height: 70px;
  margin-left: -35px;
  margin-top: -35px;
  left: 50%;
  top: 50%;
  z-index: 4;
  text-align: center;
  border-radius: 100%;
}
.video__button-pause:hover,
.video__button-play:hover,
.video__button-pause.active,
.video__button-play.active {
  color: #0cc;
}
.video__button-pause:after,
.video__button-pause:before {
  content: '';
  display: inline-block;
  vertical-align: top;
  width: 8px;
  height: 24px;
  margin: auto 3px;
  background: currentColor;
}
.video__button-play {
  padding-left: 6px;
}
.video__button-play:after {
  width: 0;
  height: 0;
  background: 0;
  border-style: solid;
  border-width: 14px 0 14px 24px;
  border-color: transparent transparent transparent currentColor;
  display: block;
  content: '';
  margin: auto;
}
[data-video-content] {
  transform: translateZ(0);
}
.visibility-hidden {
  visibility: hidden;
  position: absolute;
  width: 0;
  height: 0;
}
@font-face {
  font-family: 'Futura';
  src: url(/packs/assets/fonts/FuturaPT-Medium-57c024cc3b8a4b0ba0d0f42ef5383bfc.woff2) format('woff2'), url(/packs/assets/fonts/FuturaPT-Medium-3a9836728dd45806018f66d075bc3363.woff) format('woff');
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: 'Futura';
  src: url(/packs/assets/fonts/FuturaPT-Light-55a2f91f553d8bf79c2f0a9c833e3128.woff2) format('woff2'), url(/packs/assets/fonts/FuturaPT-Light-4847f75e414b50609d19aac2b91a74b8.woff) format('woff');
  font-weight: 100;
  font-style: normal;
}
@font-face {
  font-family: 'Avalon';
  src: url(/packs/assets/fonts/Avalon-Bold-845a36a3c5b400b479694aa4ec76ffbd.woff2) format('woff2'), url(/packs/assets/fonts/Avalon-Bold-18449dbf642115d5acdf80839e18c5ff.woff) format('woff');
  font-weight: 600;
  font-style: normal;
}
html {
  height: 100%;
}
body {
  font-size: 14px;
  font-family: 'Futura', Helvetica, sans-serif;
  font-weight: 300;
  background: #fff;
  color: #202020;
  height: 100%;
  width: 100%;
  overflow-y: scroll;
}

/*# sourceMappingURL=styles-65902fae21194c30c1be92f142a16270.css.map*/