@import "../bower_components/normalize-css/normalize.css";
/* ========================================================================
   Component: Grid
 ========================================================================== */
/*
 * 1. Makes grid more robust so that it can be used with other block elements like lists
 */
 
* {
    margin: 0;
    padding: 0;
    font-family: Tahoma;
}
.uk-grid {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  /* 1 */
  margin: 0;
  padding: 0;
  list-style: none;
}
/*
 * DEPRECATED
 * Micro clearfix
 * Can't use `table` because it creates a 1px gap when it becomes a flex item, only in Webkit
 */
.uk-grid:before,
.uk-grid:after {
  content: "";
  display: block;
  overflow: hidden;
}
.uk-grid:after {
  clear: both;
}
/*
 * Grid cell
 * 1. Space is allocated solely based on content dimensions
 * 2. Makes grid more robust so that it can be used with other block elements
 * 3. DEPRECATED Using `float` to support IE9
 */
.uk-grid > * {
  /* 1 */
  -ms-flex: none;
  -webkit-flex: none;
  -webkit-box-flex: 0;
  flex: none;
  /* 2 */
  margin: 0;
  /* 3 */
  float: left;
}
/*
 * Remove margin from the last-child
 */
.uk-grid > * > :last-child {
  margin-bottom: 0;
}
/* Grid gutter
 ========================================================================== */
/*
 * Default gutter
 */
/* Horizontal */
.uk-grid {
  margin-left: -2.5rem;
}
.uk-grid > * {
  padding-left: 2.5rem;
}
/* Vertical */
.uk-grid + .uk-grid,
.uk-grid-margin,
.uk-grid > * > .uk-panel + .uk-panel {
  margin-top: 2.5rem;
}
/* Large screen and bigger */
@media (min-width: 1220px) {
  /* Horizontal */
  .uk-grid {
    margin-left: -3.75rem;
  }
  .uk-grid > * {
    padding-left: 3.75rem;
  }
  /* Vertical */
  .uk-grid + .uk-grid,
  .uk-grid-margin,
  .uk-grid > * > .uk-panel + .uk-panel {
    margin-top: 3.75rem;
  }
}
/*
 * Collapse gutter
 */
/* Horizontal */
.uk-grid-collapse {
  margin-left: 0;
}
.uk-grid-collapse > * {
  padding-left: 0;
}
/* Vertical */
.uk-grid-collapse + .uk-grid-collapse,
.uk-grid-collapse > .uk-grid-margin,
.uk-grid-collapse > * > .uk-panel + .uk-panel {
  margin-top: 0;
}
/*
 * Small gutter
 */
/* Horizontal */
.uk-grid-small {
  margin-left: -1.25rem;
}
.uk-grid-small > * {
  padding-left: 1.25rem;
}
/* Vertical */
.uk-grid-small + .uk-grid-small,
.uk-grid-small > .uk-grid-margin,
.uk-grid-small > * > .uk-panel + .uk-panel {
  margin-top: 1.25rem;
}
/*
 * Medium gutter
 */
/* Horizontal */
.uk-grid-medium {
  margin-left: -2.5rem;
}
.uk-grid-medium > * {
  padding-left: 2.5rem;
}
/* Vertical */
.uk-grid-medium + .uk-grid-medium,
.uk-grid-medium > .uk-grid-margin,
.uk-grid-medium > * > .uk-panel + .uk-panel {
  margin-top: 2.5rem;
}
/*
 * Large gutter
 */
/* Large screen and bigger */
@media (min-width: 960px) {
  /* Horizontal */
  .uk-grid-large {
    margin-left: -3.75rem;
  }
  .uk-grid-large > * {
    padding-left: 3.75rem;
  }
  /* Vertical */
  .uk-grid-large + .uk-grid-large,
  .uk-grid-large-margin,
  .uk-grid-large > * > .uk-panel + .uk-panel {
    margin-top: 3.75rem;
  }
}

.header_page_list .nav__page a{font-size: 18px;}

/* Extra Large screens */
@media (min-width: 1220px) {
  /* Horizontal */
  .uk-grid-large {
    margin-left: -120px;
  }
  .uk-grid-large > * {
    padding-right: 120px;
  }
  /* Vertical */
  .uk-grid-large + .uk-grid-large,
  .uk-grid-large-margin,
  .uk-grid-large > * > .uk-panel + .uk-panel {
    margin-top: 3.75rem; 
  }
  .header_page_list{
	margin-left: 0;
}
}
/* Modifier: `uk-grid-divider`
 ========================================================================== */
/*
 * Horizontal divider
 * Only works with the default gutter. Does not work with gutter collapse, small or large.
 * Does not work with `uk-push-*`, `uk-pull-*` and not if the columns float into the next row.
 */
.uk-grid-divider:not(:empty) {
  margin-left: -2.5rem;
  margin-right: -2.5rem;
}
.uk-grid-divider > * {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}
.uk-grid-divider > [class*='uk-width-1-']:not(.uk-width-1-1):nth-child(n+2),
.uk-grid-divider > [class*='uk-width-2-']:nth-child(n+2),
.uk-grid-divider > [class*='uk-width-3-']:nth-child(n+2),
.uk-grid-divider > [class*='uk-width-4-']:nth-child(n+2),
.uk-grid-divider > [class*='uk-width-5-']:nth-child(n+2),
.uk-grid-divider > [class*='uk-width-6-']:nth-child(n+2),
.uk-grid-divider > [class*='uk-width-7-']:nth-child(n+2),
.uk-grid-divider > [class*='uk-width-8-']:nth-child(n+2),
.uk-grid-divider > [class*='uk-width-9-']:nth-child(n+2) {
  border-left: 1px solid rgba(58, 58, 58, 0.1);
}
/* Tablet and bigger */
@media (min-width: 768px) {
  .uk-grid-divider > [class*='uk-width-medium-']:not(.uk-width-medium-1-1):nth-child(n+2) {
    border-left: 1px solid rgba(58, 58, 58, 0.1);
  }
}
/* Desktop and bigger */
@media (min-width: 960px) {
  .uk-grid-divider > [class*='uk-width-large-']:not(.uk-width-large-1-1):nth-child(n+2) {
    border-left: 1px solid rgba(58, 58, 58, 0.1);
  }
}
/* Large screen and bigger */
@media (min-width: 1220px) {
  /*
     * Large gutter
     */
  .uk-grid-divider:not(:empty) {
    margin-left: -3.75rem;
    margin-right: -3.75rem;
  }
  .uk-grid-divider > * {
    padding-left: 3.75rem;
    padding-right: 3.75rem;
  }
  .uk-grid-divider:empty {
    margin-top: 3.75rem;
    margin-bottom: 3.75rem;
  }
}
/*
 * Vertical divider
 */
.uk-grid-divider:empty {
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
  border-top: 1px solid rgba(58, 58, 58, 0.1);
}
/* Match panels in grids
 ========================================================================== */
/*
 * 1. Behave like a block element
 */
