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

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block; }

body {
  line-height: 1; }

ol, ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

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

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

/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
/*
 *  Owl Carousel - Core
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1; }

.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  touch-action: manipulation;
  -moz-backface-visibility: hidden;
  /* fix firefox animation glitch */ }

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0; }

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px); }

.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0); }

.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none; }

.owl-carousel .owl-item img {
  display: block;
  width: 100%; }

.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: none; }

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next,
.owl-carousel button.owl-dot {
  background: none;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit; }

.owl-carousel.owl-loaded {
  display: block; }

.owl-carousel.owl-loading {
  opacity: 0;
  display: block; }

.owl-carousel.owl-hidden {
  opacity: 0; }

.owl-carousel.owl-refresh .owl-item {
  visibility: hidden; }

.owl-carousel.owl-drag .owl-item {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.owl-carousel.owl-grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab; }

.owl-carousel.owl-rtl {
  direction: rtl; }

.owl-carousel.owl-rtl .owl-item {
  float: right; }

/* No Js */
.no-js .owl-carousel {
  display: block; }

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  -webkit-animation-duration: 1000ms;
  animation-duration: 1000ms;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both; }

.owl-carousel .owl-animated-in {
  z-index: 0; }

.owl-carousel .owl-animated-out {
  z-index: 1; }

.owl-carousel .fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut; }

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

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

/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  -webkit-transition: height 500ms ease-in-out;
  -o-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out; }

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item {
  /**
			This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
			calculation of the height of the owl-item that breaks page layouts
		 */ }

.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  -webkit-transition: opacity 400ms ease;
  -o-transition: opacity 400ms ease;
  transition: opacity 400ms ease; }

.owl-carousel .owl-item .owl-lazy[src^=""], .owl-carousel .owl-item .owl-lazy:not([src]) {
  max-height: 0; }

.owl-carousel .owl-item img.owl-lazy {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d; }

/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000; }

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  -webkit-transition: -webkit-transform 100ms ease;
  transition: -webkit-transform 100ms ease;
  -o-transition: transform 100ms ease;
  transition: transform 100ms ease;
  transition: transform 100ms ease, -webkit-transform 100ms ease; }

.owl-carousel .owl-video-play-icon:hover {
  -ms-transform: scale(1.3, 1.3);
  -webkit-transform: scale(1.3, 1.3);
  transform: scale(1.3, 1.3); }

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none; }

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-background-size: contain;
  background-size: contain;
  -webkit-transition: opacity 400ms ease;
  -o-transition: opacity 400ms ease;
  transition: opacity 400ms ease; }

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%; }

