@import url('https://fonts.googleapis.com/css?family=Roboto+Condensed:700|Roboto:400,400i,500,700&subset=cyrillic');
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;
}
/*clarify*/
/*clarify*/
/*clarify*/
/*clarify*/
/*clarify*/
/* form */
/* hv form */
html,
body {
  height: 100%;
}
body {
  position: relative;
  text-align: left;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  background-color: #fff;
}
em,
i {
  font-style: italic;
}
strong,
b {
  font-weight: bold;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
img {
  vertical-align: top;
}
.test {
  background-color: rgba(20, 90, 50, 0.3);
}
.ellipsis {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.hidden {
  display: none;
}
/*
LESS variables are information about icon's compiled state, stored under its original file name

.icon-home {
  width: @icon-home-width;
}

The large array-like variables contain all information about a single icon
@icon-home: x y offset_x offset_y width height total_width total_height image_path name;

At the bottom of this section, we provide information about the spritesheet itself
@spritesheet: width height image @spritesheet-sprites;
*/
/*
The provided classes are intended to be used with the array-like variables

.icon-home {
  .sprite-width(@icon-home);
}
.icon-email {
  .sprite(@icon-email);
}

Example usage in HTML:

`display: block` sprite:
<div class="icon-home"></div>

To change `display` (e.g. `display: inline-block;`), we suggest using a common CSS class:

// CSS
.icon {
  display: inline-block;
}

// HTML
<i class="icon icon-home"></i>
*/
/*
The `.sprites` mixin generates identical output to the CSS template
  but can be overridden inside of LESS

This must be run when you have at least 2 sprites.
  If run with a single sprite, then there will be reference errors.

.sprites(@spritesheet-sprites);
*/
.hv-header {
  border-bottom: 2px solid #000;
  padding-top: 29px;
  padding-bottom: 27px;
}
.hv-header__top {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.hv-header__base {
  box-sizing: border-box;
  padding-top: 15px;
  padding-left: 30px;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.hv-header__row {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.hv-header__btn {
  margin-top: 28px;
  text-align: right;
}
.hv-header__nav {
  margin-top: 44px;
}
.hv-logo {
  position: relative;
  display: inline-block;
  text-decoration: none;
  padding-left: 106px;
  min-height: 108px;
  box-sizing: border-box;
  padding-top: 19px;
}
.hv-logo:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  background-image: url(../images/sprite/hv-sprite.png);
  background-position: 0px -33px;
  width: 78px;
  height: 108px;
  background-repeat: no-repeat;
}
.hv-logo__item {
  color: #000;
  text-transform: uppercase;
  font-size: 37px;
  line-height: 42px;
  font-weight: 500;
  white-space: nowrap;
}
.hv-search {
  text-decoration: none;
  color: #000;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.hv-search__icon {
  margin-right: 8px;
}
.hv-search__text {
  font-size: 16px;
}
.hv-footer__box {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-top: 2px solid #000;
  padding-top: 25px;
  padding-bottom: 27px;
}
.hv-footer__base {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.hv-copyright {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.hv-copyright__icon {
  display: block;
  background-image: url(../images/sprite/hv-sprite.png);
  background-position: 0px 0px;
  width: 20px;
  height: 27px;
  margin-right: 9px;
}
.hv-copyright__text {
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-size: 16px;
  line-height: 20px;
  font-weight: normal;
  color: #000;
}
.hv-dev {
  white-space: nowrap;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: 30px;
  text-decoration: none;
  margin-left: auto;
}
.hv-dev__title,
.hv-dev__logo {
  font-family: 'Roboto', sans-serif;
}
.hv-dev__title {
  color: #000;
  text-decoration: none;
  font-size: 16px;
}
.hv-dev__logo {
  display: inline-block;
  margin-left: 5px;
}
.hv-dev__icon {
  transition: -webkit-filter 0.15s ease;
  transition: filter 0.15s ease;
  transition: filter 0.15s ease, -webkit-filter 0.15s ease;
}
.hv-dev:hover .dev__icon {
  -webkit-filter: contrast(20%);
  filter: contrast(20%);
}
.hv-news__item {
  box-sizing: border-box;
  margin-bottom: 3.3rem;
}
.hv-news__item:last-child {
  margin-bottom: 0;
}
.hv-news__item:last-child .hv-news__link {
  border-bottom: none;
  padding-bottom: 0;
}
.hv-news__link {
  text-decoration: none;
  color: #000;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.hv-news__link:focus {
  outline: none;
}
.hv-news__link:hover .hv-news__text {
  border-bottom-color: #404040;
}
.hv-news__link:hover .hv-news__pic:after {
  opacity: 0.1;
}
.hv-news__info {
  display: block;
  font-size: 1.5rem;
  margin-right: 2.2rem;
}
.hv-news__info:last-child {
  margin-right: 0;
}
.hv-news__content {
  margin-top: 0.8rem;
  font-size: 2rem;
  line-height: 2.6rem;
}
.hv-news__container {
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.hv-news__text {
  border-bottom: 1px solid transparent;
}
.hv-news__top {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.hv-paginator {
  margin-top: 37px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.hv-paginator__list {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-right: 20px;
}
.hv-paginator__link {
  display: inline-block;
  vertical-align: top;
  box-sizing: border-box;
  width: 32px;
  height: 32px;
  padding-top: 7px;
  text-decoration: none;
  background-color: #fff;
  margin-left: 1px;
  margin-right: 1px;
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  line-height: 18px;
  color: #000;
  text-align: center;
}
.hv-paginator__link:hover .paginator__text {
  color: #000;
}
.hv-paginator__link_active {
  cursor: default;
  background-color: #000;
  color: #fff;
  font-weight: bold;
}
.hv-paginator__link_active:hover {
  color: #fff;
}
.hv-paginator__item {
  margin-right: 20px;
}
.hv-paginator__item_prev .hv-paginator__icon {
  left: 15px;
  -webkit-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg);
}
.hv-paginator__item_prev .hv-paginator__btn {
  padding-left: 29px;
}
.hv-paginator__item_next .hv-paginator__icon {
  right: 15px;
}
.hv-paginator__item_next .hv-paginator__btn {
  padding-right: 29px;
}
.hv-paginator__icon {
  position: absolute;
  top: 50%;
  margin-top: -6px;
}
@media screen and (max-width: 768px) {
  .hv-paginator {
    margin-top: 32px;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .hv-paginator__text {
    font-size: 16px;
    line-height: 16px;
  }
  .hv-paginator__list {
    width: 100%;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
    margin-bottom: 20px;
    margin-right: 0;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .hv-paginator__item {
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2;
  }
  .hv-paginator__item_next {
    margin-right: 0;
  }
}
@media screen and (max-width: 680px) {
  .hv-paginator__btn {
    font-size: 0 !important;
    line-height: 0 !important;
    height: 38px !important;
    padding: 0 !important;
    width: 41px !important;
  }
  .hv-paginator__item {
    margin-right: 12px;
  }
  .hv-paginator__item_prev {
    -webkit-order: 3;
    -ms-flex-order: 3;
    order: 3;
  }
  .hv-paginator__item_next {
    -webkit-order: 4;
    -ms-flex-order: 4;
    order: 4;
  }
  .hv-paginator__item_first {
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2;
  }
  .hv-paginator__item_last {
    -webkit-order: 5;
    -ms-flex-order: 5;
    order: 5;
  }
}
.hv-social {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-left: 35px;
}
.hv-social__item {
  opacity: 1;
  margin-right: 8px;
  transition: opacity 0.15s ease;
}
.hv-social__item:last-child {
  margin-right: 0;
}
.hv-social__link {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}
.hv-social__link:hover .hv-social__icon {
  -webkit-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
  transform: translateY(-3px);
}
.hv-social__icon {
  fill: #000;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.hv-nav {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.hv-nav__item.hv-active .hv-nav__link {
  color: #fff;
  background-color: #000;
}
.hv-nav__item.hv-active .hv-nav__link:after {
  position: absolute;
  top: 100%;
  left: 50%;
}
.hv-nav__link {
  display: inline-block;
  vertical-align: top;
  text-decoration: none;
  color: #000;
  position: relative;
  border-radius: 2px;
}
.hv-nav__link:hover .hv-nav__text {
  border-bottom-color: #000;
}
.hv-nav_main .hv-nav__item {
  margin-right: 9px;
  margin-bottom: 4px;
}
.hv-nav_main .hv-nav__item.hv-active .hv-nav__link:after {
  content: '';
  border-top: 6px solid #000;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  margin-left: -6px;
}
.hv-nav_main .hv-nav__link {
  font-size: 25px;
  line-height: 27px;
  padding: 4px 11px 5px;
}
.hv-nav_main .hv-nav__text {
  border-bottom: 2px solid transparent;
}
.hv-nav_sub {
  margin-top: 19px;
}
.hv-nav_sub .hv-nav__item {
  margin-right: 8px;
  margin-bottom: 7px;
}
.hv-nav_sub .hv-nav__item.hv-active .hv-nav__link:after {
  content: '';
  border-top: 5px solid #000;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  margin-left: -5px;
}
.hv-nav_sub .hv-nav__link {
  font-size: 20px;
  line-height: 22px;
  padding: 3px 7px 4px;
}
.hv-nav_sub .hv-nav__text {
  border-bottom: 1px solid transparent;
}
.hv-nav_settings {
  padding-top: 8px;
  margin-left: 22px;
}
.hv-nav_settings .hv-nav__item {
  margin-right: 1px;
  margin-bottom: 7px;
}
.hv-nav_settings .hv-nav__item.hv-active .hv-nav__link:after {
  content: '';
  border-top: 5px solid #000;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  margin-left: -5px;
}
.hv-nav_settings .hv-nav__link {
  font-weight: bold;
  font-size: 24px;
  line-height: 26px;
  padding: 2px 9px 5px;
}
.hv-nav_settings .hv-nav__text {
  border-bottom: 2px solid transparent;
}
.hv-top {
  position: relative;
  border-bottom: 1px solid #c4c4c4;
  background-color: #fff;
  z-index: 4000;
}
.hv-top__container {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 70px;
}
.hv-top__cell {
  box-sizing: border-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  padding-left: 20px;
  padding-right: 20px;
  border-right: 1px solid #d9d9d9;
}
.hv-top__cell:first-child {
  border-left: 1px solid #d9d9d9;
}
.hv-top__cell_side {
  width: 22%;
}
.hv-top__cell_option {
  width: 29%;
}
.hv-top__cell_settings {
  width: 20%;
}
.hv-top__title {
  font-size: 16px;
  line-height: 18px;
}
.hv-top__item {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-decoration: none;
  color: #000;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.hv-top__item:focus {
  outline: none;
}
.hv-top__icon {
  margin-right: 9px;
}
.hv-top__arrow {
  margin-top: 1px;
  margin-left: 4px;
}
.hv-top__caption {
  font-size: 32px;
  line-height: 36px;
  font-weight: bold;
  margin-bottom: 20px;
}
.hv-top__note {
  font-size: 24px;
  line-height: 26px;
}
.hv-top__line {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 10px;
}
.hv-top__line:first-child {
  margin-top: 0;
}
.hv-top__row {
  margin-top: 32px;
}
.hv-top__row:first-child {
  margin-top: 0;
}
.hv-top__btns {
  margin-top: 50px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.hv-top__btn-cell {
  margin-right: 22px;
}
.hv-top__btn-cell:last-child {
  margin-left: 0;
}
.hv-dropdown__content {
  display: none;
  overflow: hidden;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  padding-top: 43px;
  padding-bottom: 55px;
  box-shadow: 0 8px 16px 0 rgba(1, 1, 1, 0.19);
  background-color: #fff;
  -webkit-transform: translateY(1px);
  -ms-transform: translateY(1px);
  transform: translateY(1px);
}
.hv-colors {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-left: -6px;
  margin-right: -6px;
  padding-bottom: 10px;
}
.hv-colors__link {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  font-weight: 500;
  color: #000;
  background-color: #fff;
  position: relative;
  font-size: 24px;
  line-height: 28px;
  padding: 20px 15px 22px;
  border: 1px solid transparent;
}
.hv-colors__link:before {
  position: absolute;
  top: -6px;
  right: -6px;
  bottom: -6px;
  left: -6px;
  border: 2px solid #000;
}
.hv-colors__link:after {
  position: absolute;
  top: 100%;
  margin-top: 5px;
  left: 50%;
  border-top: 6px solid #000;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  margin-left: -6px;
}
.hv-colors__item {
  width: 25%;
  box-sizing: border-box;
  padding-left: 11px;
  padding-right: 11px;
}
.hv-colors__item.hv-active .hv-colors__link:after,
.hv-colors__item.hv-active .hv-colors__link:before {
  content: '';
}
.hv-colors__item_white .hv-colors__link {
  border-color: #000;
  background-color: #fff;
  color: #000;
}
.hv-colors__item_white .hv-colors__link:after {
  border-top-color: #000;
}
.hv-colors__item_black .hv-colors__link {
  background-color: #000;
  color: #fff;
}
.hv-colors__item_black .hv-colors__link:after {
  border-top-color: #000;
}
.hv-colors__item_multicolor .hv-colors__link {
  background-color: #9dd1ff;
  color: #195183;
}
.hv-colors__item_multicolor .hv-colors__link:after {
  border-top-color: #21496c;
}
.hv-colors__item_light .hv-colors__link {
  background-color: #fff5e6;
  color: #301700;
}
.hv-colors__item_light .hv-colors__link:after {
  border-top-color: #301700;
}
/* ----//-------- Site structure, layouts --------//---- */
html {
  font-size: 62.5%;
}
body {
  color: #000;
  min-width: 990px;
  font-size: 1.6rem;
}
.hv-svg-box {
  height: 0;
  width: 0;
  position: absolute;
  visibility: hidden;
  background-color: rgba(50, 150, 40, 0.5);
}
.hv-dropdown-opened .hv-overlay {
  height: 100%;
  width: 100%;
  opacity: .15;
  transition: opacity .3s ease,
				width 0s ease 0s,
				height 0s ease 0s;
}
.hv-box {
  margin: 0 auto;
  box-sizing: border-box;
  width: 980px;
}
@media screen and (max-width: 1024px) {
  .hv-box {
    width: 100%;
    padding-left: 25px;
    padding-right: 25px;
  }
}
.hv-overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #16222e;
  opacity: 0;
  height: 0;
  width: 0;
  z-index: 3000;
  transition: width 0s ease 0.3s, height 0s ease 0.3s;
}
.hv-wrapper {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
}
.hv-wrapper__inner {
  -webkit-flex: 1 0 auto;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
}
.hv-container {
  padding-top: 38px;
  padding-bottom: 55px;
}
.hv-container_main {
  padding-top: 35px;
}
.hv-btn {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  top: 0;
  outline: 0;
  margin: 0;
  cursor: pointer;
  word-wrap: break-word;
  text-decoration: none;
  box-sizing: border-box;
  text-align: center;
  transition: background-color 0.1s ease, color 0.1s ease;
  border: 2px solid #000;
  border-radius: 20px;
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
  background-color: #fff;
  color: #000;
  padding: 9px 19px 12px;
  /* loading */
}
.hv-btn:hover {
  background-color: #000;
  color: #fff;
}
.hv-btn:active,
.hv-btn:focus {
  margin: 0;
}
.hv-btn__text {
  border-bottom: 1px dotted #000;
}
.hv-btn.hv-btn_loading:hover,
.hv-btn.hv-btn_loading:active,
.hv-btn.hv-btn_loading:focus {
  cursor: default;
  color: transparent !important;
}
.hv-btn_loading {
  position: relative;
  color: transparent !important;
  cursor: default;
  text-shadow: none;
}
.hv-btn_loading .loader {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -10px;
  margin-top: -10px;
}
.hv-btn_small {
  border-radius: 20px;
  font-size: 16px;
  padding: 8px 16px 10px;
}
.hv-btn_large {
  border-radius: 28px;
  font-size: 22px;
  padding: 12px 23px 16px;
}
.hv-btn_size_wide {
  width: 100%;
}
.hv-icon {
  display: inline-block;
  width: 10px;
  height: 10px;
  fill: #000;
}
.hv-icon_dropdown {
  width: 13px;
  height: 8px;
}
.hv-icon_facebook {
  width: 10px;
  height: 19px;
}
.hv-icon_instagram {
  width: 19px;
  height: 19px;
}
.hv-icon_search {
  width: 27px;
  height: 28px;
}
.hv-icon_twitter {
  width: 21px;
  height: 17px;
}
.hv-icon_vk {
  width: 22px;
  height: 13px;
}
.hv-icon_youtube {
  width: 23px;
  height: 17px;
}
.hv-icon_websecret {
  width: 58px;
  height: 30px;
}
.hv-icon_view {
  width: 35px;
  height: 24px;
}
.hv-icon_settings {
  width: 31px;
  height: 30px;
}
.hv-icon_search_2 {
  width: 58px;
  height: 30px;
}
.hv-icon_close {
  width: 28px;
  height: 28px;
}
.hv-caption {
  font-weight: bold;
  font-size: 3.7rem;
  line-height: 1.25;
  margin-bottom: 3rem;
}
.hv-title {
  font-weight: bold;
  font-size: 3.2rem;
  line-height: 1.25;
  margin-bottom: 3.6rem;
}
.hv-btn-row {
  margin-top: 44px;
}
.hv-content {
  font-size: 2rem;
  line-height: 1.4;
  color: #000;
}
.hv-content img {
  max-width: 100%;
  vertical-align: top;
}
.hv-content .img-left {
  float: left;
  margin-right: 3rem;
  margin-bottom: 1.8rem;
}
.hv-content .img-right {
  float: right;
  margin-left: 3rem;
  margin-bottom: 1.8rem;
}
.hv-content .img-center {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.8rem;
}
.hv-content a {
  color: #3b3e45;
  text-decoration: none;
  border-bottom: 1px solid #7d7e82;
}
.hv-content a:hover {
  color: #474b54;
  border-bottom-color: #aaabad;
}
.hv-content h2,
.hv-content h3,
.hv-content h4,
.hv-content h5,
.hv-content h6 {
  margin-top: 1.05em;
  margin-bottom: 0.9em;
  line-height: 1.25;
  font-weight: bold;
}
.hv-content h2:first-child,
.hv-content h3:first-child,
.hv-content h4:first-child,
.hv-content h5:first-child,
.hv-content h6:first-child {
  margin-top: 0;
}
.hv-content h2 {
  font-size: 3rem;
}
.hv-content h3 {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 20px;
  text-transform: uppercase;
}
.hv-content h4 {
  font-size: 1.8rem;
}
.hv-content h5 {
  font-size: 1.8rem;
}
.hv-content h6 {
  font-size: 1.8rem;
}
.hv-content p {
  margin-bottom: 2.8rem;
}
.hv-content p:last-child,
.hv-content ul:last-child,
.hv-content ol:last-child,
.hv-content blockquote:last-child {
  margin-bottom: 0;
}
.hv-content ul,
.hv-content ol {
  margin-bottom: 2.4rem;
}
.hv-content ul li,
.hv-content ol li {
  position: relative;
  margin-bottom: 0.6rem;
}
.hv-content ul li:before,
.hv-content ol li:before {
  content: '';
  position: absolute;
  color: #000;
}
.hv-content ul li:last-child,
.hv-content ol li:last-child {
  margin-bottom: 0;
}
.hv-content ul {
  list-style: none outside none;
  padding-left: 3.1rem;
}
.hv-content ul li:before {
  top: 1rem;
  left: -1.8rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #000;
}
.hv-content ol {
  list-style: none;
  counter-reset: ol-content;
  padding-left: 2.1rem;
}
.hv-content ol li {
  padding-left: 0.9rem;
}
.hv-content ol li:before {
  top: 0;
  right: 100%;
  content: counter(ol-content) '.';
  counter-increment: ol-content;
  font-family: 'Roboto', sans-serif;
  font-size: 1.6rem;
  text-align: right;
}
.hv-content blockquote {
  position: relative;
  font-size: 2.2rem;
  line-height: 1.45;
  padding-left: 4.8rem;
  margin-bottom: 2.8rem;
}
.hv-content blockquote:after {
  content: '“';
  position: absolute;
  top: 1.5rem;
  left: 0.8rem;
  font-size: 6rem;
}
.hv-date {
  display: block;
  font-size: 1.6rem;
  color: #000;
}
.hv-article__header {
  margin-bottom: 3.8rem;
}
.hv-options {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.hv-options__link {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-decoration: none;
  font-weight: bold;
  color: #000;
  width: 31px;
  height: 31px;
  background-color: #fff;
  border-radius: 2px;
  position: relative;
}
.hv-options__link:after,
.hv-options__link:before {
  position: absolute;
  top: 100%;
  left: 50%;
}
.hv-options__link:before {
  z-index: 10;
}
.hv-options__link:focus {
  outline: none;
}
.hv-options__link:hover .hv-options__text {
  border-bottom-color: #000;
}
.hv-options__text {
  border-bottom: 1px solid transparent;
}
.hv-options__item_size_small .hv-options__link {
  font-size: 22px;
}
.hv-options__item_size_middle .hv-options__link {
  font-size: 26px;
}
.hv-options__item_size_large .hv-options__link {
  font-size: 32px;
}
.hv-options__item_color_white .hv-options__link {
  color: #000;
  background-color: #fff;
}
.hv-options__item_color_black .hv-options__link {
  color: #fff;
  background-color: #000;
}
.hv-options__item_color_multicolor .hv-options__link {
  color: #000;
  background-color: #fff;
  border-color: #000;
}
.hv-options_font {
  margin-left: 5px;
}
.hv-options_font .hv-options__link:after {
  border-top: 5px solid #000;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  margin-left: -5px;
}
.hv-options_font .hv-options__item {
  margin-right: 3px;
}
.hv-options_font .hv-options__item:last-child {
  margin-right: 0;
}
.hv-options_font .hv-options__item.hv-active .hv-options__link {
  background-color: #000;
  color: #fff;
}
.hv-options_font .hv-options__item.hv-active .hv-options__link:after {
  content: '';
}
.hv-options_lang {
  margin-left: 30px;
}
.hv-options_lang .hv-options__link {
  width: auto;
  height: auto;
  font-size: 14px;
  font-weight: normal;
  padding: 7px;
}
.hv-options_lang .hv-options__link:after {
  border-top: 5px solid #000;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  margin-left: -5px;
}
.hv-options_lang .hv-options__item {
  margin-right: 1px;
}
.hv-options_lang .hv-options__item:last-child {
  margin-right: 0;
}
.hv-options_lang .hv-options__item.hv-active .hv-options__link {
  background-color: #000;
  color: #fff;
}
.hv-options_lang .hv-options__item.hv-active .hv-options__link:after {
  content: '';
}
.hv-options_color {
  margin-left: 13px;
}
.hv-options_color .hv-options__link {
  box-sizing: border-box;
  font-size: 22px;
  border: 1px solid #000;
}
.hv-options_color .hv-options__item {
  margin-right: 6px;
}
.hv-options_color .hv-options__item:last-child {
  margin-right: 0;
}
.hv-options_color .hv-options__item_color_white .hv-options__link {
  background-color: #fff;
  color: #000;
}
.hv-options_color .hv-options__item_color_white .hv-options__link:after {
  border-top: 6px solid #000;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  margin-left: -6px;
}
.hv-options_color .hv-options__item_color_white .hv-options__link:before {
  border-top: 5px solid #fff;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  margin-left: -5px;
}
.hv-options_color .hv-options__item_color_black .hv-options__link {
  background-color: #000;
  color: #fff;
}
.hv-options_color .hv-options__item_color_black .hv-options__link:after {
  border-top: 6px solid #000;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  margin-left: -6px;
}
.hv-options_color .hv-options__item_color_multicolor .hv-options__link {
  background-color: #9dd1ff;
  color: #195183;
  border-color: #21496c;
}
.hv-options_color .hv-options__item_color_multicolor .hv-options__link:after {
  border-top: 6px solid #21496c;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  margin-left: -6px;
}
.hv-options_color .hv-options__item_color_multicolor .hv-options__link:before {
  border-top: 5px solid #9dd1ff;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  margin-left: -5px;
}
.hv-options_color .hv-options__item_color_light {
  display: none;
}
.hv-options_color .hv-options__item.hv-active.hv-options__item .hv-options__link:after {
  content: '';
}
.hv-options_color .hv-options__item.hv-active.hv-options__item_color_white .hv-options__link:before,
.hv-options_color .hv-options__item.hv-active.hv-options__item_color_multicolor .hv-options__link:before {
  content: '';
}
.hv-form {
  /* required field */
  /* error message */
  /* input fields */
}
.hv-form__row {
  margin-top: 18px;
}
.hv-form__row:first-child {
  margin-top: 0;
}
.hv-form__row_hidden {
  display: none;
}
.hv-form__inline {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.hv-form__inline_center {
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.hv-form__label {
  box-sizing: border-box;
  position: relative;
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  line-height: 22px;
  font-weight: normal;
  color: #000;
  display: block;
  margin-bottom: 11px;
}
.hv-form__control {
  box-sizing: border-box;
  position: relative;
  max-width: 100%;
}
.hv-form__grid {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.hv-form__grid_1-2 .hv-form__cell {
  width: 50%;
}
.hv-form__grid_1-3 .hv-form__cell {
  width: 33.333%;
}
.hv-form__grid_big {
  margin-left: -13px;
  margin-right: -13px;
}
.hv-form__grid_big .hv-form__cell {
  padding-left: 13px;
  padding-right: 13px;
}
.hv-form__grid_middle {
  margin-left: -11px;
  margin-right: -11px;
}
.hv-form__grid_middle .hv-form__cell {
  padding-left: 11px;
  padding-right: 11px;
}
.hv-form__grid_small {
  margin-left: -7px;
  margin-right: -7px;
}
.hv-form__grid_small .hv-form__cell {
  padding-left: 7px;
  padding-right: 7px;
}
.hv-form__cell {
  box-sizing: border-box;
}
.hv-form__cell_datepicker {
  position: relative;
}
.hv-form__cell_datepicker .hv-form__input {
  position: relative;
  padding-right: 40px;
  background-repeat: no-repeat;
  background-image: url("../images/svg/calendar.svg");
  background-position: right center;
}
.hv-form__cell_date_from .hv-form__input {
  padding-left: 30px;
}
.hv-form__cell_date_to .hv-form__input {
  padding-left: 40px;
}
.hv-form__item {
  margin-right: 33px;
  margin-bottom: 15px;
}
.hv-form__item:last-child {
  margin-right: 0;
}
.hv-form__btn {
  margin-top: 22px;
}
.hv-form__required .hv-form__label:after {
  content: '*';
  margin: -3px 1px 0 4px;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1;
  color: #e73552;
}
.hv-form__error .hv-form__input,
.hv-form__error .hv-form__textarea,
.hv-form__error .hv-form__select {
  border-color: #f13131;
}
.hv-form__error .hv-form__input:focus,
.hv-form__error .hv-form__textarea:focus,
.hv-form__error .hv-form__select:focus {
  border-color: #f13131;
}
.hv-form__error .hv-form__error-message {
  display: block;
}
.hv-form__error-message {
  width: 100%;
  display: none;
  color: #e73552;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  line-height: 17px;
  padding-top: 5px;
  text-align: left;
}
.hv-form__select,
.hv-form__input,
.hv-form__textarea {
  box-sizing: border-box;
  width: 100%;
  border: 2px solid #000;
  color: #000;
  font-family: 'Roboto', sans-serif;
  font-size: 22px;
  font-weight: normal;
  padding: 12px 15px;
  background-color: #fff;
  transition: border-color 0.1s linear;
  border-radius: 10px;
}
.hv-form__select:focus,
.hv-form__input:focus,
.hv-form__textarea:focus {
  border-color: #000;
  outline: none;
  z-index: 50;
}
.hv-form__select:disabled,
.hv-form__input:disabled,
.hv-form__textarea:disabled,
.hv-form__select_disabled,
.hv-form__input_disabled,
.hv-form__textarea_disabled {
  color: #989ca4;
  background-color: #f4f5f7;
}
.hv-form__input,
.hv-form__select {
  position: relative;
  display: block;
  margin: 0;
  height: 54px;
  line-height: 30px;
  z-index: 10;
}
.hv-form__select {
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  z-index: 1;
  padding-left: 15px;
  padding-right: 41px;
  background-repeat: no-repeat;
  background-image: url("../images/svg/dropdown_select.svg");
  background-position: right center;
}
.hv-form__select::-ms-expand {
  display: none;
}
.hv-form__option {
  padding: 5px 9px;
}
.hv-form__option:focus {
  outline: none;
}
.hv-form__input::-webkit-input-placeholder,
.hv-form__textarea::-webkit-input-placeholder {
  color: #222;
}
.hv-form__input::-moz-placeholder,
.hv-form__textarea::-moz-placeholder {
  color: #222;
}
.hv-form__input:-ms-input-placeholder,
.hv-form__textarea:-ms-input-placeholder {
  color: #222;
}
.hv-form__input_search {
  padding-right: 70px;
}
.hv-form__textarea {
  display: block;
  overflow: auto;
  margin: 0;
  resize: vertical;
  line-height: 20px;
  font-weight: 400;
}
.hv-form__loading {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 20px;
  margin-left: 3px;
}
.hv-form__spinner {
  display: inline-block;
}
.hv-form__note {
  margin-top: 11px;
  font-size: 16px;
  line-height: 20px;
  color: #000;
}
.hv-form__search {
  position: relative;
}
.hv-form__submit {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  outline: 0;
  margin: 0;
  padding-left: 5px;
  padding-right: 10px;
  border: none;
  text-decoration: none;
  box-sizing: border-box;
  cursor: pointer;
  z-index: 70;
  background-color: transparent;
  transition: color 0.05 linear;
}
.hv-form__part {
  box-sizing: border-box;
  position: absolute;
  top: 0;
  margin-left: 3px;
  font-size: 18px;
  line-height: 24px;
  padding: 12px 15px;
  color: #989ca4;
  height: 54px;
  z-index: 200;
}
.hv-field {
  position: relative;
  padding-right: 82px;
  margin-top: 12px;
}
.hv-field__close {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  right: 15px;
  top: 50%;
  margin-top: -19px;
  width: 38px;
  height: 38px;
}
/*---------- change settins ----------*/
.hv-fontSize-small {
  font-size: 50%;
}
.hv-fontSize-small .hv-container .hv-btn_small {
  border-radius: 20px;
  font-size: 14px;
  padding: 6px 14px 8px;
}
.hv-fontSize-small .hv-container .hv-btn-row {
  margin-top: 34px;
}
.hv-fontSize-middle {
  font-size: 62.5%;
}
.hv-fontSize-middle .hv-container .hv-btn_small {
  border-radius: 20px;
  font-size: 16px;
  padding: 8px 16px 10px;
}
.hv-fontSize-middle .hv-container .hv-btn-row {
  margin-top: 44px;
}
.hv-fontSize-large {
  font-size: 80%;
}
.hv-fontSize-large .hv-container .hv-btn_small {
  border-radius: 28px;
  font-size: 20px;
  padding: 12px 20px 14px;
}
.hv-fontSize-large .hv-container .hv-btn-row {
  margin-top: 55px;
}
.hv-fontFamily-roboto .hv-container,
.hv-fontFamily-roboto .hv-content,
.hv-fontFamily-roboto .hv-content ol li:before,
.hv-fontFamily-roboto .hv-date,
.hv-fontFamily-roboto .hv-nav_main,
.hv-fontFamily-roboto .hv-nav_sub,
.hv-fontFamily-roboto .hv-title {
  font-family: 'Roboto', sans-serif;
}
.hv-fontFamily-roboto .hv-content h3 {
  font-family: 'Roboto Condensed', sans-serif;
}
.hv-fontFamily-arial .hv-container,
.hv-fontFamily-arial .hv-content,
.hv-fontFamily-arial .hv-content h3,
.hv-fontFamily-arial .hv-content ol li:before,
.hv-fontFamily-arial .hv-date,
.hv-fontFamily-arial .hv-nav_main,
.hv-fontFamily-arial .hv-nav_sub,
.hv-fontFamily-arial .hv-title {
  font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif;
}
.hv-fontFamily-georgia .hv-container,
.hv-fontFamily-georgia .hv-content,
.hv-fontFamily-georgia .hv-content h3,
.hv-fontFamily-georgia .hv-content ol li:before,
.hv-fontFamily-georgia .hv-date,
.hv-fontFamily-georgia .hv-nav_main,
.hv-fontFamily-georgia .hv-nav_sub,
.hv-fontFamily-georgia .hv-title {
  font-family: Georgia, serif;
}
.hv-color-black body {
  background-color: #000;
  color: #fff;
}
.hv-color-black .hv-btn {
  background-color: #000;
  color: #fff;
  border-color: #fff;
}
.hv-color-black .hv-btn:hover {
  background-color: #fff;
  color: #000;
}
.hv-color-black .hv-btn__text {
  border-bottom: 1px dotted #fff;
}
.hv-color-black .hv-nav__item.hv-active .hv-nav__link {
  color: #000;
  background-color: #fff;
}
.hv-color-black .hv-nav__link {
  color: #fff;
}
.hv-color-black .hv-nav__link:hover .hv-nav__text {
  border-bottom-color: #fff;
}
.hv-color-black .hv-nav_main .hv-nav__item.hv-active .hv-nav__link:after {
  border-top: 6px solid #fff;
}
.hv-color-black .hv-nav_sub .hv-nav__item.hv-active .hv-nav__link:after {
  border-top: 5px solid #fff;
}
.hv-color-black .hv-nav_settings .hv-nav__item.hv-active .hv-nav__link:after {
  border-top: 5px solid #fff;
}
.hv-color-black .hv-options__link {
  background-color: #000;
  color: #fff;
}
.hv-color-black .hv-options__item_color_white .hv-options__link {
  color: #fff;
  background-color: #000;
}
.hv-color-black .hv-options__item_color_black .hv-options__link {
  color: #000;
  background-color: #fff;
}
.hv-color-black .hv-options__item_color_multicolor .hv-options__link {
  color: #fff;
  background-color: #000;
  border-color: #fff;
}
.hv-color-black .hv-options_font .hv-options__link:after {
  border-top: 5px solid #fff;
}
.hv-color-black .hv-options_font .hv-options__item.hv-active .hv-options__link {
  background-color: #fff;
  color: #000;
}
.hv-color-black .hv-options_lang .hv-options__link:after {
  border-top: 5px solid #fff;
}
.hv-color-black .hv-options_lang .hv-options__item.hv-active .hv-options__link {
  background-color: #fff;
  color: #000;
}
.hv-color-black .hv-options_color .hv-options__link {
  border: 1px solid #000;
}
.hv-color-black .hv-options_color .hv-options__item_color_white .hv-options__link {
  background-color: #fff;
  color: #000;
}
.hv-color-black .hv-options_color .hv-options__item_color_white .hv-options__link:after {
  border-top: 6px solid #000;
}
.hv-color-black .hv-options_color .hv-options__item_color_white .hv-options__link:before {
  border-top: 5px solid #fff;
}
.hv-color-black .hv-options_color .hv-options__item_color_black .hv-options__link {
  border-color: #fff;
  background-color: #000;
  color: #fff;
}
.hv-color-black .hv-options_color .hv-options__item_color_black .hv-options__link:after {
  border-top: 6px solid #fff;
}
.hv-color-black .hv-options_color .hv-options__item_color_multicolor .hv-options__link {
  background-color: #9dd1ff;
  color: #195183;
  border-color: #21496c;
}
.hv-color-black .hv-options_color .hv-options__item_color_multicolor .hv-options__link:after {
  border-top: 6px solid #21496c;
}
.hv-color-black .hv-options_color .hv-options__item_color_multicolor .hv-options__link:before {
  border-top: 5px solid #9dd1ff;
}
.hv-color-black .hv-icon {
  fill: #fff;
}
.hv-color-black .hv-content {
  color: #fff;
}
.hv-color-black .hv-content ul li:before,
.hv-color-black .hv-content ol li:before {
  color: #fff;
}
.hv-color-black .hv-content ul li:before {
  background-color: #fff;
}
.hv-color-black .hv-date {
  color: #fff;
}
.hv-color-black .hv-footer__box {
  border-top-color: #fff;
}
.hv-color-black .hv-paginator__link {
  background-color: #000;
  color: #fff;
}
.hv-color-black .hv-paginator__link:hover .paginator__text {
  color: #fff;
}
.hv-color-black .hv-paginator__link_active {
  background-color: #fff;
  color: #000;
}
.hv-color-black .hv-paginator__link_active:hover {
  color: #000;
}
.hv-color-black .hv-top {
  background-color: #000;
}
.hv-color-black .hv-top__item {
  color: #fff;
}
.hv-color-black .hv-dropdown__content {
  box-shadow: 0 8px 16px 0 rgba(1, 1, 1, 0.19);
  background-color: #000;
}
.hv-color-black .hv-search {
  color: #fff;
}
.hv-color-black .hv-logo__item {
  color: #fff;
}
.hv-color-black .hv-copyright__text {
  color: #fff;
}
.hv-color-black .hv-dev__title {
  color: #fff;
}
.hv-color-black .hv-news__link {
  color: #fff;
}
.hv-color-black .hv-news__link:hover .hv-news__text {
  border-bottom-color: #fff;
}
.hv-color-black .hv-header {
  border-bottom-color: #fff;
}
.hv-color-black .hv-colors__link:before {
  border-color: #fff;
}
.hv-color-black .hv-colors__item_white .hv-colors__link {
  border-color: transparent;
  color: #000;
}
.hv-color-black .hv-colors__item_white .hv-colors__link:after {
  border-top-color: #fff;
}
.hv-color-black .hv-colors__item_black .hv-colors__link {
  border-color: #fff;
  color: #fff;
}
.hv-color-black .hv-colors__item_black .hv-colors__link:after {
  border-top-color: #fff;
}
.hv-color-black .hv-colors__item_multicolor .hv-colors__link {
  color: #195183;
}
.hv-color-black .hv-colors__item_multicolor .hv-colors__link:after {
  border-top-color: #fff;
}
.hv-color-black .hv-colors__item_light .hv-colors__link {
  color: #301700;
}
.hv-color-black .hv-colors__item_light .hv-colors__link:after {
  border-top-color: #fff;
}
.hv-color-black .hv-overlay {
  opacity: .45;
  background-color: #ffffff;
}
.hv-color-black .hv-form__label {
  color: #fff;
}
.hv-color-black .hv-form__select,
.hv-color-black .hv-form__input,
.hv-color-black .hv-form__textarea {
  border-color: #fff;
  color: #fff;
  background-color: #000;
}
.hv-color-black .hv-form__select:focus,
.hv-color-black .hv-form__input:focus,
.hv-color-black .hv-form__textarea:focus {
  border-color: #fff;
}
.hv-color-black .hv-form__select:disabled,
.hv-color-black .hv-form__input:disabled,
.hv-color-black .hv-form__textarea:disabled,
.hv-color-black .hv-form__select_disabled,
.hv-color-black .hv-form__input_disabled,
.hv-color-black .hv-form__textarea_disabled {
  color: #aaa;
  background-color: #000;
}
.hv-color-black .hv-form__select {
  background-image: url("../images/svg/dropdown_select_white.svg");
}
.hv-color-black .hv-form__input::-webkit-input-placeholder,
.hv-color-black .hv-form__textarea::-webkit-input-placeholder {
  color: #fff;
}
.hv-color-black .hv-form__input::-moz-placeholder,
.hv-color-black .hv-form__textarea::-moz-placeholder {
  color: #fff;
}
.hv-color-black .hv-form__input:-ms-input-placeholder,
.hv-color-black .hv-form__textarea:-ms-input-placeholder {
  color: #fff;
}
.hv-color-black .hv-form__note {
  color: #fff;
}
.hv-color-black .hv-form__part {
  color: #eee;
}
.hv-color-multicolor body {
  background-color: #9dd1ff;
  color: #21496c;
}
.hv-color-multicolor .hv-btn {
  background-color: #9dd1ff;
  color: #21496c;
  border-color: #21496c;
}
.hv-color-multicolor .hv-btn:hover {
  background-color: #21496c;
  color: #9dd1ff;
}
.hv-color-multicolor .hv-btn__text {
  border-bottom: 1px dotted #21496c;
}
.hv-color-multicolor .hv-nav__item.hv-active .hv-nav__link {
  color: #9dd1ff;
  background-color: #21496c;
}
.hv-color-multicolor .hv-nav__link {
  color: #21496c;
}
.hv-color-multicolor .hv-nav__link:hover .hv-nav__text {
  border-bottom-color: #21496c;
}
.hv-color-multicolor .hv-nav_main .hv-nav__item.hv-active .hv-nav__link:after {
  border-top: 6px solid #21496c;
}
.hv-color-multicolor .hv-nav_sub .hv-nav__item.hv-active .hv-nav__link:after {
  border-top: 5px solid #21496c;
}
.hv-color-multicolor .hv-nav_settings .hv-nav__item.hv-active .hv-nav__link:after {
  border-top: 5px solid #21496c;
}
.hv-color-multicolor .hv-options__link {
  background-color: #9dd1ff;
  color: #21496c;
}
.hv-color-multicolor .hv-options__item_color_white .hv-options__link {
  color: #21496c;
  background-color: #9dd1ff;
}
.hv-color-multicolor .hv-options__item_color_black .hv-options__link {
  color: #9dd1ff;
  background-color: #21496c;
}
.hv-color-multicolor .hv-options__item_color_multicolor .hv-options__link {
  color: #21496c;
  background-color: #9dd1ff;
  border-color: #21496c;
}
.hv-color-multicolor .hv-options_font .hv-options__link:after {
  border-top: 5px solid #21496c;
}
.hv-color-multicolor .hv-options_font .hv-options__item.hv-active .hv-options__link {
  background-color: #21496c;
  color: #9dd1ff;
}
.hv-color-multicolor .hv-options_lang .hv-options__link:after {
  border-top: 5px solid #21496c;
}
.hv-color-multicolor .hv-options_lang .hv-options__item.hv-active .hv-options__link {
  background-color: #21496c;
  color: #9dd1ff;
}
.hv-color-multicolor .hv-options_color .hv-options__link {
  border: 1px solid #000;
}
.hv-color-multicolor .hv-options_color .hv-options__item_color_white .hv-options__link {
  background-color: #fff;
  color: #000;
}
.hv-color-multicolor .hv-options_color .hv-options__item_color_white .hv-options__link:after {
  border-top: 6px solid #000;
}
.hv-color-multicolor .hv-options_color .hv-options__item_color_white .hv-options__link:before {
  border-top: 5px solid #fff;
}
.hv-color-multicolor .hv-options_color .hv-options__item_color_black .hv-options__link {
  background-color: #000;
  color: #fff;
}
.hv-color-multicolor .hv-options_color .hv-options__item_color_black .hv-options__link:after {
  border-top: 6px solid #fff;
}
.hv-color-multicolor .hv-options_color .hv-options__item_color_multicolor .hv-options__link {
  background-color: #9dd1ff;
  color: #195183;
  border-color: #21496c;
}
.hv-color-multicolor .hv-options_color .hv-options__item_color_multicolor .hv-options__link:after {
  border-top: 6px solid #21496c;
}
.hv-color-multicolor .hv-options_color .hv-options__item_color_multicolor .hv-options__link:before {
  border-top: 5px solid #9dd1ff;
}
.hv-color-multicolor .hv-icon {
  fill: #21496c;
}
.hv-color-multicolor .hv-content {
  color: #21496c;
}
.hv-color-multicolor .hv-content ul li:before,
.hv-color-multicolor .hv-content ol li:before {
  color: #21496c;
}
.hv-color-multicolor .hv-content ul li:before {
  background-color: #21496c;
}
.hv-color-multicolor .hv-date {
  color: #21496c;
}
.hv-color-multicolor .hv-footer__box {
  border-top-color: #21496c;
}
.hv-color-multicolor .hv-paginator__link {
  background-color: #21496c;
  color: #21496c;
}
.hv-color-multicolor .hv-paginator__link:hover .paginator__text {
  color: #21496c;
}
.hv-color-multicolor .hv-paginator__link_active {
  background-color: #21496c;
  color: #9dd1ff;
}
.hv-color-multicolor .hv-paginator__link_active:hover {
  color: #9dd1ff;
}
.hv-color-multicolor .hv-top {
  background-color: #9dd1ff;
}
.hv-color-multicolor .hv-top__item {
  color: #21496c;
}
.hv-color-multicolor .hv-dropdown__content {
  box-shadow: 0 8px 16px 0 rgba(1, 1, 1, 0.19);
  background-color: #9dd1ff;
}
.hv-color-multicolor .hv-search {
  color: #21496c;
}
.hv-color-multicolor .hv-logo__item {
  color: #21496c;
}
.hv-color-multicolor .hv-copyright__text {
  color: #21496c;
}
.hv-color-multicolor .hv-dev__title {
  color: #21496c;
}
.hv-color-multicolor .hv-news__link {
  color: #21496c;
}
.hv-color-multicolor .hv-news__link:hover .hv-news__text {
  border-bottom-color: #21496c;
}
.hv-color-multicolor .hv-header {
  border-bottom-color: #21496c;
}
.hv-color-multicolor .hv-colors__link:before {
  border-color: #21496c;
}
.hv-color-multicolor .hv-colors__item_white .hv-colors__link {
  border-color: transparent;
  color: #000;
}
.hv-color-multicolor .hv-colors__item_white .hv-colors__link:after {
  border-top-color: #21496c;
}
.hv-color-multicolor .hv-colors__item_black .hv-colors__link {
  border-color: transparent;
  color: #fff;
}
.hv-color-multicolor .hv-colors__item_black .hv-colors__link:after {
  border-top-color: #21496c;
}
.hv-color-multicolor .hv-colors__item_multicolor .hv-colors__link {
  border-color: #21496c;
  color: #21496c;
}
.hv-color-multicolor .hv-colors__item_multicolor .hv-colors__link:after {
  border-top-color: #21496c;
}
.hv-color-multicolor .hv-colors__item_light .hv-colors__link {
  color: #301700;
}
.hv-color-multicolor .hv-colors__item_light .hv-colors__link:after {
  border-top-color: #21496c;
}
.hv-color-multicolor .hv-overlay {
  opacity: .45;
  background-color: #000;
}
.hv-color-multicolor .hv-form__label {
  color: #21496c;
}
.hv-color-multicolor .hv-form__select,
.hv-color-multicolor .hv-form__input,
.hv-color-multicolor .hv-form__textarea {
  border-color: #21496c;
  color: #21496c;
  background-color: #9dd1ff;
}
.hv-color-multicolor .hv-form__select:focus,
.hv-color-multicolor .hv-form__input:focus,
.hv-color-multicolor .hv-form__textarea:focus {
  border-color: #21496c;
}
.hv-color-multicolor .hv-form__select:disabled,
.hv-color-multicolor .hv-form__input:disabled,
.hv-color-multicolor .hv-form__textarea:disabled,
.hv-color-multicolor .hv-form__select_disabled,
.hv-color-multicolor .hv-form__input_disabled,
.hv-color-multicolor .hv-form__textarea_disabled {
  color: #aaa;
  background-color: #9dd1ff;
}
.hv-color-multicolor .hv-form__select {
  background-image: url("../images/svg/dropdown_select_white.svg");
}
.hv-color-multicolor .hv-form__input::-webkit-input-placeholder,
.hv-color-multicolor .hv-form__textarea::-webkit-input-placeholder {
  color: #21496c;
}
.hv-color-multicolor .hv-form__input::-moz-placeholder,
.hv-color-multicolor .hv-form__textarea::-moz-placeholder {
  color: #21496c;
}
.hv-color-multicolor .hv-form__input:-ms-input-placeholder,
.hv-color-multicolor .hv-form__textarea:-ms-input-placeholder {
  color: #21496c;
}
.hv-color-multicolor .hv-form__note {
  color: #21496c;
}
.hv-color-multicolor .hv-form__part {
  color: #21496c;
}
.hv-color-light body {
  background-color: #fff5e6;
  color: #301700;
}
.hv-color-light .hv-btn {
  background-color: #fff5e6;
  color: #301700;
  border-color: #301700;
}
.hv-color-light .hv-btn:hover {
  background-color: #301700;
  color: #fff5e6;
}
.hv-color-light .hv-btn__text {
  border-bottom: 1px dotted #301700;
}
.hv-color-light .hv-nav__item.hv-active .hv-nav__link {
  color: #fff5e6;
  background-color: #301700;
}
.hv-color-light .hv-nav__link {
  color: #301700;
}
.hv-color-light .hv-nav__link:hover .hv-nav__text {
  border-bottom-color: #301700;
}
.hv-color-light .hv-nav_main .hv-nav__item.hv-active .hv-nav__link:after {
  border-top: 6px solid #301700;
}
.hv-color-light .hv-nav_sub .hv-nav__item.hv-active .hv-nav__link:after {
  border-top: 5px solid #301700;
}
.hv-color-light .hv-nav_settings .hv-nav__item.hv-active .hv-nav__link:after {
  border-top: 5px solid #301700;
}
.hv-color-light .hv-options__link {
  background-color: #fff5e6;
  color: #301700;
}
.hv-color-light .hv-options__item_color_white .hv-options__link {
  color: #301700;
  background-color: #fff5e6;
}
.hv-color-light .hv-options__item_color_black .hv-options__link {
  color: #fff5e6;
  background-color: #301700;
}
.hv-color-light .hv-options__item_color_multicolor .hv-options__link {
  color: #301700;
  background-color: #fff5e6;
  border-color: #301700;
}
.hv-color-light .hv-options_font .hv-options__link:after {
  border-top: 5px solid #301700;
}
.hv-color-light .hv-options_font .hv-options__item.hv-active .hv-options__link {
  background-color: #301700;
  color: #fff5e6;
}
.hv-color-light .hv-options_lang .hv-options__link:after {
  border-top: 5px solid #301700;
}
.hv-color-light .hv-options_lang .hv-options__item.hv-active .hv-options__link {
  background-color: #301700;
  color: #fff5e6;
}
.hv-color-light .hv-options_color .hv-options__link {
  border: 1px solid #000;
}
.hv-color-light .hv-options_color .hv-options__item_color_white .hv-options__link {
  background-color: #fff;
  color: #000;
}
.hv-color-light .hv-options_color .hv-options__item_color_white .hv-options__link:after {
  border-top: 6px solid #000;
}
.hv-color-light .hv-options_color .hv-options__item_color_white .hv-options__link:before {
  border-top: 5px solid #fff;
}
.hv-color-light .hv-options_color .hv-options__item_color_black .hv-options__link {
  background-color: #000;
  color: #fff;
}
.hv-color-light .hv-options_color .hv-options__item_color_black .hv-options__link:after {
  border-top: 6px solid #fff;
}
.hv-color-light .hv-options_color .hv-options__item_color_multicolor .hv-options__link {
  background-color: #9dd1ff;
  color: #195183;
  border-color: #21496c;
}
.hv-color-light .hv-options_color .hv-options__item_color_multicolor .hv-options__link:after {
  border-top: 6px solid #21496c;
}
.hv-color-light .hv-options_color .hv-options__item_color_multicolor .hv-options__link:before {
  border-top: 5px solid #9dd1ff;
}
.hv-color-light .hv-icon {
  fill: #301700;
}
.hv-color-light .hv-content {
  color: #301700;
}
.hv-color-light .hv-content ul li:before,
.hv-color-light .hv-content ol li:before {
  color: #301700;
}
.hv-color-light .hv-content ul li:before {
  background-color: #301700;
}
.hv-color-light .hv-date {
  color: #301700;
}
.hv-color-light .hv-footer__box {
  border-top-color: #301700;
}
.hv-color-light .hv-paginator__link {
  background-color: #301700;
  color: #301700;
}
.hv-color-light .hv-paginator__link:hover .paginator__text {
  color: #301700;
}
.hv-color-light .hv-paginator__link_active {
  background-color: #301700;
  color: #fff5e6;
}
.hv-color-light .hv-paginator__link_active:hover {
  color: #fff5e6;
}
.hv-color-light .hv-top {
  background-color: #fff5e6;
}
.hv-color-light .hv-top__item {
  color: #301700;
}
.hv-color-light .hv-dropdown__content {
  box-shadow: 0 8px 16px 0 rgba(1, 1, 1, 0.19);
  background-color: #fff5e6;
}
.hv-color-light .hv-search {
  color: #301700;
}
.hv-color-light .hv-logo__item {
  color: #301700;
}
.hv-color-light .hv-copyright__text {
  color: #301700;
}
.hv-color-light .hv-dev__title {
  color: #301700;
}
.hv-color-light .hv-news__link {
  color: #301700;
}
.hv-color-light .hv-news__link:hover .hv-news__text {
  border-bottom-color: #301700;
}
.hv-color-light .hv-header {
  border-bottom-color: #301700;
}
.hv-color-light .hv-colors__link:before {
  border-color: #301700;
}
.hv-color-light .hv-colors__item_white .hv-colors__link {
  border-color: transparent;
  color: #000;
}
.hv-color-light .hv-colors__item_white .hv-colors__link:after {
  border-top-color: #301700;
}
.hv-color-light .hv-colors__item_black .hv-colors__link {
  border-color: transparent;
  color: #fff;
}
.hv-color-light .hv-colors__item_black .hv-colors__link:after {
  border-top-color: #301700;
}
.hv-color-light .hv-colors__item_multicolor .hv-colors__link {
  border-color: transparent;
  color: #301700;
}
.hv-color-light .hv-colors__item_multicolor .hv-colors__link:after {
  border-top-color: #301700;
}
.hv-color-light .hv-colors__item_light .hv-colors__link {
  border-color: #301700;
  color: #301700;
}
.hv-color-light .hv-colors__item_light .hv-colors__link:after {
  border-top-color: #301700;
}
.hv-color-light .hv-overlay {
  opacity: .45;
  background-color: #000;
}
.hv-color-light .hv-form__label {
  color: #301700;
}
.hv-color-light .hv-form__select,
.hv-color-light .hv-form__input,
.hv-color-light .hv-form__textarea {
  border-color: #301700;
  color: #301700;
  background-color: #fff5e6;
}
.hv-color-light .hv-form__select:focus,
.hv-color-light .hv-form__input:focus,
.hv-color-light .hv-form__textarea:focus {
  border-color: #301700;
}
.hv-color-light .hv-form__select:disabled,
.hv-color-light .hv-form__input:disabled,
.hv-color-light .hv-form__textarea:disabled,
.hv-color-light .hv-form__select_disabled,
.hv-color-light .hv-form__input_disabled,
.hv-color-light .hv-form__textarea_disabled {
  color: #aaa;
  background-color: #fff5e6;
}
.hv-color-light .hv-form__select {
  background-image: url("../images/svg/dropdown_select_white.svg");
}
.hv-color-light .hv-form__input::-webkit-input-placeholder,
.hv-color-light .hv-form__textarea::-webkit-input-placeholder {
  color: #301700;
}
.hv-color-light .hv-form__input::-moz-placeholder,
.hv-color-light .hv-form__textarea::-moz-placeholder {
  color: #301700;
}
.hv-color-light .hv-form__input:-ms-input-placeholder,
.hv-color-light .hv-form__textarea:-ms-input-placeholder {
  color: #301700;
}
.hv-color-light .hv-form__note {
  color: #301700;
}
.hv-color-light .hv-form__part {
  color: #301700;
}
.hv-kerning-standart .hv-container {
  letter-spacing: normal;
}
.hv-kerning-middle .hv-container {
  letter-spacing: 4px;
}
.hv-kerning-large .hv-container {
  letter-spacing: 8px;
}