.uk-grid-match > * {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  /* 1 */
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.uk-grid-match > * > * {
  /* 1 */
  -ms-flex: none;
  -webkit-flex: none;
  -webkit-box-flex: 0;
  flex: none;
  box-sizing: border-box;
  width: 100%;
}
/* Even grid cell widths
 ========================================================================== */
[class*='uk-grid-width'] > * {
  box-sizing: border-box;
  width: 100%;
}
.uk-grid-width-1-2 > * {
  width: 50%;
}
.uk-grid-width-1-3 > * {
  width: 33.333%;
}
.uk-grid-width-1-4 > * {
  width: 25%;
}
.uk-grid-width-1-5 > * {
  width: 20%;
}
.uk-grid-width-1-6 > * {
  width: 16.666%;
}
.uk-grid-width-1-10 > * {
  width: 10%;
}
.uk-grid-width-auto > * {
  width: auto;
}
/* Phone landscape and bigger */
@media (min-width: 480px) {
  .uk-grid-width-small-1-1 > * {
    width: 100%;
  }
  .uk-grid-width-small-1-2 > * {
    width: 50%;
  }
  .uk-grid-width-small-1-3 > * {
    width: 33.333%;
  }
  .uk-grid-width-small-1-4 > * {
    width: 25%;
  }
  .uk-grid-width-small-1-5 > * {
    width: 20%;
  }
  .uk-grid-width-small-1-6 > * {
    width: 16.666%;
  }
  .uk-grid-width-small-1-10 > * {
    width: 10%;
  }
}
/* Tablet and bigger */
@media (min-width: 768px) {
  .uk-grid-width-medium-1-1 > * {
    width: 100%;
  }
  .uk-grid-width-medium-1-2 > * {
    width: 50%;
  }
  .uk-grid-width-medium-1-3 > * {
    width: 33.333%;
  }
  .uk-grid-width-medium-1-4 > * {
    width: 25%;
  }
  .uk-grid-width-medium-1-5 > * {
    width: 20%;
  }
  .uk-grid-width-medium-1-6 > * {
    width: 16.666%;
  }
  .uk-grid-width-medium-1-10 > * {
    width: 10%;
  }
}
/* Desktop and bigger */
@media (min-width: 960px) {
  .uk-grid-width-large-1-1 > * {
    width: 100%;
  }
  .uk-grid-width-large-1-2 > * {
    width: 50%;
  }
  .uk-grid-width-large-1-3 > * {
    width: 33.333%;
  }
  .uk-grid-width-large-1-4 > * {
    width: 25%;
  }
  .uk-grid-width-large-1-5 > * {
    width: 20%;
  }
  .uk-grid-width-large-1-6 > * {
    width: 16.666%;
  }
  .uk-grid-width-large-1-10 > * {
    width: 10%;
  }
}
/* Large screen and bigger */
@media (min-width: 1220px) {
  .uk-grid-width-xlarge-1-1 > * {
    width: 100%;
  }
  .uk-grid-width-xlarge-1-2 > * {
    width: 50%;
  }
  .uk-grid-width-xlarge-1-3 > * {
    width: 33.333%;
  }
  .uk-grid-width-xlarge-1-4 > * {
    width: 25%;
  }
  .uk-grid-width-xlarge-1-5 > * {
    width: 20%;
  }
  .uk-grid-width-xlarge-1-6 > * {
    width: 16.666%;
  }
  .uk-grid-width-xlarge-1-10 > * {
    width: 10%;
  }
}
/* Sub-objects: `uk-width-*`
 ========================================================================== */
[class*='uk-width'] {
  box-sizing: border-box;
  width: 100%;
}
/*
 * Widths
 */
/* Whole */
.uk-width-1-1 {
  width: 100%;
}
/* Halves */
.uk-width-1-2,
.uk-width-2-4,
.uk-width-3-6,
.uk-width-5-10 {
  width: 50%;
}
/* Thirds */
.uk-width-1-3,
.uk-width-2-6 {
  width: 33.333%;
}
.uk-width-2-3,
.uk-width-4-6 {
  width: 66.666%;
}
/* Quarters */
.uk-width-1-4 {
  width: 25%;
}
.uk-width-3-4 {
  width: 75%;
}
/* Fifths */
.uk-width-1-5,
.uk-width-2-10 {
  width: 20%;
}
.uk-width-2-5,
.uk-width-4-10 {
  width: 40%;
}
.uk-width-3-5,
.uk-width-6-10 {
  width: 60%;
}
.uk-width-4-5,
.uk-width-8-10 {
  width: 80%;
}
/* Sixths */
.uk-width-1-6 {
  width: 16.666%;
}
.uk-width-5-6 {
  width: 83.333%;
}
/* Tenths */
.uk-width-1-10 {
  width: 10%;
}
.uk-width-3-10 {
  width: 30%;
}
.uk-width-7-10 {
  width: 70%;
}
.uk-width-9-10 {
  width: 90%;
}
/* Phone landscape and bigger */
@media (min-width: 480px) {
  /* Whole */
  .uk-width-small-1-1 {
    width: 100%;
  }
  /* Halves */
  .uk-width-small-1-2,
  .uk-width-small-2-4,
  .uk-width-small-3-6,
  .uk-width-small-5-10 {
    width: 50%;
  }
  /* Thirds */
  .uk-width-small-1-3,
  .uk-width-small-2-6 {
    width: 33.333%;
  }
  .uk-width-small-2-3,
  .uk-width-small-4-6 {
    width: 66.666%;
  }
  /* Quarters */
  .uk-width-small-1-4 {
    width: 25%;
  }
  .uk-width-small-3-4 {
    width: 75%;
  }
  /* Fifths */
  .uk-width-small-1-5,
  .uk-width-small-2-10 {
    width: 20%;
  }
  .uk-width-small-2-5,
  .uk-width-small-4-10 {
    width: 40%;
  }
  .uk-width-small-3-5,
  .uk-width-small-6-10 {
    width: 60%;
  }
  .uk-width-small-4-5,
  .uk-width-small-8-10 {
    width: 80%;
  }
  /* Sixths */
  .uk-width-small-1-6 {
    width: 16.666%;
  }
  .uk-width-small-5-6 {
    width: 83.333%;
  }
  /* Tenths */
  .uk-width-small-1-10 {
    width: 10%;
  }
  .uk-width-small-3-10 {
    width: 30%;
  }
  .uk-width-small-7-10 {
    width: 70%;
  }
  .uk-width-small-9-10 {
    width: 90%;
  }
}
/* Tablet and bigger */
@media (min-width: 768px) {
  /* Whole */
  .uk-width-medium-1-1 {
    width: 100%;
  }
  /* Halves */
  .uk-width-medium-1-2,
  .uk-width-medium-2-4,
  .uk-width-medium-3-6,
  .uk-width-medium-5-10 {
    width: 50%;
  }
  /* Thirds */
  .uk-width-medium-1-3,
  .uk-width-medium-2-6 {
    width: 25%;
  }
  .uk-width-medium-2-3,
  .uk-width-medium-4-6 {
    width: 66.666%;
  }
  
  .uk-grid-fl{
  	width: 100%;
  	text-align: center;
  }
  .uk-grid-fr{
  	width: 100%;
  	text-align: center;
  	font-size: 16px;
  	margin-top: 30px;
  }
  /* Quarters */
  .uk-width-medium-1-4 {
    width: 25%;
  }
  .uk-width-medium-3-4 {
    width: 75%;
  }
  /* Fifths */
  .uk-width-medium-1-5,
  .uk-width-medium-2-10 {
    width: 20%;
  }
  .uk-width-medium-2-5,
  .uk-width-medium-4-10 {
    width: 40%;
  }
  .uk-width-medium-3-5,
  .uk-width-medium-6-10 {
    width: 60%;
  }
  .uk-width-medium-4-5,
  .uk-width-medium-8-10 {
    width: 80%;
  }
  /* Sixths */
  .uk-width-medium-1-6 {
    width: 16.666%;
  }
  .uk-width-medium-5-6 {
    width: 83.333%;
  }
  /* Tenths */
  .uk-width-medium-1-10 {
    width: 10%;
  }
  .uk-width-medium-3-10 {
    width: 30%;
  }
  .uk-width-medium-7-10 {
    width: 70%;
  }
  .uk-width-medium-9-10 {
    width: 90%;
  }
}
/* Desktop and bigger */
@media (min-width: 960px) {
  /* Whole */
  .uk-width-large-1-1 {
    width: 100%;
  }
  /* Halves */
  .uk-width-large-1-2,
  .uk-width-large-2-4,
  .uk-width-large-3-6,
  .uk-width-large-5-10 {
    width: 50%;
  }
  /* Thirds */
  .uk-width-large-1-3,
  .uk-width-large-2-6 {
    width: 33.333%;
  }
  .uk-width-large-2-3,
  .uk-width-large-4-6 {
    width: 66.666%;
  }
  /* Quarters */
  .uk-width-large-1-4 {
    width: 25%;
  }
  .uk-width-large-3-4 {
    width: 75%;
  }
  /* Fifths */
  .uk-width-large-1-5,
  .uk-width-large-2-10 {
    width: 20%;
  }
  .uk-width-large-2-5,
  .uk-width-large-4-10 {
    width: 40%;
  }
  .uk-width-large-3-5,
  .uk-width-large-6-10 {
    width: 60%;
  }
  .uk-width-large-4-5,
  .uk-width-large-8-10 {
    width: 80%;
  }
  /* Sixths */
  .uk-width-large-1-6 {
    width: 16.666%;
  }
  .uk-width-large-5-6 {
    width: 83.333%;
  }
  /* Tenths */
  .uk-width-large-1-10 {
    width: 10%;
  }
  .uk-width-large-3-10 {
    width: 30%;
  }
  .uk-width-large-7-10 {
    width: 70%;
  }
  .uk-width-large-9-10 {
    width: 90%;
  }
}
/* Large screen and bigger */
@media (min-width: 1220px) {
  /* Whole */
  .uk-width-xlarge-1-1 {
    width: 100%;
  }
  /* Halves */
  .uk-width-xlarge-1-2,
  .uk-width-xlarge-2-4,
  .uk-width-xlarge-3-6,
  .uk-width-xlarge-5-10 {
    width: 50%;
  }
  /* Thirds */
  .uk-width-xlarge-1-3,
  .uk-width-xlarge-2-6 {
    width: 33.333%;
  }
  .uk-width-xlarge-2-3,
  .uk-width-xlarge-4-6 {
    width: 66.666%;
  }
  /* Quarters */
  .uk-width-xlarge-1-4 {
    width: 25%;
  }
  .uk-width-xlarge-3-4 {
    width: 75%;
  }
  /* Fifths */
  .uk-width-xlarge-1-5,
  .uk-width-xlarge-2-10 {
    width: 20%;
  }
  .uk-width-xlarge-2-5,
  .uk-width-xlarge-4-10 {
    width: 40%;
  }
  .uk-width-xlarge-3-5,
  .uk-width-xlarge-6-10 {
    width: 60%;
  }
  .uk-width-xlarge-4-5,
  .uk-width-xlarge-8-10 {
    width: 80%;
  }
  /* Sixths */
  .uk-width-xlarge-1-6 {
    width: 16.666%;
  }
  .uk-width-xlarge-5-6 {
    width: 83.333%;
  }
  /* Tenths */
  .uk-width-xlarge-1-10 {
    width: 10%;
  }
  .uk-width-xlarge-3-10 {
    width: 30%;
  }
  .uk-width-xlarge-7-10 {
    width: 70%;
  }
  .uk-width-xlarge-9-10 {
    width: 90%;
  }
}
/* Sub-object: `uk-push-*` and `uk-pull-*`
 ========================================================================== */
/*
 * Source ordering
 * Works only with `uk-width-medium-*`
 */
/* Tablet and bigger */
@media (min-width: 768px) {
  [class*='uk-push-'],
  [class*='uk-pull-'] {
    position: relative;
  }
  /*
     * Push
     */
  /* Halves */
  .uk-push-1-2,
  .uk-push-2-4,
  .uk-push-3-6,
  .uk-push-5-10 {
    left: 50%;
  }
  /* Thirds */
  .uk-push-1-3,
  .uk-push-2-6 {
    left: 33.333%;
  }
  .uk-push-2-3,
  .uk-push-4-6 {
    left: 66.666%;
  }
  /* Quarters */
  .uk-push-1-4 {
    left: 25%;
  }
  .uk-push-3-4 {
    left: 75%;
  }
  /* Fifths */
  .uk-push-1-5,
  .uk-push-2-10 {
    left: 20%;
  }
  .uk-push-2-5,
  .uk-push-4-10 {
    left: 40%;
  }
  .uk-push-3-5,
  .uk-push-6-10 {
    left: 60%;
  }
  .uk-push-4-5,
  .uk-push-8-10 {
    left: 80%;
  }
  /* Sixths */
  .uk-push-1-6 {
    left: 16.666%;
  }
  .uk-push-5-6 {
    left: 83.333%;
  }
  /* Tenths */
  .uk-push-1-10 {
    left: 10%;
  }
  .uk-push-3-10 {
    left: 30%;
  }
  .uk-push-7-10 {
    left: 70%;
  }
  .uk-push-9-10 {
    left: 90%;
  }
  /*
     * Pull
     */
  /* Halves */
  .uk-pull-1-2,
  .uk-pull-2-4,
  .uk-pull-3-6,
  .uk-pull-5-10 {
    left: -50%;
  }
  /* Thirds */
  .uk-pull-1-3,
  .uk-pull-2-6 {
    left: -33.333%;
  }
  .uk-pull-2-3,
  .uk-pull-4-6 {
    left: -66.666%;
  }
  /* Quarters */
  .uk-pull-1-4 {
    left: -25%;
  }
  .uk-pull-3-4 {
    left: -75%;
  }
  /* Fifths */
  .uk-pull-1-5,
  .uk-pull-2-10 {
    left: -20%;
  }
  .uk-pull-2-5,
  .uk-pull-4-10 {
    left: -40%;
  }
  .uk-pull-3-5,
  .uk-pull-6-10 {
    left: -60%;
  }
  .uk-pull-4-5,
  .uk-pull-8-10 {
    left: -80%;
  }
  /* Sixths */
  .uk-pull-1-6 {
    left: -16.666%;
  }
  .uk-pull-5-6 {
    left: -83.333%;
  }
  /* Tenths */
  .uk-pull-1-10 {
    left: -10%;
  }
  .uk-pull-3-10 {
    left: -30%;
  }
  .uk-pull-7-10 {
    left: -70%;
  }
  .uk-pull-9-10 {
    left: -90%;
  }
}
.uk-grid-vertical-large .uk-grid-margin {
  margin-top: 3.75rem;
}
.uk-width-auto {
  width: auto;
}
.uk-width-1-24 {
  width: 4.1667%;
}
.uk-width-2-24 {
  width: 8.3333%;
}
.uk-width-3-24 {
  width: 12.5%;
}
.uk-width-4-24 {
  width: 16.6667%;
}
.uk-width-5-24 {
  width: 20.8333%;
}
.uk-width-6-24 {
  width: 25%;
}
.uk-width-7-24 {
  width: 29.1667%;
}
.uk-width-8-24 {
  width: 33.3333%;
}
.uk-width-9-24 {
  width: 37.5%;
}
.uk-width-10-24 {
  width: 41.6667%;
}
.uk-width-11-24 {
  width: 45.8333%;
}
.uk-width-12-24 {
  width: 50%;
}
.uk-width-13-24 {
  width: 54.1667%;
}
.uk-width-14-24 {
  width: 58.3333%;
}
.uk-width-15-24 {
  width: 62.5%;
}
.uk-width-16-24 {
  width: 66.6666%;
}
.uk-width-17-24 {
  width: 70.8333%;
}
.uk-width-18-24 {
  width: 75%;
}
.uk-width-19-24 {
  width: 79.1667%;
}
.uk-width-20-24 {
  width: 83.3333%;
}
.uk-width-21-24 {
  width: 87.5%;
}
.uk-width-22-24 {
  width: 91.6667%;
}
.uk-width-23-24 {
  width: 95.8333%;
}
.uk-grid-divider > .uk-row-first {
  border-left: none !important;
}
.uk-text-center {
  text-align: center;
}
.flex-text-center {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.contrast .uk-grid-divider > [class*='uk-width-']:nth-child(n+2) {
  border-color: rgba(255, 255, 255, 0.1);
}
@media (min-width: 480px) {
}
@media (min-width: 960px) {
  .uk-width-large-7-24 {
    width: 29.1667%;
  }
  .uk-width-large-9-24 {
    width: 37.5%;
  }
  .uk-width-large-10-24 {
    width: 41.6667%;
  }
}
@media (min-width: 1220px) {
  .uk-grid-xmedium {
    margin-left: -5rem;
  }
  .uk-grid-xmedium > * {
    padding-left: 5rem;
  }
  .uk-grid-xmedium .uk-grid-margin {
    margin-top: 5rem;
  }
}
@media (min-width: 1460px) {
}
@media (min-width: 1800px) {
}
/* ========================================================================
   Component: Utility
 ========================================================================== */
/* Container
 ========================================================================== */
.uk-container {
  box-sizing: border-box;
  max-width: 1160px;
  padding: 0 20px;
}
/* Large screen and bigger */
@media (min-width: 1220px) {
  .uk-container {
    max-width: 1400px;
    padding: 0 50px;
  }
}
/*
 * Micro clearfix
 */
.uk-container:before,
.uk-container:after {
  content: "";
  display: table;
}
.uk-container:after {
  clear: both;
}
/*
 * Center container
 */
.uk-container-center {
  margin-left: auto;
  margin-right: auto;
}
/* Clearing
 ========================================================================== */
/*
 * Micro clearfix
* `table-cell` is used with `:before` because `table` creates a 1px gap when it becomes a flex item, only in Webkit
 * `table` is used again with `:after` because `clear` only works with block elements.
 * Note: `display: block` with `overflow: hidden` is currently not working in the latest Safari
 */
.uk-clearfix:before {
  content: "";
  display: table-cell;
}
.uk-clearfix:after {
  content: "";
  display: table;
  clear: both;
}
/*
 *  Create a new block formatting context
 */
.uk-nbfc {
  overflow: hidden;
}
.uk-nbfc-alt {
  display: table-cell;
  width: 10000px;
}
/* Alignment of block elements
 ========================================================================== */
/*
 * Float blocks
 * 1. Prevent content overflow on small devices
 */
.uk-float-left {
  float: left;
}
.uk-float-right {
  float: right;
}
/* 1 */
[class*='uk-float-'] {
  max-width: 100%;
}
/* Alignment of images and objects
 ========================================================================== */
/*
 * Alignment
 */
[class*='uk-align-'] {
  display: block;
  margin-bottom: 15px;
}
.uk-align-left {
  margin-right: 15px;
  float: left;
}
.uk-align-right {
  margin-left: 15px;
  float: right;
}
/* Tablet and bigger */
@media (min-width: 768px) {
  .uk-align-medium-left {
    margin-right: 15px;
    float: left;
  }
  .uk-align-medium-right {
    margin-left: 15px;
    float: right;
  }
}
.uk-align-center {
  margin-left: auto;
  margin-right: auto;
}
/* Vertical alignment
 ========================================================================== */
/*
 * Remove whitespace between child elements when using `inline-block`
 */
.uk-vertical-align {
  font-size: 0.001px;
}
/*
 *  The `uk-vertical-align` container needs a specific height
 */
.uk-vertical-align:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}
/*
 * Sub-object which can have any height
 * 1. Reset whitespace hack
 */
.uk-vertical-align-middle,
.uk-vertical-align-bottom {
  display: inline-block;
  max-width: 100%;
  /* 1 */
  font-size: 1rem;
}
.uk-vertical-align-middle {
  vertical-align: middle;
}
.uk-vertical-align-bottom {
  vertical-align: bottom;
}
/* Height
 ========================================================================== */
/*
 * More robust if padding and border are used
 */
[class*='uk-height'] {
  box-sizing: border-box;
}
/*
 * Useful to extend the `html` and `body` element to the full height of the page.
 */
.uk-height-1-1 {
  height: 100%;
}
/*
 * Useful to create image teasers
 */
.uk-height-viewport {
  height: 100vh;
  min-height: 600px;
}
/* Responsive objects
 * Note: Images are already responsive by default, see Base component
 ========================================================================== */
/*
 * 1. Corrects `max-width` and `max-height` behavior if padding and border are used
 */
.uk-responsive-width,
.uk-responsive-height {
  box-sizing: border-box;
}
/*
 * Responsiveness: Sets a maximum width relative to the parent and auto scales the height
 * `important` needed to override `uk-img-preserve img`
 */
.uk-responsive-width {
  max-width: 100% !important;
  height: auto;
}
/*
 * Responsiveness: Sets a maximum height relative to the parent and auto scales the width
 * Only works if the parent element has a fixed height.
 */
.uk-responsive-height {
  max-height: 100%;
  width: auto;
}
/* Margin
 ========================================================================== */
/*
 * Create a block with the same margin of a paragraph
 * Add margin if adjacent element
 */
.uk-margin {
  margin-bottom: 15px;
}
* + .uk-margin {
  margin-top: 15px;
}
.uk-margin-top {
  margin-top: 15px !important;
}
.uk-margin-bottom {
  margin-bottom: 15px !important;
}
.uk-margin-left {
  margin-left: 15px !important;
}
.uk-margin-right {
  margin-right: 15px !important;
}
/*
 * Larger margins
 */
.uk-margin-large {
  margin-bottom: 5rem;
}
* + .uk-margin-large {
  margin-top: 5rem;
}
.uk-margin-large-top {
  margin-top: 5rem !important;
}
.uk-margin-large-bottom {
  margin-bottom: 5rem !important;
}
.uk-margin-large-left {
  margin-left: 5rem !important;
}
.uk-margin-large-right {
  margin-right: 5rem !important;
}
/*
 * Smaller margins
 */
.uk-margin-small {
  margin-bottom: 0.5rem;
}
* + .uk-margin-small {
  margin-top: 0.5rem;
}
.uk-margin-small-top {
  margin-top: 0.5rem !important;
}
.uk-margin-small-bottom {
  margin-bottom: 0.5rem !important;
}
.uk-margin-small-left {
  margin-left: 0.5rem !important;
}
.uk-margin-small-right {
  margin-right: 0.5rem !important;
}
/*
 * Remove margins
 */
.uk-margin-remove {
  margin: 0 !important;
}
.uk-margin-top-remove {
  margin-top: 0 !important;
}
.uk-margin-bottom-remove {
  margin-bottom: 0 !important;
}
/* Padding
 ========================================================================== */
.uk-padding-remove {
  padding: 0 !important;
}
.uk-padding-top-remove {
  padding-top: 0 !important;
}
.uk-padding-bottom-remove {
  padding-bottom: 0 !important;
}
.uk-padding-vertical-remove {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
/* Border
 ========================================================================== */
.uk-border-circle {
  border-radius: 50%;
}
.uk-border-rounded {
  border-radius: 5px;
}
/* Headings
 ========================================================================== */
.uk-heading-large {
  font-size: 36px;
  line-height: 42px;
}
/* Tablet and bigger */
@media (min-width: 768px) {
  .uk-heading-large {
    font-size: 52px;
    line-height: 64px;
  }
}
/* Link
 ========================================================================== */
/*
 * Let links appear in default text color
 */
.uk-link-muted,
.uk-link-muted a {
  color: #444;
}
.uk-link-muted:hover,
.uk-link-muted a:hover {
  color: #444;
}
/*
 * Reset link style
 */
.uk-link-reset,
.uk-link-reset a,
.uk-link-reset:hover,
.uk-link-reset a:hover,
.uk-link-reset:focus,
.uk-link-reset a:focus {
  color: inherit;
  text-decoration: none;
}
/* Scrollable
 ========================================================================== */
/*
 * Enable scrolling for preformatted text
 */
.uk-scrollable-text {
  height: 300px;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  resize: both;
}
/*
 * Box with scrolling enabled
 */
.uk-scrollable-box {
  box-sizing: border-box;
  height: 170px;
  padding: 10px;
  border: 1px solid #ddd;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  resize: both;
}
.uk-scrollable-box > :last-child {
  margin-bottom: 0;
}
/* Overflow
 ========================================================================== */
.uk-overflow-hidden {
  overflow: hidden;
}
/*
 * Enable scrollbars if content is clipped
 */
.uk-overflow-container {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.uk-overflow-container > :last-child {
  margin-bottom: 0;
}
/* Position
 ========================================================================== */
.uk-position-absolute,
[class*='uk-position-top'],
[class*='uk-position-bottom'] {
  position: absolute !important;
}
/* Don't use `width: 100%` because it is wrong if the parent has padding. */
.uk-position-top {
  top: 0;
  left: 0;
  right: 0;
}
.uk-position-bottom {
  bottom: 0;
  left: 0;
  right: 0;
}
.uk-position-top-left {
  top: 0;
  left: 0;
}
.uk-position-top-right {
  top: 0;
  right: 0;
}
.uk-position-bottom-left {
  bottom: 0;
  left: 0;
}
.uk-position-bottom-right {
  bottom: 0;
  right: 0;
}
/*
 * Cover
 */
.uk-position-cover {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
/*
 * Relative
 */
.uk-position-relative {
  position: relative !important;
}
/*
 * Z-index
 */
.uk-position-z-index {
  z-index: 1;
}
/* Display
 ========================================================================== */
/*
 * Display
 * 1. Required if child is a responsive image
 */
.uk-display-block {
  display: block !important;
}
.uk-display-inline {
  display: inline !important;
}
.uk-display-inline-block {
  display: inline-block !important;
  /* 1 */
  max-width: 100%;
}
/*
 * Visibility
 * Avoids setting display to `block` so it works also with `inline-block` and `table`
 */
/* Desktop and bigger */
@media (min-width: 960px) {
  .uk-visible-small {
    display: none !important;
  }
  .uk-visible-medium {
    display: none !important;
  }
  .uk-hidden-large {
    display: none !important;
  }
}
/* Tablets portrait */
@media (min-width: 768px) and (max-width: 959px) {
  .uk-visible-small {
    display: none !important;
  }
  .uk-visible-large {
    display: none !important ;
  }
  .uk-hidden-medium {
    display: none !important;
  }
}
/* Phone landscape and smaller*/
@media (max-width: 767px) {
  .uk-visible-medium {
    display: none !important;
  }
  .uk-visible-large {
    display: none !important;
  }
  .uk-hidden-small {
    display: none !important;
  }
}
/* Remove from the flow and screen readers on any device */
.uk-hidden {
  display: none !important;
  visibility: hidden !important;
}
/* It's hidden, but still affects layout */
.uk-invisible {
  visibility: hidden !important;
}
/* Show on hover */
.uk-visible-hover:hover .uk-hidden,
.uk-visible-hover:hover .uk-invisible {
  display: block !important;
  visibility: visible !important;
}
.uk-visible-hover-inline:hover .uk-hidden,
.uk-visible-hover-inline:hover .uk-invisible {
  display: inline-block !important;
  visibility: visible !important;
}
/* Hide on touch */
.uk-touch .uk-hidden-touch,
.uk-notouch .uk-hidden-notouch {
  display: none !important;
}
/* ========================================================================
   Component: Flex
 ========================================================================== */
.uk-flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.uk-flex-inline {
  display: -ms-inline-flexbox;
  display: -webkit-inline-flex;
  display: -webkit-inline-box;
  display: inline-flex;
}
/*
 * Fixes initial flex-shrink value in IE10
 */
.uk-flex > *,
.uk-flex-inline > * {
  -ms-flex-negative: 1;
}
/* Alignment
 ========================================================================== */
/*
 * Vertical alignment
 * Default value is `stretch`
 */
.uk-flex-top {
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  -webkit-box-align: start;
  align-items: flex-start;
}
.uk-flex-middle {
  -ms-flex-align: center;
  -webkit-align-items: center;
  -webkit-box-align: center;
  align-items: center;
}
.uk-flex-bottom {
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  -webkit-box-align: end;
  align-items: flex-end;
}
/*
 * Horizontal alignment
 * Default value is `flex-start`
 */
.uk-flex-center {
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -webkit-box-pack: center;
  justify-content: center;
}
.uk-flex-right {
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  -webkit-box-pack: end;
  justify-content: flex-end;
}
.uk-flex-space-between {
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -webkit-box-pack: justify;
  justify-content: space-between;
}
.uk-flex-space-around {
  -ms-flex-pack: distribute;
  -webkit-justify-content: space-around;
  justify-content: space-around;
}
/* Direction
 ========================================================================== */
.uk-flex-row-reverse {
  -ms-flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  flex-direction: row-reverse;
}
.uk-flex-column {
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
}
.uk-flex-column-reverse {
  -ms-flex-direction: column-reverse;
  -webkit-flex-direction: column-reverse;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  flex-direction: column-reverse;
}
/* Wrap
 ========================================================================== */
.uk-flex-nowrap {
  -ms-flex-wrap: nowrap;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.uk-flex-wrap {
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.uk-flex-wrap-reverse {
  -ms-flex-wrap: wrap-reverse;
  -webkit-flex-wrap: wrap-reverse;
  flex-wrap: wrap-reverse;
}
/*
 * Horizontal alignment
 * Default value is `stretch`
 */
.uk-flex-wrap-top {
  -ms-flex-line-pack: start;
  -webkit-align-content: flex-start;
  align-content: flex-start;
}
.uk-flex-wrap-middle {
  -ms-flex-line-pack: center;
  -webkit-align-content: center;
  align-content: center;
}
.uk-flex-wrap-bottom {
  -ms-flex-line-pack: end;
  -webkit-align-content: flex-end;
  align-content: flex-end;
}
.uk-flex-wrap-space-between {
  -ms-flex-line-pack: justify;
  -webkit-align-content: space-between;
  align-content: space-between;
}
.uk-flex-wrap-space-around {
  -ms-flex-line-pack: distribute;
  -webkit-align-content: space-around;
  align-content: space-around;
}
/* Item ordering
 ========================================================================== */
/*
 * Default is 0
 */
.uk-flex-order-first {
  -ms-flex-order: -1;
  -webkit-order: -1;
  -webkit-box-ordinal-group: 0;
  order: -1;
}
.uk-flex-order-last {
  -ms-flex-order: 99;
  -webkit-order: 99;
  -webkit-box-ordinal-group: 100;
  order: 99;
}
/* Phone landscape and bigger */
@media (min-width: 480px) {
  .uk-flex-order-first-small {
    -ms-flex-order: -1;
    -webkit-order: -1;
    -webkit-box-ordinal-group: 0;
    order: -1;
  }
  .uk-flex-order-last-small {
    -ms-flex-order: 99;
    -webkit-order: 99;
    -webkit-box-ordinal-group: 100;
    order: 99;
  }
}
/* Tablet and bigger */
@media (min-width: 768px) {
  .uk-flex-order-first-medium {
    -ms-flex-order: -1;
    -webkit-order: -1;
    -webkit-box-ordinal-group: 0;
    order: -1;
  }
  .uk-flex-order-last-medium {
    -ms-flex-order: 99;
    -webkit-order: 99;
    -webkit-box-ordinal-group: 100;
    order: 99;
  }
}
/* Desktop and bigger */
@media (min-width: 960px) {
  .uk-flex-order-first-large {
    -ms-flex-order: -1;
    -webkit-order: -1;
    -webkit-box-ordinal-group: 0;
    order: -1;
  }
  .uk-flex-order-last-large {
    -ms-flex-order: 99;
    -webkit-order: 99;
    -webkit-box-ordinal-group: 100;
    order: 99;
  }
}
/* Large screen and bigger */
@media (min-width: 1220px) {
  .uk-flex-order-first-xlarge {
    -ms-flex-order: -1;
    -webkit-order: -1;
    -webkit-box-ordinal-group: 0;
    order: -1;
  }
  .uk-flex-order-last-xlarge {
    -ms-flex-order: 99;
    -webkit-order: 99;
    -webkit-box-ordinal-group: 100;
    order: 99;
  }
}
/* Item dimensions
 ========================================================================== */
/*
 * Initial: 0 1 auto
 * Content dimensions, but shrinks
 */
/*
 * No Flex: 0 0 auto
 * Content dimensions
 */
.uk-flex-item-none {
  -ms-flex: none;
  -webkit-flex: none;
  -webkit-box-flex: 0;
  flex: none;
}
/*
 * Relative Flex: 1 1 auto
 * Space is allocated considering content
 * 1. Fixes flex-shrink value in IE10
 */
.uk-flex-item-auto {
  -ms-flex: auto;
  -webkit-flex: auto;
  -webkit-box-flex: 1;
  flex: auto;
  /* 1 */
  -ms-flex-negative: 1;
}
/*
 * Absolute Flex: 1 1 0%
 * Space is allocated solely based on flex
 */
.uk-flex-item-1 {
  -ms-flex: 1;
  -webkit-flex: 1;
  -webkit-box-flex: 1;
  flex: 1;
}
/* ========================================================================
   Component: Print
 ========================================================================== */
@media print {
  *,
  *:before,
  *:after {
    background: transparent !important;
    color: black !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  @page {
    margin: 0.5cm;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
}
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}
.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.is-dragging {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}
.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
}
.slick-track:after {
  content: "";
  display: table;
  clear: both;
  -webkit-flex-basis: 0;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
}
.slick-loading .slick-track {
  visibility: hidden;
}
.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir="rtl"] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
  display: none;
}
/**
 * @author zhixin wen <wenzhixin2010@gmail.com>
 */
.ms-parent {
  display: block;
  position: relative;
  vertical-align: middle;
  width: 100% !important;
}
.ms-choice {
  display: block;
  width: 100%;
  color: inherit;
  background: transparent;
  border: none;
  border-bottom: 1px solid #0062a6;
  padding: 0 0 0.35em;
  -webkit-transition: 0.25s;
  transition: 0.25s;
  overflow: hidden;
  cursor: pointer;
  text-align: left;
  white-space: nowrap;
}
.ms-choice[disabled] {
  opacity: 0.5;
}
.ms-choice:focus {
  outline: none;
}
.ms-choice.is-error,
.ms-choice:-moz-ui-invalid:not(output) {
  box-shadow: none;
  outline: none;
  border-color: #e33;
}
.is-error + .ms-parent > .ms-choice {
  box-shadow: none;
  outline: none;
  border-color: #e33;
}
.is-disabled > .ms-choice {
  opacity: 0.5;
}
.ms-choice > span {
  min-height: 1.45em;
  padding-right: 30px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.ms-choice > span.placeholder {
  color: #999;
}
.ms-choice > div {
  position: absolute;
  top: 0;
  right: 0;
  width: 20px;
  height: 1.45em;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}
.ms-choice > div::before,
.ms-choice > div::after {
  content: '';
  position: absolute;
  top: 50%;
  height: 1.4px;
  width: 12px;
  background: #0062a6;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}
.ms-choice > div::before {
  right: 50%;
  -webkit-transform-origin: 100% 50%;
  -ms-transform-origin: 100% 50%;
  transform-origin: 100% 50%;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  margin-top: 4px;
}
.ms-choice > div::after {
  left: 50%;
  -webkit-transform-origin: 0 50%;
  -ms-transform-origin: 0 50%;
  transform-origin: 0 50%;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  margin-top: 4px;
}
.ms-choice > div.open {
  -webkit-transform: rotate3d(1, 0, 0, 180deg);
  transform: rotate3d(1, 0, 0, 180deg);
}
.ms-drop {
  width: 100%;
  overflow: hidden;
  display: none;
  padding: 0.625rem 0;
  position: absolute;
  z-index: 1000;
  background: #eef2f5;
  border: 1px solid #cfdae2;
  cursor: default;
}
.ms-drop.bottom {
  top: 100%;
  border-top: none;
}
.ms-drop.top {
  bottom: 100%;
  border-bottom: none;
}
.ms-search {
  display: inline-block;
  margin: 0;
  min-height: 26px;
  padding: 4px;
  position: relative;
  white-space: nowrap;
  width: 100%;
  z-index: 10000;
}
.ms-drop ul {
  overflow: auto;
  margin: 0;
}
.ms-drop ul > li {
  list-style: none;
  display: list-item;
  background-image: none;
  position: static;
}
.ms-drop ul > li .disabled {
  opacity: .35;
}
.ms-drop ul > li.multiple {
  display: block;
  float: left;
}
.ms-drop ul > li.group {
  clear: both;
}
/*.ms-drop ul > li.multiple .ms-option {
    width: 100%;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}*/
.ms-option {
  font-weight: normal;
  display: block;
  white-space: nowrap;
  cursor: pointer;
  padding: 0.375rem 10px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.ms-option:hover {
  background: rgba(0, 98, 166, 0.07);
}
.is-single .selected > .ms-option {
  background: rgba(0, 98, 166, 0.12);
}
.ms-option.optgroup {
  font-weight: bold;
}
.ms-option .input-check {
  vertical-align: middle;
  margin-right: 0.6em;
}
.ms-option > span {
  vertical-align: middle;
  display: inline;
  margin-left: 0.3em;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.input-check.u-hidden + .ms-option > span {
  margin-left: 0;
}
.input-check.is-disabled + .ms-option > span {
  opacity: 0.5;
  cursor: default;
}
.ms-drop .ms-no-results {
  display: none;
}
html {
  font-weight: 400;
  font-size: 9.6px;
  line-height: 1.5;
  font-family: 'Proxima Nova', 'Helvetica Neue', 'Segoe UI', SimSun, sans-serif;
  color: #35373b;
}
body {
  font-size: 16px;
}
.semantic-button {
  background: none;
  border: none;
  border-radius: 0;
  color: inherit;
  text-align: inherit;
  padding: 0;
  cursor: pointer;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}
a,
.link {
  color: inherit;
  text-decoration: none;
  -webkit-transition: 0.25s;
  transition: 0.25s;
  cursor: pointer;
}
a:not([class]),
a[class=""],
.link {
  border-bottom: 1px solid transparent;
}
a:not([class]):hover,
a[class=""]:hover,
.link:hover,
a:not([class]):focus,
a[class=""]:focus,
.link:focus {
  border-bottom: 1px solid;
  outline: none;
}
.link--blue {
  color: #0062a6;
}
.link--blue:hover,
.link--blue:focus {
  color: #0080d9;
  border-bottom-color: transparent;
  outline: none;
}
.link--dashed {
  border-bottom: 1px dashed rgba(53, 55, 59, 0.3);
  line-height: 1;
}
.link--dashed:hover,
.link--dashed:focus {
  border-bottom-color: #35373b;
}
.link--dashed.u-text-muted {
  border-bottom: 1px dashed rgba(133, 135, 138, 0.3);
}
.link--dashed.u-text-muted:hover,
.link--dashed.u-text-muted:focus {
  border-bottom-color: #85878a;
  outline: none;
}
.link--dashed-hover {
  border-bottom: 1px dashed transparent;
  line-height: 1;
}
.link--dashed-hover:hover,
.link--dashed-hover:focus {
  border-bottom: 1px dashed;
  outline: none;
}
.link--underline {
  color: #0062a6;
  border-bottom: 1px solid rgba(0, 98, 166, 0.4);
}
.contrast .link--underline {
  color: inherit;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.link--underline:hover,
.link--underline:focus {
  border-bottom: 1px solid;
  outline: none;
}
.link-wrap__inner {
  border-bottom: 1px solid transparent;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}
.link-wrap:hover > .link-wrap__inner,
.link-wrap:focus > .link-wrap__inner {
  border-bottom: 1px solid;
}
.link-wrap--dashed > .link-wrap__inner {
  border-bottom: 1px dashed transparent;
}
.link-wrap--dashed:hover > .link-wrap__inner,
.link-wrap--dashed:focus > .link-wrap__inner {
  border-bottom: 1px dashed;
}
.link--compress {
  line-height: 1;
}
.no-link,
.no-link:hover,
.no-link:focus,
.no-link:active {
  border-bottom: none;
}
sub,
sup {
  font-size: 60%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.2em;
}
sup {
  top: -0.5em;
}
img {
  max-width: 100%;
}
textarea {
  resize: none;
}
label {
  cursor: pointer;
}
p,
ul,
ol,
blockquote {
  margin: 0 0 16px;
}
* + p,
* + ul,
* + ol,
* + blockquote {
  margin-top: 16px;
}
p:last-child,
ul:last-child,
ol:last-child,
blockquote:last-child {
  margin-bottom: 0;
}
hr {
  margin: 0 0 1.5rem;
  height: 0;
  border: none;
  border-top: 2px solid currentColor;
  color: inherit;
  width: 66px;
}
* + hr {
  margin-top: 1.5rem;
}
hr:last-child {
  margin-bottom: 0;
}
.hr--after-h {
  margin-top: 1.25rem;
}
.hr--blue {
  border-color: #0062a6;
}
.hr--white {
  border-color: #fff;
}
h1,
h2,
h3,
h4,
h5,
h6,
.h {
  margin: 0 0 2rem;
  font-weight: 700;
}
* + h1,
* + h2,
* + h3,
* + h4,
* + h5,
* + h6,
* + .h {
  margin-top: 2rem;
}
h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child,
.h:last-child {
  margin-bottom: 0;
}
h1,
.h1 {
  font-size: 32px;
  line-height: 1.15;
  margin-bottom: 2.5rem;
}
h2,
.h2 {
  font-size: 30px;
  line-height: 1.25;
}
h3,
.h3 {
  font-size: 20px;
  line-height: 1.4;
}
@media (min-width: 960px) {
  h3,
  .h3 {
    font-size: 20px;
  }
}
h4,
h5 {
  font-size: inherit;
  line-height: inherit;
}
.no-h {
  font-weight: 400;
  font-size: inherit;
  line-height: inherit;
  margin: 0;
}
ul {
  list-style: none;
  padding: 0;
}
.contrast {
  color: #fff;
}
.contrast .u-text-muted {
  color: #ccc;
}
.button {
  font-family: 'Bebas', 'Helvetica Neue', 'Segoe UI', SimSun, sans-serif;
  text-transform: uppercase;
  font-size: 21px;
  display: inline-block;
  width: 100%;
  padding: 1rem 2.5rem;
  border: 1px solid transparent;
  background: #191a1d;
  color: #fff;
  text-align: center;
  -webkit-transition: 0.25s;
  transition: 0.25s;
  cursor: pointer;
}
.button--blue {
  background: #0062a6;
}
.button--blue:hover,
.button--blue:focus {
  background: #0077ca;
  outline: none;
}
@-webkit-keyframes spinAround {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes spinAround {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.button--blue-ajax {
  position: relative;
  color: transparent;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.button--blue-ajax::after {
  border: 2px solid #dbdbdb;
  border-radius: 50%;
  border-right-color: transparent;
  border-top-color: transparent;
  content: "";
  height: 20px;
  width: 20px;
  left: 50%;
  top: 50%;
  margin-left: -10px;
  margin-top: -10px;
  position: absolute;
  -webkit-animation: spinAround 500ms infinite linear, fadeIn 0.2s both;
  animation: spinAround 500ms infinite linear, fadeIn 0.2s both;
}
.button[disabled] {
  background: #85878a;
  cursor: default;
}
.button--ghost {
  color: #000;
  border-color: currentColor;
  background: transparent;
}
.contrast .button--ghost {
  color: #fff;
}
.button--ghost:hover,
.button--ghost:focus {
  background: rgba(0, 0, 0, 0.1);
}
.contrast .button--ghost:hover,
.contrast .button--ghost:focus {
  background: rgba(255, 255, 255, 0.1);
}
.button--plus::before {
  content: '';
  display: inline-block;
  width: 17px;
  height: 17px;
  background: url(../images/icon-plus-white.svg) no-repeat 50% 50%;
  background-size: 100%;
  margin-right: 12px;
  vertical-align: middle;
}
.button__label {
  vertical-align: middle;
  display: inline-block;
  margin-left: 1.5rem;
}
.button__label--error {
  color: #e33;
}
.form__cell.uk-grid-margin {
  margin-top: 30px;
}
.form__row {
  overflow: hidden;
}
.form__row + .form__row {
  margin-top: 30px;
}
.form__field {
  font-size: 20px;
  line-height: 1.4;
  display: block;
  margin-top: 1.45em;
  position: relative;
}
@media (min-width: 960px) {
  .form__field {
    font-size: 25px;
  }
}
.form__label {
  color: #85878a;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transition: 0.25s;
  transition: 0.25s;
  -webkit-transform-origin: 0 50%;
  -ms-transform-origin: 0 50%;
  transform-origin: 0 50%;
  will-change: transform;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.form__input:focus + .form__label,
.is-not-empty + .form__label,
.is-open + .form__label {
  -webkit-transform: translateY(-1.45em) scale(0.8);
  -ms-transform: translateY(-1.45em) scale(0.8);
  transform: translateY(-1.45em) scale(0.8);
  opacity: 0.7;
}
[disabled] + .form__label,
.is-disabled + .form__label {
  opacity: 0.5;
  cursor: default;
}
.form__input {
  display: block;
  width: 100%;
  color: inherit;
  background: transparent;
  border: none;
  border-bottom: 1px solid #0062a6;
  padding: 0 0 0.35em;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}
.form__input[disabled] {
  opacity: 0.5;
}
.form__input:focus {
  outline: none;
}
.form__input.is-error,
.form__input:-moz-ui-invalid:not(output) {
  box-shadow: none;
  outline: none;
  border-color: #e33;
}
textarea.form__input {
  height: 1.78em;
  overflow: hidden;
}
textarea.form__input:focus,
textarea.form__input.is-not-empty {
  height: 4.58em;
}
textarea.form__input.is-not-empty {
  overflow: auto;
}
.form__input--quantity-ready[disabled] {
  pointer-events: none;
}
.form__input--quantity-ready[disabled] + .form__label {
  pointer-events: none;
}
.form__input-file {
  width: 100%;
  padding: 1rem 1.5rem;
  text-align: left;
  background: transparent;
  border: 1px dashed rgba(0, 98, 166, 0.35);
  color: #0062a6;
  -webkit-transition: 0.25s;
  transition: 0.25s;
  cursor: pointer;
}
.form__input-file:hover,
.form__input-file:focus,
.form__input-file.is-hover {
  background: rgba(0, 98, 166, 0.05);
}
.form__input-file-icon {
  margin-right: 8px;
  vertical-align: middle;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.input-check {
  position: relative;
  display: inline-block;
  cursor: pointer;
  margin-top: -2px;
  vertical-align: middle;
}
.input-check.is-disabled {
  opacity: 0.5;
  cursor: default;
}
.input-check__native {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  z-index: -1;
}
.input-check__visual {
  width: 16px;
  height: 16px;
  border: 1px solid #0062a6;
  display: block;
}
.input-check__visual::before {
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.input-check__native:focus + .input-check__visual {
  box-shadow: 0 0 3px #0062a6;
}
.input-check__native:checked + .input-check__visual {
  box-shadow: none;
}
.input-check__native:checked + .input-check__visual::before {
  background: #0062a6;
}
.input-check__label {
  vertical-align: middle;
  display: inline;
  margin-left: 0.3em;
}
.input-check.u-hidden + .input-check__label {
  margin-left: 0;
}
.input-check.is-disabled + .input-check__label {
  opacity: 0.5;
  cursor: default;
}
.list-header {
  margin-bottom: 0.5rem;
}
.list-header + ul {
  margin-top: 0;
}
.list > li + li {
  margin-top: 0.5rem;
}
.list--mark {
  -webkit-columns: 250px;
  -moz-columns: 250px;
  columns: 250px;
  -webkit-column-gap: 2.5rem;
  -moz-column-gap: 2.5rem;
  column-gap: 2.5rem;
  line-height: 28px;
}
.list--mark li {
  position: relative;
  padding-left: 40px;
  color: rgba(53, 55, 59, 0.8);
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  break-inside: avoid;
}
.list--mark li::before {
  content: '';
  width: 21px;
  height: 21px;
  position: absolute;
  left: 0;
  top: 0.15em;
  background: url(../images/icon-mark.svg);
}
.list--mark > li + li {
  margin-top: 1.25rem;
}
.list--large-space > li + li {
  margin-top: 2rem;
}
@media (min-width: 480px) {
  html {
    font-size: 11.2px;
  }
  h1,
  .h1 {
    font-size: 3rem;
  }
  .news-header {
    font-size: 3.4rem;
  }
  .button {
    min-width: 150px;
    max-width: 100%;
    width: auto;
  }
}
@media (min-width: 960px) {
  html {
    font-size: 12.8px;
  }
  body {
    font-size: 18px;
  }
}
@media (min-width: 1460px) {
  html {
    font-size: 16px;
  }
  body {
    font-size: 20px;
  }
}
.special-select {
  font-size: 18px;
}
.u-bebas {
  font-family: 'Bebas', 'Helvetica Neue', 'Segoe UI', SimSun, sans-serif;
  text-transform: uppercase;
  font-size: 21px;
}
.u-text-400 {
  font-weight: 400;
}
.u-text-500 {
  font-weight: 500;
}
.u-text-700 {
  font-weight: 700;
}
.u-text-small {
  font-size: 0.85em;
}
.u-text-large {
  font-size: 20px;
  line-height: 1.4;
}
@media (min-width: 960px) {
  .u-text-large {
    font-size: 25px;
  }
}
.u-text-uppercase {
  text-transform: uppercase !important;
}
.u-text-muted {
  color: #85878a;
}
.u-text-container {
  max-width: 960px;
}
.u-text-center {
  text-align: center;
}
.u-text-right {
  text-align: right;
}
.u-text-nowrap {
  white-space: nowrap;
}
.u-text-anchor-middle {
  text-anchor: middle;
}
.u-display-flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.u-display-inline-block {
  display: inline-block;
}
.u-display-block {
  display: block;
}
.u-hidden {
  display: none !important;
}
.u-hidden-authorized.is-authorized {
  display: none;
}
.u-visible-authorized:not(.is-authorized) {
  display: none;
}
.u-bg-cover {
  background: no-repeat 50% 50%;
  background-size: cover;
}
.u-fit {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.u-fit-height {
  height: 100%;
  width: auto;
  max-width: none;
}
.u-fit-width {
  height: auto;
  width: 100%;
  max-height: none;
}
.u-margin-center {
  margin-left: auto;
  margin-right: auto;
}
.u-margin-bottom-remove {
  margin-bottom: 0 !important;
}
.u-margin-bottom-small {
  margin-bottom: 0.5rem;
}
.u-margin-bottom {
  margin-bottom: 1.25rem;
}
.u-margin-bottom-medium {
  margin-bottom: 2rem;
}
.u-margin-bottom-large {
  margin-bottom: 3.125rem;
}
.u-margin-bottom-xlarge {
  margin-bottom: 5rem;
}
.u-margin-top-remove {
  margin-top: 0 !important;
}
.u-margin-top {
  margin-top: 1.25rem;
}
.u-margin-top-large {
  margin-top: 3.125rem !important;
}
.u-margin-top-xlarge {
  margin-top: 5rem;
}
.u-margin-medium {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.u-margin-button,
.u-margin-top-medium {
  margin-top: 2rem;
}
.u-margin-remove {
  margin: 0;
}
.u-relative {
  position: relative;
  z-index: 2;
}
.u-justify-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.u-justify-container--start {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.u-justify-container--baseline {
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}
.u-justify-item:first-child {
  margin-right: 2rem;
}
.u-flex-ie-height-hack {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
body:not(.is-ie) .u-visible-ie {
  display: none;
}
@media (min-width: 1800px) {
  .u-hidden-xxxlarge-up {
    display: none !important;
  }
}
@media (min-width: 1460px) {
  .u-hidden-xxlarge-up {
    display: none !important;
  }
}
@media (min-width: 1220px) {
  .u-hidden-xlarge-up {
    display: none !important;
  }
}
@media (min-width: 960px) {
  .u-hidden-large-up {
    display: none !important;
  }
}
@media (min-width: 768px) {
  .u-hidden-medium-up {
    display: none !important;
  }
}
@media (max-width: 1799px) {
  .u-visible-xxxlarge-up {
    display: none !important;
  }
}
@media (max-width: 1459px) {
  .u-visible-xxlarge-up {
    /*display: none !important;*/
  }
}
@media (max-width: 1219px) {
	.u-visible-xxlarge-up {
    display: none !important;
  }
  .u-visible-xlarge-up {
    display: none !important;
  }

}
@media (max-width: 959px) {
	.u-visible-xxlarge-up {
    display: none !important;
  }
  .u-visible-large-up {
    display: none !important;
  }
}
@media (max-width: 767px) {
	.u-visible-xxlarge-up {
    display: none !important;
  }
  .u-visible-medium-up {
    display: none !important;
  }
}
@media (min-width: 480px) {
	/*.u-visible-xxlarge-up {
    display: none !important;
  }*/
  .u-visible-mini-down {
    display: none !important;
  }
}
@media (max-width: 767px) {
	.u-visible-xxlarge-up {
    display: none !important;
  }
  .u-hidden-small-down {
    display: none !important;
  }
}
@media (max-width: 479px) {
	.u-visible-xxlarge-up {
    display: none !important;
  }
  .u-hidden-mini-down {
    display: none !important;
  }
}
*,
*:before,
*:after {
  box-sizing: border-box;
}
.container {
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
}
.section {
  padding-top: 5.5rem;
  padding-bottom: 6.75rem;
}
.section--screen {
  overflow: hidden;
  padding: 7rem 0;
}
.section--screen-center {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.section__item + .section__item {
  margin-top: 5rem;
}
.section--start {
  padding-top: 15rem;
}
.intro__slide {
  overflow: hidden;
  padding-top: 110px;
  padding-bottom: 100px;
  position: relative;
}
.intro__slide:not(:first-child) {
  display: none;
}
.intro__slide::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: url(../images/pattern-dot.png) -16px -20px;
  z-index: -1;
}
.slick-initialized .intro__slide {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.intro__section {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  overflow: hidden;
  min-height: 400px;
  padding-top: 100px;
  padding-bottom: 80px;
  position: relative;
}
.intro__section-bg {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -2;
}
.intro__lead {
  font-size: 20px;
  line-height: 1.4;
  margin: 0 0 3rem;
  max-width: 805px;
  opacity: 0.8;
}
@media (min-width: 960px) {
  .intro__lead {
    font-size: 20px;
  }
}
.intro__text {
  max-width: 805px;
  opacity: 0.8;
}
.block {
  padding: 3.5rem;
  width: 100%;
}
@media (min-width: 480px) {
  .container {
    padding-left: 25px;
    padding-right: 25px;
  }
}
@media (min-width: 768px) {
  .container {
    padding-left: 50px;
    padding-right: 50px;
  }
  .container--small.container--small,
  .container--small.container--intro,
  .container--small.container--index-intro,
  .container--intro.container--small,
  .container--intro.container--intro,
  .container--intro.container--index-intro,
  .container--index-intro.container--small,
  .container--index-intro.container--intro,
  .container--index-intro.container--index-intro {
    max-width: 1000px;
  }
  .intro__slide {
    padding-top: 120px;
    padding-bottom: 120px;
    min-height: 100vh;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .intro__section {
    padding-top: 120px;
    padding-bottom: 120px;
    min-height: 100vh;
  }
}
@media (min-width: 960px) {
  .intro__slide {
    padding-top: 9rem;
    padding-bottom: 11rem;
  }
  .intro__section {
    padding-top: 9rem;
    padding-bottom: 11rem;
  }
}
@media (min-width: 1220px) {
  .section--screen,
  .section--screen-padding {
    min-height: 100vh;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .container {
    max-width: 1260px;
    margin: 0 auto;
  }
  /*.header_page{max-width: 1400px;padding-left: 0;padding-right: 0;}*/
  .three_section{
  	padding-left: 190px;
  	padding-top: 30px;
  }
  
  .container--large {
    max-width: 1500px;
  }
  .container--xlarge {
    max-width: 1700px;
  }
}
@media (min-width: 1460px) {
	.header_page{max-width: 1400px;padding-left: 0;padding-right: 0;}	
	.header_page .nav__title-link{font-size: 30px;opacity: 1;}
  .container--index,
  .container--index-large {
    max-width: 1810px;
    padding-left: 205px;
    padding-right: 205px;
  }
  .container--intro.container--intro {
    max-width: 100%;
    padding-left: 406px;
    padding-right: 406px;
  }
  .container--index-intro.container--index-intro {
    max-width: 100%;
    padding-left: 406px;
    padding-right: 320px;
  }
}
@media (min-width: 1800px) {
  .container--index {
    max-width: 100%;
    padding-left: 430px;
    padding-right: 270px;
  }
  .container--index-large {
    max-width: 1500px;
    padding-left: 50px;
    padding-right: 50px;
  }
}
.gm-style img {
  max-width: none;
}
.slick-track {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.slick-track,
.slick-list {
  height: 100%;
}
.slick-slide {
  height: auto;
}
/*.slick-full-height, .slick-full-height .slick-list, .slick-full-height .slick-slide, .slick-full-height .slick-track {
  height: 100%;
}*/
.slick-arrow {
  background: none;
  border: none;
  border-radius: 0;
  color: inherit;
  text-align: inherit;
  padding: 0;
  cursor: pointer;
  -webkit-transition: 0.25s;
  transition: 0.25s;
  font-size: 0;
  position: absolute;
  width: 6.125rem;
  height: 6.125rem;
  bottom: 20px;
  margin-top: -1.0625rem;
  z-index: 2;
  opacity: 0.7;
}
.slick-arrow:hover {
  opacity: 1;
}
.slick-prev {
  background: url(../images/icon-arrow-left.svg) no-repeat 50% 50%;
  background-size: auto 100%;
  left: 1rem;
}
.slick-next {
  background: url(../images/icon-arrow-right.svg) no-repeat 50% 50%;
  background-size: auto 100%;
  right: 1rem;
}
@media (min-width: 768px) {
  .slick-arrow {
    top: 50%;
    bottom: auto;
    margin-top: -3.0625rem;
  }
}
[class*='uk-animation-'] {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.uk-animation-fade {
  -webkit-animation-name: fade;
  animation-name: fade;
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
  -webkit-animation-timing-function: linear !important;
  animation-timing-function: linear !important;
}
.uk-animation-reverse {
  -webkit-animation-direction: reverse;
  animation-direction: reverse;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}
/* Keyframes: Fade
 * Used by dropdown, datepicker and slideshow component
 ========================================================================== */
@-webkit-keyframes uk-fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes uk-fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.uk-invisible {
  visibility: hidden !important;
}
.uk-animation-slide-left {
  -webkit-animation-name: uk-fade-left;
  animation-name: uk-fade-left;
}
.uk-animation-slide-right {
  -webkit-animation-name: uk-fade-right;
  animation-name: uk-fade-right;
}
@-webkit-keyframes uk-fade-left {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes uk-fade-left {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@-webkit-keyframes uk-fade-right {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes uk-fade-right {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

.u-margin-remove-important {
  margin: 0 !important;
}
[data-modal] {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 15;
  opacity: 0;
  overflow-x: hidden;
  /*background: #454545;*/
 background: rgba(0,0,0,0.5);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
[data-modal].is-active {
  opacity: 1;
}
.uk-position-z5-index {
  position: relative;
  z-index: 5;
}
.modal {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.modal__wrap {
  padding-top: 4rem;
  padding-bottom: 4rem;
  margin-top: auto;
  margin-bottom: auto;
  width: 100%;
}
.modal__container {
  max-width: 900px;
  padding-top: 3.125rem;
  padding-bottom: 3.5rem;
  background: #eef2f5;
  position: relative;
}
.modal__close {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 3;
  width: 66px;
  height: 66px;
}
.modal__close-icon::before,
.modal__close-icon::after {
  content: '';
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: absolute;
  width: 26px;
  height: 2px;
  left: 50%;
  top: 50%;
  margin-left: -13px;
  margin-top: -1px;
  background: #fff;
}
.modal__close-icon::before {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.modal__close-icon::after {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.site-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 100vh;
  overflow: hidden;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.site-content-wrap {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
}
.section--light-blue {
  background: #eef2f5;
}
.section--blue {
  background: #0062a6;
}
.section--blue .u-text-muted {
  color: #dce5ef;
}
.section--black {
  background: #1f1f26;
}
.section--black .u-text-muted {
  color: #ddd;
}
.section--black-more {
  background: #131318;
}
.section--black-more .u-text-muted {
  color: #ddd;
}
.section--dark {
  background: #2d2d33;
}
.section--dark .u-text-muted {
  color: #ddd;
}
.corners-padding {
  padding: 1.125rem;
  position: relative;
  display: inline-block;
}
.corner-lt,
.corner-rt,
.corner-lb,
.corner-rb {
  position: absolute;
  width: 50%;
  height: 50%;
}
.corner-lt::before,
.corner-rt::before,
.corner-lb::before,
.corner-rb::before,
.corner-lt::after,
.corner-rt::after,
.corner-lb::after,
.corner-rb::after {
  content: '';
  position: absolute;
  background: rgba(255, 255, 255, 0.2);
}
.corner-lt::before,
.corner-rt::before,
.corner-lb::before,
.corner-rb::before {
  width: 17px;
  height: 1px;
}
.corner-lt::after,
.corner-rt::after,
.corner-lb::after,
.corner-rb::after {
  width: 1px;
  height: 17px;
}
.corner-lt {
  left: 0;
  top: 0;
}
.corner-lt::before {
  left: -9px;
  top: -1px;
}
.corner-lt::after {
  left: -1px;
  top: -9px;
}
.corner-rt {
  right: 0;
  top: 0;
}
.corner-rt::before {
  right: -9px;
  top: -1px;
}
.corner-rt::after {
  right: -1px;
  top: -9px;
}
.corner-lb {
  left: 0;
  bottom: 0;
}
.corner-lb::before {
  left: -9px;
  bottom: -1px;
}
.corner-lb::after {
  left: -1px;
  bottom: -9px;
}
.corner-rb {
  right: 0;
  bottom: 0;
}
.corner-rb::before {
  right: -9px;
  bottom: -1px;
}
.corner-rb::after {
  right: -1px;
  bottom: -9px;
}
.corner--active {
  background: rgba(255, 255, 255, 0.05);
}
.digit__number {
  font-family: 'Bebas', 'Helvetica Neue', 'Segoe UI', SimSun, sans-serif;
  text-transform: uppercase;
  font-size: 5.625rem;
  line-height: 0.88;
}
.digit__number--neon {
  color: #2bcbfa;
  text-shadow: 0 0 0.2em rgba(43, 203, 250, 0.45);
}
.digit__caption {
  opacity: 0.5;
  vertical-align: top;
  margin-left: 0.5rem;
}
.table-wrap {
  overflow-x: auto;
  margin-left: -20px;
  margin-right: -20px;
}
.table {
  font-size: 14px;
  line-height: 1.2;
  width: 100%;
  border-collapse: collapse;
}
.table th {
  padding: 1.5rem 1rem;
  text-align: left;
  vertical-align: top;
  position: relative;
  z-index: 1;
  background: #143c59;
}
.table td {
  padding: 1rem;
}
.table th:not(.table__cell--not-edge):first-child,
.table td:not(.table__cell--not-edge):first-child {
  padding-left: 20px;
}
.table th:not(.table__cell--not-edge):last-child,
.table td:not(.table__cell--not-edge):last-child {
  padding-right: 20px;
}
.table tr:nth-child(n+2) td {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.table-wrap--simple {
  overflow-x: auto;
}
.table--simple {
  font-size: 14px;
  line-height: 1.2;
  width: 100%;
  border-collapse: collapse;
}
.table--simple th {
  padding: 1.5rem 1rem !important;
  text-align: left;
  vertical-align: top;
  background: #dee6eb;
}
.table--simple td {
  padding: 1rem !important;
}
.table--simple tr:nth-child(n+2) td {
  border-top: 1px solid #cfdae2;
}
.table--bebas-col-1 td:not([colspan]):nth-child(1),
.table--bebas-col-2 td:not([colspan]):nth-child(2),
.table--bebas-col-3 td:not([colspan]):nth-child(3),
.table--bebas-col-4 td:not([colspan]):nth-child(4),
.table--bebas-col-5 td:not([colspan]):nth-child(5),
.table--bebas-col-6 td:not([colspan]):nth-child(6),
.table--bebas-col-7 td:not([colspan]):nth-child(7),
.table--bebas-col-8 td:not([colspan]):nth-child(8),
.table--bebas-col-9 td:not([colspan]):nth-child(9),
.table__cell--bebas {
  font-family: 'Bebas', 'Helvetica Neue', 'Segoe UI', SimSun, sans-serif;
  text-transform: uppercase;
  font-size: 16px;
}
.table__cell--top {
  vertical-align: top;
}
.table__download-icon {
  margin-right: 3px;
}
.fade {
  -webkit-animation: fade 0.8s both;
  animation: fade 0.8s both;
}
@-webkit-keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fade-top {
  -webkit-animation: fade-top 0.3s both;
  animation: fade-top 0.3s both;
}
@-webkit-keyframes fade-top {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20%);
    transform: translateY(20%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fade-top {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20%);
    transform: translateY(20%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.header--shrink .header__left,
.header--shrink .header__right {
  top: 0;
}
.header--shrink .header__logo-image {
  margin-right: -87px;
}
.header--shrink .header__logo-image path {
  opacity: 0;
}
.header--shrink .header__logo-image .header__logo-image-rect {
  -webkit-transform: scaleX(0.393);
  -ms-transform: scaleX(0.393);
  transform: scaleX(0.393);
}
.header--shrink .header__logo-image .header__logo-image-u {
  -webkit-transform: scale(1.5) translate(-63.75px, 0.8px);
  -ms-transform: scale(1.5) translate(-63.75px, 0.8px);
  transform: scale(1.5) translate(-63.75px, 0.8px);
  opacity: 1;
}
.header--shrink .header__menu-button.header__menu-button {
  background: #222226;
  color: #fff;
}
.header--shrink .header__menu-button.header__menu-button:hover {
  background: #2c2c36;
}
.header--shrink .icon--menu {
  margin-top: -1px;
}
.header--shrink .header__logo {
  margin: 0;
}
.header--shrink .header__logo-divider {
  width: 0;
  opacity: 0;
}
.header--shrink .header__logo-caption {
  margin: 0;
  width: 0;
}
.header--shrink .header__lang {
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
  opacity: 0;
  -webkit-transition: opacity 0.3s, -webkit-transform 0s 0.3s;
  transition: opacity 0.3s, -webkit-transform 0s 0.3s;
  transition: opacity 0.3s, transform 0s 0.3s;
  transition: opacity 0.3s, transform 0s 0.3s, -webkit-transform 0s 0.3s;
}
.header--shrink .siblings__dropdown:not(.is-open) {
  width: 66px;
}
.header--shrink .siblings__dropdown:not(.is-open) .siblings__dropdown-item,
.header--shrink .siblings__dropdown:not(.is-open) .siblings__dropdown-placeholder {
  opacity: 0;
}
.header__left {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  left: 0;
  top: 20px;
  z-index: 10;
  -webkit-transition: top 0.25s;
  transition: top 0.25s;
}
.header__logo-image {
  display: block;
  width: 135px;
  height: 48px;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}
.header__logo-image path {
  -webkit-transition: 0.25s;
  transition: 0.25s;
}
.header__logo-image-rect {
  -webkit-transition: 0.25s;
  transition: 0.25s;
}
.header__logo {
  /*margin-right: 1.125rem;*/
  -webkit-transition: 0.25s;
  transition: 0.25s;
}
.header__logo-divider {
  width: 1px;
  height: 66px;
  margin-left: 20px;
  background: currentColor;
  opacity: 0.4;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}
.header__logo-caption {
  width: 112px;
  height: 24px;
  margin-left: 34px;
  margin-right: 40px;
  overflow: hidden;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}
.header__logo-caption--en {
  width: 124px;
}
.header__right {
  position: absolute;
  margin-right: 20px;
  right: 0;
  top: 20px;
  line-height: 48px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-transition: top 0.25s;
  transition: top 0.25s;
  z-index: 10;
}
.is-nav-opened .header__right {
  position: fixed;
}
.header__lang {
  margin-right: 1.125rem;
  -webkit-transition: opacity 0.3s, -webkit-transform 0s;
  transition: opacity 0.3s, -webkit-transform 0s;
  transition: opacity 0.3s, transform 0s;
  transition: opacity 0.3s, transform 0s, -webkit-transform 0s;
}
.header__logo--forum {
  overflow: hidden;
  position: relative;
}
.header__logo--forum .header__logo-image-bg {
  position: absolute;
  width: calc(100% - 18px);
  height: 100%;
  background-image: url(../images/logo-forum--full.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  -webkit-transition-delay: .15s;
  transition-delay: .15s;
}
.header__logo--forum .header__logo-img--umatex {
  opacity: 0;
}
.header__logo--forum:hover .header__logo-img--umatex {
  opacity: 1;
}
.header__logo--forum:hover .header__logo-img--forum {
  opacity: 0;
}
.header__logo-img--forum {
  position: absolute;
  top: 0;
}
.header--shrink .header__logo-img--forum .header__logo-image-bg {
  background-image: url(../images/logo-forum.jpg);
  background-size: contain;
  width: 100%;
}
.header__logo-caption--forum {
  font-size: 11px;
  line-height: 14px;
  font-weight: 300;
  letter-spacing: .5px;
  text-transform: uppercase;
  width: 112px;
  text-align: center;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  margin-left: 34px;
  margin-right: 40px;
}
.header__logo-caption--forum span {
  text-align: left;
  display: inline-block;
}
.header__lang {
  -webkit-transition: opacity 0.3s, -webkit-transform 0s;
  transition: opacity 0.3s, -webkit-transform 0s;
  transition: opacity 0.3s, transform 0s;
  transition: opacity 0.3s, transform 0s, -webkit-transform 0s;
}
.header__lang-link {
  font-family: 'Bebas', 'Helvetica Neue', 'Segoe UI', SimSun, sans-serif;
  text-transform: uppercase;
  font-size: 21px;
  opacity: 0.4;
}
.header__lang-link + .header__lang-link {
  margin-left: 12px;
}
.header__lang-link:hover {
  opacity: 1;
}
.header__lang-link.is-active {
  opacity: 1;
  border-bottom-color: transparent;
  cursor: default;
}
.header__lang-link.is-active .header__lang-text {
  display: none;
}
.header__lang-link.is-active .header__lang-text--active {
  display: inline;
}
.header__lang-text--active {
  display: none;
}
.header__menu-button {
  display: block;
  text-align: center;
  position: relative;
  width: 48px;
  height: 48px;
}
.header__menu-button:hover {
  background: rgba(53, 55, 59, 0.07);
}
.contrast .header__menu-button:hover {
  background: rgba(255, 255, 255, 0.1);
}
body:not(.is-loaded) .header__menu-button {
  opacity: 0;
  pointer-events: none;
}
.icon--menu {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background: currentColor;
  position: absolute;
  height: 1.2px;
  width: 26px;
  left: 50%;
  top: 50%;
  margin-left: -13px;
}
.icon--menu:before,
.icon--menu:after {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background: currentColor;
  height: 100%;
  width: 100%;
  content: '';
  position: absolute;
  left: 0;
}
.icon--menu:before {
  top: 8px;
}
.icon--menu:after {
  top: -8px;
}
.header__menu-button.is-active .icon--menu {
  background-color: transparent;
}
.header__menu-button.is-active .icon--menu:before,
.header__menu-button.is-active .icon--menu:after {
  -webkit-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  top: 0 !important;
}
.header__menu-button.is-active .icon--menu:before {
  -webkit-transform: rotate3d(0, 0, 1, 45deg);
  transform: rotate3d(0, 0, 1, 45deg);
}
.header__menu-button.is-active .icon--menu:after {
  -webkit-transform: rotate3d(0, 0, 1, -45deg);
  transform: rotate3d(0, 0, 1, -45deg);
}
.scroll-notify {
  width: 15px;
  height: 192px;
  position: absolute;
  right: 64px;
  top: 40%;
  margin-top: -96px;
  z-index: 2;
  cursor: pointer;
}
.scroll-notify::before,
.scroll-notify::after {
  content: '';
  position: absolute;
  left: 50%;
  width: 1px;
  background: currentColor;
  opacity: 0.3;
  margin-left: -1px;
}
.scroll-notify::before {
  height: 26px;
  top: 0;
  -webkit-animation: scrollMouseButtonsTop 8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  animation: scrollMouseButtonsTop 8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  -webkit-transform-origin: 50% 0;
  -ms-transform-origin: 50% 0;
  transform-origin: 50% 0;
}
.scroll-notify::after {
  height: 146px;
  bottom: 0;
  -webkit-animation: scrollMouseButtonsBottom 8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  animation: scrollMouseButtonsBottom 8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  -webkit-transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
}
.scroll-notify__toddler {
  position: absolute;
  width: 15px;
  height: 20px;
  top: 26px;
  left: 0;
  border: 1px solid;
  border-radius: 6px;
  -webkit-animation: scrollMouseWheel 8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  animation: scrollMouseWheel 8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
@-webkit-keyframes scrollMouseWheel {
  78% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  90% {
    -webkit-transform: translateY(120px);
    transform: translateY(120px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes scrollMouseWheel {
  78% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  90% {
    -webkit-transform: translateY(120px);
    transform: translateY(120px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@-webkit-keyframes scrollMouseButtonsTop {
  78% {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
  }
  90% {
    -webkit-transform: scaleY(5.615);
    transform: scaleY(5.615);
  }
  100% {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
  }
}
@keyframes scrollMouseButtonsTop {
  78% {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
  }
  90% {
    -webkit-transform: scaleY(5.615);
    transform: scaleY(5.615);
  }
  100% {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
  }
}
@-webkit-keyframes scrollMouseButtonsBottom {
  78% {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
  }
  90% {
    -webkit-transform: scaleY(0.178);
    transform: scaleY(0.178);
  }
  100% {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
  }
}
@keyframes scrollMouseButtonsBottom {
  78% {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
  }
  90% {
    -webkit-transform: scaleY(0.178);
    transform: scaleY(0.178);
  }
  100% {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
  }
}
[data-intro-text-appear] {
  opacity: 0;
}
.intro-text-fade-in {
  -webkit-animation: introTextAppear both 0.45s;
  animation: introTextAppear both 0.45s;
}
.preload {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  height: 100%;
  z-index: 10;
  background: #fff;
  -webkit-transition: background-color 0.5s;
  transition: background-color 0.5s;
  -webkit-transform-origin: 50% 42%;
  -ms-transform-origin: 50% 42%;
  transform-origin: 50% 42%;
}
.preload.is-loaded {
  background: transparent;
}
.preload.is-animate-out {
  -webkit-transform: scale(5);
  -ms-transform: scale(5);
  transform: scale(5);
  opacity: 0;
  -webkit-transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, -webkit-transform 1s;
  transition: transform 1s, opacity 1s;
  transition: transform 1s, opacity 1s, -webkit-transform 1s;
}
.preload.is-paused .preload__progress {
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
}
.preload.is-paused .preload__progress-inner {
  -webkit-animation: none;
  animation: none;
}
.preload.is-clean {
  background: transparent;
  z-index: -1;
  -webkit-transition: none;
  transition: none;
}
.preload.is-clean .preload__bg {
  display: none;
}
.preload.is-clean .preload__progress {
  background: rgba(0, 0, 0, 0.15);
  top: 50%;
}
.preload.is-clean .preload__progress-inner {
  background: #35373b;
}
.preload.is-clean-paused .preload__progress-inner {
  -webkit-animation: none;
  animation: none;
}
.preload__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.preload__progress {
  position: absolute;
  top: 55%;
  left: 50%;
  width: 200px;
  margin-left: -100px;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.preload__progress-inner {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  -webkit-animation: preloadLine 1.6s both infinite;
  animation: preloadLine 1.6s both infinite;
}
@-webkit-keyframes preloadLine {
  2% {
    -webkit-transform-origin: 100% 50%;
    transform-origin: 100% 50%;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  48% {

    -webkit-transform-origin: 100% 50%;
    transform-origin: 100% 50%;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
  }
  52% {
    -webkit-transform-origin: 0 50%;
    transform-origin: 0 50%;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
  }
  98% {
    -webkit-transform-origin: 0 50%;
    transform-origin: 0 50%;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
@keyframes preloadLine {
  2% {
    -webkit-transform-origin: 100% 50%;
    transform-origin: 100% 50%;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  48% {
    -webkit-transform-origin: 100% 50%;
    transform-origin: 100% 50%;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
  }
  52% {
    -webkit-transform-origin: 0 50%;
    transform-origin: 0 50%;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
  }
  98% {
    -webkit-transform-origin: 0 50%;
    transform-origin: 0 50%;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
@media (min-width: 768px) {
  .preload__progress {
    top: 60%;
    width: 260px;
    margin-left: -130px;
  }
}
@media (min-width: 960px) {
  .preload__progress {
    top: 65%;
  }
}
@media (orientation: landscape) {
  .preload__progress {
    top: 65%;
  }
}
.nav {
  z-index: 9;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.nav::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: #f2f2f5;
  z-index: -2;
}
.nav::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: url(../images/pattern-dot-black.png) -16px -20px;
  z-index: -1;
}
.nav.contrast::before {
  /*background: #2d2d33;*/
 /*background: rgba(0,0,0,0.8);*/
background: url(../images/menu-bg.jpg) no-repeat;
background-size: 100% 100%;
}
.nav.contrast::after {
  background: url(../images/pattern-dot.png) -16px -20px;
  opacity: 0.6;
}
.nav__container {
  margin-top: auto;
  margin-bottom: auto;
  padding-top: 100px;
  padding-bottom: 70px;
}
.nav__grid .uk-grid-margin {
  margin-top: 2rem;
}
.nav__item + .nav__item {
  margin-top: 2rem;
}
.nav__title {
  margin-bottom: 0;
  text-align: center;
}
.nav__page {
  font-family: 'Bebas', 'Helvetica Neue', 'Segoe UI', SimSun, sans-serif;
  text-transform: uppercase;
  font-size: 21px;
  opacity: 0.6;
  display: none;
  position: relative;
  /*padding-left: 1em;*/
}
/*.nav__page::before {
  content: '';
  position: absolute;
  top: 0.45em;
  left: 0.1em;
  width: 0.66em;
  height: 1px;
  background: currentColor;
  -webkit-transform: rotate(-60deg);
  -ms-transform: rotate(-60deg);
  transform: rotate(-60deg);
}*/
.nav__page + .nav__page {
  margin-top: 0.375rem;
}
.nav__title-link {
  position: relative;
  opacity: 0.8;
}
.nav__title-link.is-active {
  opacity: 1;
}
.nav__title-link::after {
  content: '';
  position: absolute;
  background: currentColor;
  top: 55%;
  left: -4rem;
  right: -4rem;
  height: 0.125rem;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  opacity: 0.4;
  -webkit-transform-origin: 100% 50%;
  -ms-transform-origin: 100% 50%;
  transform-origin: 100% 50%;
  -webkit-transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transition-property: opacity, background-color, -webkit-transform;
  transition-property: opacity, background-color, -webkit-transform;
  transition-property: transform, opacity, background-color;
  transition-property: transform, opacity, background-color, -webkit-transform;
}
/*.nav__title-link:hover::after,
.nav__title-link.is-hover-animate::after,
.nav__title-link.is-active::after {
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
  opacity: 1;
  -webkit-transform-origin: 0 50%;
  -ms-transform-origin: 0 50%;
  transform-origin: 0 50%;
}*/

.header_page_list .uk-width-medium-1-3{
	width: 20%;
	padding: 0;
	margin-left: 0;
}
.header_page{width: 1400px;}
.nav__info {
  opacity: 0.6;
  margin-top: 5rem;
}
.nav__info-email {
  margin-top: 2rem;
}
.footer {
  position: relative;
  z-index: 3;
  /* higher then .side__* */
}
.footer__cell--first.uk-grid-margin {
  margin-top: 50px;
}
.footer__cell--last.uk-grid-margin {
  margin-top: 0;
}
.footer__cell--menu {
  -webkit-box-ordinal-group: 0;
  -webkit-order: -1;
  -ms-flex-order: -1;
  order: -1;
}
.footer__top {
  background: #2d2d33;
  color: #dfdfdf;
  padding: 2.5rem 0;
}
.footer__top .u-text-muted {
  color: #808083;
}
.footer__menu {
  -webkit-columns: 2;
  -moz-columns: 2;
  columns: 2;
}
.footer__menu li {
  margin-bottom: 4.1875rem;
}
.footer__menu-link {
  position: relative;
  padding-left: 3rem;
  display: inline-block;
}
.footer__menu-link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.75em;
  height: 1px;
  width: 2rem;
  background: currentColor;
  -webkit-transform-origin: 0 50%;
  -ms-transform-origin: 0 50%;
  transform-origin: 0 50%;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}
.footer__menu-link:hover,
.footer__menu-link.is-active {
  color: #fff;
}
.footer__menu-link:hover::before,
.footer__menu-link.is-active::before {
  width: 100%;
}
.footer__umatex {
  margin-bottom: 2.25rem;
}
.footer__fb {
  margin-top: 2.25rem;
  line-height: 30px;
}
.footer__phone {
  margin-bottom: 1.5rem;
  line-height: 30px;
}
.footer__up:hover .u-text-muted {
  color: #fff;
}
.footer__up .u-text-muted {
  -webkit-transition: 0.25s;
  transition: 0.25s;
}
.footer__up-circle {
  display: inline-block;
  margin-bottom: 3px;
  margin-left: 0.5rem;
  vertical-align: middle;
  width: 3rem;
  height: 3rem;
  border: 1px solid #fff;
  border-radius: 50%;
  opacity: 0.4;
  background: url(../images/icon-footer-up.svg) no-repeat 50% 48%;
  background-size: 26% auto;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}
.footer__up:hover .footer__up-circle {
  opacity: 1;
}
.footer__bottom {
  background: #29292e;
  color: #59595c;
  padding: 2.5rem 0;
}
.only-icon-link {
  margin-left: 0.15em;
  display: inline-block;
}
.only-icon {
  height: 0.85em;
  max-width: 3.1em;
  margin-bottom: -1px;
  margin-right: -0.35em;
  vertical-align: baseline;
}
[class^="svg-logo-only-"] {
  -webkit-transition: 0.25s;
  transition: 0.25s;
  fill: #59595c;
}
.svg-logo-only-n-left,
.svg-logo-only-n-right,
.svg-logo-only-y-bottom,
.svg-logo-only-l-left,
.svg-logo-only-dot {
  opacity: 0;
}
.only-icon-link:hover [class^="svg-logo-only-"] {
  fill: #aaa;
}
.only-icon-link:hover .svg-logo-only-n {
  -webkit-transform: translateX(32px);
  -ms-transform: translateX(32px);
  transform: translateX(32px);
}
.only-icon-link:hover .svg-logo-only-n-middle {
  -webkit-transform: scaleX(0.916);
  -ms-transform: scaleX(0.916);
  transform: scaleX(0.916);
}
.only-icon-link:hover .svg-logo-only-l {
  -webkit-transform: translateX(25px);
  -ms-transform: translateX(25px);
  transform: translateX(25px);
}
.only-icon-link:hover .svg-logo-only-l-bottom {
  -webkit-transform: scaleX(0.685);
  -ms-transform: scaleX(0.685);
  transform: scaleX(0.685);
}
.only-icon-link:hover .svg-logo-only-y {
  -webkit-transform: translateX(157px);
  -ms-transform: translateX(157px);
  transform: translateX(157px);
}
.only-icon-link:hover .svg-logo-only-n-left,
.only-icon-link:hover .svg-logo-only-n-right,
.only-icon-link:hover .svg-logo-only-y-bottom,
.only-icon-link:hover .svg-logo-only-l-left,
.only-icon-link:hover .svg-logo-only-dot {
  opacity: 1;
}
.is-mobile .index__intro-slide-1::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: no-repeat 50% 50%;
  background-size: cover;
  background-image: url(../images/bg-index-intro-1.jpg);
  z-index: -2;
}
.is-mobile .index__intro-slide-2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: no-repeat 50% 50%;
  background-size: cover;
  background-image: url(../images/bg-index-intro-2.jpg);
  z-index: -2;
}
.is-mobile .index__intro-slide-3::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: no-repeat 50% 50%;
  background-size: cover;
  background-image: url(../images/bg-index-intro-3.jpg);
  z-index: -2;
}
.index__intro-bg {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: -2;
}
.is-mobile .index__intro-bg {
  /*display: none;*/
}
.index__intro-bg--forum {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: -2;
}
.index__intro-video {
  min-height: 100.2%;
  min-width: 100.1%;
}
.index__intro-video-gif {
  background: url(../images/forum.gif) center;
  background-size: cover;
  -o-object-fit: contain;
  object-fit: contain;
  position: relative;
}
.index__intro-title {
  max-width: 960px;
}
.index__intro-lead {
  -webkit-box-flex: 2;
  -webkit-flex-grow: 2;
  -ms-flex-positive: 2;
  flex-grow: 2;
}
@-webkit-keyframes introTextAppear {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes introTextAppear {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.slick-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3.5rem;
  display: -webkit-box !important;
  display: -webkit-flex !important;
  display: -ms-flexbox !important;
  display: flex !important;
}
.slick-dots li {
  width: 16px;
  height: 16px;
}
.slick-dots li + li {
  margin-left: 15px;
}
.slick-dots button {
  background: none;
  border: none;
  border-radius: 0;
  color: inherit;
  text-align: inherit;
  padding: 0;
  cursor: pointer;
  -webkit-transition: 0.25s;
  transition: 0.25s;
  font-size: 0;
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
}
.slick-dots button::before {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  background: currentColor;
  -webkit-transition: 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.slick-dots button::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  border: 1px solid currentColor;
  -webkit-transform: scale(0.5);
  -ms-transform: scale(0.5);
  transform: scale(0.5);
  -webkit-transition: 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.slick-dots .slick-active button::before {
  -webkit-transform: scale(0.75);
  -ms-transform: scale(0.75);
  transform: scale(0.75);
}
.slick-dots .slick-active button::after {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.slick-dots--center {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.index__production {
  position: relative;
/*  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;*/
}
.index__production::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: no-repeat 50% 50%;
  background-size: cover;
  background-image: url(../images/bg-index-production-mobile.jpg);
  /*background-image: url(../images/bg-index-production.jpg);*/
  z-index: -2;
}

.index__production__other::before{
	background-image: url(../images/bg-index-production.jpg) !important;
}

.index__production::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: url(../images/pattern-dot.png) -16px -20px;
  z-index: -1;
  opacity: 0.7;
}
.index__production-lead {
  margin-top: 0.5em;
  opacity: 0.8;
}
.uk-grid-fr{
  	margin-top: 30px;
  }
.index__production-types.index__production-types {
  margin-top: 4.5rem;
}
.index__production-type-img-square {
  width: 8rem;
  height: 8rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
.index__production-type-img-square:last-child {
  margin-bottom: -4rem;
}
.uk-margin-medium-top {
  margin-top: 2.3rem !important;
}
.index__production-type-img {
  max-width: 68.75%;
  height: auto;
  margin: auto;
}
.index__production-type-title {
  margin-bottom: 0;
  margin-top: 1.5rem;
}
.index__production-type-description {
  opacity: 0.8;
  font-size: 0.85em;
  margin: 1rem 0 0;
}
.index__production-enter {
  margin-top: 2.5rem;
}
.index__branches {
  position: relative;
}
.index__branches-item {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  position: relative;
  padding-bottom: 106px;
}
.index__branches-item:not(:first-child) {
  display: none;
}
.slick-initialized .index__branches-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.index__branches-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: #0062a6;
  z-index: -2;
}
.index__branches-item::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: url(../images/pattern-dot.png) -16px -20px;
  z-index: -1;
}
.index__branches-360-wrap-outer {
  max-width: 1280px;
  margin: auto;
}
.index__branches-360 {
  padding-bottom: 50%;
  position: relative;
  z-index: -1;
}
.index__branches-360-canvas,
.index__branches-360-mobile {
  max-width: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
  -webkit-transition: opacity 0.5s 0.8s;
  transition: opacity 0.5s 0.8s;
}
.slick-current .index__branches-360-canvas,
.slick-current .index__branches-360-mobile {
  opacity: 1;
}
.is-ie .index__branches-360-mobile {
  display: block !important;
}
.is-ie .index__branches-360-canvas {
  display: none !important;
}
.index__branches-360-progress {
  display: none;
  width: 260px;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -130px;
  opacity: 0;
  -webkit-transition: opacity 0.5s 0.8s;
  transition: opacity 0.5s 0.8s;
}
.slick-current .index__branches-360-progress {
  opacity: 1;
}
.index__branches-360-progress-inner {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  -webkit-transform-origin: 0 50%;
  -ms-transform-origin: 0 50%;
  transform-origin: 0 50%;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: 0.1s;
  transition: 0.1s;
}
.index__branches-image {
  max-height: 45vh;
  margin: auto;
}
.index__branches-title {
  margin-top: 2.5rem;
  margin-bottom: 0;
}
.slick-current .index__branches-title {
  -webkit-animation: branchesTextAppear both 0.4s 0.8s;
  animation: branchesTextAppear both 0.4s 0.8s;
}
.index__branches-text {
  max-width: 740px;
  margin-bottom: 2rem;
  margin-left: auto;
  margin-right: auto;
}
.slick-current .index__branches-text {
  -webkit-animation: branchesTextAppear both 0.4s 0.7s;
  animation: branchesTextAppear both 0.4s 0.7s;
}
.slick-current .index__branches-button {
  -webkit-animation: branchesTextAppear both 0.4s 0.6s;
  animation: branchesTextAppear both 0.4s 0.6s;
}
.index__branches-menu {
  position: absolute;
  right: 0;
  top: 45%;
  -webkit-transform: translateY(-45%);
  -ms-transform: translateY(-45%);
  transform: translateY(-45%);
  margin: 0;
  text-align: right;
  z-index: 1;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}
.index__branches-menu-link {
  font-family: 'Bebas', 'Helvetica Neue', 'Segoe UI', SimSun, sans-serif;
  text-transform: uppercase;
  font-size: 21px;
  padding-right: 3.875rem;
  margin-top: 0.125rem;
  opacity: 0.6;
  position: relative;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}
.index__branches-menu-link::before {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  height: 1.2px;
  width: 3.125rem;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 100% 50%;
  -ms-transform-origin: 100% 50%;
  transform-origin: 100% 50%;
  background: currentColor;
  -webkit-transition: 0.25s;
  transition: 0.25s;
  will-change: transform;
}
.index__branches-menu-link:hover::before {
  -webkit-transform: scaleX(0.4);
  -ms-transform: scaleX(0.4);
  transform: scaleX(0.4);
}
.index__branches-menu-link.is-active {
  opacity: 1;
}
.index__branches-menu-link.is-active::before {
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
}
.index__branches-menu-link:focus {
  outline: none;
}
@-webkit-keyframes branchesTextAppear {
  0% {
    opacity: 0;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes branchesTextAppear {
  0% {
    opacity: 0;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.index__partners {
  text-align: center;
  padding: 0;
}
.index__partners-grid {
  width: 100%;
}
.index__partners-cell {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.index__partners-item {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.index__partners-item:hover .index__partners-layer--second {
  opacity: 1;
}
.index__partners-layer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  padding: 25px 3rem;
}
.index__partners-layer--first {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.index__partners-cell:nth-child(2n + 1) .index__partners-layer--first {
  background: #f5f5f7;
}
.index__partners-layer--second {
  opacity: 0;
  background: #2d2d33;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
}
.index__partners-image {
  margin-top: 3rem;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.index__partners-cell.uk-grid-margin .index__partners-image {
  margin-top: 2rem;
}
.index__partners-hr {
  width: 20px;
  border-top: 1px solid;
  margin: 3rem auto 0.875rem;
}
.index__partners-title {
  font-weight: 400;
  font-size: 20px;
  line-height: 1.4;
  margin: 0;
}
@media (min-width: 960px) {
  .index__partners-title {
    font-size: 25px;
  }
}
.index__partners-cell.uk-grid-margin .index__partners-title {
  min-height: 4.375rem;
}
.index__partners-link {
  font-size: 0.85em;
  opacity: 0.6;
}
.index__partners-title-2 {
  font-size: 20px;
  line-height: 1.4;
  margin: 0;
  max-width: 100%;
}
@media (min-width: 960px) {
  .index__partners-title-2 {
    font-size: 25px;
  }
}
.index__partners-hr-2 {
  width: 4rem;
  border-top: 1px solid;
  margin: 1.5rem 0;
  opacity: 0.3;
}
.index__partners-text {
  font-size: 0.85em;
  margin: 0 auto 2rem;
  max-width: 400px;
}
.index__news {
  position: relative;
  background: #fff;
}
.index__news::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  /*background: @c-blue;*/
  z-index: -2;
}
.index__news::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: url(../images/pattern-dot-black.png) -16px -20px;
  z-index: -1;
  opacity: 0.7;
}
.index__news-slide:not(:first-child) {
  display: none;
}
.slick-initialized .index__news-slide {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.index__news-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.index__news-container:before{
	content: '';
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: no-repeat 50% 50%;
    background-size: cover;
    background-image: url(../images/index-news-bg.jpg);
    z-index: -2;
}
.index__news-grid {
  margin-top: -20px;
  margin-left: -20px;
}
.index__news-cell {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-left: 20px;
}
.index__news-item {
  -webkit-box-flex: 2;
  -webkit-flex-grow: 2;
  -ms-flex-positive: 2;
  flex-grow: 2;
  display: block;
  position: relative;
  padding: 2.5rem;
  margin-top: 20px;
}
.sp-item{
	padding-bottom: 0;
}
.sp-more{
	background: #188bda;
	padding: 2.5rem;
}
.index__news-item::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background: #223;
  opacity: 0;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}
.index__news-item:hover::after {
  opacity: 0.2;
}
.index__news-item:hover .index__news-bg {
  -webkit-filter: contrast(125%);
  filter: contrast(125%);
}
.index__news-wrap-half {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  min-height: 200px;
  overflow: hidden;
}
.index__news-item--darken::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 30%;
  z-index: -1;
  /*background: -webkit-linear-gradient(top, rgba(59, 59, 59, 0.5), transparent);
  background: linear-gradient(to bottom, rgba(59, 59, 59, 0.5), transparent);*/
}
.index__news-item--video {
  text-align: center;
  padding-left: 2rem;
  padding-right: 2rem;
  padding-top: 3.75rem;
}
.index__news-bg {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: -2;
  background-color: #188bda;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}
.index__news-date {
  font-family: 'Bebas', 'Helvetica Neue', 'Segoe UI', SimSun, sans-serif;
  text-transform: uppercase;
  font-size: 0.85em;
  margin: 0;
}
.index__news-title {
  margin: 1.5rem 0 1rem;
}
.index__news-title--large {
  font-size: 24px;
}
.index__news-button-wrap {
  min-height: 5rem;
  width: 100%;
  display: block;
}
.index__news-circle {
  margin-top: 0.75rem;
  width: 6rem;
  height: 6rem;
  background-color: rgba(26, 26, 26, 0.9);
  border-radius: 50%;
  position: relative;
  display: inline-block;
}
.icon__news-file {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 37.5%;
  -webkit-transform: translate(-38%, -50%);
  -ms-transform: translate(-38%, -50%);
  transform: translate(-38%, -50%);
}
.video__play-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 37.5%;
  -webkit-transform: translate(-38%, -50%);
  -ms-transform: translate(-38%, -50%);
  transform: translate(-38%, -50%);
}
.index__contact {
  text-align: center;
/*  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;*/
  position: relative;
  padding: 8rem 0;
}
.index__contact::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: no-repeat 50% 50%;
  background-size: cover;
  background-image: url(../images/index-contact-bg.png);
  z-index: -2;
}
.index__contact::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: url(../images/pattern-dot.png) -16px -20px;
  z-index: -1;
}
.index__contact-umatex {
  margin: 0 auto 3rem;
  line-height: 0;
}
.index__contact-title {
  margin-bottom: 1.5rem;
  margin-top: 0;
}
.index__contact-text {
  margin: 1.5rem 0 0;
}
.index__contact-link:not(:last-child) {
  margin-right: 1.25rem;
}
.no-scroll-video {
  overflow: hidden;
}
.company-video-control {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.company-video-control__text {
  padding-left: 1rem;
}
.play-company-video {
  cursor: pointer;
  margin-left: -0.5rem;
  background-image: url('../images/play-video-button.png');
  width: 146px;
  height: 147px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.play-company-video svg polygon {
  -webkit-transition: all .3s;
  transition: all .3s;
  fill: rgba(255, 255, 255, 0);
}
.play-company-video:hover svg polygon {
  -webkit-transition: all .25s;
  transition: all .25s;
  fill: rgba(255, 255, 255, 0.1);
}
/*@media (max-width: 768px) {*/
/*.play-company-video {*/
/*display: none;*/
/*}*/
/*}*/
.video-container {
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: auto;
  display: none;
  z-index: 300;
}
.video-container video {
  /*position: absolute;*/
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100vw;
  height: 100vh;
  -o-object-fit: cover;
  object-fit: cover;
}
.video-container .close {
  position: absolute;
  right: 32px;
  top: 32px;
  width: 32px;
  height: 32px;
  opacity: 0.3;
  cursor: pointer;
}
.video-container .close:hover {
  opacity: 1;
}
.video-container .close:before,
.video-container .close:after {
  position: absolute;
  left: 15px;
  content: ' ';
  height: 33px;
  width: 2px;
  background-color: #333;
}
.video-container .close:before {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.video-container .close:after {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.company__intro {
  position: relative;
}
.company__intro::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: no-repeat 50% 50%;
  background-size: cover;
  background-image: url(../images/bg-company.jpg);
  z-index: -2;
}
.company__intro::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: url(../images/pattern-dot.png) -16px -20px;
  z-index: -1;
}
.forum__intro {
  position: relative;
}
.forum__intro::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: no-repeat 50% 50%;
  background-size: cover;
  background-image: url(../images/bg-forum.jpg);
  z-index: -2;
}
.forum__intro::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: url(../images/pattern-dot.png) -16px -20px;
  z-index: -1;
}
.company__card-grid-wrap {
  position: relative;
}
.company__card-cell {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.company__card-cell.is-active .card {
  background: #f8fafb;
}
@media (min-width: 768px) {
  .company__card-cell.is-active .company__card-wrap {
    box-shadow: 0 5px 125px rgba(0, 0, 0, 0.3);
  }
}
.company__card-cell.is-expand .card__toggle-icon {
  -webkit-transform: rotateX(180deg);
  transform: rotateX(180deg);
}
.company__card-wrap {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  /* fix IE bug */
}
.card-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.card-wrap:hover {
  box-shadow: 0 5px 40px rgba(0, 4, 8, 0.1);
}
.card-wrap:hover .card__continue-icon {
  opacity: 1;
}
.card-wrap + .card-wrap {
  margin-top: 25px;
}
.card {
  background: #fff;
  padding: 2.75rem 80px 2.75rem 30px;
  position: relative;
  cursor: pointer;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  -webkit-box-flex: 2;
  -webkit-flex-grow: 2;
  -ms-flex-positive: 2;
  flex-grow: 2;
}
.card__image {
  padding: 2rem 0 2rem 2rem;
  line-height: 0;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.card__title {
  margin: 0;
  font-weight: 500;
}
* + .card__title {
  margin-top: 0.875rem;
}
.card__list {
  margin: 0.5rem 0 0;
}
.card__list li + li {
  margin-top: 0.5rem;
}
* + .paragraph--small {
  margin-top: 0.5rem;
}
.paragraph--small:not(:last-child) {
  margin-bottom: 0.5rem;
}
.company__icon-address {
  margin-right: 0.25rem;
  margin-bottom: -1px;
}
.card__handle {
  border-left: 1px solid #eef2f5;
  width: 66px;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
}
.card__toggle-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 36px;
  height: 36px;
  margin: -18px 0 0 -18px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.card__toggle-icon::before,
.card__toggle-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 22px;
  margin-left: -1px;
  margin-top: -14px;
  background: #0062a6;
  -webkit-transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
}
.card__toggle-icon::before {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.card__toggle-icon::after {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.card__continue-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 36px;
  height: 36px;
  margin: -18px 0 0 -18px;
  opacity: 0.7;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.card__continue-icon::before,
.card__continue-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22px;
  height: 2px;
  margin-left: -14px;
  margin-top: -1px;
  background: #0062a6;
  -webkit-transform-origin: 100% 50%;
  -ms-transform-origin: 100% 50%;
  transform-origin: 100% 50%;
}
.card__continue-icon::before {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.card__continue-icon::after {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.card__description {
  background: #fff;
  padding: 2.5rem 4rem 3rem;
}
.card__description-title {
  font-weight: 500;
  margin-bottom: 0;
}
.company__team-grid {
  margin-left: -1.5rem;
  line-height: 1.3;
}
.company__team-grid > * {
  padding-left: 1.5rem;
}
.company__team-grid .uk-grid-margin {
  margin-top: 2.5rem;
}
.company__team-image {
  display: block;
  margin-bottom: 1.25rem;
}
.company__team-name {
  margin-bottom: 0.25rem;
  display: block;
}
.company__form {
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}
.curator-card {
  background-color: #eef2f5;
}
.curator-card__body {
  padding: 2.75rem 30px 2.75rem 30px;
}
@media (min-width: 480px) {
  .curator-card__body {
    padding-left: 3.5rem;
    padding-right: 3.5rem;
  }
}
.board-of-directors {
  padding-left: 2.75rem;
}
@media (min-width: 480px) {
  .board-of-directors {
    padding-left: 3.5rem;
  }
}
.board-of-directors__item + .board-of-directors__item {
  padding-top: 2.75rem;
}
.siblings__dropdown {
  background: rgba(34, 34, 38, 0.95);
  padding: 13px 0;
  margin-left: 2.125rem;
  overflow: hidden;
  width: 290px;
  min-height: 66px;
  position: relative;
  -webkit-transition: width 0.3s, opacity 0.3s, background-color 0.25s;
  transition: width 0.3s, opacity 0.3s, background-color 0.25s;
}
.siblings__dropdown:not(.is-open) {
  cursor: pointer;
}
.siblings__dropdown:not(.is-open):hover {
  background: rgba(48, 48, 54, 0.95);
}
.siblings__dropdown.is-hidden.is-hidden {
  width: 0;
  opacity: 0;
}
.siblings__dropdown.is-visible.is-visible {
  width: 290px;
}
.siblings__dropdown.is-visible.is-visible .siblings__dropdown-item,
.siblings__dropdown.is-visible.is-visible .siblings__dropdown-placeholder {
  opacity: 1;
}
.siblings__dropdown-button {
  position: absolute;
  top: 0;
  right: 0;
  width: 66px;
  height: 66px;
  -webkit-transition: 0.25s;
  transition: 0.25s;
  z-index: 3;
}
.siblings__dropdown-button:hover {
  background: rgba(255, 255, 255, 0.06);
}
.siblings__dropdown-icon {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}
.siblings__dropdown-icon::before,
.siblings__dropdown-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  height: 1.4px;
  width: 12px;
  background: #fff;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}
.siblings__dropdown-icon::before {
  right: 50%;
  -webkit-transform-origin: 100% 50%;
  -ms-transform-origin: 100% 50%;
  transform-origin: 100% 50%;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  margin-top: 4px;
}
.siblings__dropdown-icon::after {
  left: 50%;
  -webkit-transform-origin: 0 50%;
  -ms-transform-origin: 0 50%;
  transform-origin: 0 50%;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  margin-top: 4px;
}
.siblings__dropdown.is-open .siblings__dropdown-icon {
  -webkit-transform: rotate3d(1, 0, 0, 180deg);
  transform: rotate3d(1, 0, 0, 180deg);
}
.siblings__dropdown-item {
  font-family: 'Bebas', 'Helvetica Neue', 'Segoe UI', SimSun, sans-serif;
  text-transform: uppercase;
  font-size: 21px;
  display: block;
  width: 100%;
  padding: 0 2rem;
  color: transparent;
  line-height: 1px;
  height: 0;
  position: relative;
  -webkit-transition: height 0.3s, line-height 0.3s, opacity 0.3s, background-color 0.25s, color 0.25s;
  transition: height 0.3s, line-height 0.3s, opacity 0.3s, background-color 0.25s, color 0.25s;
  overflow: hidden;
}
.is-open > .siblings__dropdown-item {
  color: rgba(255, 255, 255, 0.35);
  line-height: 40px;
  height: 40px;
}
.is-open > .siblings__dropdown-item:hover {
  background: rgba(255, 255, 255, 0.06);
}
.siblings__dropdown-item:hover {
  color: rgba(255, 255, 255, 0.6);
}
.siblings__dropdown-item.is-active {
  color: #fff;
  line-height: 40px;
  height: 40px;
  z-index: 2;
}
.siblings__dropdown-placeholder {
  font-family: 'Bebas', 'Helvetica Neue', 'Segoe UI', SimSun, sans-serif;
  text-transform: uppercase;
  font-size: 21px;
  display: block;
  padding: 0 2rem;
  color: transparent;
  line-height: 1px;
  height: 0;
  position: relative;
  -webkit-transition: height 0.3s, line-height 0.3s, opacity 0.3s, background-color 0.25s, color 0.25s;
  transition: height 0.3s, line-height 0.3s, opacity 0.3s, background-color 0.25s, color 0.25s;
  overflow: hidden;
}
:not(.is-open) > .siblings__dropdown-placeholder.is-active {
  color: rgba(255, 255, 255, 0.35);
  line-height: 40px;
  height: 40px;
  z-index: 2;
}
.directions__intro::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: no-repeat 50% 50%;
  background-size: cover;
  z-index: -2;
}
.directions__intro::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: url(../images/pattern-dot.png) -16px -20px;
  z-index: -1;
}
.directions__intro--aircraft::before {
  background-image: url(../images/bg-direction-aircraft.jpg);
}
.directions__intro--automobile::before {
  background-image: url(../images/bg-direction-automobile.jpg);
}
.directions__intro--nuclear::before {
  background-image: url(../images/bg-direction-nuclear.jpg);
}
.directions__intro--space::before {
  background-image: url(../images/bg-direction-space.jpg);
}
.directions__intro--wind::before {
  background-image: url(../images/bg-direction-wind.jpg);
}
.directions__intro--construction::before {
  background-image: url(../images/bg-direction-construction.jpg);
}
.directions__intro--medicine::before {
  background-image: url(../images/bg-direction-medicine.jpg);
}
.directions__intro--balloon::before {
  background-image: url(../images/bg-direction-balloon.jpg);
}
.directions__intro--ship::before {
  background-image: url(../images/bg-direction-shipbuilding.jpg);
}
.directions__intro--sport::before {
  background-image: url(/images/bg-direction-sport.jpg);
}
.directions__intro--design::before {
  background-image: url(../images/bg-direction-design.jpg);
}
.directions__intro--alabugavolokno::before {
  background-image: url(../images/bg-production-alabuka.jpg);
}
.directions__intro--pan::before {
  background-image: url(../images/pan.jpg);
}
.directions__intro--argon::before {
  background-image: url(../images/bg-production-argon.jpg);
}
.directions__intro--zukm::before {
  background-image: url(../images/bg-production-zukm.jpg);
}
.directions__intro--rd::before {
  background-image: url(../images/bg-production-nits.jpg);
}
.directions__second {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background: no-repeat 50% 50%;
  background-size: cover;
}
.directions__second--aircraft {
  background-image: url(../images/bg-direction-aircraft-second.jpg);
}
.directions__second--automobile {
  background-image: url(../images/bg-direction-automobile-second.jpg);
}
.directions__second--nuclear {
  background-image: url(../images/bg-direction-nuclear-second.jpg);
}
.directions__second--space {
  background-image: url(../images/bg-direction-space-second.jpg);
}
.directions__second--wind {
  background-image: url(../images/bg-direction-wind-second.jpg);
}
.directions__second--construction {
  background-image: url(../images/bg-direction-construction-second.jpg);
}
.directions__second--medicine {
  background-image: url(../images/bg-direction-medicine-second.jpg);
}
.directions__second--balloon {
  background-image: url(../images/bg-direction-balloon-second.jpg);
}
.directions__second--ship {
  background-image: url(../images/bg-direction-shipbuilding-second.jpg);
}
.directions__second--sport {
  background-image: url(../images/bg-direction-sport-second.jpg);
}
.directions__second--design {
  background-image: url(../images/bg-direction-design-second.jpg);
}
.directions__second--alabugavolokno {
  background-image: url(../images/alabugavolokno2.jpg);
}
.directions__second--pan {
  background-image: url(../images/pan1.jpg);
}
.directions__second--zukm {
  background-image: url(../images/zukm1.jpg);
}
.directions__second--rd {
  background-image: url(../images/rd1.jpg);
}
.directions__use-cell {
  background: no-repeat 50% 50%;
  background-size: cover;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  padding: 3rem;
  min-height: 40vh;
}
.directions__use-cell--aircraft {
  background-image: url(../images/directions-use-aircraft.jpg);
}
.directions__use-cell--automobile {
  background-image: url(../images/directions-use-automobile.jpg);
}
.directions__use-cell--nuclear {
  background-image: url(../images/directions-use-nuclear.jpg);
}

.directions__use-cell--space {
  background-image: url(../images/directions-use-space.jpg);
}
.directions__use-cell--wind {
  background-image: url(../images/directions-use-wind.jpg);
  background-position: 50% 100%;
}
.directions__use-cell--construction {
  background-image: url(../images/directions-use-construction.jpg);
}
.directions__use-cell--medicine {
  background-image: url(../images/directions-use-medicine.jpg);
}
.directions__use-cell--balloon {
  background-image: url(../images/directions-use-balloon.jpg);
}
.directions__use-cell--shipbuilding {
  background-image: url(../images/directions-use-shipbuilding.jpg);
}
.directions__use-cell--sport {
  background-image: url(../images/directions-use-sport.jpg);
}
.directions__use-cell--design {
  background-image: url(../images/directions-use-design.jpg);
}
.directions__stats-circle {
  overflow: hidden;
}
.directions__stats-circle--automobile {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-bottom: 3rem;
}
.directions__stats-circle-cell {
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  position: relative;
}
.directions__stats-circle-image.directions__stats-circle-image {
  margin: -6.75rem 0 -7.5rem;
}
.directions__stats-circle-image--third.directions__stats-circle-image--third {
  margin: -4rem 0;
}
.directions__stats-wind {
  text-align: center;
}
.directions__stats-wind-caption {
  max-width: 320px;
  margin-top: -1rem;
  margin-left: auto;
  margin-right: auto;
  z-index: 2;
}
.directions__stats-image {
  margin: -8% 0;
}
.directions__stats-left-labels,
.directions__stats-right-labels {
  position: absolute;
  width: 50%;
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  z-index: 9;
}
@media (min-width: 900px) {
  .directions__stats-left-labels,
  .directions__stats-right-labels {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (min-width: 900px) and (max-width: 1100px) {
  .directions__stats-image {
    width: 700px;
  }
}
.directions__stats-left-labels {
  top: 38%;
  left: 0;
  text-align: left;
  padding-left: 16px;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.directions__stats-right-labels {
  top: 41%;
  right: 0;
  text-align: right;
  padding-right: 16px;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.directions__stats-center-labels {
  top: 50%;
  -webkit-transform: translateY(-65%);
  -ms-transform: translateY(-65%);
  transform: translateY(-65%);
}
.directions__stats-row {
  margin-bottom: 3rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.directions__stats-row:last-child {
  margin-bottom: 0;
}
.directions__stats-line {
  height: 1px;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  top: 28px;
  position: relative;
  z-index: 9;
}
.directions__stats-line::after {
  content: '';
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #f9d0d9;
  position: absolute;
  top: -1.5px;
}
.directions__stats-left-labels .directions__stats-line {
  margin-left: 16px;
  background: #34343c;
  background: -webkit-linear-gradient(left, #34343c 0%, #3a333b 50%, #4a3a40 100%);
  background: linear-gradient(to right, #34343c 0%, #3a333b 50%, #4a3a40 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#34343c', endColorstr='#4a3a40', GradientType=1);
}
.directions__stats-left-labels .directions__stats-line::after {
  right: 0;
}
.directions__stats-right-labels .directions__stats-line {
  margin-right: 16px;
  background: #34343c;
  background: -webkit-linear-gradient(left, #4a3a40 0%, #3a333b 50%, #34343c 100%);
  background: -webkit-linear-gradient(left, #4a3a40 0%, #3a333b 50%, #34343c 0%);
  background: linear-gradient(to right, #4a3a40 0%, #3a333b 50%, #34343c 0%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#4a3a40', endColorstr='#34343c', GradientType=1);
}
.directions__stats-right-labels .directions__stats-line:after {
  left: 0;
}
.stats-label__val {
  font-family: Bebas, SimSun, sans-serif;
  font-size: 30px;
  display: inline-block;
  width: 50px;
  text-align: left;
}
.stats-label__text {
  font-size: 16px;
}
.directions__stats-row_1 {
  width: calc(100% - 200px);
}
.directions__stats-row_2 {
  width: calc(100% - 202px);
}
.directions__stats-row_3 {
  width: calc(100% - 176px);
}
.directions__stats-row_4 {
  width: calc(100% - 190px);
}
.directions__stats-row_5 {
  width: calc(100% - 181px);
}
.directions__stats-row_6 {
  width: calc(100% - 196px);
}
.directions__stats-row_7 {
  width: calc(100% - 183px);
}
@media (min-width: 900px) and (max-width: 1100px) {
  .directions__stats-row_1 {
    width: calc(100% - 140px);
  }
  .directions__stats-row_2 {
    width: calc(100% - 128px);
  }
  .directions__stats-row_3 {
    width: calc(100% - 40px);
  }
  .directions__stats-row_4 {
    width: calc(100% - 127px);
  }
  .directions__stats-row_5 {
    width: calc(100% - 111px);
  }
  .directions__stats-row_6 {
    width: calc(100% - 134px);
  }
  .directions__stats-row_7 {
    width: calc(100% - 125px);
  }
}
.z9 {
  z-index: 9;
}
.siblings-footer {
  position: relative;
  margin-bottom: -1px;
  /*fix 1px gap*/
}
.siblings-footer__item {
  background: no-repeat 50% 50%;
  background-size: cover;
  height: 480px;
  padding: 4rem 0 6.5rem;
  text-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.siblings-footer__item:not(:first-child) {
  display: none;
}
.slick-initialized .siblings-footer__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.siblings-footer__clone {
  background: no-repeat 50% 50%;
  background-size: cover;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.siblings-footer__item--aircraft {
  background-image: url(../images/bg-direction-aircraft.jpg);
}
.siblings-footer__item--automobile {
  background-image: url(../images/bg-direction-automobile.jpg);
}
.siblings-footer__item--nuclear {
  background-image: url(../images/bg-direction-nuclear.jpg);
}
.siblings-footer__item--space {
  background-image: url(../images/bg-direction-space.jpg);
}
.siblings-footer__item--construction {
  background-image: url(../images/bg-direction-construction.jpg);
}
.siblings-footer__item--wind {
  background-image: url(../images/bg-direction-wind.jpg);
}
.siblings-footer__item--shipbuilding {
  background-image: url(../images/bg-direction-shipbuilding.jpg);
}
.siblings-footer__item--medicine {
  background-image: url(../images/bg-direction-medicine.jpg);
}
.siblings-footer__item--design {
  background-image: url(../images/bg-direction-design.jpg);
}
.siblings-footer__item--balloon {
  background-image: url(../images/bg-direction-balloon.jpg);
}
.siblings-footer__item--fiber {
  background-image: url(../images/bg-production-fiber.jpg);
  background-position: 50% 65%;
}
.siblings-footer__item--fabric {
  background-image: url(../images/bg-production-fabric.jpg);
  background-position: 50% 90%;
}
.siblings-footer__item--prepreg {
  background-image: url(../images/bg-production-prepreg.jpg);
}
.siblings-footer__item--sport {
  background-image: url(..//images/bg-direction-sport.jpg);
}
.siblings-footer__counter {
  font-family: 'Bebas', 'Helvetica Neue', 'Segoe UI', SimSun, sans-serif;
  font-size: 20px;
  line-height: 1.4;
  position: absolute;
  bottom: 42px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
@media (min-width: 960px) {
  .siblings-footer__counter {
    font-size: 25px;
  }
}
.siblings-footer__counter::before,
.siblings-footer__counter::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 2rem;
  height: 1px;
  background: currentColor;
}
.siblings-footer__counter::before {
  right: 100%;
  margin-right: 1rem;
}
.siblings-footer__counter::after {
  left: 100%;
  margin-left: 1rem;
}
.production__intro::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: url(../images/pattern-dot.png) -16px -20px;
  z-index: -1;
}
.production__section {
  position: relative;
  padding: 5rem 0;
  min-height: 250px;
}
.production__container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.production__preview {
  display: block;
  width: 100%;
}
.production__preview-content {
  position: relative;
  z-index: 2;
  color: #fff;
}
.production__preview-image {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  margin: auto;
  display: block;
  overflow: hidden;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}
.production__preview-image-mask {
  position: absolute;
  left: -1px;
  right: -1px;
  top: -1px;
  bottom: -1px;
}
.production__item-section {
  padding-bottom: 5rem;
}
.production__item-section:nth-child(2n + 1) {
  background: #eef2f5;
}
.production__scheme {
  margin-top: 3.5rem;
  text-align: center;
  overflow: hidden;
  background: url(../images/production-scheme-pattern.jpg);
  background-size: 50px;
}
.production__scheme-title {
  position: relative;
  z-index: 2;
  margin-top: 3.5rem;
}
.production__scheme-image-wrap {
  margin: 2.75rem 0 2rem;
  display: inline-block;
  position: relative;
  z-index: 1;
}
.production__scheme-image-wrap--fabric-single {
  margin-bottom: 3rem;
}
.production__scheme-image-base {
  display: block;
}
.production__scheme-image-bg {
  position: absolute;
  z-index: -1;
  max-width: none;
}
.production__scheme-image-bg--fabric-single {
  left: -98.281%;
  right: -101.406%;
  top: -44.545%;
  bottom: -28.181%;
  width: 299.84%;
}
.production__scheme-image-bg--fabric {
  left: -45.238%;
  right: -45.138%;
  top: -41.783%;
  bottom: -24.301%;
  width: 190.377%;
}
.production__scheme-footer {
  position: relative;
  z-index: 2;
  background: #1d1d27;
  padding: 8px 25px 28px;
}
.production__scheme-footer-item {
  margin-top: 20px;
}
.production__scheme-footer-image {
  vertical-align: middle;
}
.production__scheme-footer-image--percent {
  margin: -10px -14px -10px -14px;
  width: 105px;
}
.production__scheme-footer-image--resistance {
  margin: -30px -16px -30px -30px;
}
.production__scheme-footer-value {
  display: inline-block;
  font-size: 20px;
  line-height: 1.4;
  font-family: 'Bebas', 'Helvetica Neue', 'Segoe UI', SimSun, sans-serif;
  text-transform: uppercase;
  margin-right: 6px;
  margin-top: -2px;
  vertical-align: middle;
}
@media (min-width: 960px) {
  .production__scheme-footer-value {
    font-size: 25px;
  }
}
.production__scheme-footer-label {
  display: inline-block;
  font-size: 0.85em;
  vertical-align: middle;
}
.icon-equal-more {
  font-size: 0.65em;
  vertical-align: middle;
  margin-bottom: -0.1em;
  display: inline-block;
}
.production__directions-list-column {
  width: auto;
}
.production__directions-list-column.uk-grid-margin {
  margin-top: 1rem;
}
.production__directions-list-item + .production__directions-list-item {
  margin-top: 1rem;
}
.production__marking-name {
  line-height: 1;
  font-weight: 500;
  color: #0062a6;
  white-space: nowrap;
  font-size: calc((100vw - 20px * 2) * 0.14);
}
@media (min-width: 768px) {
  .production__marking-name {
    font-size: calc((100vw - 50px * 2) * 0.14);
  }
}
@media (min-width: 1000px) {
  .production__marking-name {
    font-size: 126px;
  }
}
.production__marking-part {
  display: inline-block;
  border-bottom: 2px solid;
}
.production__marking-description {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 30px;
}
.production__marking-description-part {
  width: 100%;
}
.production__marking-description-part + .production__marking-description-part {
  margin-top: 20px;
}
.production__order-section {
  margin-top: 5rem;
}
.order__product-description-item {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.order__product-description-item:not(.is-active) {
  height: 0;
  opacity: 0;
  padding-top: 0;
  padding-bottom: 0;
  overflow: hidden;
}
.order__basket {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.order__basket:not(.is-active) {
  height: 0;
  opacity: 0;
  padding-top: 0;
  padding-bottom: 0;
  overflow: hidden;
}
[data-toggle] {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
[data-toggle]:not(.is-active) {
  height: 0;
  opacity: 0;
  padding-top: 0;
  padding-bottom: 0;
  overflow: hidden;
}
.close-icon {
  width: 15px;
  height: 15px;
  display: inline-block;
  position: relative;
}
.close-icon::before,
.close-icon::after {
  content: '';
  -webkit-transition: 0.25s;
  transition: 0.25s;
  background: currentColor;
  position: absolute;
  width: 16px;
  height: 2px;
  left: 50%;
  top: 50%;
  margin-left: -8px;
  margin-top: -1px;
}
.close-icon::before {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.close-icon::after {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.news__intro-bg {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: -2;
  background: no-repeat 50% 50%;
  background-size: cover;
}
.news__intro-lead {
  margin: 0 0 3rem;
  -webkit-box-flex: 2;
  -webkit-flex-grow: 2;
  -ms-flex-positive: 2;
  flex-grow: 2;
}
.intro__text {
  margin: 0 0 3rem;
}
.news__intro-date {
  font-weight: 500;
  margin-right: 2rem;
}
.news__card-wrap {
  background: #fff;
}
.news__card-wrap .card {
  background: transparent;
}
.news__card-date {
  margin-right: 2rem;
}
.news__article-content a:not([class]),
.news__article-content a[class=""] {
  color: #0062a6;
  border-bottom: 1px solid rgba(0, 98, 166, 0.4);
}
.contrast .news__article-content a:not([class]),
.contrast .news__article-content a[class=""] {
  color: inherit;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.news__article-content a:not([class]):hover,
.news__article-content a[class=""]:hover,
.news__article-content a:not([class]):focus,
.news__article-content a[class=""]:focus {
  border-bottom: 1px solid;
  outline: none;
}
.news-article__bottom {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.news-article__return-wrap {
  width: 100%;
  margin-top: 40px;
}
.social-label {
  margin-right: 1.25rem;
}
.social {
  line-height: 0;
}
.social__link {
  color: rgba(0, 98, 166, 0.6);
  width: 3rem;
  height: 3rem;
  border: 1px solid;
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  text-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.social__link:hover,
.social__link:focus {
  color: #fff;
  background: #0062a6;
  border-color: #0062a6;
}
.social__link + .social__link {
  margin-left: 0.25rem;
}
.social__icon {
  width: 2.5rem;
  height: 2.5rem;
  fill: currentColor;
}
.social__icon--vimeo {
  -webkit-transform: scale(0.95);
  -ms-transform: scale(0.95);
  transform: scale(0.95);
}
.social__icon--gp {
  -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.8);
}
.color-black {
  color: #000 !important;
}
.color-file {
  color: #35373b !important;
}
.download-prog-news {
  padding-left: 54px;
  background: url('../images/dowload-pdf_news.png') no-repeat 12px 12px;
}
@media (max-width: 768px) {
  .download-prog-news {
    margin-bottom: 20px;
    padding-left: 50px;
    background: url('../images/dowload-pdf_news.png') no-repeat 0 0;
  }
}
.download-prog-news .link--underline {
  border-bottom-width: 0;
}
.download-prog-news div {
  margin-top: 5px;
}
@media (max-width: 768px) {
  .download-prog-news div {
    margin: 0;
  }
}
@media (max-width: 768px) {
  .download-prog-news {
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
    -ms-flex-order: -1;
    order: -1;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.flex-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
}
@media (max-width: 768px) {
  .flex-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.contact__intro::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: no-repeat 50% 50%;
  background-size: cover;
  background-image: url(../images/bg-contact.jpg);
  z-index: -2;
}
.contact__intro::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: url(../images/pattern-dot.png) -16px -20px;
  z-index: -1;
}
.contact__block-address {
  line-height: 1.76;
}
.contact__block-grid > .uk-grid-margin {
  margin-top: 0;
  padding-top: 4rem;
}
.u-flex-vertical-middle {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.u-flex-vertical-base {
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}
.mt-65 {
  margin-top: 65px;
}
@media (max-width: 768px) {
  .mt-65 {
    margin-top: 30px;
  }
}
@media (max-width: 1220px) {
  img.forum-partners-img:not(.forum-partners-img--composite-online) {
    max-width: 100%;
  }
}
.forum-partners-img--composite-world {
  max-width: 289px;
  height: auto;
}
.forum-partners-img--composite-of-russia {
  max-width: 267px;
  height: auto;
}
.forum-partners-img--composite-online {
  max-width: 137px;
  height: auto;
}
.forum-partners-img--pipeline-transport {
  max-width: 268px;
  height: auto;
}
.forum-partners-img--composite-expo {
  max-width: 407px;
  height: auto;
}
.forum-partners-img--nnn {
  max-width: 166px;

  height: auto;
}
.forum-place {
  color: #ffffff;
}
.forum-place h2 {
  font-weight: 500;
  margin-bottom: 46px;
}
@media (max-width: 480px) {
  .forum-place h2 {
    margin-bottom: 25px;
    font-size: 2.75rem;
  }
}
.forum-place h3 {
  font-weight: 400;
  font-size: 40px;
}
.cluster--footer_title_style {
  font-weight: 500;
  margin-bottom: 28px;
}
@media (min-width: 480px) {
  .f-margin {
    margin-top: 60px;
  }
}
@media (max-width: 480px) {
  .f-margin {
    margin-bottom: 20px !important;
  }
}
.f-margin-button {
  margin-top: 55px;
}
@media (max-width: 480px) {
  .f-margin-button {
    margin-top: 25px;
  }
}
.section-forum--last {
  max-width: 1100px;
  margin-top: 80px;
  margin-bottom: 36px;
}
@media (max-width: 480px) {
  .section-forum--last {
    margin-top: 50px;
    border-top: 26px;
  }
}
.forum-p-last {
  margin: 71px 0 64px;
}
.text-children-dark {
  color: rgba(255, 255, 255, 0.6);
}
.section--brightgray {
  background-color: #2d2d33;
  padding: 140px 0 114px;
}
@media (max-width: 768px) {
  .section--brightgray {
    padding: 82px 0;
  }
}
@media (max-width: 480px) {
  .section--brightgray {
    padding: 52px 0;
  }
}
.forum-partners-wrapper {
  margin-top: 36px;
}
.forum-partners-wrapper .forum-partners-img {
  margin-top: 36px;
}
.forum-partners-wrapper .img-partners {
  height: 150px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (max-width: 480px) {
  .forum-partners-wrapper .img-partners {
    height: auto;
  }
}
@media (min-width: 1220px) {
  .forum-partners-wrapper {
    margin-top: 0;
  }
  .forum-partners-wrapper .partners-img-1 {
    margin-bottom: 60px;
  }
  .forum-partners-wrapper .partners-img-2 {
    margin-bottom: 60px;
  }
  .forum-partners-wrapper .partners-img-3 {
    margin-bottom: 60px;
  }
  .forum-partners-wrapper .img-partners--top {
    margin-bottom: 72px;
  }
}
@media (max-width: 480px) {
  .forum-partners-wrapper {
    text-align: left;
  }
}
.section-forum {
  max-width: 1440px;
  margin: 0 auto;
}
.section-forum-padding {
  padding: 0 64px;
}
@media (max-width: 960px) {
  .section-forum-padding {
    text-align: center;
  }
}
.forum-container {
  margin-top: 56px;
}
@media (max-width: 768px) {
  .forum-container {
    margin-top: 0 !important;
  }
}
.forum-container .digit--bold {
  font-family: 'Proxima Nova';
  font-weight: 500;
  font-size: 25px;
  margin: 36px 0 20px;
}
@media (max-width: 480px) {
  .forum-container .digit--bold {
    margin: 10px 0 10px;
  }
}
.forum-partners-img-first {
  height: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .forum-partners-img-first {
    text-align: center;
  }
}
.forum-partners-img-first > img {
  margin-bottom: 50px;
}
.forum-partners-text {
  margin-top: 72px;
  text-align: left;
  color: rgba(255, 255, 255, 0.6);
}
@media (max-width: 960px) {
  .forum-partners-text {
    display: block;
    margin: 30px 0 !important;
  }
}
@media (max-width: 480px) {
  .forum-partners-text {
    margin: 20px 0 50px !important;
  }
}
.u-nopadding-bottom {
  padding-bottom: 0;
}
@media (min-width: 1220px) {
  .u-nopadding-bottom {
    padding-bottom: 50px;
  }
}
.uk-grid .forum-subtext-wrapper {
  color: #3b3b3b;
  margin-top: 47px;
  margin-left: 40px;
  margin-bottom: 46px;
}
@media (max-width: 480px) {
  .uk-grid .forum-subtext-wrapper {
    margin-top: 17px;
    margin-left: 10px;
    margin-bottom: 16px;
  }
}
.forum-shift-description {
  padding-left: 40px;
}
.forum-shift-description .forum-subtext-wrapper {
  margin-top: 46px;
}
.forum-shift-description .forum-subtext-wrapper div {
  width: 360px;
  font-size: 20px;
  font-family: 'Proxima Nova';
  font-weight: 500;
  color: #3b3b3b;
}
@media (max-width: 1220px) {
  .forum-shift-description .forum-subtext-wrapper div {
    font-size: 17px;
  }
}
@media (max-width: 960px) {
  .forum-shift-description .forum-subtext-wrapper div {
    font-size: 16px;
  }
}
.forum-download {
  margin-top: 70px;
  text-align: center;
}
@media (max-width: 480px) {
  .forum-download {
    margin-top: 30px;
  }
}
.forum-download span {
  color: rgba(157, 157, 157, 0.6);
}
.person-wrapper {
  margin-top: 58px;
}
.person-wrapper .forum-text-absolute {
  color: #fff;
  text-align: left;
  position: absolute;
  bottom: 40px;
  left: 40px;
}
@media (max-width: 480px) {
  .person-wrapper .forum-text-absolute {
    bottom: 10px;
    left: 10px;
  }
}
.person-wrapper .forum-text-absolute h2 {
  font-size: 40px;
  margin-bottom: 10px;
}
@media (max-width: 960px) {
  .person-wrapper .forum-text-absolute h2 {
    font-size: 30px;
  }
}
@media (max-width: 768px) {
  .person-wrapper .forum-text-absolute h2 {
    font-size: 24px;
  }
}
@media (max-width: 480px) {
  .person-wrapper .forum-text-absolute h2 {
    font-size: 18px;
    margin-bottom: 0;
  }
}
.person-wrapper .forum-text-absolute span {
  font-size: 16px;
}
@media (max-width: 480px) {
  .person-wrapper .forum-text-absolute span {
    font-size: 14px;
    display: block;
    line-height: 17px;
  }
}
.person-wrapper img {
  display: block;
  width: 100%;
}
.nav__title-link {
  font-size: 1.56rem;
}
.forum-img-wrapper {
  position: relative;
}
@media (min-width: 480px) {
  .table-wrap {
    margin-left: -25px;
    margin-right: -25px;
  }
  .table th:not(.table__cell--not-edge):first-child,
  .table td:not(.table__cell--not-edge):first-child {
    padding-left: 25px;
  }
  .table th:not(.table__cell--not-edge):last-child,
  .table td:not(.table__cell--not-edge):last-child {
    padding-right: 25px;
  }
  .header__logo-image {
    width: 185.9px;
    height: 66px;
  }
  .header--shrink .header__logo-image {
    margin-right: -120px;
  }
  .header__menu-button {
    width: 66px;
    height: 66px;
  }
  .icon--menu {
    width: 33px;
    margin-left: -16.5px;
  }
  .icon--menu:before {
    top: 11px;
  }
  .icon--menu:after {
    top: -11px;
  }
  .header__right {
    margin-right: 25px;
    line-height: 66px;
    position: fixed;
  }
  .nav__container {
    padding-top: 120px;
    padding-bottom: 80px;
  }
  .nav__page {
    display: block;
  }
  .nav__title {
    margin-bottom: 0.75rem;
    text-align: left;
  }
  .nav__title-link::after {
    right: 1px;
  }
  .footer__cell--last {
    text-align: right;
  }
  .footer__cell--last.uk-grid-margin {
    margin-top: 50px;
  }
  .footer__menu {
    -webkit-columns: 3;
    -moz-columns: 3;
    columns: 3;
  }
  .footer__phone {
    margin-top: 2.5rem;
  }
  .index__contact-umatex {
    position: relative;
    max-width: 1207px;
  }
  .index__contact-umatex::after {
    content: '';
    position: absolute;
    left: -30.82%;
    right: -28.66%;
    top: -198.1%;
    bottom: -281.51%;
    background: url(../images/index-contact-lines.png) no-repeat 50% 50%;
    background-size: contain;
    z-index: -1;
  }
  .index__branches-360 {
    padding-bottom: 35%;
  }
  .index__branches-360-canvas,
  .index__branches-360-mobile {
    max-width: 70%;
  }
  .is-ie .index__branches-360 {
    padding-bottom: 35%;
  }
  .is-ie .index__branches-360-mobile {
    max-width: 70%;
  }
  .slick-dots {
    bottom: 2.75rem;
  }
  .production__scheme {
    background-size: 75px;
  }
  .production__scheme-footer-image--percent {
    margin: -20px -14px -20px -28px;
    width: auto;
  }
  .card {
    padding-left: 3.5rem;
  }
  .card__image + .card {
    padding-left: 3rem;
    padding-top: 2.25rem;
    padding-bottom: 2.25rem;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    min-height: 204px;
  }
}
@media (min-width: 768px) {
  .table-wrap {
    margin-left: -50px;
    margin-right: -50px;
  }
  .table th:not(.table__cell--not-edge):first-child,
  .table td:not(.table__cell--not-edge):first-child {
    padding-left: 50px;
  }
  .table th:not(.table__cell--not-edge):last-child,
  .table td:not(.table__cell--not-edge):last-child {
    padding-right: 50px;
  }
  .index__production::before {
    background-image: url(../images/bg-index-production.jpg);
  }
    .about-bg {
    background-image: url(../images/bg-index-about.jpg) !important;
    background-size:100% 100% ;
  }
  .index__branches-item {
    padding-bottom: 90px;
  }
  .header__left,
  .header__right {
    top: 2.75rem;
  }
  .production__section-wrap--left .production__preview-content {
    left: 0;
    padding-right: 3.5rem;
  }
  .production__section-wrap--right {
    background: #eef2f5;
  }
  .production__section-wrap--right .production__preview-content {
    left: 50%;
    padding-left: 3.5rem;
  }
  .production__section {
    padding: 120px 0 100px;
  }
  .production__preview {
    position: relative;
  }
  .is-desktop .production__preview:hover .production__preview-image {
    opacity: 0.85;
  }
  .production__preview-content {
    position: absolute;
    top: 0;
    left: 0;
    height: 50%;
    width: 50%;
    padding-bottom: 4.5rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    z-index: 2;
    color: inherit;
  }
  .production__preview-image {
    max-width: 896px;
    max-height: 743px;
    padding-bottom: 83%;
    position: relative;
  }
  .production__marking-description {
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    margin-top: 0;
  }
  .production__marking-description-part {
    width: auto;
  }
  .production__marking-description-part + .production__marking-description-part {
    margin-left: 4.22%;
    margin-top: 0;
  }
  .production__marking-description-part--1 {
    width: 54.2%;
  }
  .production__marking-description-part--2 {
    width: 21.4%;
  }
  .production__marking-description-part--3 {
    width: 16%;
  }
  .directions__second {
    min-height: 80vmin;
  }
  .siblings-footer__item {
    height: 640px;
    max-height: 100vh;
    padding: 5.5rem 0 6.75rem;
  }
  .directions__use-cell {
    height: 70vh;
    min-height: 0;
    max-height: 600px;
  }
  .news-article__bottom {
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    text-align: left;
  }
  .news-article__return-wrap {
    width: auto;
    margin: 0 0 0 3.5rem;
  }
}
@media (min-width: 960px) {
  .table-wrap {
    overflow: visible;
    margin-left: 0;
    margin-right: 0;
  }
  .table-wrap--simple {
    overflow: visible;
  }
  .table {
    font-size: 1.125rem;
  }
  .table th:first-child::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: -4000px;
    right: -4000px;
    background: #143c59;
    z-index: -1;
  }
  .table th:not(.table__cell--not-edge):first-child,
  .table td:not(.table__cell--not-edge):first-child {
    padding-left: 0;
  }
  .table th:not(.table__cell--not-edge):last-child,
  .table td:not(.table__cell--not-edge):last-child {
    padding-right: 0;
  }
  .table--simple {
    font-size: 1.125rem;
  }
  .table--bebas-col-1 td:not([colspan]):nth-child(1),
  .table--bebas-col-2 td:not([colspan]):nth-child(2),
  .table--bebas-col-3 td:not([colspan]):nth-child(3),
  .table--bebas-col-4 td:not([colspan]):nth-child(4),
  .table--bebas-col-5 td:not([colspan]):nth-child(5),
  .table--bebas-col-6 td:not([colspan]):nth-child(6),
  .table--bebas-col-7 td:not([colspan]):nth-child(7),
  .table--bebas-col-8 td:not([colspan]):nth-child(8),
  .table--bebas-col-9 td:not([colspan]):nth-child(9),
  .table__cell--bebas {
    font-size: 21px;
  }
  .header__right {
    margin-right: 62px;
  }
  .footer__menu {
    -webkit-columns: 2;
    -moz-columns: 2;
    columns: 2;
  }
  .footer__cell--menu {
    -webkit-box-ordinal-group: 1;
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
  }
  .footer__up {
    margin-top: -1rem;
    margin-bottom: 1rem;
  }
  .index__news-wrap-half {
    min-height: 50%;
    -webkit-box-flex: 2;
    -webkit-flex-grow: 2;
    -ms-flex-positive: 2;
    flex-grow: 2;
    -webkit-flex-basis: 280px;
    -ms-flex-preferred-size: 280px;
    flex-basis: 280px;
  }
  .index__news-wrap-half .index__news-title {
    font-size: 22px;
  }
  .production__scheme {
    background-size: auto;
  }
  .production__scheme-footer-item {
    display: inline-block;
    white-space: nowrap;
  }
  .production__scheme-footer-item:not(:last-child) {
    margin-right: 3.5rem;
  }
  .card {
    padding-right: 100px;
  }
}
@media (min-width: 1220px) {
  .is-fp-scrolling .header__right {
    position: fixed;
  }
  .nav__title-link::after {
    left: -6rem;
  }
  .index__production {
    padding: 10rem 0 2rem;
  }
  .index__production-type-link {
    display: inline-block;
  }
  .index__production-type-link:hover .index__production-type-hover {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  .index__production-type-link:hover .index__production-type-hover.index__production-enter {
    -webkit-transition: 0.3s 0.05s;
    transition: 0.3s 0.05s;
  }
  .index__production-type-hover {
    opacity: 0;
    -webkit-transform: translateY(10px);
    -ms-transform: translateY(10px);
    transform: translateY(10px);
    -webkit-transition: 0.25s;
    transition: 0.25s;
  }
  .index__production-type-hover.index__production-enter {
    -webkit-transform: translateY(12px);
    -ms-transform: translateY(12px);
    transform: translateY(12px);
  }
  .index__branches-360-wrap-outer {
    margin-top: -2.5rem;
  }
  .index__branches-360-canvas,
  .index__branches-360-mobile {
    max-width: 100%;
  }
  .index__branches .slick-dots {
    display: none !important;
  }
  .index__partners-cell {
    min-height: 50%;
  }
  .index__news-slide {
    padding: 9rem 0 6rem;
  }
  .index__news-wrap-half {
    -webkit-flex-basis: 250px;
    -ms-flex-preferred-size: 250px;
    flex-basis: 250px;
  }
  .index__news-button {
    /*position: absolute;
    left: 2.5rem;
    bottom: 2.5rem;*/
    opacity: 0.9;
  }
  .index__contact {
    padding: 8rem 0 3rem;
  }
  .production__section {
    min-height: 100vh;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .production__preview-image {
    padding-bottom: 0;
    position: absolute;
  }
  .production__scheme-footer-value {
    font-size: 30px;
  }
  .directions__stats-wind {
    text-align: left;
  }
  .directions__stats-wind-caption {
    margin-right: 0;
    position: relative;
  }
  .directions__stats-wind-caption::before {
    content: '';
    position: absolute;
    width: 82px;
    height: 1px;
    right: 60%;
    top: -0.25em;
    -webkit-transform-origin: 100% 50%;
    -ms-transform-origin: 100% 50%;
    transform-origin: 100% 50%;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    background: rgba(255, 255, 255, 0.1);
    margin-right: 0.3em;
  }
}

.side__menu {
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 2;
    -webkit-transition: 0.25s;
    transition: 0.25s;
  }
  .side__menu.is-hidden {
    opacity: 0;
    pointer-events: none;
  }
  .is-loaded .side__menu--expand .side__menu-item {
    height: 54px;
    border-color: rgba(0, 0, 0, 0.15);
  }
  .is-loaded .side__menu--expand.contrast .side__menu-item {
    border-color: rgba(255, 255, 255, 0.15);
  }
  .is-loaded .side__menu--expand .side__menu-link {
    line-height: 52px;
    width: 180px;
    pointer-events: auto;
    color: inherit;
  }
  .side__menu-item {
    border: 0 solid transparent;
    border-top-width: 1px;
    height: 32px;
    -webkit-transition: 0.25s;
    transition: 0.25s;
  }
  .side__menu-item:last-child {
    border-bottom-width: 1px;
  }
  .side__menu-link {
    padding-left: 3.875rem;
    text-align: left;
    line-height: 30px;
    position: relative;
    font-size: 16px;
    display: block;
    opacity: 0;
    -webkit-transform: translateX(-1.25rem);
    -ms-transform: translateX(-1.25rem);
    transform: translateX(-1.25rem);
    color: transparent;
    -webkit-transition: 0.25s;
    transition: 0.25s;
    -webkit-transition-property: opacity, line-height, color, -webkit-transform;
    transition-property: opacity, line-height, color, -webkit-transform;
    transition-property: opacity, line-height, color, transform;
    transition-property: opacity, line-height, color, transform, -webkit-transform;
    white-space: nowrap;
    pointer-events: none;
  }
  .page--index .side__menu-link {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  .side__menu-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    height: 1.2px;
    width: 3.125rem;
    -webkit-transform: scaleX(0.5);
    -ms-transform: scaleX(0.5);
    transform: scaleX(0.5);
    -webkit-transform-origin: 100% 50%;
    -ms-transform-origin: 100% 50%;
    transform-origin: 100% 50%;
    background: #35373b;
    -webkit-transition: 0.25s;
    transition: 0.25s;
    will-change: transform;
  }
  .contrast .side__menu-link::before {
    background: #fff;
  }
  .is-loaded .side__menu-link {
    opacity: 0.6;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  .is-loaded .side__menu-link.is-active,
  .is-loaded .side__menu-link:hover {
    opacity: 1;
    color: inherit;
  }
  .is-loaded .side__menu-link.is-active::before,
  .is-loaded .side__menu-link:hover::before {
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
  }
.side__menu{ position: fixed;
  }
@media (min-width: 1460px) {
  .page--index .side__menu,
  .page--index .side__fb,
  .page--index .side__copyright {
    position: fixed;
  }
  
  .side__fb {
    position: absolute;
    left: 3.875rem;
    bottom: 2.75rem;
    z-index: 3;
    font-family: 'Bebas', 'Helvetica Neue', 'Segoe UI', SimSun, sans-serif;
    text-transform: uppercase;
    font-size: 21px;
    display: inline-block;
    line-height: 1.2;
    margin-bottom: -0.25rem;
    -webkit-transition: 0.25s;
    transition: 0.25s;
    -webkit-transition-property: color, opacity;
    transition-property: color, opacity;
  }
  .side__fb.is-hidden {
    opacity: 0;
    pointer-events: none;
  }
  .side__copyright {
    position: absolute;
    right: 0;
    bottom: 2.75rem;
    z-index: 3;
    font-size: 0.85em;
    -webkit-transform: translateX(100%) rotate(-90deg);
    -ms-transform: translateX(100%) rotate(-90deg);
    transform: translateX(100%) rotate(-90deg);
    -webkit-transform-origin: 0 100%;
    -ms-transform-origin: 0 100%;
    transform-origin: 0 100%;
    margin-right: 3.625rem;
    opacity: 0.3;
    -webkit-transition: 0.25s;
    transition: 0.25s;
    -webkit-transition-property: color, opacity;
    transition-property: color, opacity;
  }
  .side__copyright.is-hidden {
    opacity: 0;
    pointer-events: none;
  }
  .side__copyright-only {
    margin-left: 2.25rem;
  }
  .side__copyright-only.is-hidden {
    color: transparent;
    pointer-events: none;
  }
  .directions__stats-wind-caption {
    margin-right: -25%;
  }
  .directions__stats-wind-caption::before {
    right: 100%;
    top: 0.7em;
  }
}
@media (min-width: 1800px) {
  .is-loaded .side__menu--expand .side__menu-item {
    height: 64px;
  }
  .is-loaded .side__menu--expand .side__menu-link {
    line-height: 62px;
    width: 290px;
  }
  .index__news-wrap-half .index__news-title {
    font-size: 20px;
  }
  .index__news-grid {
    margin-top: -2.5rem;
    margin-left: -2.5rem;
  }
  .index__news-cell {
    padding-left: 2.5rem;
  }
  .index__news-item {
    margin-top: 2.5rem;
  }
}

@media (min-width: 1198px) and (max-width: 1367px){
.index__news-title{font-size:16px !important;}
.index__news-title {
    margin: 1rem 0 0.8rem;
}
  h1,
  .h1 {
    font-size: 28px;
  }
  h2, .h2 {
    font-size: 22px;

}
.index__production{padding: 5rem 0 2rem;}
.product_section{padding-top: 80px;}
}
@media (min-height: 800px) and (min-width: 1220px) {
  .index__news-slide {
    padding: 10.5rem 0 6.75rem;
  }
}
@media (min-height: 800px) {
  .index__intro-container {
    /*min-height: 27rem;*/
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .index__partners-layer {
    padding: 2rem 4rem;
  }
  .index__partners-link {
    margin-top: 1rem;
  }
  .index__partners-text {
    margin-bottom: 4rem;
  }
  .index__contact-umatex {
    margin-bottom: 4rem;
    margin-top: 1.5rem;
  }
}
.awwwards {
  position: absolute;
  top: 3rem;
  right: 0;
  width: 90px;
  height: 135px;
  background: url(../images/awwwards_honorable_white_right.png) no-repeat;
  background-size: 90px 135px;
  font-size: 0;
  z-index: 1;
}
@media (max-width: 452px) {
  .awwwards {
    background-size: 60px 90px;
    width: 60px;
    height: 90px;
    top: 8rem;
  }
}
.forum__intro:before {
  background: url("../images/bg-forum.jpg") no-repeat 25%;
  background-size: cover;
  z-index: -2;
}
.cluster__margin-top {
  margin-top: 2.75rem;
}
.cluster__background-img {
  background-size: contain;
  background-position: right center;
  background-repeat: no-repeat;
  background-image: url('../images/cluster-map.png');
}
.cluster-img-map {
  position: absolute;
  right: 0;
  top: 0;
  padding: 0;
  height: 100%;
}
.cluster-img-map > img {
  height: 150%;
  display: inline-block;
  max-width: none;
  margin-top: -380px;
  margin-left: -50px;
}
.cluster--section {
  position: relative;
}
.section-cluster {
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 140px;
}
.cluster--contact_text_style {
  text-align: right;
}
.cluster__card-cell {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.cluster__card {
  padding-bottom: 6.75rem;
}
.cluster__intro::before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: no-repeat 50% 50%;
  background-size: cover;
  background-image: url('../images/cluster_intro.png');
  z-index: -2;
}
.cluster__img-before {
  position: relative;
}
.cluster__img-before::before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: no-repeat 50% 50%;
  background-size: cover;
  z-index: -2;
}
.text-contrast {
  color: #ffffff;
}
.card__img-1::before {
  background-image: url('../images/cluster-col-1.png');
}
.card__img-2::before {
  background-image: url('../images/cluster-col-2.png');
}
.card__img-3::before {
  background-image: url('../images/cluster-col-3.png');
}
.card__img-4::before {
  background-image: url('../images/cluster-col-4.jpg');
}
.card__img-5::before {
  background-image: url('../images/cluster-col-6.jpg');
}
.card__img-6::before {
  background-image: url('../images/cluster-col-5.jpg');
}
.background-none {
  background: none;
}
.is-active .cluster__img-before::before {
  display: none;
}
.is-active .text-contrast {
  color: #35373b;
}
.section--dark_blue {
  background-color: #0062a6;
}
.cluster__card-cell.is-active .card {
  background: #f8fafb;
}
.card__handle.uk-opacity {
  border-left: 1px solid rgba(255, 255, 255, 0.6);
}
.cluster--contact_text_style_footer {
  font-size: 1rem;
  color: #fff;
}
.f-margin--cluster {
  margin-top: 35px;
}
.uk-opacity > .card__toggle-icon::before,
.uk-opacity > .card__toggle-icon::after {
  opacity: 0.6;
  background: #aeb4dc;
}
@media (max-width: 1000px) {
  .cluster-img-map > img {
    height: 110%;
    margin-left: -30px;
    margin-top: -135px;
  }
}
@media (max-width: 1200px) {
  .cluster__background-img {
    background-image: none;
  }
  .cluster--amount_text .u-text-muted,
  .cluster--amount_text .digit__caption {
    font-size: 14px;
  }
  .cluster--amount_text .digit__number.digit__number--neon {
    font-size: 4.6rem;
  }
}
@media (max-width: 1460px) {
  .section-cluster {
    margin-bottom: 0;
  }
}
@media (max-width: 959px) {
  .cluster-img-map {
    position: relative;
  }
  .cluster-img-map > img {
    margin-top: -25rem;
  }
  .cluster--amount_text .u-text-muted,
  .cluster--amount_text .digit__caption {
    font-size: 18px;
  }
  .cluster--amount_text .digit__number.digit__number--neon {
    font-size: 5.625rem;
  }
}
@media (max-width: 767px) {
  .cluster__card-cell {
    min-height: 210px;
  }
  .cluster--contact_text_style {
    text-align: left;
  }
}
@media (max-width: 669px) {
  .cluster-img-map > img {
    width: 300%;
  }
  .cluster--contact_text_style {
    text-align: left;
  }
}
@media (max-width: 599px) {
  .cluster--amount_text .u-text-muted,
  .cluster--amount_text .digit__caption {
    font-size: 16px;
  }
  .cluster--amount_text .digit__number.digit__number--neon {
    font-size: 4.625rem;
  }
}
@media (max-width: 480px) {
  .cluster-img-map > img {
    width: 400%;
    margin-left: -4rem !important;
  }
}
.forum-info--wrapper {
  margin-top: 60px;
}
@media (min-width: 768px) {
  .forum-info--wrapper {
    margin-top: 50px;
  }
}
.forum-item > p {
  margin-bottom: 30px;
}
.forum-info--item__location {
  margin-left: 40px;
  background: url('../images/forum-loc.png') no-repeat left center;
  padding-left: 20px;
}
.forum--btn {
  margin-top: 90px;
  outline: none;
}
@media (min-width: 768px) {
  .forum--btn {
    margin-top: 80px;
  }
}
.form__cell.margin-top-remove.uk-grid-margin {
  margin-top: 0;
}
.partners-ul-links {
  margin-top: 34px;
}
.partners-ul-links .link {
  line-height: 2;
}
.photo-gallery-grid {
  cursor: pointer;
  margin-top: 82px;
}
@media (max-width: 480px) {
  .photo-gallery-grid {
    margin-top: 2.2rem;
  }
}
.photo-gallery-grid__item {
  height: 33.33333333vw;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.photo-gallery-grid__item::before {
  -webkit-transition: background 0.3s ease-out;
  transition: background 0.3s ease-out;
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
@media (min-width: 960px) {
  .photo-gallery-grid__item {
    height: 340px;
  }
}
.photo-gallery-grid__img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
}
.forum-ajax-more {
  margin: 0 auto;
  display: block;
  margin-top: 70px;
}
.photo-gallery-grid__item:hover::before {
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 3;
}
.photo-gallery-grid__item:hover img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.index__intro-video-gif {
  background: url(/images/forum.gif) center;
  background-size: cover;
  -o-object-fit: contain;
  object-fit: contain;
  position: relative;
}
.photo-gallery__container {
  max-width: 1024px;
  padding: 0;
  position: relative;
}
@media (min-width: 960px) {
  .photo-gallery__container {
    padding: 66px;
  }
}
.photo-slider .slick-arrow {
  width: 66px;
  height: 66px;
  background: #0077ca;
  top: 50%;
  bottom: auto;
  margin-top: -33px;
  opacity: 0;
  visibility: hidden;
}
.photo-slider .slick-arrow::before {
  content: '';
  display: block;
  width: 12px;
  height: 12px;
  position: absolute;
  top: calc(50% - 6px);
  left: calc(50% - 6px);
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  border: 2px solid #ffffff;
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
}
@media (min-width: 768px) {
  .photo-slider .slick-arrow {
    opacity: 1;
    visibility: visible;
  }
}
.download-prog {
  padding: 5.25rem 0;
}
.download-prog--wlink {
  color: #9d9d9d;
  padding-left: 54px;
  background: url('../images/dowload-pdf.png') no-repeat 12px 12px;
}
.download-prog--wlink .link--underline {
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}
.download-prog--wlink div {
  margin-top: 5px;
}
.download-prog--wlink .link--underline:hover {
  border-bottom: 1px solid #fff;
}
.download-prog-structure {
  color: #c1c6e7;
  padding-left: 54px;
  background: url('../images/dowload-pdf.png') no-repeat 12px 12px;
}
.download-prog-structure .link--underline {
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}
.download-prog-structure div {
  margin-top: 5px;
}
.download-prog-structure .link--underline:hover {
  border-bottom: 1px solid #fff;
}
.download-prog-structure--rotate {
  background: url(../images/dowload-pdf-rotate.png) no-repeat 12px center;
  margin-top: 30px;
}
.photo-slider .slick-next::before {
  border-width: 2px 2px 0 0;
  left: calc(50% - 8px);
}
@media (min-width: 960px) {
  .photo-slider .slick-next {
    right: -66px;
  }
}
.photo-slider .slick-prev::before {
  border-width: 0 0 2px 2px;
  left: calc(50% - 4px);
}
@media (min-width: 960px) {
  .photo-slider .slick-prev {
    left: -66px;
  }
}
@media (min-width: 480px) {
  .forum--btn-second {
    margin-left: 20px;
  }
}
@media (min-width: 768px) {
  .forum--btn-second {
    margin-left: 40px;
  }
}
.double-h4 {
  margin-bottom: 1.5rem;
}
.presentations {
  color: #fff;
}
.presentations .container {
  position: relative;
}
@media (min-width: 768px) {
  .presentations h2 {
    font-size: 2.2rem;
  }
}
.presentations__slider {
  border-top: 2px solid #fff;
}
.presentation {
  outline: none;
  padding-top: 3.125rem;
  padding-bottom: 1.125rem;
}
.presentation__arrow {
  padding: 1.563rem 1.8125rem;
  background: #3988be;
}
.presentation__arrow.slick-arrow {
  margin-top: 0;
  position: static;
  width: auto;
  height: auto;
}
.presentation__arrow:nth-child(1) {
  margin-right: 10px;
}
.presentation__arrows {
  position: absolute;
  z-index: 1;
  top: 103%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media (min-width: 768px) {
  .presentation__arrows {
    top: 84%;
  }
}
.presentation__custom-pager {
  font-weight: 600;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  color: #6ba6ce;
}
.presentation__custom-pager hr {
  width: 40px;
  margin: 0 10px;
}
.presentation__custom-pager span {
  color: #fff;
}
.presentation__item:hover .link--underline {
  border-bottom-color: #3b3b3b;
}
.presentation--preview-pdf {
  position: relative;
}
.presentation--preview-pdf img {
  width: 100%;
  display: block;
}
.presentation--preview-pdf:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.3);
  background-image: url('../images/dowload-pdf.png');
  background-position: center;
  background-repeat: no-repeat;
}
.presentation--link .link--underline {
  font-size: 1.125rem;
  line-height: 2.18rem;
  color: #fff;
  border-bottom-color: transparent;
}
.presentation--link:hover .link--underline {
  border-bottom-color: #fff;
}
.presentation--link .presentation--desc {
  margin-top: 5px;
  color: #9d9d9d;
  font-size: 1rem;
}
.color-white {
  color: #FFFFFF !important;
}
.u-margin-top-small-screen {
  margin-top: 20px;
}
@media (min-width: 480px) {
  .u-margin-top-small-screen {
    margin-top: 0;
  }
}
.intro__lead--career {
  max-width: 960px;
}
.section--career-color {
  color: #3b3b3b;
}
.list--mark--2col {
  -webkit-columns: 2;
  -moz-columns: 2;
  columns: 2;
  margin-top: 30px;
}
@media (max-width: 768px) {
  .list--mark--2col {
    -webkit-columns: 1;
    -moz-columns: 1;
    columns: 1;
  }
}
.list--mark--2col li + li {
  margin-top: 1.875rem;
}
.list--mark--1col {
  -webkit-columns: 1;
  -moz-columns: 1;
  columns: 1;
}
.list--mark--1col li + li {
  margin-top: 1.875rem;
}
.success-stories {
  background-color: #f4f3f8;
}
.success-stories__title {
  margin-bottom: 60px;
  color: #3b3b3b;
}
.success-stories__slider {
  position: relative;
}
@media (min-width: 1199px) {
  .success-stories__slider {
    margin-left: -15px;
    margin-right: -15px;
  }
}
.success-stories__slider-item--wrapper {
  outline: none;
  margin-right: 32px;
  margin-left: 16px;
  margin-right: 16px;
}
@media (max-width: 669px) {
  .success-stories__slider-item--wrapper {
    margin-left: auto;
    margin-right: auto;
  }
}
.success-stories__slider-item {
  outline: none;
  min-height: 408px;
  background-color: #fff;
  padding: 70px 37px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  height: 100%;
}
.success-stories__slider-item--title {
  color: 3 b3b3b;
}
.success-stories__slider-item--text {
  color: #000;
}
.success-stories__slider-item--worck-post {
  color: #878787;
}
.success-stories__button {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: transparent;
  /* For some Androids */
  position: relative;
  height: 66px;
  width: 66px;
  -webkit-transition: background-color 0.25s;
  transition: background-color 0.25s;
}
@media (min-width: 669px) {
  .success-stories__button {
    background-color: #222226;
  }
}
@media (min-width: 669px) {
  .success-stories__button:hover {
    background: rgba(48, 48, 54, 0.95);
  }
}
.success-stories__button.slick-arrow {
  opacity: 1;
  z-index: 0;
  bottom: 0;
  margin-top: 0;
}
@media (min-width: 768px) {
  .success-stories__button.slick-arrow {
    top: 0;
    bottom: auto;
    margin-top: 0;
  }
}
.success-stories__button-icon {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}
.success-stories__button-icon::before,
.success-stories__button-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  height: 1.4px;
  width: 12px;
  background: #fff;
  -webkit-transition: 0.25s;
  transition: 0.25s;
}
@media (max-width: 669px) {
  .success-stories__button-icon::before,
  .success-stories__button-icon::after {
    background-color: #000;
  }
}
.success-stories__button-icon::before {
  right: 50%;
  -webkit-transform-origin: 100% 50%;
  -ms-transform-origin: 100% 50%;
  transform-origin: 100% 50%;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  margin-top: 4px;
}
.success-stories__button-icon::after {
  left: 50%;
  -webkit-transform-origin: 0 50%;
  -ms-transform-origin: 0 50%;
  transform-origin: 0 50%;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  margin-top: 4px;
}
.success-stories__button-icon:focus {
  outline: none;
}
.success-stories__button--prev {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  margin-right: 10px;
}
.success-stories__button--next {
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
.success-stories__button--wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  position: absolute;
  top: -120px;
  right: 0;
}
@media (min-width: 1199px) {
  .success-stories__button--wrapper {
    right: 15px;
  }
}
@media (max-width: 669px) {
  .success-stories__button--wrapper {
    left: 50%;
    right: auto;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: 2px;
    top: auto;
    opacity: 0.3;
  }
}
.section__corp-culture {
  color: #3b3b3b;
}
.section__corp-culture--img-box img {
  max-width: 100%;
}
.section__corp-culture-inner-title {
  font-weight: 500;
}
@media (max-width: 960px) {
  .section__corp-culture-inner-title {
    padding-bottom: 1rem;
  }
}
.value-group {
  padding-left: 20px;
  padding-right: 20px;
}
@media (min-width: 768px) {
  .value-group {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media (min-width: 480px) {
  .value-group {
    padding-left: 25px;
    padding-right: 25px;
  }
}
.value-group__slider-wrapper {
  max-width: 1410px;
}
.value-group__slider-item--text-w {
  font-weight: 500;
  display: block;
}
.slider-controll__circle-num {
  font-weight: 500;
  display: block;
}
.value-group__slider-controlls {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 70px;
  max-height: 466px;
  max-width: 1410px;
  margin-left: auto;
  margin-right: auto;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: transparent;
  /* For some Androids */
  width: calc(100vw - 250px);
}
@media (min-width: 960px) {
  .value-group__slider-controlls {
    width: calc(100vw - 440px);
  }
}
@media (max-width: 600px) {
  .value-group__slider-controlls {
    display: none;
  }
}
.slider-controlls__item {
  width: 351px;
  max-height: 466px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.slider-controlls__item:hover .slider-controll__circle {
  border-color: #ffffff;
}
.slider-controlls__item:hover .slider-controll__circle-center:after {
  background-color: #ffffff;
}
.slider-controll__circle {
  max-width: 350px;
  max-height: 350px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  position: relative;
  box-sizing: border-box;
  width: calc(100vw / 5 - 35px);
  height: calc(100vw / 5 - 35px);
  cursor: pointer;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}
.slider-controlls__item:nth-of-type(even) {
  margin: 0 -85px;
}
.slider-controlls__item:nth-of-type(even) .slider-controll__circle {
  margin-bottom: 80px;
}
@media (max-width: 960px) {
  .slider-controlls__item:nth-of-type(even) .slider-controll__circle {
    margin-bottom: 30px;
  }
}
.slider-controlls__item:nth-of-type(even) .slider-controll__circle-center:after {
  top: 13px;
}
.slider-controlls__item:nth-of-type(odd) .slider-controll__circle {
  margin-top: 80px;
}
@media (max-width: 960px) {
  .slider-controlls__item:nth-of-type(odd) .slider-controll__circle {
    margin-top: 30px;
  }
}
.slider-controlls__item:nth-of-type(odd) .slider-controll__circle-center:after {
  bottom: 13px;
}
.slider-controll__circle-center {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.slider-controll__circle-center::before {
  content: "";
  display: block;
  background-color: #fff;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: .15s;
  transition: .15s;
}
.slider-controll__circle-center:after {
  content: "";
  display: block;
  background-color: rgba(255, 255, 255, 0.2);
  width: 1px;
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%);
  -ms-transform: translate(-50%);
  transform: translate(-50%);
  max-height: 210px;
  height: calc(100vw / 5 - 90px);
  -webkit-transition: background-color 0.5s;
  transition: background-color 0.5s;
}
@media (max-width: 960px) {
  .slider-controll__circle-center:after {
    height: calc(100vw / 5 - 70px);
  }
}
.value-group__slider--items-wrap {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.value-group__slider--items-wrap .slick-dots {
  position: relative;
  bottom: -16px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.value-group__slider--items-wrap .slick-dots button::before,
.value-group__slider--items-wrap .slick-dots button::after {
  border-radius: 50%;
}
.value-group__slider--items-wrap .slick-dots .slick-active button::after {
  border-radius: 50%;
  -webkit-transform: scale(1.3);
  -ms-transform: scale(1.3);
  transform: scale(1.3);
}
.value-group__slider-item {
  outline: none;
  cursor: pointer;
}
.slider-controlls__item--active .slider-controll__circle {
  border-color: #ffffff;
}
.slider-controlls__item--active .slider-controll__circle-center:after {
  background-color: #ffffff;
}
.slider-controlls__item--active .slider-controll__circle-center::before {
  width: 17px;
  height: 17px;
}
.career-form .form__label {
  overflow-x: hidden;
  text-align: left;
  white-space: nowrap;
  text-overflow: ellipsis;
  width: 100%;
}
.vacancy-career .vacancy-career__text {
  line-height: 2.188rem;
}
/*小屏导航*/
.xs-top{display: none;z-index: 9999;}
.mobile-inner-nav a{ -webkit-animation-duration: 0.8s; animation-duration: 0.8s; -webkit-animation-fill-mode: both; animation-fill-mode: both; -webkit-animation-name: bounceInRight; animation-name: bounceInRight;}  
.mobile{width: 100%; z-index: 9999; position: fixed; top: 0; left: 0; height: 50px; background: #fff;}
.mobile-inner{ margin-right: auto;margin-left: auto;background-color: #fafafa; position: relative;}
.mobile-inner img{ width: 100%;margin-bottom: 30px;}
.mobile-inner p{ color: #676767; line-height: 25px; font-size: 16px; padding-bottom: 30px; padding-right: 30px;  padding-left: 30px; margin:0px;}
.mobile-inner-header{width: 100%; height: 50px; position: fixed; top: 0; left: 0;background: #f3f2f2;}
.mobile-inner{}
.mobile-inner-header-icon{color: #ffffff; height: 50px; font-size:25px; text-align: center; float:right; width: 50px; position: relative; -webkit-transition: background 0.5s; -moz-transition: background 0.5s; -o-transition: background 0.5s;transition: background 0.5s;}
.mobile-inner-header-icon:hover{background-color: rgba(255,255,255,0.2);cursor: pointer;}
.mobile-inner-header-icon span{position: absolute; left: calc((100% - 15px) / 2); top: calc((100% - 5px) / 2); width: 25px; height: 1px; background-color: rgba(0,0,0,1);}
.mobile-inner-header-icon span:nth-child(1){transform: translateY(4px) rotate(0deg); }
.mobile-inner-header-icon span:nth-child(2){transform: translateY(-4px) rotate(0deg);}
.mobile-inner-header-icon-click span:nth-child(1){animation-duration: 0.5s; animation-fill-mode: both; animation-name: clickfirst;}   
.mobile-inner-header-icon-click span:nth-child(2){ animation-duration: 0.5s; animation-fill-mode: both; animation-name: clicksecond;}
.mobile-inner-header-icon-out span:nth-child(1){ animation-duration: 0.5s; animation-fill-mode: both; animation-name: outfirst; }   
.mobile-inner-header-icon-out span:nth-child(2){ animation-duration: 0.5s;animation-fill-mode: both; animation-name: outsecond; }
.mobile-inner-nav{ background-color: rgba(0,0,0,0.8); width: 100%; position: absolute; top: 50px;left: 0px; padding-top: 30px; padding-bottom: 30px;display: none;}
.mobile-inner-nav a{ display: inline-block; line-height: 50px; text-decoration: none; width: 85%; margin-left: 5%; color: #FFFFFF; border-bottom: solid 1px rgba(255,255,255,0.3); -webkit-transition: all 0.5s; -moz-transition: all 0.5s; -o-transition: all 0.5s; transition: all 0.5s; font-weight:300;}
.mobile-inner-nav a:hover{ color: rgba(255,255,255,0.4); border-bottom: solid 1px rgba(255,255,255,0.2);}

@media (min-width: 1220px) {
  .managment--modern {
    padding-right: calc(100% / 2.8);
    width: 100%;
  }
}
.managment--modern h2 {
  margin-bottom: 1rem;
}
.managment--modern-text {
  line-height: 3rem;
}
.managment--slick {
  margin-top: 3.75rem;
}
.managment {
  position: relative;
}
.managment .container--managment {
  outline: none;
  padding-left: 20px;
  padding-right: 20px;
}
@media (min-width: 960px) {
  .managment .container--managment {
    width: 1020px;
    margin: 0 100px;
    padding: 0;
  }
}
@media (min-width: 1220px) {
  .managment .container--managment {
    margin: 0 auto;
  }
}
.managment .slick-slide img {
  display: inline;
}
@media (min-width: 768px) {
  .managment .managment__text-block {
    padding-right: 20px;
  }
}
@media (min-width: 960px) {
  .managment .managment__text-block {
    padding: 50px;
  }
}
@media (min-width: 1220px) {
  .managment .managment__text-block {
    margin-bottom: 5rem;
    margin-right: 7.5rem;
    background: #f6f6f8;
  }
}
@media (min-width: 960px) {
  .managment {
    margin: 7rem auto 0;
  }
}
.managment__desc {
  color: #878787;
}
.managment__link {
  color: #3f51b5;
}
.managment--not-slider {
  margin: 7rem 0;
}
.managment--not-slider .container--managment {
  max-width: 1020px;
  width: auto;
}
.managment-modern {
  margin: 0;
}
.managment-modern .slick-dots {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  bottom: 0;
  position: static;
}
.managment-modern .slick-next {
  background: url(../images/icon-arrow-right-black.svg) no-repeat 50% 50%;
}
@media (min-width: 1600px) {
  .managment-modern .slick-next {
    right: 10%;
  }
}
.managment-modern .slick-disabled {
  opacity: .2;
}
.managment-modern .slick-prev {
  background: url(../images/icon-arrow-left-black.svg) no-repeat 50% 50%;
}
@media (min-width: 1600px) {
  .managment-modern .slick-prev {
    left: 10%;
  }
}
.managment-modern .count-slide {
  font-family: 'Bebas', 'Helvetica Neue', 'Segoe UI', SimSun, sans-serif;
  color: #aeb4dc;
  font-size: 25px;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 8.75rem;
  visibility: hidden;
}
@media (min-width: 1220px) {
  .managment-modern .count-slide {
    visibility: visible;
  }
}
.managment-modern .count-slide__num {
  position: relative;
  display: inline-block;
  margin-left: 70px;
  padding-right: 50px;
  padding-left: 50px;
}
.managment-modern .count-slide__num::after,
.managment-modern .count-slide__num::before {
  content: '';
  position: absolute;
  top: 50%;
  height: 1px;
  width: 30px;
  background: #aeb4dc;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.managment-modern .count-slide__num::after {
  left: 0;
}
.managment-modern .count-slide__num::before {
  right: 0;
}
.managment--reserse-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: column-reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}
@media (min-width: 768px) {
  .managment--reserse-column {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}
@media (min-width: 1220px) {
  .managment--reserse-column {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    height: 100%;
  }
}
.outside {
  margin-bottom: 1.25rem;
}
@media (min-width: 1220px) {
  .outside {
    position: absolute;
    text-align: right;
    right: 0;
    bottom: 0;
    margin-bottom: 0;
  }
}
.u-text-2xlarge {
  font-size: 2.4rem;
}
.u-margin-bottom-2xlarge {
  margin-bottom: 2rem;
}
@media (min-width: 1220px) {
  .u-margin-bottom-2xlarge {
    margin-bottom: 7rem;
  }
}
.u-margin-top-2xlarge {
  margin-top: 2rem;
}
@media (min-width: 1220px) {
  .u-margin-top-2xlarge {
    margin-top: 4rem;
  }
}
.contacts-inner-row > div {
  padding-left: 3rem;
  margin-bottom: 2rem;
}
@media (min-width: 960px) {
  .contacts-inner-row > div {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 0;
  }
  .contacts-inner-row > div:last-child {
    border-right: 0;
  }
}
.container-subcontacts {
  padding-left: 3rem;
  padding-right: 3rem;
}
/*new press-center*/
@media (min-width: 1700px) {
  .modern-news {
    margin: 0 -8.125rem 0 calc(-11.875rem);
  }
}
.modern-news-item__img {
  position: relative;
}
.modern-news-item__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}
.modern-news-item__img::before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0);
  -webkit-transition: background 0.3s ease-out;
  transition: background 0.3s ease-out;
}
.modern-news-item {
  margin-bottom: 2.5rem;
}
.modern-news-item__bottom {
  margin-top: 3.12rem;
}
@media (min-width: 960px) {
  .modern-news-item__bottom {
    padding-left: 3.75rem;
  }
}
.modern-news-item__date {
  margin-bottom: 1.25em;
  position: relative;
  font-size: 16px;
}
.modern-news-item__date::after {
  content: '';
  position: absolute;
  width: 3.75rem;
  height: 2px;
  background: #3b3b3b;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: calc((3.75rem + 30px) * -1);
  visibility: hidden;
}
@media (min-width: 960px) {
  .modern-news-item__date::after {
    visibility: visible;
  }
}
.modern-news--btn {
  text-align: center;
}
.section--light-gray {
  background: #f6f6f8;
}
.modern-events-item {
  color: #fff;
  background-color: #0062a6;
  background-position: center;
  background-repeat: no-repeat;
  padding: 2.5rem;
  max-height: 300px;
  height: 31vh;
  position: relative;
  overflow: hidden;
  -webkit-transition: background-color 0.3s ease-out;
  transition: background-color 0.3s ease-out;
}
.modern-events-item:hover {
  background-color: #057fd4;
}
.modern-events-item--before::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  display: block;
  opacity: .6;
  background: #000;
  -webkit-transition: background 0.3s ease-out;
  transition: background 0.3s ease-out;
}
.modern-events-item--before:hover::before {
  background: #6d6d79;
}
.modern-events {
  margin-left: -1.25rem;
}
@media (min-width: 1220px) {
  .modern-events {
    margin-left: calc(-5rem);
    margin-right: -3.75rem;
  }
}
.modern-events > div {
  padding-left: 1.25rem;
  padding-bottom: 1.25rem;
}
.modern-events-item__title,
.modern-events-item__date {
  position: relative;
}
.modern-events-item__title {
  height: 60%;
  overflow: hidden;
  font-size: 20px;
}
.modern-events-item__bottom {
  margin-top: auto;
}
.modern-events-item__date {
  font-size: 1.56rem;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .modern-events-item__date {
    font-size: 1rem;
  }
}
.modern-events-item__date--relize {
  margin-top: auto;
  position: relative;
  font-size: 1.56rem;
}
@media (min-width: 768px) {
  .modern-events-item__date--relize {
    font-size: 1rem;
  }
}
.modern-events-item__location {
  position: relative;
  font-size: 1.56rem;
  padding-left: 20px;
  margin-left: auto;
}
@media (min-width: 768px) {
  .modern-events-item__location {
    font-size: 1rem;
  }
}
.modern-events--btn {
  padding-top: 40px;
}
.modern-events--offset-btn {
  margin: 3.75rem auto;
  padding-top: 0;
}
.section--new-press {
  margin-top: 15.6rem;
}

.mobile_section{display: none;position: relative;}
.mobile_section img{display: block;width: 100%;}
.mobile_container{position: absolute;top: 42%;}
.mobile_container h2{opacity: 1;color: #fff;}
.mobile_container p{opacity: 1;color: #fff;}
.mobile_container a{opacity: 1;color: #fff;}

@media (min-width: 1368px) and (max-width: 1441px){
	.footer__top{
		padding: 1.5rem 0;
	}
	.h1{font-size: 28px;}
	.foot-logo{padding-top: 5px;padding-bottom: 10px;}
	.foot1{padding-top: 20px;padding-bottom: 20px;}
	.foot-ewm{padding-top: 20px;padding-bottom: 20px;}
	.shouye_newimg{max-width: 80%;}
	.index__news-slide{padding: 8rem 0 2rem;}
	.footer__bottom{padding: 1.5rem 0;}
	.h2{font-size: 22px;}
}
@media (min-width: 1198px) and (max-width: 1367px){
	.footer__top{
		padding: 1.5rem 0;
	}
	.foot-logo{padding-top: 5px;padding-bottom: 10px;}
	.foot1{padding-top: 20px;padding-bottom: 20px;}
	.foot-ewm{padding-top: 20px;padding-bottom: 20px;}
	.shouye_newimg{max-width: 80%;}
	.index__news-slide{padding: 8rem 0 2rem;}
	.footer__bottom{padding: 1.5rem 0;}
}

@media (max-width: 479px) {
	/*.mobile_section{display: block;}
	.first_slider_section{display: none;}*/
	.awwwards{display: none;}
	
  .nav__page--visibled-on-mobile {
    display: none;
    font-size: 16px;
    padding-left: 0;
    text-align: center;
    line-height: 27px;
    margin-top: 15px;
  }
  .header_page_list .uk-width-medium-1-3{
  	width: 100%;
  }
  .nav__title-link{
  	font-size: 16px;
  }
  .nav__page--visibled-on-mobile ~ * {
    margin-top: .375rem;
  }
  .nav__page--visibled-on-mobile:last-child {
    margin-bottom: 25px;
  }
  .nav__page--visibled-on-mobile::before {
    display: none;
  }
  /*.header{display: none;}
  .xs-top{display: block;}*/
 .header__left{top: 0;width: 100%;}
 .header__menu-button{position: absolute;right: 0;top: 2px;}
 .intro__slide{padding-top: 50px;padding-bottom: 40px;}
 .h1{margin-bottom: 0.5rem;}
 .intro__lead{margin: 0 0 2rem;}
}

.index__production-type-title{
	margin-top: 1rem;
}

.sy-about1{
	padding-top: 10px;
	padding-bottom: 15px;
}
.parag {
  -webkit-box-flex: 0;
  -webkit-flex: 0 46%;
  -ms-flex: 0 46%;
  flex: 0 46%;
  margin-right: 4%;
}
.parag-wide {
  -webkit-box-flex: 0;
  -webkit-flex: 0 100%;
  -ms-flex: 0 100%;
  flex: 0 100%;
}
.parag-title {
  margin-top: 50px;
}
.parag-desc {
  font-size: 16px;
  opacity: 0.6;
  margin-top: 30px;
}
.parag-desc > ul > li {
  font-size: 16px;
}
.parag-spoiler {
  display: none;
  -webkit-transition: top 1s ease-out 0.5s;
  transition: top 1s ease-out 0.5s;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.parag-spoiler-title {
  margin-top: 70px;
  border-bottom: 1px solid #fff6;
  cursor: pointer;
}
.form_awards-label {
  -webkit-box-flex: 0;
  -webkit-flex: 0 50%;

  -ms-flex: 0 50%;
  flex: 0 50%;
  margin-top: 20px;
}
.file-input {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  cursor: pointer;
}
.input-clear-button {
  position: absolute;
  display: none;
  right: 0;
  top: 0;
  z-index: 400;
  height: 100%;
  width: 56px;
  background-color: #eef2f5;
}
.input-clear-button .button-cross::before,
.input-clear-button .button-cross::after {
  content: '';
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: absolute;
  width: 26px;
  height: 2px;
  left: 50%;
  top: 50%;
  margin-left: -13px;
  margin-top: -1px;
  background: #3350b9;
}
.input-clear-button .button-cross::before {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.input-clear-button .button-cross::after {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
@media (max-width: 479px){
	.intro__lead{font-size: 14px;}
	.button{width: 100px;height: 40px;line-height: 40px;padding:0; font-size: 16px;}
	.more1{width: 100px;height: 40px;line-height: 40px;font-size: 16px;}
	.sy-about2{padding-left: 0;}
	
	.product_section .h2{font-size: 12px !important;text-align: center;}
	.index__production-type-description{display: none;}
	.uk-grid-fr{margin-top: 10px;}
	.index__production-types.index__production-types{margin-top: 1rem;}
	.section--screen{
	padding: 2rem 0;
	}
	.three_products{
		padding: 1rem 0;
	}
	.index__production-type-img-square{
		width: 3rem;height: 3rem;margin: 0 auto;
	}
	
}