.jq-checkbox,
.jq-radio {
  position: relative;
  display: inline-block;
  overflow: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.jq-checkbox input,
.jq-radio input {
  position: absolute;
  z-index: -1;
  margin: 0;
  padding: 0;
  opacity: 0; }

.jq-file {
  position: relative;
  display: inline-block;
  overflow: hidden; }

.jq-file input {
  position: absolute;
  top: 0;
  right: 0;
  height: auto;
  margin: 0;
  padding: 0;
  opacity: 0;
  font-size: 100px;
  line-height: 1em; }

.jq-file__name {
  overflow: hidden;
  white-space: nowrap;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis; }

.jq-selectbox,
.jq-select-multiple {
  position: relative;
  display: inline-block; }

.jq-selectbox select,
.jq-select-multiple select {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  opacity: 0; }

.jq-selectbox li,
.jq-select-multiple li {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap; }

.jq-selectbox {
  z-index: 10; }

.jq-selectbox__select {
  position: relative; }

.jq-selectbox__select-text {
  overflow: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis; }

.jq-selectbox__dropdown {
  position: absolute; }

.jq-selectbox__search input {
  -webkit-appearance: textfield; }

.jq-selectbox__search input::-webkit-search-cancel-button,
.jq-selectbox__search input::-webkit-search-decoration {
  -webkit-appearance: none; }

.jq-selectbox__dropdown ul {
  position: relative;
  overflow: auto;
  overflow-x: hidden;
  list-style: none;
  -webkit-overflow-scrolling: touch; }

.jq-select-multiple ul {
  position: relative;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch; }

.jq-number {
  display: inline-block; }

.jq-number__field input {
  -moz-appearance: textfield;
  text-align: left;
  /* для Opera Presto */ }

.jq-number__field input::-webkit-inner-spin-button,
.jq-number__field input::-webkit-outer-spin-button {
  margin: 0;
  /* в каких-то браузерах присутствует отступ */
  -webkit-appearance: none; }

.jq-checkbox,
.jq-radio {
  vertical-align: -4px;
  width: 16px;
  height: 16px;
  margin: 0 4px 0 0;
  border: 1px solid #C3C3C3;
  background: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#E6E6E6));
  background: -webkit-linear-gradient(#FFF, #E6E6E6);
  background: -o-linear-gradient(#FFF, #E6E6E6);
  background: linear-gradient(#FFF, #E6E6E6);
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05), inset -1px -1px #FFF, inset 1px -1px #FFF;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05), inset -1px -1px #FFF, inset 1px -1px #FFF;
  cursor: pointer; }

.jq-checkbox.focused,
.jq-radio.focused {
  border: 1px solid #08C; }

.jq-checkbox.disabled,
.jq-radio.disabled {
  opacity: .55; }

.jq-checkbox {
  -webkit-border-radius: 3px;
  border-radius: 3px; }

.jq-checkbox.checked .jq-checkbox__div {
  width: 8px;
  height: 4px;
  margin: 3px 0 0 3px;
  border-bottom: 2px solid #666;
  border-left: 2px solid #666;
  -webkit-transform: rotate(-50deg);
  -ms-transform: rotate(-50deg);
  transform: rotate(-50deg); }

.jq-radio {
  -webkit-border-radius: 50%;
  border-radius: 50%; }

.jq-radio.checked .jq-radio__div {
  width: 10px;
  height: 10px;
  margin: 3px 0 0 3px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  background: #777;
  -webkit-box-shadow: inset 1px 1px 1px rgba(0, 0, 0, 0.7);
  box-shadow: inset 1px 1px 1px rgba(0, 0, 0, 0.7); }

.jq-file {
  width: 270px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1); }

.jq-file input {
  cursor: pointer; }

.jq-file__name {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  height: 34px;
  padding: 0 80px 0 10px;
  border: 1px solid #CCC;
  border-bottom-color: #B3B3B3;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  background: #FFF;
  -webkit-box-shadow: inset 1px 1px #F1F1F1;
  box-shadow: inset 1px 1px #F1F1F1;
  font: 14px/32px Arial, sans-serif;
  color: #333; }

.jq-file__browse {
  position: absolute;
  top: 1px;
  right: 1px;
  padding: 0 10px;
  border-left: 1px solid #CCC;
  -webkit-border-radius: 0 4px 4px 0;
  border-radius: 0 4px 4px 0;
  background: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#E6E6E6));
  background: -webkit-linear-gradient(#FFF, #E6E6E6);
  background: -o-linear-gradient(#FFF, #E6E6E6);
  background: linear-gradient(#FFF, #E6E6E6);
  -webkit-box-shadow: inset 1px -1px #F1F1F1, inset -1px 0 #F1F1F1, 0 1px 2px rgba(0, 0, 0, 0.1);
  box-shadow: inset 1px -1px #F1F1F1, inset -1px 0 #F1F1F1, 0 1px 2px rgba(0, 0, 0, 0.1);
  font: 14px/32px Arial, sans-serif;
  color: #333;
  text-shadow: 1px 1px #FFF; }

.jq-file:hover .jq-file__browse {
  background: -webkit-gradient(linear, left top, left bottom, from(#F6F6F6), to(#E6E6E6));
  background: -webkit-linear-gradient(#F6F6F6, #E6E6E6);
  background: -o-linear-gradient(#F6F6F6, #E6E6E6);
  background: linear-gradient(#F6F6F6, #E6E6E6); }

.jq-file:active .jq-file__browse {
  background: var(--color-wild-sand);
  -webkit-box-shadow: inset 1px 1px 3px #DDD;
  box-shadow: inset 1px 1px 3px #DDD; }

.jq-file.focused .jq-file__name {
  border: 1px solid #5794BF; }

.jq-file.disabled,
.jq-file.disabled .jq-file__name,
.jq-file.disabled .jq-file__browse {
  border-color: #CCC;
  background: var(--color-wild-sand);
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #888; }

.jq-number {
  position: relative;
  vertical-align: middle;
  padding: 0 36px 0 0; }

.jq-number__field {
  width: 100px;
  border: 1px solid #CCC;
  border-bottom-color: #B3B3B3;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-shadow: inset 1px 1px #F1F1F1, 0 1px 2px rgba(0, 0, 0, 0.1);
  box-shadow: inset 1px 1px #F1F1F1, 0 1px 2px rgba(0, 0, 0, 0.1); }

.jq-number__field:hover {
  border-color: #B3B3B3; }

.jq-number__field input {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  padding: 8px 9px;
  border: none;
  outline: none;
  background: none;
  font: 14px Arial, sans-serif;
  color: #333; }

.jq-number__spin {
  position: absolute;
  top: 0;
  right: 0;
  width: 32px;
  height: 14px;
  border: 1px solid #CCC;
  border-bottom-color: #B3B3B3;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  background: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#E6E6E6));
  background: -webkit-linear-gradient(#FFF, #E6E6E6);
  background: -o-linear-gradient(#FFF, #E6E6E6);
  background: linear-gradient(#FFF, #E6E6E6);
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: inset 1px -1px #F1F1F1, inset -1px 0 #F1F1F1, 0 1px 2px rgba(0, 0, 0, 0.1);
  box-shadow: inset 1px -1px #F1F1F1, inset -1px 0 #F1F1F1, 0 1px 2px rgba(0, 0, 0, 0.1);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  text-shadow: 1px 1px #FFF;
  cursor: pointer; }

.jq-number__spin.minus {
  top: auto;
  bottom: 0; }

.jq-number__spin:hover {
  background: -webkit-gradient(linear, left top, left bottom, from(#F6F6F6), to(#E6E6E6));
  background: -webkit-linear-gradient(#F6F6F6, #E6E6E6);
  background: -o-linear-gradient(#F6F6F6, #E6E6E6);
  background: linear-gradient(#F6F6F6, #E6E6E6); }

.jq-number__spin:active {
  background: var(--color-wild-sand);
  -webkit-box-shadow: inset 1px 1px 3px #DDD;
  box-shadow: inset 1px 1px 3px #DDD; }

.jq-number__spin:after {
  content: '';
  position: absolute;
  top: 4px;
  left: 11px;
  width: 0;
  height: 0;
  border-right: 5px solid transparent;
  border-bottom: 5px solid #999;
  border-left: 5px solid transparent; }

.jq-number__spin.minus:after {
  top: 5px;
  border-top: 5px solid #999;
  border-right: 5px solid transparent;
  border-bottom: none;
  border-left: 5px solid transparent; }

.jq-number__spin.minus:hover:after {
  border-top-color: #000; }

.jq-number__spin.plus:hover:after {
  border-bottom-color: #000; }

.jq-number.focused .jq-number__field {
  border: 1px solid #5794BF; }

.jq-number.disabled .jq-number__field,
.jq-number.disabled .jq-number__spin {
  border-color: #CCC;
  background: var(--color-wild-sand);
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #888; }

.jq-number.disabled .jq-number__spin:after {
  border-bottom-color: #AAA; }

.jq-number.disabled .jq-number__spin.minus:after {
  border-top-color: #AAA; }

.jq-selectbox {
  vertical-align: middle;
  cursor: pointer; }

.jq-selectbox__select {
  height: 32px;
  padding: 0 45px 0 10px;
  border: 1px solid #CCC;
  border-bottom-color: #B3B3B3;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  background: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#E6E6E6));
  background: -webkit-linear-gradient(#FFF, #E6E6E6);
  background: -o-linear-gradient(#FFF, #E6E6E6);
  background: linear-gradient(#FFF, #E6E6E6);
  -webkit-box-shadow: inset 1px -1px #F1F1F1, inset -1px 0 #F1F1F1, 0 1px 2px rgba(0, 0, 0, 0.1);
  box-shadow: inset 1px -1px #F1F1F1, inset -1px 0 #F1F1F1, 0 1px 2px rgba(0, 0, 0, 0.1);
  font: 14px/32px Arial, sans-serif;
  color: #333;
  text-shadow: 1px 1px #FFF; }

.jq-selectbox__select:hover {
  background: -webkit-gradient(linear, left top, left bottom, from(#F6F6F6), to(#E6E6E6));
  background: -webkit-linear-gradient(#F6F6F6, #E6E6E6);
  background: -o-linear-gradient(#F6F6F6, #E6E6E6);
  background: linear-gradient(#F6F6F6, #E6E6E6); }

.jq-selectbox__select:active {
  background: var(--color-wild-sand);
  -webkit-box-shadow: inset 1px 1px 3px #DDD;
  box-shadow: inset 1px 1px 3px #DDD; }

.jq-selectbox.focused .jq-selectbox__select {
  border: 1px solid #5794BF; }

.jq-selectbox.disabled .jq-selectbox__select {
  border-color: #CCC;
  background: var(--color-wild-sand);
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #888; }

.jq-selectbox__select-text {
  display: block;
  width: 100%; }

.jq-selectbox .placeholder {
  color: #888; }

.jq-selectbox__trigger {
  position: absolute;
  top: 0;
  right: 0;
  width: 34px;
  height: 100%;
  border-left: 1px solid #CCC; }

.jq-selectbox__trigger-arrow {
  position: absolute;
  top: 14px;
  right: 12px;
  width: 0;
  height: 0;
  border-top: 5px solid #999;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent; }

.jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #000; }

.jq-selectbox.disabled .jq-selectbox__trigger-arrow {
  border-top-color: #AAA; }

.jq-selectbox__dropdown {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  margin: 2px 0 0;
  padding: 0;
  border: 1px solid #CCC;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  background: #FFF;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  font: 14px/18px Arial, sans-serif; }

.jq-selectbox__search {
  margin: 5px; }

.jq-selectbox__search input {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  padding: 5px 27px 6px 8px;
  border: 1px solid #CCC;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  outline: none;
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAMCAYAAABiDJ37AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAO1JREFUeNqU078LAXEYx/FzYfNzk5TJaFNKYjFYSQZ/hvwBsvg1UCY2xT9gM8hukQGThWRjkcFw3pdnujhfT736Xn2fPvfc3fd07V0OFDDFAnM0ENYsZRiGLSc9OpqIYIA9fMhhjCrW2h9VlMlcH/aymMGtOqEugX08PwQucUZKdTozMIqdTc9WepQD7wjY9ARx+ydwhfyXfS+S0qMcOEQJGcueB3VccFINdMgal6NzkmPjRwJXxDBB7/2RDdtAp6wb+dpphHDASG5QQ0V6u2aoSqBZD/lDrNWRJynLK2qpBn4rc6K2XB9/Nb8EGABtf1thzY6X2AAAAABJRU5ErkJggg==") no-repeat 100% 50%;
  -webkit-box-shadow: inset 1px 1px #F1F1F1;
  box-shadow: inset 1px 1px #F1F1F1;
  color: #333; }

.jq-selectbox__not-found {
  margin: 5px;
  padding: 5px 8px 6px;
  background: #F0F0F0;
  font-size: 13px; }

.jq-selectbox ul {
  margin: 0;
  padding: 0; }

.jq-selectbox li {
  min-height: 18px;
  padding: 5px 10px 6px;
  color: #231F20; }

.jq-selectbox li.selected {
  background-color: #A3ABB1;
  color: #FFF; }

.jq-selectbox li:hover {
  background-color: #08C;
  color: #FFF; }

.jq-selectbox li.disabled {
  color: #AAA; }

.jq-selectbox li.disabled:hover {
  background: none; }

.jq-selectbox li.optgroup {
  font-weight: bold; }

.jq-selectbox li.optgroup:hover {
  background: none;
  color: #231F20;
  cursor: default; }

.jq-selectbox li.option {
  padding-left: 25px; }

.jq-select-multiple {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 1px;
  border: 1px solid #CCC;
  border-bottom-color: #B3B3B3;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  background: #FFF;
  -webkit-box-shadow: inset 1px 1px #F1F1F1, 0 1px 2px rgba(0, 0, 0, 0.1);
  box-shadow: inset 1px 1px #F1F1F1, 0 1px 2px rgba(0, 0, 0, 0.1);
  font: 14px/18px Arial, sans-serif;
  color: #333;
  cursor: default; }

.jq-select-multiple.focused {
  border: 1px solid #5794BF; }

.jq-select-multiple.disabled {
  border-color: #CCC;
  background: var(--color-wild-sand);
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #888; }

.jq-select-multiple ul {
  margin: 0;
  padding: 0; }

.jq-select-multiple li {
  padding: 3px 9px 4px;
  list-style: none; }

.jq-select-multiple li:first-child {
  -webkit-border-radius: 3px 3px 0 0;
  border-radius: 3px 3px 0 0; }

.jq-select-multiple li:last-child {
  -webkit-border-radius: 0 0 3px 3px;
  border-radius: 0 0 3px 3px; }

.jq-select-multiple li.selected {
  background: #08C;
  color: #FFF; }

.jq-select-multiple li.disabled {
  color: #AAA; }

.jq-select-multiple li.optgroup {
  font-weight: bold; }

.jq-select-multiple li.option {
  padding-left: 25px; }

.jq-select-multiple.disabled li.selected,
.jq-select-multiple li.selected.disabled {
  background: #CCC;
  color: #FFF; }

input[type='email'].styler,
input[type='password'].styler,
input[type='search'].styler,
input[type='tel'].styler,
input[type='text'].styler,
input[type='url'].styler,
textarea.styler {
  padding: 8px 9px;
  border: 1px solid #CCC;
  border-bottom-color: #B3B3B3;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-shadow: inset 1px 1px #F1F1F1, 0 1px 2px rgba(0, 0, 0, 0.1);
  box-shadow: inset 1px 1px #F1F1F1, 0 1px 2px rgba(0, 0, 0, 0.1);
  font: 14px Arial, sans-serif;
  color: #333; }

input[type='search'].styler {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none; }

textarea.styler {
  overflow: auto; }

input[type='email'].styler:hover,
input[type='password'].styler:hover,
input[type='search'].styler:hover,
input[type='tel'].styler:hover,
input[type='text'].styler:hover,
input[type='url'].styler:hover,
textarea.styler:hover {
  border-color: #B3B3B3; }

input[type='email'].styler:hover:focus,
input[type='password'].styler:hover:focus,
input[type='search'].styler:hover:focus,
input[type='tel'].styler:hover:focus,
input[type='text'].styler:hover:focus,
input[type='url'].styler:hover:focus,
textarea.styler:hover:focus {
  border-color: #CCC;
  border-top-color: #B3B3B3;
  outline: none;
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); }

button.styler,
input[type='button'].styler,
input[type='submit'].styler,
input[type='reset'].styler {
  overflow: visible;
  padding: 8px 11px;
  border: 1px solid #CCC;
  border-bottom-color: #B3B3B3;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  outline: none;
  background: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#E6E6E6));
  background: -webkit-linear-gradient(#FFF, #E6E6E6);
  background: -o-linear-gradient(#FFF, #E6E6E6);
  background: linear-gradient(#FFF, #E6E6E6);
  -webkit-box-shadow: inset 1px -1px #F1F1F1, inset -1px 0 #F1F1F1, 0 1px 2px rgba(0, 0, 0, 0.1);
  box-shadow: inset 1px -1px #F1F1F1, inset -1px 0 #F1F1F1, 0 1px 2px rgba(0, 0, 0, 0.1);
  font: 14px Arial, sans-serif;
  color: #333;
  text-shadow: 1px 1px #FFF;
  cursor: pointer; }

button.styler.styler::-moz-focus-inner,
input[type='button'].styler.styler::-moz-focus-inner,
input[type='submit'].styler.styler::-moz-focus-inner,
input[type='reset'].styler.styler::-moz-focus-inner {
  padding: 0;
  border: 0; }

button.styler:not([disabled]):hover,
input[type='button'].styler:not([disabled]):hover,
input[type='submit'].styler:not([disabled]):hover,
input[type='reset'].styler:not([disabled]):hover,
input[type='reset'].styler:hover {
  background: -webkit-gradient(linear, left top, left bottom, from(#F6F6F6), to(#E6E6E6));
  background: -webkit-linear-gradient(#F6F6F6, #E6E6E6);
  background: -o-linear-gradient(#F6F6F6, #E6E6E6);
  background: linear-gradient(#F6F6F6, #E6E6E6); }

button.styler:active,
input[type='button'].styler:active,
input[type='submit'].styler:active,
input[type='reset'].styler:active {
  background: var(--color-wild-sand);
  -webkit-box-shadow: inset 1px 1px 3px #DDD;
  box-shadow: inset 1px 1px 3px #DDD; }

button.styler[disabled],
input[type='button'].styler[disabled],
input[type='submit'].styler[disabled] {
  border-color: #CCC;
  background: var(--color-wild-sand);
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #888; }

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

audio,
canvas,
img,
video {
  vertical-align: middle; }

form input,
form select,
form textarea {
  -webkit-appearance: none;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  outline: none; }
  form input:focus, form input:active,
  form select:focus,
  form select:active,
  form textarea:focus,
  form textarea:active {
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis; }

form textarea {
  resize: vertical; }

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

/* выделение текста */
::-moz-selection {
  background: #caaf8c;
  text-shadow: none; }

::selection {
  background: #caaf8c;
  text-shadow: none; }

/***********************/
/******** Colors *******/
/***********************/
/*********************************/
/********** Typography ***********/
/*********************************/
@font-face {
  font-family: "FuturaPT";
  src: url("../fonts/FuturaPT-Medium/FuturaPT-Medium.eot");
  src: url("../fonts/FuturaPT-Medium/FuturaPT-Medium.eot?#iefix") format("embedded-opentype"), url("../fonts/FuturaPT-Medium/FuturaPT-Medium.woff") format("woff"), url("../fonts/FuturaPT-Medium/FuturaPT-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal; }

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

@font-face {
  font-family: "FuturaPT";
  src: url("../fonts/FuturaPT-Book/FuturaPT-Book.eot");
  src: url("../fonts/FuturaPT-Book/FuturaPT-Book.eot?#iefix") format("embedded-opentype"), url("../fonts/FuturaPT-Book/FuturaPT-Book.woff") format("woff"), url("../fonts/FuturaPT-Book/FuturaPT-Book.ttf") format("truetype");
  font-weight: 400;
  font-style: normal; }

/*********************************/
/*********** Buttons *************/
/*********************************/
::-webkit-input-placeholder {
  color: #6a6a6a;
  opacity: 1; }

::-moz-placeholder {
  color: #6a6a6a;
  opacity: 1; }

:-ms-input-placeholder {
  color: #6a6a6a;
  opacity: 1; }

:-moz-placeholder {
  color: #6a6a6a;
  opacity: 1; }

/*********************************/
/******** Class Helpers **********/
/*********************************/
.clear:after {
  content: '';
  display: block;
  width: 100%;
  height: 0;
  margin: 0;
  padding: 0;
  clear: both;
  border: none; }

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

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

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

@font-face {
  font-family: 'ALS Rubl';
  font-style: normal;
  font-weight: normal;
  src: local("ALS Rubl"), url("../fonts/rouble.woff") format("woff"); }

.rub {
  font-family: 'ALS Rubl';
  font-weight: 400;
  font-style: normal;
  text-transform: initial !important; }

html {
  min-height: 100%; }

body {
  font-size: 100%;
  min-height: 100%;
  color: #000;
  margin: 0;
  min-width: 320px;
  font-family: 'DaxlineOffcPro';
  font-size: 14px;
  font-weight: 400;
  background: #e7eaee; }

.hb-wr {
  font-family: 'DaxlineOffcPro';
  font-size: 14px;
  background: #e7eaee; }

a {
  text-decoration: none;
  color: #1c64e6; }
  a:hover {
    text-decoration: none;
    color: #ef3471; }

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

.icon {
  display: inline-block;
  vertical-align: top; }

.hb-wr * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

.list-link {
  padding: 50px 0 0 50px; }
  .list-link li {
    margin: 0 0 10px;
    display: block; }

input {
  -webkit-appearance: none; }

.hb-head {
  background: #000;
  padding: 44px 10px 29px;
  color: #fff;
  position: relative;
  z-index: 45; }

.hb-head__logo {
  text-align: center;
  padding: 0 0 40px; }

.hb-head__txt {
  text-align: center; }
  .hb-head__txt strong {
    font-family: 'DaxlineOffcPro-Bold'; }
  .hb-head__txt p {
    text-transform: uppercase;
    margin: 0 0 18px;
    font-size: 47px;
    font-family: 'Myriad Pro', 'DaxlineOffcPro-Bold';
    font-weight: 700; }
    @media (max-width: 767px) {
      .hb-head__txt p {
        font-size: 14px; } }
    .hb-head__txt p span {
      font-family: 'Myriad Pro', 'DaxlineOffcPro';
      font-weight: 700; }

.hb-head__subscribe {
  text-align: center; }
  @media (max-width: 767px) {
    .hb-head__subscribe img {
      max-width: 240px; } }

.hb-bg-img {
  position: relative;
  z-index: 30; }

.hb-info__wr {
  max-width: 1010px;
  margin: 0 auto;
  position: relative;
  z-index: 10; }
  .hb-info__wr:before {
    content: ' ';
    position: absolute;
    top: -50px;
    left: -webkit-calc(50% - 550px);
    left: calc(50% - 550px);
    width: 119px;
    height: 115px;
    background: url(../img/ball-1.png) 0 0 no-repeat;
    -webkit-background-size: 100% 100%;
    background-size: 100% 100%; }
  .hb-info__wr:after {
    content: ' ';
    position: absolute;
    top: -160px;
    left: -webkit-calc(50% + 380px);
    left: calc(50% + 380px);
    width: 275px;
    height: 273px;
    background: url(../img/ball-2.png) 0 0 no-repeat;
    -webkit-background-size: 100% 100%;
    background-size: 100% 100%; }

.hb-bg {
  position: relative;
  background: #e2b0d9; }
  .hb-bg img {
    vertical-align: top;
    width: 100%; }

.hb-catalog {
  margin: 0 -20px;
  padding: 0 0 42px;
  font-size: 0;
  text-align: center;
  position: relative;
  z-index: 20; }
  @media (max-width: 1150px) {
    .hb-catalog {
      width: 742px;
      margin: 0 auto; } }
  @media (max-width: 990px) {
    .hb-catalog {
      width: 640px; } }
  @media (max-width: 767px) {
    .hb-catalog {
      max-width: 330px; } }
  @media (max-width: 360px) {
    .hb-catalog {
      width: 290px; } }

.hb-catalog.owl-carousel {
  margin: 0 -10px;
  width: -webkit-calc(100% + 20px);
  width: calc(100% + 20px); }
  @media (max-width: 767px) {
    .hb-catalog.owl-carousel {
      margin: 0 auto;
      width: 100%; } }

.hb-catalog-item {
  display: inline-block;
  vertical-align: top;
  text-align: left;
  width: 351px;
  height: 396px;
  margin: 0 10px 20px;
  background: #fff;
  padding: 10px 30px 5px; }
  @media (max-width: 990px) {
    .hb-catalog-item {
      width: 300px; } }
  @media (max-width: 767px) {
    .hb-catalog-item {
      margin: 0;
      padding: 10px 20px 5px;
      width: auto;
      display: block; } }
  .hb-catalog-item > a {
    color: #000; }
    .hb-catalog-item > a:hover {
      color: #ED2690; }
      .hb-catalog-item > a:hover p {
        text-decoration: underline; }
  .hb-catalog-item .hb-catalog-item__img {
    text-align: center;
    height: 209px;
    width: 100%;
    display: table;
    margin: 0 0 13px; }
    .hb-catalog-item .hb-catalog-item__img .hb-catalog-item__img-td {
      display: table-cell;
      vertical-align: middle; }
    .hb-catalog-item .hb-catalog-item__img img {
      vertical-align: top;
      max-width: 100%;
      max-height: 100%;
      width: auto;
      display: inline; }
  .hb-catalog-item .hb-catalog-item__txt {
    height: 97px; }
    .hb-catalog-item .hb-catalog-item__txt p {
      display: block;
      font-size: 15px;
      line-height: 21px;
      margin: 0; }
    .hb-catalog-item .hb-catalog-item__txt span {
      display: block;
      font-size: 15px;
      line-height: 21px;
      color: #b8b8b8;
      text-transform: uppercase; }
  .hb-catalog-item .hb-catalog-item__footer {
    position: relative;
    overflow: hidden; }
    .hb-catalog-item .hb-catalog-item__footer span {
      display: block;
      float: left;
      height: 40px;
      line-height: 40px;
      font-size: 30px;
      font-family: 'Myriad Pro', 'DINPro-Bold';
      font-weight: 700; }
    .hb-catalog-item .hb-catalog-item__footer a {
      display: block;
      float: right;
      width: 130px;
      height: 40px;
      line-height: 42px;
      -webkit-border-radius: 2px;
      border-radius: 2px;
      background: #ec2590;
      text-decoration: none;
      color: #fff;
      text-align: center;
      font-size: 18px; }
      .hb-catalog-item .hb-catalog-item__footer a:hover {
        background: #802053; }

.hb-catalog-footer {
  text-align: center;
  padding: 0 20px 0 0;
  margin-bottom: 57px;
  margin-top: -21px; }
  @media (max-width: 767px) {
    .hb-catalog-footer {
      margin-bottom: 59px; } }
  .hb-catalog-footer a {
    display: inline-block;
    padding: 0 37px 0 55px;
    height: 70px;
    line-height: 70px;
    text-align: center;
    text-decoration: none;
    color: #fff;
    font-family: 'DaxlineOffcPro-Bold';
    font-size: 18px;
    background: #000;
    position: relative; }
    @media (max-width: 360px) {
      .hb-catalog-footer a {
        font-size: 16px; } }
    .hb-catalog-footer a:before {
      content: ' ';
      position: absolute;
      top: 0;
      left: 100%;
      border-top: 35px solid transparent;
      border-left: 20px solid #000;
      border-bottom: 35px solid transparent; }
    .hb-catalog-footer a:hover {
      background: #802053; }
      .hb-catalog-footer a:hover:before {
        border-top: 35px solid transparent;
        border-left: 20px solid #802053;
        border-bottom: 35px solid transparent; }

.hb-body {
  position: relative;
  z-index: 30;
  background: #e1a47d url(../img/bg-1920.jpg) center -1px no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
  padding: 0; }
  @media (max-width: 1440px) {
    .hb-body {
      background: #e1a47d url(../img/bg-1440.jpg) center -1px no-repeat;
      -webkit-background-size: cover;
      background-size: cover; } }
  @media (max-width: 1050px) {
    .hb-body {
      background: #e1a47d url(../img/bg-1050.jpg) center -1px no-repeat;
      -webkit-background-size: 1235px auto;
      background-size: 1235px auto; } }
  @media (max-width: 767px) {
    .hb-body {
      padding: 0 15px;
      background: #70a0b3 url(../img/bg-767.jpg) center 0 no-repeat;
      -webkit-background-size: 100% auto;
      background-size: 100% auto; } }
  @media (max-width: 420px) {
    .hb-body {
      background: #70a0b3 url(../img/bg-420.jpg) center 0 no-repeat;
      -webkit-background-size: 100% auto;
      background-size: 100% auto; } }
  @media (max-width: 380px) {
    .hb-body {
      background: #70a0b3 url(../img/bg-380.jpg) center 0 no-repeat;
      -webkit-background-size: 380px auto;
      background-size: 380px auto; } }
  .hb-body .hb-body__img {
    position: absolute;
    z-index: 5; }
  .hb-body .hb-body__img-1 {
    top: 585px;
    right: -webkit-calc(50% + 388px);
    right: calc(50% + 388px); }
  .hb-body .hb-body__img-2 {
    top: 200px;
    left: -webkit-calc(50% + 266px);
    left: calc(50% + 266px); }
    @media (max-width: 767px) {
      .hb-body .hb-body__img-2 {
        left: -webkit-calc(50% - 77px);
        left: calc(50% - 77px);
        top: 115px; }
        .hb-body .hb-body__img-2 img {
          width: 792px; } }
  .hb-body .hb-body__img-3 {
    top: 910px;
    left: -webkit-calc(50% + 690px);
    left: calc(50% + 690px); }
  .hb-body .hb-body__img-4 {
    top: 1776px;
    left: -webkit-calc(50% + 498px);
    left: calc(50% + 498px); }
  .hb-body .hb-body__img-5 {
    top: 2133px;
    right: -webkit-calc(50% + 405px);
    right: calc(50% + 405px); }
  .hb-body__txt {
    max-width: 865px;
    margin: -50px auto 76px;
    position: relative;
    color: #ffffff; }
    @media (max-width: 990px) {
      .hb-body__txt {
        max-width: 600px;
        padding-right: 180px; } }
    @media (max-width: 767px) {
      .hb-body__txt {
        max-width: 300px;
        margin: -50px auto 100px;
        padding-right: 0; } }
    .hb-body__txt:before {
      content: ' ';
      position: absolute;
      top: -74px;
      right: -58px;
      width: 325px;
      height: 309px;
      background: url(../img/hb-body-mg.png) 0 0 no-repeat; }
      @media (max-width: 990px) {
        .hb-body__txt:before {
          -webkit-background-size: contain;
          background-size: contain;
          width: 270px;
          height: 260px;
          top: -20px; } }
      @media (max-width: 767px) {
        .hb-body__txt:before {
          width: 170px;
          height: 160px;
          -webkit-background-size: contain;
          background-size: contain;
          top: auto;
          bottom: -110px;
          right: -16px; } }
    .hb-body__txt p {
      font-size: 34px;
      line-height: 42px;
      letter-spacing: 0.01em; }
      @media (max-width: 990px) {
        .hb-body__txt p {
          font-size: 28px; } }
      @media (max-width: 767px) {
        .hb-body__txt p {
          font-size: 26px;
          line-height: 32px; }
          .hb-body__txt p br {
            display: none; } }
  .hb-body__h1 {
    font-size: 34px;
    line-height: 42px;
    margin: 0 0 30px;
    text-transform: uppercase;
    text-align: center; }
    @media (max-width: 767px) {
      .hb-body__h1 {
        font-size: 26px;
        line-height: 32px;
        margin-top: 20px; } }

.hb-body__header {
  margin: 0 0 37px;
  font-size: 48px;
  letter-spacing: -0.08em;
  font-family: 'DaxlineOffcPro-Bold';
  text-transform: uppercase;
  position: relative;
  z-index: 20;
  color: #000; }
  @media (max-width: 1150px) {
    .hb-body__header {
      width: 730px;
      margin: 0 auto 37px; } }
  @media (max-width: 990px) {
    .hb-body__header {
      width: 630px;
      margin: 0 auto 20px; } }
  @media (max-width: 767px) {
    .hb-body__header {
      width: auto;
      text-align: center;
      font-size: 36px;
      margin: 0 auto 14px; } }

.hb-footer {
  text-align: center;
  background: #000;
  padding: 58px 0 57px; }
  @media (max-width: 767px) {
    .hb-footer {
      padding: 31px 0 32px; } }
  .hb-footer ul {
    display: block;
    text-align: center;
    font-size: 0;
    position: relative;
    margin: 0 auto;
    width: 706px; }
    @media (max-width: 767px) {
      .hb-footer ul {
        width: auto;
        text-align: center;
        padding: 22px 0 0; } }
    .hb-footer ul li {
      position: absolute;
      top: -128px;
      left: 0;
      display: block;
      width: 60px;
      height: 60px; }
      .hb-footer ul li a {
        display: block;
        width: 33px;
        height: 33px;
        -webkit-border-radius: 50%;
        border-radius: 50%; }
        .hb-footer ul li a:hover {
          opacity: .7; }
      .hb-footer ul li img {
        vertical-align: top; }
      .hb-footer ul li + li {
        left: auto;
        right: 0; }
      @media (max-width: 767px) {
        .hb-footer ul li {
          position: relative;
          left: auto;
          right: auto;
          top: auto;
          display: inline-block;
          margin: 0 15px; }
          .hb-footer ul li img {
            width: 60px; } }

.hb-footer__vk img {
  vertical-align: top; }

.hb-wr {
  overflow: hidden; }

.hb-cont-wr {
  max-width: 1130px;
  margin: 0 auto;
  padding: 77px 20px 15px; }
  @media (max-width: 767px) {
    .hb-cont-wr {
      padding: 59px 0 15px; } }

.hb-header {
  background: url(../img/hb-header-1440.jpg) center 0 no-repeat;
  -webkit-background-size: 101% auto !important;
  background-size: 101% auto !important;
  position: relative;
  font-size: .95vw; }
  @media (min-width: 1440px) {
    .hb-header {
      background: url(../img/hb-header-1920.jpg) center 0 no-repeat;
      -webkit-background-size: 101% auto !important;
      background-size: 101% auto !important; } }
  @media (max-width: 767px) {
    .hb-header {
      background: url(../img/hb-header-767.jpg) center 0 no-repeat;
      -webkit-background-size: 100% auto !important;
      background-size: 100% auto !important; } }
  @media (max-width: 420px) {
    .hb-header {
      background: url(../img/hb-header-420.jpg) center 0 no-repeat;
      -webkit-background-size: 100% auto !important;
      background-size: 100% auto !important; } }
  @media (max-width: 380px) {
    .hb-header {
      background: url(../img/hb-header-380.jpg) center 0 no-repeat;
      -webkit-background-size: 100% auto !important;
      background-size: 100% auto !important; } }

@media only screen and (-webkit-min-device-pixel-ratio: 2) and (max-width: 767px), only screen and (min--moz-device-pixel-ratio: 2) and (max-width: 767px), only screen and (-o-min-device-pixel-ratio: 2 / 1) and (max-width: 767px), only screen and (min-device-pixel-ratio: 2) and (max-width: 767px), only screen and (-o-min-device-pixel-ratio: 2/1) and (max-width: 767px), only screen and (min-resolution: 192dpi) and (max-width: 767px), only screen and (min-resolution: 2dppx) and (max-width: 767px) {
  .hb-header {
    background: url(../img/hb-header-767.jpg) center 0 no-repeat;
    -webkit-background-size: 100% auto !important;
    background-size: 100% auto !important; } }
  .hb-header img {
    width: 100%; }
    .hb-header img.hb-header-sm {
      display: none; }
    @media (max-width: 767px) {
      .hb-header img {
        display: none; }
        .hb-header img.hb-header-sm {
          display: block; } }
  .hb-header__txt-1 {
    position: absolute;
    top: 6.3em;
    left: 0;
    right: 0;
    font-size: 2.8em;
    line-height: 1.5em;
    font-family: 'DaxlineOffcPro-Bold';
    color: #fff;
    text-transform: uppercase;
    text-align: center; }
    @media (max-width: 767px) {
      .hb-header__txt-1 {
        top: 6.5em;
        font-size: 3.7em; } }
  .hb-header__txt-2 {
    position: absolute;
    top: 12.3em;
    left: 8.5em;
    font-size: 2.55em;
    line-height: 1.0em;
    font-family: 'DaxlineOffcPro-Bold';
    color: #fff;
    text-transform: uppercase; }
    @media (max-width: 767px) {
      .hb-header__txt-2 {
        font-size: 3.3em;
        top: 13.2em;
        left: 8em;
        line-height: 1.0em; } }
  .hb-header__txt-3 {
    position: absolute;
    top: 12.3em;
    left: 31.3em;
    font-size: 2.55em;
    line-height: 1.0em;
    font-family: 'DaxlineOffcPro-Bold';
    color: #fff;
    text-transform: uppercase; }
    @media (max-width: 767px) {
      .hb-header__txt-3 {
        font-size: 3.3em;
        top: 19.0em;
        left: 17.6em;
        line-height: 1.0em; } }

.hb-header3 {
  background: url(../img/hb-header3-1440.jpg) center 0 no-repeat;
  -webkit-background-size: 100% auto !important;
  background-size: 100% auto !important;
  position: relative;
  z-index: 10; }
  @media (min-width: 1440px) {
    .hb-header3 {
      background: url(../img/hb-header3-1920.jpg) center 0 no-repeat;
      -webkit-background-size: 100% auto !important;
      background-size: 100% auto !important; } }
  @media (max-width: 767px) {
    .hb-header3 {
      background: url(../img/hb-header3-767.jpg) center 0 no-repeat;
      -webkit-background-size: 100% auto !important;
      background-size: 100% auto !important; } }
  @media (max-width: 420px) {
    .hb-header3 {
      background: url(../img/hb-header3-420.jpg) center 0 no-repeat;
      -webkit-background-size: 100% auto !important;
      background-size: 100% auto !important; } }
  @media (max-width: 380px) {
    .hb-header3 {
      background: url(../img/hb-header3-380.jpg) center 0 no-repeat;
      -webkit-background-size: 100% auto !important;
      background-size: 100% auto !important; } }

@media only screen and (-webkit-min-device-pixel-ratio: 2) and (max-width: 767px), only screen and (min--moz-device-pixel-ratio: 2) and (max-width: 767px), only screen and (-o-min-device-pixel-ratio: 2 / 1) and (max-width: 767px), only screen and (min-device-pixel-ratio: 2) and (max-width: 767px), only screen and (-o-min-device-pixel-ratio: 2/1) and (max-width: 767px), only screen and (min-resolution: 192dpi) and (max-width: 767px), only screen and (min-resolution: 2dppx) and (max-width: 767px) {
  .hb-header3 {
    background: url(../img/hb-header3-767.jpg) center 0 no-repeat;
    -webkit-background-size: 100% auto !important;
    background-size: 100% auto !important; } }
  .hb-header3 img {
    width: 100%; }
    .hb-header3 img.hb-header-sm {
      display: none; }
    @media (max-width: 767px) {
      .hb-header3 img {
        display: none; }
        .hb-header3 img.hb-header-sm {
          display: block; } }
  .hb-header3:before {
    content: ' ';
    position: absolute;
    left: 0;
    bottom: -2px;
    right: 0;
    height: 3px;
    background: #2b87ba; }

.hb-header2 {
  margin-bottom: -2px;
  position: relative;
  z-index: 5;
  background: #000 url(../img/hb-header2-1440.jpg) center 0 no-repeat;
  -webkit-background-size: 100% auto !important;
  background-size: 100% auto !important;
  position: relative; }
  @media (min-width: 1440px) {
    .hb-header2 {
      background: #000 url(../img/hb-header2-1920.jpg) center 0 no-repeat;
      -webkit-background-size: 100% auto !important;
      background-size: 100% auto !important; } }
  @media (max-width: 767px) {
    .hb-header2 {
      background: #000 url(../img/hb-header2-767.jpg) center 0 no-repeat;
      -webkit-background-size: 100% auto !important;
      background-size: 100% auto !important; } }
  @media (max-width: 420px) {
    .hb-header2 {
      background: #000 url(../img/hb-header2-420.jpg) center 0 no-repeat;
      -webkit-background-size: 100% auto !important;
      background-size: 100% auto !important; } }
  @media (max-width: 380px) {
    .hb-header2 {
      background: #000 url(../img/hb-header2-380.jpg) center 0 no-repeat;
      -webkit-background-size: 100% auto !important;
      background-size: 100% auto !important; } }
  .hb-header2 img {
    width: 100%; }
    .hb-header2 img.hb-header-sm {
      display: none; }
    @media (max-width: 767px) {
      .hb-header2 img {
        display: none; }
        .hb-header2 img.hb-header-sm {
          display: block; } }
  .hb-header2__body {
    font-size: 1vw;
    position: absolute;
    top: 1.9em;
    left: 26em;
    right: 26em;
    text-align: center;
    color: #fff; }
    @media (max-width: 767px) {
      .hb-header2__body {
        left: 1em;
        right: 1em;
        top: 4.5em; } }
    .hb-header2__body h2 {
      margin: 0 0 .5em;
      font: 400 2.5em/1.2em 'DaxlineOffcPro-Bold';
      text-transform: uppercase; }
      @media (max-width: 767px) {
        .hb-header2__body h2 {
          font-size: 6.5em;
          margin: 0 0 0.4em; } }
  .hb-header2__left {
    float: left;
    width: 22em;
    text-align: left;
    position: relative;
    padding: 3em 0 0; }
    @media (max-width: 767px) {
      .hb-header2__left {
        padding: 6em 0 0 2em;
        width: 39em; } }
    .hb-header2__left img {
      width: 17.5em;
      margin: 0 0 0 -1em;
      max-width: 190px; }
      @media (max-width: 767px) {
        .hb-header2__left img {
          width: 37em;
          display: inline !important; } }
    .hb-header2__left p {
      display: block;
      margin: 1.65em 0 0;
      text-transform: uppercase;
      font: 400 1.85em/1.0em 'DaxlineOffcPro-Bold';
      text-align: left; }
      @media (max-width: 767px) {
        .hb-header2__left p {
          font-size: 4em;
          width: 12em;
          margin: 1.8em 0 0; } }
  .hb-header2__right {
    float: right;
    width: 23.5em;
    padding: 1em 0 0; }
    @media (max-width: 767px) {
      .hb-header2__right {
        width: 45em;
        margin: 19em 0 0; } }
    .hb-header2__right img {
      width: 17.5em;
      margin: 0 -9em 0 0;
      max-width: 190px; }
      @media (max-width: 767px) {
        .hb-header2__right img {
          width: 37em;
          margin: 0 -2em 0 0;
          display: inline !important; } }
    .hb-header2__right p {
      display: block;
      margin: 0 -2em -1.3em 0;
      text-transform: uppercase;
      font: 400 1.85em/1.0em 'DaxlineOffcPro-Bold';
      text-align: left; }
      @media (max-width: 767px) {
        .hb-header2__right p {
          font-size: 4.0em;
          margin: 0 0 0 -2.4em; } }

.hb-header__logo {
  padding: 72px 0 75px; }
  .hb-header__logo img {
    height: 118px; }
  @media (max-width: 990px) {
    .hb-header__logo {
      padding: 72px 0 138px; } }
  @media (max-width: 767px) {
    .hb-header__logo {
      padding: 31px 0 0;
      height: 272px; }
      .hb-header__logo img {
        height: 42px; } }

.hb-period {
  position: relative;
  z-index: 5;
  max-width: 1032px;
  margin: 0 auto; }
  @media (max-width: 1050px) {
    .hb-period {
      max-width: 723px;
      margin: 0 auto; } }
  @media (max-width: 767px) {
    .hb-period {
      padding: 0 0 26px;
      max-width: 330px; } }

.hb-period__date {
  padding: 53px 0 70px;
  font-size: 24px;
  line-height: 1.4em;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  font-family: 'DaxlineOffcPro-Bold'; }
  @media (max-width: 1050px) {
    .hb-period__date {
      padding: 48px 0 64px; } }
  @media (max-width: 767px) {
    .hb-period__date {
      padding: 26px 0 0;
      font-size: 14px;
      height: auto; } }
  .hb-period__date strong {
    display: block;
    margin: 11px 0 10px;
    font: 400 36px/48px 'DaxlineOffcPro-Bold';
    color: #fff;
    text-transform: initial;
    letter-spacing: -0.01em; }
    @media (max-width: 1050px) {
      .hb-period__date strong {
        font-size: 24px;
        line-height: 1.3em; } }
    @media (max-width: 767px) {
      .hb-period__date strong {
        font-size: 20px;
        line-height: 1.3em; } }
  .hb-period__date span {
    display: block;
    text-transform: uppercase;
    color: #e5007d;
    font-size: 56px;
    line-height: 60px; }
    @media (max-width: 1050px) {
      .hb-period__date span {
        font-size: 42px;
        line-height: 48px; } }
    @media (max-width: 767px) {
      .hb-period__date span {
        font-size: 36px;
        line-height: 42px; } }
  .hb-period__date p {
    display: block;
    font-family: 'DaxlineOffcPro-Bold'; }

.hb-period__img {
  text-align: center;
  display: none; }
  @media (max-width: 767px) {
    .hb-period__img {
      display: block;
      padding: 56px 0 0; } }
  .hb-period__img img {
    max-width: 100%; }

.hb-period__pac {
  position: absolute;
  top: -63px;
  right: -10px; }
  .hb-period__pac img {
    height: 589px; }
  @media (max-width: 1050px) {
    .hb-period__pac {
      right: auto;
      left: 450px;
      top: -10px; }
      .hb-period__pac img {
        height: 430px; } }
  @media (max-width: 767px) {
    .hb-period__pac {
      position: relative;
      left: 5px;
      top: auto; }
      .hb-period__pac img {
        height: 310px; } }

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

.popup-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  opacity: .6; }

.popup-wr {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: #000;
  color: #fff;
  padding: 30px 20px;
  width: 830px; }
  @media (max-width: 1500px) {
    .popup-wr {
      width: 680px; } }
  @media (max-width: 780px) {
    .popup-wr {
      width: 600px; } }
  @media (max-width: 650px) {
    .popup-wr {
      width: 90%; } }

.popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px; }
  .popup-close:before {
    content: ' ';
    position: absolute;
    top: -webkit-calc(50% - 1px);
    top: calc(50% - 1px);
    left: 0;
    right: 0;
    border-bottom: 2px solid #fff;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg); }
  .popup-close:after {
    content: ' ';
    position: absolute;
    left: -webkit-calc(50% - 1px);
    left: calc(50% - 1px);
    top: 0;
    bottom: 0;
    border-left: 2px solid #fff;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg); }

.owl-nav {
  position: relative; }
  @media (max-width: 767px) {
    .owl-nav {
      background: #fff;
      height: 100px;
      margin: 1px 0 0; } }
  .owl-nav .owl-prev {
    position: absolute;
    top: -224px;
    left: -36px; }
    @media (max-width: 767px) {
      .owl-nav .owl-prev {
        left: -webkit-calc(50% - 100px);
        left: calc(50% - 100px);
        top: 33px; } }
    .owl-nav .owl-prev span {
      display: block;
      border-left: 8px solid #000;
      border-bottom: 8px solid #000;
      width: 33px;
      height: 33px;
      -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
      transform: rotate(45deg); }
      @media (max-width: 767px) {
        .owl-nav .owl-prev span {
          border-left: 8px solid #000;
          border-bottom: 8px solid #000; } }
  .owl-nav .owl-next {
    position: absolute;
    top: -224px;
    right: -36px; }
    @media (max-width: 767px) {
      .owl-nav .owl-next {
        right: -webkit-calc(50% - 100px);
        right: calc(50% - 100px);
        top: 33px; } }
    .owl-nav .owl-next span {
      display: block;
      border-left: 8px solid #000;
      border-bottom: 8px solid #000;
      width: 33px;
      height: 33px;
      -webkit-transform: rotate(-135deg);
      -ms-transform: rotate(-135deg);
      transform: rotate(-135deg); }
      @media (max-width: 767px) {
        .owl-nav .owl-next span {
          border-left: 8px solid #000;
          border-bottom: 8px solid #000; } }

body * {
  outline: none; }
