

/* Start:/tpl/css/slick.css?16115517091776*/
/* 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;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}

/* End */


/* Start:/tpl/css/jquery.selectBoxIt.css?16115517097022*/
/*
 * jquery.selectBoxIt.css 3.8.1
 * Author: @gregfranko
 */

/*
  Common CSS Properties
  ---------------------
  These properties will be applied to any themes that you use
*/

/* SelectBoxIt container */
.selectboxit-container {
  position: relative;
  display: inline-block;
  vertical-align: top;
}

/* Styles that apply to all SelectBoxIt elements */
.selectboxit-container * {
  font: 14px Helvetica, Arial;
  /* Prevents text selection */
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: -moz-none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  outline: none;
  white-space: nowrap;
}

/* Button */
.selectboxit-container .selectboxit {
  width: 220px; /* Width of the dropdown button */
  cursor: pointer;
  margin: 0;
  padding: 0;
  border-radius: 6px;
  overflow: hidden;
  display: block;
  position: relative;
}

/* Height and Vertical Alignment of Text */
.selectboxit-container span, .selectboxit-container .selectboxit-options a {
  height: 30px; /* Height of the drop down */
  line-height: 30px; /* Vertically positions the drop down text */
  display: block;
}

/* Focus pseudo selector */
.selectboxit-container .selectboxit:focus {
  outline: 0;
}

/* Disabled Mouse Interaction */
.selectboxit.selectboxit-disabled, .selectboxit-options .selectboxit-disabled {
  opacity: 0.65;
  filter: alpha(opacity=65);
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  cursor: default;
}

/* Button Text */
.selectboxit-text {
  text-indent: 5px;
  overflow: hidden;
  text-overflow: ellipsis;
  float: left;
}

.selectboxit .selectboxit-option-icon-container {
  margin-left: 5px;
}

/* Options List */
.selectboxit-container .selectboxit-options {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  box-sizing: content-box\9;
  min-width: 100%;  /* Minimum Width of the dropdown list box options */
  margin: 0;
  padding: 0;
  list-style: none;
  position: absolute;
  overflow-x: hidden;
  overflow-y: auto;
  cursor: pointer;
  display: none;
  z-index: 9999999999999;
  border-radius: 6px;
  text-align: left;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}

/* Individual options */
 .selectboxit-option .selectboxit-option-anchor{
  padding: 0 2px;
}

/* Individual Option Hover Action */
.selectboxit-option .selectboxit-option-anchor:hover {
  text-decoration: none;
}

/* Individual Option Optgroup Header */
.selectboxit-option, .selectboxit-optgroup-header {
  text-indent: 5px; /* Horizontal Positioning of the select box option text */
  margin: 0;
  list-style-type: none;
}

/* The first Drop Down option */
.selectboxit-option-first {
  border-top-right-radius: 6px;
  border-top-left-radius: 6px;
}

/* The first Drop Down option optgroup */
.selectboxit-optgroup-header + .selectboxit-option-first {
  border-top-right-radius: 0px;
  border-top-left-radius: 0px;
}

/* The last Drop Down option */
.selectboxit-option-last {
  border-bottom-right-radius: 6px;
  border-bottom-left-radius: 6px;
}

/* Drop Down optgroup headers */
.selectboxit-optgroup-header {
  font-weight: bold;
}

/* Drop Down optgroup header hover psuedo class */
.selectboxit-optgroup-header:hover {
  cursor: default;
}

/* Drop Down down arrow container */
.selectboxit-arrow-container {
  /* Positions the down arrow */
  width: 30px;
  position: absolute;
  right: 0;
}

/* Drop Down down arrow */
.selectboxit .selectboxit-arrow-container .selectboxit-arrow {
  /* Horizontally centers the down arrow */
  margin: 0 auto;
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
}

/* Drop Down down arrow for jQueryUI and jQuery Mobile */
.selectboxit .selectboxit-arrow-container .selectboxit-arrow.ui-icon {
  top: 30%;
}

/* Drop Down individual option icon positioning */
.selectboxit-option-icon-container {
  float: left;
}

.selectboxit-container .selectboxit-option-icon {
  margin: 0;
  padding: 0;
  vertical-align: middle;
}

/* Drop Down individual option icon positioning */
.selectboxit-option-icon-url {
  width: 18px;
  background-size: 18px 18px;
  background-repeat: no-repeat;
  height: 100%;
  background-position: center;
  float: left;
}

.selectboxit-rendering {
  display: inline-block !important;
  *display: inline !important;
  zoom: 1 !important;
  visibility: visible !important;
  position: absolute !important;
  top: -9999px !important;
  left: -9999px !important;
}

/* jQueryUI and jQuery Mobile compatability fix - Feel free to remove this style if you are not using jQuery Mobile */
.jqueryui .ui-icon {
  background-color: inherit;
}

/* Another jQueryUI and jQuery Mobile compatability fix - Feel free to remove this style if you are not using jQuery Mobile */
.jqueryui .ui-icon-triangle-1-s {
  background-position: -64px -16px;
}

/*
  Default Theme
  -------------
  Note: Feel free to remove all of the CSS underneath this line if you are not using the default theme
*/
.selectboxit-btn {
  background-color: #f5f5f5;
  background-image: -moz-linear-gradient(top, #ffffff, #e6e6e6);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6));
  background-image: -webkit-linear-gradient(top, #ffffff, #e6e6e6);
  background-image: -o-linear-gradient(top, #ffffff, #e6e6e6);
  background-image: linear-gradient(to bottom, #ffffff, #e6e6e6);
  background-repeat: repeat-x;
  border: 1px solid #cccccc;
  border-color: #e6e6e6 #e6e6e6 #bfbfbf;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  border-bottom-color: #b3b3b3;
}

.selectboxit-btn.selectboxit-enabled:hover,
.selectboxit-btn.selectboxit-enabled:focus,
.selectboxit-btn.selectboxit-enabled:active {
  color: #333333;
  background-color: #e6e6e6;
}

.selectboxit-btn.selectboxit-enabled:hover,
.selectboxit-btn.selectboxit-enabled:focus {
  color: #333333;
  text-decoration: none;
  background-position: 0 -15px;
}

.selectboxit-default-arrow {
  width: 0;
  height: 0;
  border-top: 4px solid #000000;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}

.selectboxit-list {
  background-color: #ffffff;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.selectboxit-list .selectboxit-option-anchor {
  color: #333333;
}

.selectboxit-list > .selectboxit-focus > .selectboxit-option-anchor {
  color: #ffffff;
  background-color: #0081c2;
  background-image: -moz-linear-gradient(top, #0088cc, #0077b3);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0077b3));
  background-image: -webkit-linear-gradient(top, #0088cc, #0077b3);
  background-image: -o-linear-gradient(top, #0088cc, #0077b3);
  background-image: linear-gradient(to bottom, #0088cc, #0077b3);
  background-repeat: repeat-x;
}

.selectboxit-list > .selectboxit-disabled > .selectboxit-option-anchor {
  color: #999999;
}

/* End */


/* Start:/tpl/css/main.css?1647527421182548*/
@charset "UTF-8";
/*--------------- mixins ---------------*/
@font-face {
  font-family: 'icomoon';
  src: url("/tpl/css/../fonts/icons/icomoon.eot?sntxmr");
  src: url("/tpl/css/../fonts/icons/icomoon.eot?sntxmr#iefix") format("embedded-opentype"), url("/tpl/css/../fonts/icons/icomoon.ttf?sntxmr") format("truetype"), url("/tpl/css/../fonts/icons/icomoon.woff?sntxmr") format("woff"), url("/tpl/css/../fonts/icons/icomoon.svg?sntxmr#icomoon") format("svg");
  font-weight: normal;
  font-style: normal; }

@font-face {
	font-family: 'Gilroy Extra Bold';
	src: url('/tpl/css/../fonts/gilroy/Gilroy-ExtraBold.eot');
	src: url('/tpl/css/../fonts/gilroy/Gilroy-ExtraBold.eot?#iefix') format('embedded-opentype'),
	url('/tpl/css/../fonts/gilroy/Gilroy-ExtraBold.woff') format('woff'),
	url('/tpl/css/../fonts/gilroy/Gilroy-ExtraBold.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}

[class^="icon-"], [class*=" icon-"] {
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.icon-inst img{
	width: 18px;
}


.icon-pointer:before {
  content: "\e910";
  color: inherit; }

.icon-clock:before {
  content: "\e90f";
  color: inherit; }

.icon-file:before {
  /*content: "\e90d";*/
  color: inherit; }

.icon-quotes:before {
  content: "\e90e";
  color: inherit; }

.icon-chevron-left:before {
  content: "\e90b";
  color: inherit; }

.icon-chevron-right:before {
  content: "\e90c";
  color: inherit; }

.icon-close:before {
  content: "\e90a";
  color: inherit; }

.icon-search:before {
  content: "\e906";
  color: inherit; }

.icon-arrow:before {
  content: "\e900";
  color: inherit; }

.icon-facebook:before {
  content: "\e901";
  color: inherit; }

.icon-instagram:before {
  content: "\e902";
  color: inherit; }

.icon-lock:before {
  content: "\e903";
  color: inherit; }

.icon-mail:before {
  content: "\e904";
  color: inherit; }

.icon-phone:before {
  content: "\e905";
  color: inherit; }

.icon-twitter:before {
  content: "\e907";
  color: inherit; }

.icon-vk:before {
  content: "\e908";
  color: inherit; }

.icon-youtube:before {
  content: "\e909";
  color: inherit; }

.icon-telegram:before {
  content: "\ea95";
  color: inherit; }

/*--------------- widgets ---------------*/
.toggle-button {
  display: none;
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 0;
  width: 26px;
  height: 18px;
  font-size: 0;
  text-indent: -9999px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-radius: 0;
  border: none;
  -webkit-transition: background 0.3s;
  -o-transition: background 0.3s;
  transition: background 0.3s;
  background: transparent;
  z-index: 200;
  cursor: pointer; }

.toggle-button:focus {
  outline: none; }

.toggle-button span {
  display: block;
  position: absolute;
  top: 8px;
  left: 0;
  right: 0;
  height: 2px;
  background: #ffffff;
  border-radius: 1.5px; }

.toggle-button span::before,
.toggle-button span::after {
  position: absolute;
  display: block;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #ffffff;
  content: "";
  border-radius: 1.5px; }

.toggle-button span::before {
  top: -8px; }

.toggle-button span::after {
  bottom: -8px; }

.toggle-button-htx {
  background-color: transparent; }

.toggle-button-htx span {
  -webkit-transition: background 0 0.3s;
  -o-transition: background 0 0.3s;
  transition: background 0 0.3s; }

.toggle-button-htx span::before,
.toggle-button-htx span::after {
  -webkit-transition-duration: 0.3s, 0.3s;
  -o-transition-duration: 0.3s, 0.3s;
  transition-duration: 0.3s, 0.3s;
  -webkit-transition-delay: 0.3s, 0;
  -o-transition-delay: 0.3s, 0;
  transition-delay: 0.3s, 0; }

.toggle-button-htx span::before {
  -webkit-transition-property: top, -webkit-transform;
  transition-property: top, -webkit-transform;
  -o-transition-property: top, -o-transform;
  transition-property: top, transform;
  transition-property: top, transform, -webkit-transform, -o-transform; }

.toggle-button-htx span::after {
  -webkit-transition-property: bottom, -webkit-transform;
  transition-property: bottom, -webkit-transform;
  -o-transition-property: bottom, -o-transform;
  transition-property: bottom, transform;
  transition-property: bottom, transform, -webkit-transform, -o-transform; }

/* active state, i.e. menu open */
.toggle-button-htx.active {
  background-color: transparent; }

.toggle-button-htx.active span {
  background: none; }

.toggle-button-htx.active span::before {
  top: 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg); }

.toggle-button-htx.active span::after {
  bottom: 0;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg); }

.toggle-button-htx.active span::before,
.toggle-button-htx.active span::after {
  -webkit-transition-delay: 0, 0.3s;
  -o-transition-delay: 0, 0.3s;
  transition-delay: 0, 0.3s; }

.breadcrumbs {
  font-size: 0;
  padding: 10px 0; }
  .breadcrumbs-container {
    margin: 20px 0 0; }
  .breadcrumbs-element {
    display: inline;
    text-decoration: none;
    font-size: 12px;
    font-weight: normal;
    line-height: 22px;
    font-family: "Roboto", sans-serif;
    font-style: normal;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #474747; }
  .breadcrumbs-item {
    display: inline; }
    .breadcrumbs-item:before {
      content: '/';
      display: inline-block;
      margin: 0 15px;
      color: #474747;
      font-size: initial;
      font-weight: inherit;
      line-height: inherit; }
    .breadcrumbs-item:first-child:before {
      display: none; }
    .breadcrumbs-item a:hover {
      text-decoration: underline;
      color: #72091C; }
    .breadcrumbs-item span {
      text-decoration: none;
      color: rgba(71, 71, 71, 0.3);
      pointer-events: none; }

@media only screen and (max-width: 992px) {
  .breadcrumbs-element {
    font-size: 14px; } }

@media only screen and (max-width: 767px) {
  .breadcrumbs-container {
    margin: 10px 0 0; }
  .breadcrumbs-element {
    font-size: 12px; } }

.slick-track {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex; }

.slick-slide {
  height: auto;
  min-height: auto; }

.slick-dots {
  margin: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 3; }
  .slick-dots li {
    margin: 5px 5px; }
    .slick-dots li button {
      display: block;
      width: 10px;
      height: 10px;
      outline: 0 none;
      border: 0 none;
      background: #ffffff;
      font-size: 0;
      padding: 0;
      margin: 0;
      cursor: pointer;
      border-radius: 5px;
      -webkit-transition: background .2s;
      -o-transition: background .2s;
      transition: background .2s; }
    .slick-dots li:not(.slick-active) button {
      -webkit-transition: all .3s;
      -o-transition: all .3s;
      transition: all .3s; }
      .slick-dots li:not(.slick-active) button:hover {
        background: #a58540; }
  .slick-dots .slick-active button {
    background: white;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    width: 30px;
    cursor: default; }

input, textarea {
  font-size: 15px;
  font-family: "Roboto", sans-serif; }
  input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
    opacity: 0.7;
    color: #fff;
    font-family: "Roboto", sans-serif;
    font-size: 15px;
    font-weight: 400; }
  input:-moz-placeholder, textarea:-moz-placeholder {
    opacity: 0.7;
    color: #fff;
    font-family: "Roboto", sans-serif;
    font-size: 15px;
    font-weight: normal; }
  input::-moz-placeholder, textarea::-moz-placeholder {
    opacity: 0.7;
    color: #fff;
    font-family: "Roboto", sans-serif;
    font-size: 15px;
    font-weight: 400; }
  input:-ms-input-placeholder, textarea:-ms-input-placeholder {
    opacity: 0.7;
    color: #fff;
    font-family: "Roboto", sans-serif;
    font-size: 15px;
    font-weight: 400; }

.form {
  margin: 30px 0; }
  .form form {
    display: block;
    outline: 0 none;
    border: 0 none;
    -webkit-box-shadow: none;
    box-shadow: none; }
  .form:last-child {
    margin-bottom: 0; }
  .form:first-child {
    margin-top: 0; }
  .form-label {
    display: block;
    font-family: "Roboto", sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 13px;
    line-height: 20px;
    color: rgba(71, 71, 71, 0.5);
    margin: 0 0 3px; }
  .form-input {
    margin: 0 0 30px;
    position: relative; }
    .form-input:last-child {
      margin: 0; }
    .form-input input, .form-input textarea {
      color: #474747;
      background: none;
      display: block;
      width: 100%; }
      .form-input input::-webkit-input-placeholder, .form-input textarea::-webkit-input-placeholder {
        color: #474747; }
      .form-input input:-moz-placeholder, .form-input textarea:-moz-placeholder {
        color: #474747; }
      .form-input input::-moz-placeholder, .form-input textarea::-moz-placeholder {
        color: #474747; }
      .form-input input:-ms-input-placeholder, .form-input textarea:-ms-input-placeholder {
        color: #474747; }
      .form-input input.error, .form-input textarea.error {
        border-color: #FF2929 !important; }
    .form-input input {
      height: 30px;
      border-left: 0 none;
      border-right: 0 none;
      border-top: 0 none;
      border-bottom: 1px solid rgba(0, 0, 0, 0.1);
      -webkit-transition: all .3s;
      -o-transition: all .3s;
      transition: all .3s; }
      .form-input input:hover, .form-input input:focus {
        border-color: #474747; }
    .form-input textarea {
      border: 1px solid rgba(71, 71, 71, 0.7);
      border-radius: 4px;
      -webkit-transition: all .3s;
      -o-transition: all .3s;
      transition: all .3s;
      height: 200px;
      resize: none;
      padding: 10px 10px; }
      .form-input textarea:hover, .form-input textarea:focus {
        border-color: #474747; }
    .form-input label.error {
      position: absolute;
      top: 100%;
      color: #FF2929;
      font-size: 13px;
      line-height: normal;
      font-family: "Roboto", sans-serif;
      font-style: normal;
      font-weight: normal;
      margin-top: 4px; }
  .form-inputs {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-left: -15px;
    margin-right: -15px;
    margin-bottom: 30px; }
    .form-inputs:last-child {
      margin-bottom: 0; }
    .form-inputs .form-input {
      width: -webkit-calc(33.333% - 30px);
      width: calc(33.333% - 30px);
      margin: 0 15px; }
  .form-select > .selectboxit-container {
    width: 100%;
    border-bottom: 1px solid rgba(71, 71, 71, 0.7);
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s; }
    .form-select > .selectboxit-container:hover, .form-select > .selectboxit-container:focus {
      border-color: #474747; }
    .form-select > .selectboxit-container .selectboxit-option-icon-container {
      margin-left: 0; }
  .form-select .selectboxit-open .selectboxit-default-arrow {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg); }
  .form-select .selectboxit-option {
    font-family: "Roboto", sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 15px; }
  .form-select .selectboxit-default-arrow {
    border: 0 none;
    background-image: url("/tpl/css/../img/icons/arrow-black.svg");
    -webkit-background-size: contain;
    background-size: contain;
    width: 10px;
    height: 10px;
    margin: -5px auto 0 !important; }
  .form-select .selectboxit-text {
    color: #474747;
    max-width: 100% !important;
    font-family: "Roboto", sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 15px; }
  .form-select .selectboxit-container .selectboxit {
    width: 100%; }
  .form-select .selectboxit-btn {
    background: none !important;
    border: 0 none;
    border-radius: 0; }
    .form-select .selectboxit-btn.selectboxit-enabled:hover {
      background: none; }
  .form-select .selectboxit-arrow-container {
    width: 12px; }
  .form-select .selectboxit-list {
    border: 0 none;
    background: #ffffff;
    border-radius: 0;
    -webkit-box-shadow: 0px 6px 20px rgba(42, 42, 42, 0.1);
    box-shadow: 0px 6px 20px rgba(42, 42, 42, 0.1);
    margin-top: 1px; }
    .form-select .selectboxit-list > .selectboxit-focus > .selectboxit-option-anchor {
      background: #72091C; }
  .form-checkbox {
    position: relative;
    overflow: hidden;
    display: inline-block;
    padding-left: 30px;
    padding-right: 5px;
    text-align: left; }
    .form-checkbox input {
      position: absolute;
      visibility: hidden;
      left: -99999px;
      top: -99999px;
      border: 0 none;
      outline: 0 none;
      height: auto; }
      .form-checkbox input:checked + .element {
        border-color: #72091C; }
        .form-checkbox input:checked + .element:before {
          opacity: 1; }
    .form-checkbox span {
      color: #474747;
      font-family: "Roboto", sans-serif;
      font-size: 13px;
      line-height: 22px; }
      .form-checkbox span a {
        font-size: inherit;
        font-family: "Roboto", sans-serif;
        line-height: inherit;
        text-decoration: none;
        color: #72091C; }
        .form-checkbox span a:hover {
          text-decoration: underline; }
      .form-checkbox span i {
        font-size: inherit;
        color: inherit;
        font-family: inherit;
        line-height: inherit;
        font-style: normal; }
    .form-checkbox .element {
      display: block;
      position: absolute;
      left: 0;
      top: 3px;
      margin-top: 0;
      width: 16px;
      height: 16px;
      border: 1px solid #474747;
      border-radius: 2px;
      outline: 0 none;
      -webkit-transition: border-color .3s ease;
      -o-transition: border-color .3s ease;
      transition: border-color .3s ease;
      cursor: pointer; }
      .form-checkbox .element:before {
        content: '';
        width: 16px;
        height: 16px;
        margin: auto;
        opacity: 0;
        position: absolute;
        -webkit-transition: opacity .3s;
        -o-transition: opacity .3s;
        transition: opacity .3s;
        left: 2px;
        top: 0;
        bottom: 8px;
        right: 0;
        background-image: url("/tpl/css/../img/icons/input-check.svg");
        background-repeat: no-repeat;
        background-position: center;
        -webkit-background-size: contain;
        background-size: contain; }
  .form-actions {
    margin: 20px 0 0; }
  .form-footer {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between; }
    .form-footer .form-input {
      margin: 0; }
    .form-footer .form-actions {
      margin: 0; }
  .form-year {
    width: 100px; }
  .form-month {
    width: 140px; }
  .form-modal {
    max-width: 1290px;
    margin: 15px auto;
    background-color: #FFFFFF;
    -webkit-box-shadow: 0 2px 34px 0 rgba(0, 0, 0, 0.14);
    box-shadow: 0 2px 34px 0 rgba(0, 0, 0, 0.14);
    position: relative;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    opacity: 0;
    -webkit-transition: opacity .4s, -webkit-transform .8s;
    transition: opacity .4s, -webkit-transform .8s;
    -o-transition: opacity .4s, -o-transform .8s;
    transition: transform .8s, opacity .4s;
    transition: transform .8s, opacity .4s, -webkit-transform .8s, -o-transform .8s; }
    .form-modal-title {
      font-family: "Roboto", sans-serif;
      font-style: normal;
      font-weight: normal;
      font-size: 50px;
      line-height: 70px;
      color: #474747;
      margin: 0 0 10px; }
    .form-modal-text {
      font-family: "Roboto", sans-serif;
      font-style: normal;
      font-weight: normal;
      font-size: 18px;
      line-height: 30px;
      margin: 0 0 40px;
      color: #474747; }
  .form-callback {
    background-color: #ffffff;
    padding: 50px 500px 50px 50px;
    background-image: url("/tpl/css/../img/callback-bg.svg");
    -webkit-background-size: 420px 420px;
    background-size: 420px;
    background-position: center right;
    background-repeat: no-repeat; }

@media only screen and (max-width: 1366px) {
  .form-modal {
    max-width: 1140px; }
    .form-modal-title {
      font-size: 36px;
      line-height: 42px; }
  .form-callback {
    padding: 50px 320px 50px 50px;
    -webkit-background-size: 360px 360px;
    background-size: 360px; } }

@media only screen and (max-width: 1200px) {
  .form-modal {
    max-width: 970px; }
  .form-callback {
    padding: 50px 50px 50px 50px;
    background-image: none; } }

@media only screen and (max-width: 992px) {
  .form-modal-title {
    font-size: 30px;
    margin: 0 0 20px; }
  .form-modal-text {
    font-size: 16px;
    line-height: 24px; }
  .form-callback {
    padding: 30px 30px 30px 30px; } }

@media only screen and (max-width: 767px) {
  .form-footer {
    display: block; }
    .form-footer .form-input {
      margin: 0 0 30px; }
      .form-footer .form-input:last-child {
        margin: 0; }
  .form-modal-title {
    font-size: 24px; }
  .form-callback {
    padding: 20px 15px; } }

@media only screen and (max-width: 560px) {
  .form-inputs {
    margin-left: 0;
    margin-right: 0;
    display: block; }
    .form-inputs .form-input {
      width: 100%;
      margin: 0 0 30px; }
      .form-inputs .form-input:last-child {
        margin-bottom: 0; } }

.custom-scrollbar {
  padding-left: 20px; }
  .custom-scrollbar .mCSB_scrollTools {
    width: 8px;
    right: auto;
    left: 1px; }
    .custom-scrollbar .mCSB_scrollTools .mCSB_draggerRail {
      width: 1px;
      background: #ffffff;
      border-radius: 2px; }
    .custom-scrollbar .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
      background: #ffffff; }

.filters {
  margin: 20px 0;
  padding: 20px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
 /* border-bottom: 1px solid rgba(0, 0, 0, 0.1);*/
  border-bottom: none;*/}
  .filters-title {
    font-family: "Roboto", sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    line-height: normal;
    color: #474747; }
  .filters-selected {
    margin: 20px 0;
    padding: 10px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1); }
    .filters-selected-row {
      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: justify;
      -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
      justify-content: space-between; }
    .filters-selected-list {
      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;
      margin-left: -5px; }
    .filters-selected-item {
      margin: 5px 5px; }
    .filters-selected-filter {
      font-family: "Roboto", sans-serif;
      font-style: normal;
      font-weight: normal;
      font-size: 13px;
      line-height: 20px;
      text-align: center;
      color: #FFFFFF;
      background: #6F6F6F;
      border-radius: 6px;
      text-decoration: none;
      display: block;
      padding: 5px 10px;
      -webkit-transition: background .3s;
      -o-transition: background .3s;
      transition: background .3s; }
      .filters-selected-filter:hover {
        background: #72091C; }
      .filters-selected-filter .icon {
        color: #FFBD00;
        font-size: 10px;
        cursor: pointer;
        margin-right: 5px; }
    .filters-selected-actions {
      padding-left: 30px; }
      .filters-selected-actions .link {
        color: rgba(71, 71, 71, 0.5);
        font-size: 13px;
        white-space: nowrap; }
        .filters-selected-actions .link:hover {
          color: #72091C; }
  .filters-head + .filters-body {
    padding-top: 20px; }
  .filters-list {
    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;
    margin: 0 -5px 15px; }
    .filters-list:last-child {
      margin-bottom: 0; }
  .filters-selects {
    margin: 0 -15px; }
    .filters-selects .form-select, .filters-selects .form-input {
      margin: 15px 15px; }
      .filters-selects .form-select select, .filters-selects .form-input select {
        width: 100%; }
  .filters-actions .link {
    color: rgba(71, 71, 71, 0.5);
    font-size: 18px;
    line-height: normal;
    font-weight: normal; }

.filter-button {
  display: inline-block;
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 13px;
  line-height: 21px;
  text-align: center;
  color: #474747;
  text-decoration: none;
  border: 0 none;
  outline: 0 none;
  margin: 5px 5px;
  cursor: pointer; }
  .filter-button a{
	  text-decoration: none;
	  color: inherit;
  }
  .filter-button:hover span {
    background: #72091C;
    color: #ffffff; }
  .filter-button span {
    display: block;
    background: #E7E7E7;
    border-radius: 6px;
    padding: 5px 11px;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s; }
  .filter-button input {
    display: none;
    opacity: 0;
    visibility: hidden; }
    .filter-button input:checked + span {
      background: #6F6F6F;
      color: #ffffff; }

@media only screen and (max-width: 767px) {
  .filters-actions .link {
    font-size: 16px; }
  /*.filters-body {
    display: none; }*/
	/*.article-head, .countries-body .doc_ros{*/
	.countries-body .doc_ros{
		padding: 10px 20px !important;
	}
	.article-body{
		max-width: 100% !important;
	}
	.article-content h4{
		margin: 20px 0;
	}
  .filters-toggle {
    cursor: pointer; }
	}

.pagination {
  margin: 50px 0 70px; }
  .pagination:last-child {
    margin-bottom: 0; }
  .pagination-list {
    font-size: 0;
    margin: 0 -5px;
    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;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center; }
  .pagination-item {
    display: inline-block;
    margin: 0 5px; }
    .pagination-item .next-page, .pagination-item .prev-page {
      padding-left: 30px;
      padding-right: 30px;
      background: #ffffff; }
      .pagination-item .next-page:hover:not(.disabled), .pagination-item .prev-page:hover:not(.disabled) {
        -webkit-box-shadow: 0 4px 10px rgba(35, 35, 35, 0.2);
        box-shadow: 0 4px 10px rgba(35, 35, 35, 0.2); }
  .pagination-element {
    width: auto;
    background: none;
    text-decoration: none;
    border: 0 none;
    display: block;
    padding: 10px 10px;
    line-height: 30px;
    text-align: center;
    color: #474747;
    font-family: "Roboto", sans-serif;
    font-size: 18px;
    font-weight: normal;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    position: relative;
    border-radius: 10px; }
    .pagination-element:hover:not(.separator) {
      color: #72091C; }
    .pagination-element.active:not(.separator) {
      color: #72091C;
      font-weight: 700; }
    .pagination-element.disabled {
      pointer-events: none;
      color: rgba(71, 71, 71, 0.5); }
  .pagination a {
    cursor: pointer; }
  .pagination span {
    pointer-events: none; }

@media only screen and (max-width: 767px) {
  .pagination {
    margin: 30px 0 0; }
    .pagination-element {
      padding: 4px 8px;
      font-size: 16px;
      line-height: 24px; }
    .pagination-item .next-page, .pagination-item .prev-page {
      font-size: 14px;
      padding-left: 15px;
      padding-right: 15px; } }

@media only screen and (max-width: 560px) {
  .pagination-list {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center; }
  .pagination-element {
    padding: 4px 6px; }
  .pagination-item {
    margin: 0 2px; }
    .pagination-item .next-page, .pagination-item .prev-page {
      font-size: 14px;
      padding-left: 8px;
      padding-right: 8px; } }

.tooltipster-base.tooltipster-shadow {
  margin-left: 6px; }

.table-block {
  margin: 30px 0; }

.table-container {
  overflow-y: hidden;
  overflow-x: auto;
  padding: 0 0 20px; }

.table-caption {
  margin: 0 0 30px;
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: normal;
  line-height: 30px;
  color: #474747; }
  .table-caption strong {
    display: inline-block;
    font-size: 22px;
    margin-right: 10px;
    font-weight: 700; }
  .table-caption span {
    font-size: 13px;
    color: rgba(71, 71, 71, 0.5); }

.table-head {
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 13px;
  line-height: normal;
  color: rgba(71, 71, 71, 0.5);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1); }

.table-body {
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: normal;
  color: #474747; }

.table-r {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1); }
  .table-r:last-child {
    border-bottom: 0 none; }

.table-d {
  width: 20%;
  padding: 0 10px; }
  .table-d:first-child {
    padding-left: 0;
    width: 36px; }
  .table-d:nth-child(2) {
    width: 32%; }
  .table-d:last-child {
    padding-right: 0; }
  .table-d small {
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit; }
  .table-d span small {
    margin-left: 10px; }

.danger {
  color: #FF2929; }

.success {
  color: #2FC73E; }

@media only screen and (max-width: 1200px) {
  .table-body {
    font-size: 16px; } }

.mfp-bg {
  opacity: 0.5; }

.mfp-container {
  padding: 0 15px; }

button.mfp-close {
  font-size: 0;
  color: #fff;
  background-image: url("/tpl/css/../img/icons/close.svg");
  -webkit-background-size: 28px 28px;
  background-size: 28px;
  background-position: center;
  background-repeat: no-repeat;
  top: 20px;
  right: 20px;
  opacity: 1; }

.mfp-ready .form-modal {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  opacity: 1;
  -webkit-transition: opacity .4s, -webkit-transform .8s;
  transition: opacity .4s, -webkit-transform .8s;
  -o-transition: opacity .4s, -o-transform .8s;
  transition: transform .8s, opacity .4s;
  transition: transform .8s, opacity .4s, -webkit-transform .8s, -o-transform .8s; }

.mfp-removing .form-modal {
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  opacity: 0;
  -webkit-transition: opacity .4s, -webkit-transform .8s;
  transition: opacity .4s, -webkit-transform .8s;
  -o-transition: opacity .4s, -o-transform .8s;
  transition: transform .8s, opacity .4s;
  transition: transform .8s, opacity .4s, -webkit-transform .8s, -o-transform .8s; }

@media only screen and (max-width: 767px) {
  button.mfp-close {
    width: 24px;
    height: 24px;
    -webkit-background-size: 18px 18px;
    background-size: 18px; }
  .mfp-container {
    padding: 0; } }

/*--------------- style ---------------*/
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  outline: none; }

*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

body {
  margin: 0;
  padding: 0;
  min-width: 320px;
  line-height: normal;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  font-family: "Roboto", sans-serif;
  font-weight: normal;
  background: #F6F6F6; }

::-moz-selection {
  color: #fff;
  background-color: #72091C; }

::selection {
  color: #fff;
  background-color: #72091C; }

::-moz-selection {
  color: #fff;
  background-color: #72091C; }

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

ul {
  padding: 0;
  margin: 0;
  list-style: none outside none; }
  ul li {
    padding: 0;
    left: 0; }

p {
  padding: 0;
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: inherit; }

input, textarea {
  line-height: normal; }

.container {
  padding: 0 15px;
  margin-left: auto;
  margin-right: auto; }
  .container:before, .container:after {
    content: "";
    display: table; }
  .container:after {
    clear: both; }

.video-responsive {
  position: relative;
  height: 0;
  margin: auto; }
  .video-responsive video, .video-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    border: 0;
    z-index: 2; }
  .video-responsive video {
    -o-object-fit: inherit;
    object-fit: inherit; }

.video-poster {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 20;
  -webkit-background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center; }
  .video-poster:hover:before {
    opacity: 1; }
  .video-poster:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1; }
  .video-poster:before {
    content: '';
    display: block;
    width: 100px;
    height: 100px;
    background-image: url("/tpl/css/../img/icons/play.svg");
    -webkit-background-size: contain;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    margin: auto;
    left: 0;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 2;
    cursor: pointer;
    opacity: 0.6;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s; }

.f4by3 {
  padding: 0 0 75%; }

.f16by9 {
  padding: 0 0 56.25%; }

.not-scrolling {
  position: relative !important;
  left: 0;
  right: 0;
  top: 0;
  overflow-y: hidden !important;
  width: 100%; }

.mfp-container {
  overflow-y: auto; }

h1, h2, h3, h4, h5, h6 {
  font-family: "Gilroy Extra Bold", sans-serif;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
  /*font-family: inherit;*/
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: inherit; }

.title {
  font-family: "Gilroy Extra Bold", sans-serif;
  text-decoration: none;
  font-style: normal;
  font-weight: bold;
  line-height: normal;
  color: #474747; }
  .title a {
    text-decoration: none;
    color: inherit;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s; }
    .title a:hover {
      color: #72091C; }
  .title-sm {
	/*test code*/
	font-family: "Gilroy Extra Bold", sans-serif;
	font-size: 42px;
	text-transform: uppercase;
	border-bottom: none;
	/*end test code*/
	text-align: center;  
    margin: 0 0 20px;
    font-size: 32px; }

.btn {
  display: inline-block;
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 30px;
  text-align: center;
  color: #FFFFFF;
  outline: 0 none;
  border: 0 none;
  cursor: pointer;
  padding: 10px 30px;
  /*border-radius: 25px;*/
  text-decoration: none;
  -webkit-transition: all .3s linear;
  -o-transition: all .3s linear;
  transition: all .3s linear;
  position: relative;
  overflow: hidden;
  min-width: 160px;
  background: #72091C; }
  .btn span {
    position: relative;
    z-index: 2; }
  .btn.disabled {
    background: #585F6F !important;
    pointer-events: none !important; }
  .btn:disabled {
    opacity: 0.6 !important;
    pointer-events: none !important; }
  .btn i {
    margin-right: 10px; }
  .btn-red:hover {
    -webkit-box-shadow: 0 0 0 4px #72091C;
    box-shadow: 0 0 0 4px #72091C; }
  .btn-grey {
    background: rgba(114, 9, 28, 0.3);
    color: #ffffff; }
    .btn-grey:hover {
      color: #ffffff;
      background: #6F6F6F; }
  .btn-dark {
    background: #474747; }
    .btn-dark:hover {
      -webkit-box-shadow: 0 0 0 4px #474747;
      box-shadow: 0 0 0 4px #474747; }
  .btn-search, .btn-close {
    width: 36px;
    height: 36px;
    display: block;
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    border: 0 none;
    outline: 0 none;
    -webkit-box-shadow: none;
    box-shadow: none;
    background: none;
    color: #ffffff;
    font-size: 16px;
    cursor: pointer;
    padding: 0;
    min-width: unset;
    max-width: unset; }

.link {
  display: inline-block;
  color: #FFBD00;
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: normal;
  text-align: center;
  padding: 0 0 1px;
  position: relative;
  letter-spacing: 0.05em;
  text-decoration: none;
  cursor: pointer; }
  .link:hover {
    text-decoration: underline; }
  .link-white {
    color: #fff; }
    .link-white:before {
      background: #fff; }
  .link-next {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid #ffffff;
    color: #ffffff;
    font-size: 20px;
    display: block;
    line-height: 45px;
    text-align: center; }


.sections{
	background-color: white;
}
.sections-group {
  position: relative;
  padding: 50px 50px 50px 0;
  overflow: hidden; }
  .sections-group:before {
    content: '';
    position: absolute;
    display: block;
    background: #ffffff;
    left: 0;
    right: 0;
    top: 0;
    bottom: 175px;
    width: 100%; }

.sections-item {
  margin: 0 0 70px;
  padding: 0 0 70px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2; }
  .sections-item:last-child {
    margin: 0;
    padding: 0;
    border-bottom: 0 none; }

.sections-head {
  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;
  margin: 0 0 20px; }
  .sections-head .title {
    padding-right: 30px;
    display: inline-block;
    margin: 0; }

.slider-controls {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex; }

.arrow {
  display: inline-block;
  margin: 0 5px;
  text-align: center;
  -webkit-transition: color .3s;
  -o-transition: color .3s;
  transition: color .3s;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  cursor: pointer;
  position: relative;
  color: #474747;
  font-size: 18px; }
  .arrow:hover {
    color: #72091C; }

.fancybox-button {
  background: none; }

.for-small {
  display: none; }

@media only screen and (max-width: 1200px) {
  .sections-group {
    padding: 30px 30px; }
    .sections-group:before {
      bottom: 100px; }
  .sections-item {
    margin: 0 0 50px;
    padding: 0 0 50px; }
  .btn {
    font-size: 16px; } }

@media only screen and (max-width: 992px) {
  .title-sm {
    font-size: 28px; }
  .video-poster:before {
    width: 80px;
    height: 80px; }
  .for-small {
    display: block; }
  .for-large {
    display: none; } }

@media only screen and (max-width: 767px) {
  .title-sm {
    font-size: 22px; }
  .sections-group {
    padding: 15px 15px;
    background: #ffffff; }
    .sections-group:before {
      display: none; }
  .sections-item {
    margin: 0 0 30px;
    padding: 0 0 30px; }
  .video-poster:before {
    width: 50px;
    height: 50px;
    opacity: 1; }
  .btn {
    -webkit-transition: none;
    -o-transition: none;
    transition: none; }
    .btn:hover {
      -webkit-transition: none;
      -o-transition: none;
      transition: none; }
    .btn-red:hover, .btn-dark:hover {
      -webkit-box-shadow: none;
      box-shadow: none; } }

/*--------------- section ---------------*/
.page-container {
  position: relative;
  background: #F6F6F6;
  overflow: hidden; }

.page-head {
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
  background-position: center;
  position: relative;
  padding-bottom: 30px; }
  .page-head:first-child {
    padding-top: 114px; }
  .page-head:before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    background: rgba(0, 0, 0, 0.5); }
  .page-head-content {
    position: relative;
    z-index: 2; }
  .page-head-desc {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
    -webkit-column-gap: 80px;
    -moz-column-gap: 80px;
    column-gap: 80px;
    color: #ffffff;
    font-family: "Roboto", sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    line-height: 30px; }
  .page-head .title {
    color: #ffffff; }
  .page-head .breadcrumbs-container {
    margin-bottom: 30px; }
  .page-head .breadcrumbs {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
  .page-head .breadcrumbs-element {
    color: #ffffff; }
  .page-head .breadcrumbs-item:before {
    color: #ffffff; }
  .page-head .breadcrumbs-item span {
    color: rgba(255, 255, 255, 0.6); }

.page-body:first-child {
  padding: 114px 0 0; }

.page-body > .container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;  }

.page-body.is-white {
  background: #ffffff; }

.page-content {
  width: 100%;
  padding: 30px 0 50px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
  -ms-flex-order: 1;
  order: 1; }
  .page-content .search-categories {
    margin: 30px 0;
    padding: 0 0 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1); }
    .page-content .search-categories-title {
      font-size: 16px;
      color: rgba(71, 71, 71, 0.3);
      margin: 0 0 10px; }
    .page-content .search-categories ul {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      margin-left: -8px;
      margin-right: -8px; }
      .page-content .search-categories ul li {
        display: inline-block;
        margin: 8px 8px;
        width: auto; }
        .page-content .search-categories ul li a {
          font-weight: 700;
          color: #474747;
          font-size: 16px;
          line-height: 24px; }

.page-sidebar {
  width: 300px;
  padding: 30px 0 50px 30px;
  border-left: 1px solid rgba(0, 0, 0, 0.1);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
  -ms-flex-order: 2;
  order: 2; }
  .page-sidebar + .page-content {
    width: -webkit-calc(100% - 300px);
    width: calc(100% - 300px);
    padding-right: 30px; }

@media only screen and (max-width: 1200px) {
  .page-body:first-child, .page-head:first-child {
    padding-top: 71px; }
  .page-content .news-list .news-item {
    width: -webkit-calc(50% - 30px);
    width: calc(50% - 30px); }
    .page-content .news-list .news-item:nth-child(3) {
      margin-top: 30px; } }

@media only screen and (max-width: 992px) {
  .page-head .breadcrumbs-container {
    margin-bottom: 20px; }
  .page-head-desc {
    -webkit-column-gap: 30px;
    -moz-column-gap: 30px;
    column-gap: 30px;
    font-size: 16px;
    line-height: 24px; }
  .page-body > .container {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
  .page-sidebar {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2;
    width: 100%;
    padding: 30px 0 30px;
    border-left: 0 none; }
    .page-sidebar + .page-content {
      width: 100%;
      -webkit-box-ordinal-group: 2;
      -webkit-order: 1;
      -ms-flex-order: 1;
      order: 1;
      padding: 30px 0 30px; } }

@media only screen and (max-width: 767px) {
  .page-body:first-child, .page-head:first-child {
    padding-top: 56px; } }

@media only screen and (max-width: 560px) {
  .page-head-desc {
    -webkit-column-gap: 0;
    -moz-column-gap: 0;
    column-gap: 0;
    -webkit-column-count: 1;
    -moz-column-count: 1;
    column-count: 1; }
  .page-content .news-list .news-item {
    width: 100%; }
    .page-content .news-list .news-item:nth-child(3) {
      margin-top: 0; } }

.header {
  background: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 10; }
  .header.simple .header-container {
    background: #ffffff;
    -webkit-box-shadow: 0px 6px 20px rgba(42, 42, 42, 0.1);
    box-shadow: 0px 6px 20px rgba(42, 42, 42, 0.1); }
  .header.simple .header-nav-link {
    color: #474747; }
  .header.simple .header-nav-profile a .icon {
    color: #474747; }
  .header.simple .header-nav-search .btn {
    color: #474747; }
  .header.simple .search-panel input {
    border-bottom-color: #474747;
    color: #474747; }
    .header.simple .search-panel input::-webkit-input-placeholder {
      color: #474747; }
    .header.simple .search-panel input:-moz-placeholder {
      color: #474747; }
    .header.simple .search-panel input::-moz-placeholder {
      color: #474747; }
    .header.simple .search-panel input:-ms-input-placeholder {
      color: #474747; }
  .header.simple .socials-list-link {
    color: #474747; }
  .header.simple .header-nav-langs .selectboxit-text {
    color: #474747; }
  .header.simple .header-nav-langs .selectboxit-default-arrow {
    background-image: url("/tpl/css/../img/icons/arrow-black.svg"); }
  .header.is-fixed {
    position: fixed;
    -webkit-transform: translateY(-800px);
    -ms-transform: translateY(-800px);
    -o-transform: translateY(-800px);
    transform: translateY(-800px);
    opacity: 0;
    visibility: hidden; }
    .header.is-fixed.is-visible {
      opacity: 1;
      visibility: visible;
      -webkit-transition: all 0.6s ease;
      -o-transition: all 0.6s ease;
      transition: all 0.6s ease;
      -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
      -o-transform: translateY(0);
      transform: translateY(0); }
    .header.is-fixed .header-container {
      background: #ffffff;
      -webkit-box-shadow: 0px 6px 20px rgba(42, 42, 42, 0.1);
      box-shadow: 0px 6px 20px rgba(42, 42, 42, 0.1); }
    .header.is-fixed .header-logo img {
      max-height: 46px; }
    .header.is-fixed .header-nav-top {
      display: none; }
    .header.is-fixed .header-nav-link {
      color: #474747; }
    .header.is-fixed .header-nav-profile a .icon {
      color: #474747; }
    .header.is-fixed .header-nav-search .btn {
      color: #474747; }
    .header.is-fixed .search-panel input {
      border-bottom-color: #474747;
      color: #474747; }
      .header.is-fixed .search-panel input::-webkit-input-placeholder {
        color: #474747; }
      .header.is-fixed .search-panel input:-moz-placeholder {
        color: #474747; }
      .header.is-fixed .search-panel input::-moz-placeholder {
        color: #474747; }
      .header.is-fixed .search-panel input:-ms-input-placeholder {
        color: #474747; }
  .header-container {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 20; }
  .header-content {
    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; }
  .header-logo {
    width: 84px;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0; }
    .header-logo a {
      display: block;
      text-decoration: none; }
    .header-logo img {
      max-width: 100%;
      max-height: 100%;
      display: block; }
    .header-logo-desc {
      display: none;
      font-family: "Roboto", sans-serif;
      font-style: normal;
      font-weight: bold;
      font-size: 16px;
      line-height: 22px;
      color: #474747;
      padding-left: 26px; }
  .header-nav {
    width: -webkit-calc(100% - 84px);
    width: calc(100% - 84px);
    padding-left: 40px; }
    .header-nav-list {
      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; }
    .header-nav-item {
      margin: 0 0 0 25px;
      position: relative; }
      .header-nav-item:first-child {
        margin: 0 0; }
    .header-nav-link {
      font-family: "Roboto", sans-serif;
      font-style: normal;
      font-weight: normal;
      font-size: 15px;
      line-height: 21px;
      color: #FFFFFF;
      text-decoration: none;
      -webkit-transition: color .3s;
      -o-transition: color .3s;
      transition: color .3s;
      display: block; }
      .header-nav-link:hover {
        color: #FFBD00; }
    .header-nav-top {
      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: justify;
      -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
      justify-content: space-between;
      padding: 10px 0 1px;
      -webkit-transition: all .3s;
      -o-transition: all .3s;
      transition: all .3s;
      position: relative; }
      .header-nav-top:before {
        content: '';
        display: block;
        position: absolute;
        bottom: 0;
        left: 0;
        right: -9999px;
        height: 1px;
        background: rgba(255, 255, 255, 0.3); }
      .header-nav-top .header-nav-link {
        padding: 10px 0; }
    .header-nav-bottom {
      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: justify;
      -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
      justify-content: space-between; }
      .header-nav-bottom .header-nav-link {
        font-weight: 700;
        padding: 20px 0; }
    .header-nav-profile {
      margin-left: 25px; }
      .header-nav-profile a {
        color: #FFBD00;
        text-decoration: none;
        font-family: "Roboto", sans-serif;
        font-style: normal;
        font-weight: bold;
        font-size: 15px;
        line-height: 21px;
        text-align: right; }
        .header-nav-profile a:hover {
          text-decoration: underline; }
        .header-nav-profile a .icon {
          color: #ffffff;
          margin-left: 10px;
          text-decoration: none;
          display: inline-block; }
    .header-nav-socials {
      margin: 0 15px; }
    .header-nav-langs .selectboxit-open .selectboxit-default-arrow {
      -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
      -o-transform: rotate(180deg);
      transform: rotate(180deg); }
    .header-nav-langs .selectboxit-option {
      text-transform: uppercase;
      font-family: "Roboto", sans-serif;
      font-style: normal;
      font-weight: normal;
      font-size: 15px;
      margin: 0 0 5px;
      padding: 0 0 5px;
      border-bottom: 1px solid rgba(0, 0, 0, 0.1); }
      .header-nav-langs .selectboxit-option:last-child {
        margin-bottom: 0;
        padding-bottom: 0;
        border-bottom: 0 none; }
    .header-nav-langs .selectboxit-option-anchor {
      padding: 2px 6px;
      color: #474747;
      border-radius: 5px; }
    .header-nav-langs .selectboxit-default-arrow {
      border: 0 none;
      background-image: url("/tpl/css/../img/icons/arrow.svg");
      -webkit-background-size: contain;
      background-size: contain;
      width: 10px;
      height: 10px;
      margin: -5px auto 0 !important; }
    .header-nav-langs .selectboxit-text {
      color: #ffffff;
      text-transform: uppercase;
      max-width: 100% !important;
      font-family: "Roboto", sans-serif;
      font-style: normal;
      font-weight: normal;
      font-size: 15px; }
    .header-nav-langs .selectboxit-container .selectboxit {
      width: 66px; }
    .header-nav-langs .selectboxit-btn {
      background: none !important;
      border: 0 none;
      border-radius: 0; }
      .header-nav-langs .selectboxit-btn.selectboxit-enabled:hover {
        background: none; }
    .header-nav-langs .selectboxit-arrow-container {
      width: 12px; }
    .header-nav-langs .selectboxit-list {
      border: 0 none;
      background: #ffffff;
      border-radius: 5px;
      -webkit-box-shadow: 0px 6px 20px rgba(42, 42, 42, 0.1);
      box-shadow: 0px 6px 20px rgba(42, 42, 42, 0.1);
      margin-top: 1px;
      width: -webkit-calc(100% + 20px);
      width: calc(100% + 20px);
      margin-left: -10px;
      margin-right: -10px;
      padding: 4px; }
      .header-nav-langs .selectboxit-list > .selectboxit-focus > .selectboxit-option-anchor {
        background: #F6F6F6;
        color: #474747; }
    .header-nav-search .search-panel {
      position: absolute;
      right: 0;
      top: 50%;
      -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      -o-transform: translateY(-50%);
      transform: translateY(-50%);
      width: 0;
      z-index: 1;
      overflow: hidden; }
    .header-nav-search .btn-close {
      position: absolute;
      right: 0;
      top: 50%;
      -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      -o-transform: translateY(-50%);
      transform: translateY(-50%);
      z-index: 2; }
  .header-search {
    position: absolute;
    left: 0;
    right: 0;
    background: #ffffff;
    visibility: hidden;
    opacity: 0;
    z-index: 5;
    -webkit-box-shadow: 0 0 40px rgba(35, 35, 35, 0.2);
    box-shadow: 0 0 40px rgba(35, 35, 35, 0.2);
    -webkit-transition: opacity .55s, visibility .55s;
    -o-transition: opacity .55s, visibility .55s;
    transition: opacity .55s, visibility .55s;
    pointer-events: none; }
    .header-search.is-open {
      -webkit-transform-origin: center top;
      -ms-transform-origin: center top;
      -o-transform-origin: center top;
      transform-origin: center top;
      -webkit-transform: translateZ(0);
      -ms-transform: translateZ(0);
      -o-transform: translateZ(0);
      transform: translateZ(0);
      -webkit-backface-visibility: hidden;
      backface-visibility: hidden;
      -webkit-animation: cd-3d-rotation 0.5s 0.3s;
      -o-animation: cd-3d-rotation 0.5s 0.3s;
      animation: cd-3d-rotation 0.5s 0.3s;
      -webkit-animation-fill-mode: backwards;
      -o-animation-fill-mode: backwards;
      animation-fill-mode: backwards;
      visibility: visible;
      opacity: 1;
      z-index: 18;
      pointer-events: initial; }
  .header-menu {
    position: absolute;
    left: 0;
    right: 0;
    background: #ffffff;
    visibility: hidden;
    opacity: 0;
    z-index: 5;
    -webkit-box-shadow: 0 0 40px rgba(35, 35, 35, 0.2);
    box-shadow: 0 0 40px rgba(35, 35, 35, 0.2);
    -webkit-transition: opacity .55s, visibility .55s;
    -o-transition: opacity .55s, visibility .55s;
    transition: opacity .55s, visibility .55s;
    pointer-events: none; }
    .header-menu.is-open {
      visibility: visible;
      opacity: 1;
      z-index: 18;
      pointer-events: initial; }

.address-item {
  margin: 0 0 10px; }
  .address-item:last-child {
    margin: 0; }
  .address-item span {
    font-family: "Roboto", sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 13px;
    line-height: 21px;
    color: rgba(71, 71, 71, 0.5); }
  .address-item p {
    font-family: "Roboto", sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    line-height: 30px;
    color: #474747; }

.menu {
  padding: 30px 0; }
  .menu a {
    font-family: "Roboto", sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 15px;
    line-height: 22px;
    color: #474747;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    text-decoration: none;
    display: inline-block; }
    .menu a:hover {
      color: #72091C;
      text-decoration: underline; }
  .menu-header {
    display: none;
    position: relative;
    padding: 0 0 20px;
    margin: 0 0 20px;
    font-family: "Roboto", sans-serif;
    font-style: normal;
    font-weight: bold;
    font-size: 16px;
    line-height: normal;
    color: rgba(71, 71, 71, 0.3);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1); }
    .menu-header .btn-close {
      font-size: 20px;
      color: rgba(71, 71, 71, 0.8);
      width: 30px;
      height: 30px;
      line-height: 30px;
      -webkit-transform: none;
      -ms-transform: none;
      -o-transform: none;
      transform: none;
      top: 0; }
      .menu-header .btn-close .icon {
        line-height: inherit; }
  .menu-categories {
    overflow: hidden;
    position: relative; }
    .menu-categories .is-opened > .toggle-head .btn-open {
      -webkit-transform: translateY(-50%) rotate(-90deg) !important;
      -ms-transform: translateY(-50%) rotate(-90deg) !important;
      -o-transform: translateY(-50%) rotate(-90deg) !important;
      transform: translateY(-50%) rotate(-90deg) !important; }
  .menu-category {
    display: none; }
    .menu-category-list {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      margin: 0 -15px; }
    .menu-category-item {
      width: -webkit-calc(25% - 30px);
      width: calc(25% - 30px);
      margin: 10px 15px; }
	  .menu-contacts-item{
		  width: calc(16% - 30px) !important;
		  width:  -webkit-calc(16% - 30px) !important;
	  }
      .menu-category-item .menu-category-head a {
        font-size: 16px; }
      .menu-category-item ul li {
        margin: 0 0 20px; }
        .menu-category-item ul li:last-child {
          margin: 0; }
    .menu-category > .menu-category-head {
      display: none; }
    .menu-category-head {
      margin: 0 0 10px;
      position: relative; }
      .menu-category-head .btn-open {
        display: none;
        position: absolute;
        right: 4px;
        top: 50%;
        -webkit-transform: translateY(-50%) rotate(90deg);
        -ms-transform: translateY(-50%) rotate(90deg);
        -o-transform: translateY(-50%) rotate(90deg);
        transform: translateY(-50%) rotate(90deg); }
      .menu-category-head a {
        font-weight: 700;
        font-size: 18px; }
        .menu-category-head a:hover {
          text-decoration: none; }
  .menu-footer {
    display: none;
    padding: 20px 0 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    margin: 20px 0 0; }
    .menu-footer-section {
      border-bottom: 1px solid rgba(0, 0, 0, 0.1);
      padding: 0 0 20px;
      margin: 0 0 20px; }
      .menu-footer-section:last-child {
        margin: 0 0 0;
        padding: 0 0 0;
        border-bottom: 0 none; }
    .menu-footer-list {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      margin: 0 -15px; }
    .menu-footer-item {
      padding: 0 15px;
      margin: 0 0 15px;
      width: 50%; }
      .menu-footer-item a {
        font-size: 16px;
        font-weight: 700; }
    .menu-footer .address-list {
      margin: 0 0 20px; }
    .menu-footer .socials-list-link {
      font-size: 24px;
      text-decoration: none;
      color: #474747; }
      .menu-footer .socials-list-link:hover {
        text-decoration: none;
        color: #474747; }
      .menu-footer .socials-list-link .icon {
        font-size: inherit; }

.has-search {
  position: relative;
  padding: 0 80px 0 0; }
  .has-search.is-open .header-nav-list {
    opacity: 0; }
  .has-search.is-open .header-nav-search .search-panel {
    width: 100%; }
  .has-search.is-open .header-nav-search .btn-search {
    display: none; }

.socials-list {
  margin: 0 -6px;
  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-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  font-size: 0; }
  .socials-list-item {
    margin: 4px 6px; }
  .socials-list-link {
    color: #ffffff;
    opacity: 0.5;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    text-decoration: none;
    font-size: 0;
    display: block; }
    .socials-list-link:hover {
      opacity: 1;
      text-decoration: none; }
    .socials-list-link .icon {
      font-size: 18px; }

.btn-menu {
  display: none;
  position: absolute;
  z-index: 10;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: #ffffff;
  background-image: url("/tpl/css/../img/icons/lines.svg");
  -webkit-background-size: 30px 30px;
  background-size: 30px;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
  height: 100%;
  width: 84px; }

@-webkit-keyframes cd-3d-rotation {
  0% {
    -webkit-transform: perspective(1000px) rotateX(-90deg); }
  100% {
    -webkit-transform: perspective(1000px) translateY(0); } }

@-o-keyframes cd-3d-rotation {
  0% {
    -webkit-transform: perspective(1000px) rotateX(-90deg);
    -ms-transform: perspective(1000px) rotateX(-90deg);
    -o-transform: perspective(1000px) rotateX(-90deg);
    transform: perspective(1000px) rotateX(-90deg); }
  100% {
    -webkit-transform: perspective(1000px) translateY(0);
    -ms-transform: perspective(1000px) translateY(0);
    -o-transform: perspective(1000px) translateY(0);
    transform: perspective(1000px) translateY(0); } }

@keyframes cd-3d-rotation {
  0% {
    -webkit-transform: perspective(1000px) rotateX(-90deg);
    -ms-transform: perspective(1000px) rotateX(-90deg);
    -o-transform: perspective(1000px) rotateX(-90deg);
    transform: perspective(1000px) rotateX(-90deg); }
  100% {
    -webkit-transform: perspective(1000px) translateY(0);
    -ms-transform: perspective(1000px) translateY(0);
    -o-transform: perspective(1000px) translateY(0);
    transform: perspective(1000px) translateY(0); } }

@media only screen and (max-width: 1366px) {
  .header-logo {
    width: 66px; }
  .header-nav {
    width: -webkit-calc(100% - 66px);
    width: calc(100% - 66px);
    padding-left: 20px; }
    .header-nav-item {
      margin: 0 0 0 20px; }
  .has-search {
    padding: 0 60px 0 0; } }

@media only screen and (max-width: 1200px) {
  .btn-menu {
    display: block; }
  .header {
    position: fixed !important;
    opacity: 1 !important;
    visibility: visible !important;
    -webkit-transition: unset;
    -o-transition: unset;
    transition: unset;
    -webkit-transform: translateY(0) !important;
    -ms-transform: translateY(0) !important;
    -o-transform: translateY(0) !important;
    transform: translateY(0) !important; }
    .header.is-fixed .header-logo img {
      max-height: unset; }
    .header.is-fixed .header-nav-top {
      display: block; }
    .header-content {
      -webkit-box-pack: justify;
      -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
      justify-content: space-between;
      padding: 10px 84px 10px 0;
      position: relative; }
    .header-container {
      border-bottom: 0 none;
      -webkit-box-shadow: 0px 6px 20px rgba(42, 42, 42, 0.1);
      box-shadow: 0px 6px 20px rgba(42, 42, 42, 0.1);
      background: #ffffff; }
    .header-logo {
      width: auto;
      -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
      flex-shrink: 0; }
      .header-logo a {
        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; }
      .header-logo-img {
        width: 54px; }
      .header-logo-desc {
        display: block;
        padding-left: 15px;
        font-size: 14px; }
    .header-nav {
      width: auto;
      padding-left: 15px;
      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: end;
      -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
      justify-content: flex-end; }
      .header-nav .icon {
        font-size: 20px;
        line-height: inherit; }
      .header-nav-top {
        padding: 0;
        display: block;
        position: static;
        margin-right: 20px; }
        .header-nav-top:before {
          display: none; }
      .header-nav-bottom {
        border-right: 1px solid rgba(71, 71, 71, 0.3); }
      .header-nav-list {
        display: none; }
      .header-nav-socials {
        display: none; }
      .header-nav-column {
        padding: 5px 20px;
        border-left: 1px solid rgba(71, 71, 71, 0.3); }
      .header-nav-profile {
        margin: 0; }
        .header-nav-profile a {
          display: block;
          width: 30px;
          height: 30px;
          line-height: 30px;
          text-align: center; }
          .header-nav-profile a .icon {
            color: #474747;
            margin: 0;
            display: inline-block; }
        .header-nav-profile span:not(.icon) {
          display: none; }
      .header-nav-search .btn {
        color: #474747; }
        .header-nav-search .btn-search {
          position: static;
          display: block;
          width: 30px;
          height: 30px;
          line-height: 30px;
          text-align: center;
          -webkit-transform: none;
          -ms-transform: none;
          -o-transform: none;
          transform: none;
          -webkit-transition: unset;
          -o-transition: unset;
          transition: unset; }
      .header-nav-search .search-panel {
        top: 100%;
        opacity: 0;
        -webkit-transform: none;
        -ms-transform: none;
        -o-transform: none;
        transform: none;
        background: #ffffff;
        margin: -1px auto 0;
        left: 0;
        right: 0;
        padding: 0 15px;
        position: fixed;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        -webkit-box-shadow: 0 6px 20px rgba(42, 42, 42, 0.1);
        box-shadow: 0 6px 20px rgba(42, 42, 42, 0.1);
        -webkit-transition: all .3s;
        -o-transition: all .3s;
        transition: all .3s;
        pointer-events: none; }
        .header-nav-search .search-panel input {
          border: 0 none;
          padding-right: 15px;
          color: #474747; }
          .header-nav-search .search-panel input::-webkit-input-placeholder {
            color: #474747; }
          .header-nav-search .search-panel input:-moz-placeholder {
            color: #474747; }
          .header-nav-search .search-panel input::-moz-placeholder {
            color: #474747; }
          .header-nav-search .search-panel input:-ms-input-placeholder {
            color: #474747; }
      .header-nav-langs .selectboxit-text {
        color: #474747; }
      .header-nav-langs .selectboxit-default-arrow {
        background-image: url("/tpl/css/../img/icons/arrow-black.svg"); }
    .header-menu {
      width: 480px;
      z-index: 22;
      left: auto;
      top: 0;
      height: 100vh;
      min-height: 100%;
      overflow: hidden;
      -webkit-transform: translateX(200%);
      -ms-transform: translateX(200%);
      -o-transform: translateX(200%);
      transform: translateX(200%);
      -webkit-animation: unset;
      -o-animation: unset;
      animation: unset;
      opacity: 1;
      -webkit-transition: all .8s;
      -o-transition: all .8s;
      transition: all .8s;
      visibility: visible;
      position: fixed; }
      .header-menu.is-open {
        z-index: 22;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
        transform: translateX(0);
        -webkit-animation: unset;
        -o-animation: unset;
        animation: unset; }
      .header-menu .container {
        width: 100%;
        padding: 0; }
    .header-search {
      padding-top: 36px; }
    .header .search-block-scrolled {
      max-height: -webkit-calc(100vh - 146px);
      max-height: calc(100vh - 146px); }
  .has-search {
    position: static; }
    .has-search.is-open .search-panel {
      opacity: 1;
      pointer-events: auto; }
    .has-search.is-open .header-nav-search .btn-search {
      display: block; }
  .menu {
    padding: 15px 30px;
    overflow: hidden; }
    .menu .toggle-content {
      padding-bottom: 10px; }
    .menu-header, .menu-footer {
      display: block; }
    .menu-content {
      max-height: -webkit-calc(100vh - 100px);
      max-height: calc(100vh - 100px);
      overflow-y: scroll;
      overflow-x: hidden;
      padding-right: 60px;
      margin-right: -60px; }
    .menu-category {
      display: block; }
      .menu-category > .menu-category-head {
        display: block; }
      .menu-category-head {
        position: relative;
        padding: 10px 30px 10px 0;
        margin: 0; }
        .menu-category-head .btn-open {
          display: inline-block;
          cursor: pointer; }
          .menu-category-head .btn-open .icon {
            font-weight: 900; }
      .menu-category-list {
        margin: 0 0;
        padding-left: 20px;
        border-left: 1px solid rgba(71, 71, 71, 0.3);
        display: none; }
        .menu-category-list ul {
          padding-left: 20px;
          border-left: 1px solid rgba(71, 71, 71, 0.3);
          display: none; }
      .menu-category-item {
        width: 100%;
        margin: 0; } }

@media only screen and (max-width: 767px) {
  .btn-menu {
    width: 54px;
    -webkit-background-size: 22px 22px;
    background-size: 22px; }
  .header-logo {
    width: 42px; }
    .header-logo a {
      display: block; }
    .header-logo-desc {
      display: none; }
    .header-logo-img {
      width: auto; }
  .header-content {
    padding: 8px 54px 8px 0; }
  .header-nav .icon {
    font-size: 16px; }
  .header-nav-top {
    margin-right: 10px; }
  .header-nav-column {
    padding: 2px 8px; }
  .header-nav-search .btn-search {
    width: 25px;
    height: 25px;
    line-height: 25px; }
  .header-nav-profile a {
    width: 25px;
    height: 25px;
    line-height: 25px; }
  .header-menu {
    width: 300px; }
  .header .search-block-scrolled {
    max-height: -webkit-calc(100vh - 132px);
    max-height: calc(100vh - 132px); }
  .header .search-block .search-categories {
    padding-right: 15px; }
    .header .search-block .search-categories li {
      margin: 0 0 20px; }
      .header .search-block .search-categories li a {
        font-size: 13px; }
  .header .search-block .search-results {
    padding-left: 15px; }
  .header .search-block .search-results-item {
    margin: 0 0 15px; }
  .header .search-block .search-results-link {
    font-size: 13px; }
  .header .search-block .search-results-value {
    margin: 0 0 2px; }
  .header .search-block .search-results-date {
    font-size: 12px; }
  .header .search-block .search-results-actions {
    margin: 20px 0 30px; }
  .menu {
    padding-left: 15px;
    padding-right: 15px; }
    .menu a {
      font-size: 13px; }
    .menu-header {
      font-size: 14px;
      margin: 0 0 10px;
      padding: 0 0 10px; }
      .menu-header .btn-close {
        font-size: 16px;
        height: 25px;
        width: 25px;
        line-height: 25px; }
    .menu-category-head {
      padding-top: 6px;
      padding-bottom: 6px; }
      .menu-category-head a {
        font-size: 16px; }
    .menu-category-item .menu-category-head a {
      font-size: 14px; }
    .menu-footer {
      margin: 10px 0 0;
      padding: 10px 0 0; }
      .menu-footer-section {
        margin: 0 0 10px;
        padding: 0 0 10px; }
      .menu-footer .address-list {
        margin: 0 0 10px; }
      .menu-footer .socials-list-link {
        font-size: 18px; }
  .address-item p {
    font-size: 14px;
    line-height: 22px; } }

@media only screen and (max-width: 560px) {
  .header-menu {
    width: 100%; } }

.search-panel input {
  width: 100%;
  height: 36px;
  border-left: 0 none;
  border-right: 0 none;
  border-top: 0 none;
  outline: 0 none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  padding-right: 56px;
  background: none;
  color: #ffffff; }
  .search-panel input::-webkit-input-placeholder {
    opacity: 0.7;
    color: #fff; }
  .search-panel input:-moz-placeholder {
    opacity: 0.7;
    color: #fff; }
  .search-panel input::-moz-placeholder {
    opacity: 0.7;
    color: #fff; }
  .search-panel input:-ms-input-placeholder {
    opacity: 0.7;
    color: #fff; }

.search-block {
  position: relative;
  padding: 20px 0;
  overflow: hidden; }
  .search-block-scrolled {
    margin-right: -60px;
    padding-right: 60px;
    overflow-y: scroll;
    overflow-x: hidden; }
  .search-block-body {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex; }
    .search-block-body .search-results-list {
      margin-top: 0; }
  .search-block .search-results {
    width: -webkit-calc(100% - 122px);
    width: calc(100% - 122px);
    padding-left: 30px; }
  .search-block .search-categories {
    width: 122px;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 30px;
    text-align: right;
    border-right: 1px solid rgba(0, 0, 0, 0.1); }

.search-categories li {
  margin: 0 0 40px; }
  .search-categories li:last-child {
    margin: 0; }

.search-categories a {
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 15px;
  line-height: normal;
  color: #474747;
  display: block;
  -webkit-transition: color .3s;
  -o-transition: color .3s;
  transition: color .3s;
  text-decoration: none; }
  .search-categories a:hover {
    coor: #72091C; }

.search-results {
  text-align: left; }
  .search-results-item {
    margin: 0 0 20px; }
    .search-results-item:last-child {
      margin: 0; }
  .search-results-link {
    font-family: "Roboto", sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 15px;
    line-height: normal;
    color: #474747;
    -webkit-transition: color .3s;
    -o-transition: color .3s;
    transition: color .3s;
    text-decoration: none; }
    .search-results-link strong {
      font-weight: 700; }
    .search-results-link:hover {
      color: #72091C; }
      .search-results-link:hover .search-results-date {
        opacity: 1; }
  .search-results-value {
    display: block;
    margin: 0 0 5px; }
  .search-results-date {
    font-size: 15px;
    opacity: 0.5;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s; }
  .search-results-actions {
    margin: 30px 0 0; }
    .search-results-actions .link {
      color: #474747; }
      .search-results-actions .link:hover {
        color: #72091C; }
  .search-results-list {
    margin: 30px 0 0; }
  .search-results-section {
    margin: 0 0 30px;
    padding: 0 0 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1); }
    .search-results-section:last-child {
      margin: 0;
      padding: 0;
      border-bottom: 0 none; }
  .search-results-title {
    font-family: "Roboto", sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    line-height: 30px;
    -webkit-transition: color .3s;
    -o-transition: color .3s;
    transition: color .3s;
    margin: 0 0 5px;
    position: relative; }
    .search-results-title:hover {
      color: #72091C; }
    .search-results-title a {
      color: inherit;
      text-decoration: none; }
  .search-results-desc {
    font-family: "Roboto", sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 13px;
    line-height: 21px;
    color: #474747;
    margin: 0 0 10px; }
  .search-results .breadcrumbs {
    margin: 0 0 5px; }
    .search-results .breadcrumbs-item {
      text-transform: none; }
      .search-results .breadcrumbs-item:before {
        content: "\e900";
        font-family: 'icomoon' !important;
        speak: none;
        font-style: normal;
        font-weight: normal;
        font-variant: normal;
        text-transform: none;
        line-height: 1;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        color: #474747;
        font-size: 11px;
        margin: 0 10px; }
      .search-results .breadcrumbs-item a:hover {
        text-decoration: none;
        color: #72091C; }
    .search-results .breadcrumbs-element {
      text-transform: none; }

.search-form {
  position: relative; }
  .search-form .btn-search {
    color: #474747;
    width: 30px;
    height: 30px; }

@media only screen and (max-width: 767px) {
  .search-categories .simple-scroll {
    max-width: 100%;
    overflow-y: hidden;
    overflow-x: auto;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    margin-bottom: -15px; }
    .search-categories .simple-scroll::-webkit-scrollbar {
      display: none; }
    .search-categories .simple-scroll ul {
      display: block;
      white-space: nowrap;
      margin-left: 0;
      margin-right: 0; } }

.article {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 30px 0;
  background: #F6F6F6;
  display: block;
  overflow: hidden; }
  .article:before, .article:after {
    content: "";
    display: table; }
  .article:after {
    clear: both; }
  .article-head {
    text-align: center;
    margin: 0 0 50px; }
    .article-head .tags-list {
      -webkit-box-pack: center;
      -webkit-justify-content: center;
      -ms-flex-pack: center;
      justify-content: center; }
  .article-title {
    font-family: "Gilroy Extra Bold", sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 42px;
    line-height: 60px;
    text-align: center;
	margin-bottom: 12px;
    color: #474747;
    /*margin: 0 auto 10px;*/
  }
  .article-title h1{
	  font-family: "Gilroy Extra Bold", sans-serif;
  }
  .article-info {
    margin: 0 0 20px; }
    .article-info ul li {
      display: inline;
      font-family: "Roboto", sans-serif;
      font-style: normal;
      font-weight: normal;
      font-size: 13px;
      line-height: 21px;
      text-align: center;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      color: #474747; }
      .article-info ul li:before {
        content: ' • '; }
      .article-info ul li:first-child:before {
        display: none; }
  .article-image {
    margin: auto;
    position: relative;
    z-index: 1; }
    .article-image img {
      display: block;
      margin: auto;
      max-width: 100%; }
  .article .video-poster {
    position: absolute; }
  .article * {
    font-family: "Roboto", sans-serif;
    color: inherit; }
  .article h2, .article h3, .article h4, .article h5, .article h6 {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
	border-bottom: none !important;}
  .article-content {
    position: relative;
    margin-top: -150px;
    background: none;
    padding: 50px 0 30px;
    z-index: 3; }
    .article-content .table, .article-content table {
      min-width: 680px; }
    .article-content *:not(.services-item-name p) {
      font-family: "Roboto", sans-serif;
      color: #474747;
	  text-align: left;}
    .article-content h1, .article-content h2, .article-content h3, .article-content h4, .article-content h5, .article-content h6 {
      line-height: normal;
      font-weight: 700;
      font-family: "Gilroy Extra Bold", sans-serif;
      padding: 0;
      margin: 30px 0 30px; }
      /*.article-content h1:first-child, .article-content h2:first-child, .article-content h3:first-child, .article-content h4:first-child, .article-content h5:first-child, .article-content h6:first-child {
        margin-top: 0; }*/
    .article-content h1, .article h1, .page-content h1{
      font-size: 42px;
      font-weight: normal; }
    .article-content h2, .article h2, .page-content h2 {
      font-size: 32px; }
    .article-content h3, .article h3, .page-content h3 {
      font-size: 24px; }
    .article-content h4, .article h4, .page-content h4 {
      font-size: 24px; }
    .article-content h5, .article h5, .page-content h5 {
      font-size: 20px; }
    .article-content h6, .article h6, .page-content h6 {
      font-size: 24px;
      line-height: 36px;
      font-weight: normal;
      font-style: normal; }
    .article-content div {
      position: relative; }
      .article-content div aside {
        position: absolute;
        top: 0;
        left: 100%;
        -webkit-transform: translateX(70px);
        -ms-transform: translateX(70px);
        -o-transform: translateX(70px);
        transform: translateX(70px);
        display: block;
        width: 225px; }
      .article-content div .document {
        text-decoration: none; }
        .article-content div .document-name {
          font-weight: 700;
          color: #72091C; }
        .article-content div .document-link {
          text-decoration: none;
          color: #474747; }
          .article-content div .document-link:hover {
            color: #72091C; }
    .article-content strong {
      font-weight: 700;
      font-size: inherit;
      line-height: inherit; }
    .article-content p, .article .offices-info-list p {
     font-size: 18px;
     /* font-size: inherit;*/
      line-height: 30px;
     /* font-weight: normal;*/
      font-weight: inherit;
      font-style: normal;
      margin: 0 0 30px;
      overflow: hidden;
      text-overflow: ellipsis;
      max-width: 100%; }
      /*.article-content p:last-child {
        margin: 0; }*/
      .article-content p a, .offices-content p a {
        text-decoration: none;
        /*color: #72091C;*/
        color: #da7f0a; }
		.offices-content p a:hover, .cms-content a:hover{
			color: #da7f0a;
			text-decoration: underline;
		}
      .article-content p strong {
        font-style: inherit;
        font-family: inherit;
        line-height: inherit;
        font-weight: 700; }
        .article-content p strong a {
          font-weight: normal;
          font-family: inherit; }
      .article-content p img {
        display: inline-block; }
        .article-content p img.to-center {
          margin-right: 26px; }
          .article-content p img.to-center:last-child, .article-content p img.to-center:nth-child(2n) {
            margin-right: auto; }
    .article-content a {
      text-decoration: none;
      color: inherit;}
      .article-content a:hover {
        text-decoration: underline;}
    .article-content section {
      margin: 30px auto; }
      .article-content section:before, .article-content section:after {
        content: "";
        display: table; }
      .article-content section:after {
        clear: both; }
      .article-content section:first-child {
        margin-top: 0; }
      .article-content section:last-child {
        margin-bottom: 0; }
      .article-content section figure {
        float: left;
        max-width: -webkit-calc(50% - 30px);
        max-width: calc(50% - 30px);
        width: 50%;
        margin-right: 30px; }
      .article-content section figcaption {
        text-align: left; }
    .article-content figure {
      margin: 30px auto;
      display: block; }
      .article-content figure:first-child {
        margin-top: 0; }
      .article-content figure:last-child {
        margin-bottom: 0; }
      .article-content figure img {
        margin: 0;
        max-width: 100%; }
    .article-content figcaption {
      display: block;
      margin: 10px 0 0;
      text-align: center;
      font-family: "Roboto", sans-serif;
      font-style: normal;
      font-weight: normal;
      font-size: 13px;
      line-height: 20px; }
      .article-content figcaption span {
        display: block;
        color: #474747; }
      .article-content figcaption small {
        color: rgba(71, 71, 71, 0.5); }
    .article-content mark {
      display: block;
      margin: 30px 0;
      padding-left: 15px;
      border-left: 5px solid #72091C;
      background: none; }
      .article-content mark:last-child {
        margin-top: 0; }
      .article-content mark:last-child {
        margin-bottom: 0; }
    .article-content ul {
      list-style: none; }
      .article-content ul > li {
        padding-left: 26px; }
        .article-content ul > li:before {
          content: '•';
          color: #72091C;
          line-height: inherit;
          display: inline-block;
          position: absolute;
          left: 0;
          top: 0; }
    .article-content ol {
      counter-reset: section;
      list-style-type: none; }
      .article-content ol > li {
        padding-left: 26px; }
        .article-content ol > li:before {
          counter-increment: section;
          content: counters(section, ".") ".";
          color: #474747;
          font-size: inherit;
          font-family: inherit;
          font-weight: 700;
          position: absolute;
          left: 0;
          top: 0; }
        .article-content ol > li ol li {
          padding-left: 40px; }
          .article-content ol > li ol li ol li {
            padding-left: 50px; }
          .article-content ol > li ol li:before {
            content: counters(section, ".") ""; }
    .article-content blockquote {
      padding-left: 50px;
      font-style: italic;
      margin: 30px 0;
      position: relative;
      color: #72091C; }
      .article-content blockquote:before {
        content: "\e90e";
        position: absolute;
        left: 0;
        top: 0;
        font-family: 'icomoon' !important;
        speak: none;
        font-style: normal;
        font-weight: normal;
        font-variant: normal;
        text-transform: none;
        line-height: 1;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        color: #72091C;
        font-size: 22px; }
      .article-content blockquote:first-child {
        margin-top: 0; }
      .article-content blockquote:last-child {
        margin-top: 0; }
      .article-content blockquote figure img {
        display: inline-block;
        vertical-align: middle;
        margin-right: 10px; }
      .article-content blockquote figure figcaption {
        display: inline-block;
        vertical-align: middle;
        text-align: left; }
        .article-content blockquote figure figcaption strong {
          font-size: 18px;
          line-height: 30px; }
    .article-content ul:not(.slick-dots), .article-content ol:not(.slick-dots) {
      margin: 30px 0 30px;
      padding: 0; }
      .article-content ul:not(.slick-dots) ol:last-child, .article-content ul:not(.slick-dots) ul:last-child, .article-content ol:not(.slick-dots) ol:last-child, .article-content ol:not(.slick-dots) ul:last-child {
        margin-bottom: 30px; 
        }
      .article-content ul:not(.slick-dots) li, .article-content ol:not(.slick-dots) li {
        margin: 0 0 10px;
        font-family: inherit;
        font-weight: normal;
        font-style: normal;
        font-size: 18px;
        line-height: 30px;
        position: relative; }
		.article-content ol:not(.slick-dots){
			 margin-top: 15px !important;
		}.article-content ol:not(.slick-dots) li {
			list-style: none;
			
		}
        .article-content ul:not(.slick-dots) li:last-child, .article-content ol:not(.slick-dots) li:last-child {
          margin-bottom: 0; }
      .article-content ul:not(.slick-dots):last-child, .article-content ol:not(.slick-dots):last-child {
        margin-bottom: 0; }
      .article-content ul:not(.slick-dots):first-child, .article-content ol:not(.slick-dots):first-child {
        margin-top: 0; }
    .article-content img {
      display: block;
      margin-left: auto;
      margin-right: auto;
      max-width: 100%; }
  .article-body {
    max-width: 1000px;
    margin: auto;
    background: #ffffff;
    padding: 50px 150px 0; }
    .article-body > section {
      width: -webkit-calc(100% + 590px);
      width: calc(100% + 590px);
      margin-left: -295px;
      margin-right: -295px; }
    .article-body > figure {
      width: -webkit-calc(100% + 300px);
      width: calc(100% + 300px);
      margin-left: -150px;
      margin-right: -150px; }

.tags-title {
  margin: 0 0 5px;
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: normal;
  color: rgba(71, 71, 71, 0.5); }
  .tags-title p {
    color: inherit; }

.tags-list {
  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;
  margin-left: -5px;
  margin-right: -5px; }

.tags-item {
  display: inline-block;
  margin: 5px 5px; }
  .tags-item a {
    text-decoration: none; }

.tag {
  font-family: "Roboto", sans-serif;
  color: #474747;
  font-size: 13px;
  line-height: 20px;
  font-weight: normal;
  font-style: normal;
  background: #E7E7E7;
  border-radius: 6px;
  padding: 5px 11px;
  display: block;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s; }
  .tag:hover {
    background: #72091C;
    color: #fff; }

@media only screen and (max-width: 1366px) {
  .article-body {
    padding-left: 50px;
    padding-right: 50px; }
    .article-body > section {
      margin-left: -119px;
      margin-right: -199px;
      width: -webkit-calc(100% + 238px);
      width: calc(100% + 238px); }
    .article-body > figure {
      width: -webkit-calc(100% + 100px);
      width: calc(100% + 100px);
      margin-left: -50px;
      margin-right: -50px; }
  .article-content div aside {
    position: static;
    margin: 20px 0;
    top: auto;
    left: auto;
    -webkit-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
    padding: 20px 20px;
    border: 2px solid #72091C; } }

@media only screen and (max-width: 1200px) {
  .article-body {
    padding: 30px 30px 0; }
    .article-body > section {
      width: 100%;
      margin-left: auto;
      margin-right: auto; }
    .article-body > figure {
      width: 100%;
      margin-left: auto;
      margin-right: auto; }
  .article-content section figure {
    width: auto;
    float: none;
    margin: 30px auto 30px;
    max-width: unset; }
    .article-content section figure img {
      margin-left: auto;
      margin-right: auto; }
    .article-content section figure:first-child {
      margin-top: 0; }
    .article-content section figure:last-child {
      margin-bottom: 0; }
    .article-content section figure + br {
      display: none; }
  .article-content section figcaption {
    text-align: center; } }

@media only screen and (max-width: 992px) {
  .article-title {
    font-size: 36px;
    line-height: 42px; }
  .article-head {
    margin: 0 0 30px; }
  .article-content {
    padding: 30px 0 30px; }
    .article-content h1 {
      font-size: 36px;
      line-height: 42px; }
    .article-content h2 {
      font-size: 30px;
      line-height: 36px; }
    .article-content h3 {
      font-size: 24px;
      line-height: 32px; }
    .article-content h4 {
      font-size: 22px;
      line-height: 30px; }
    .article-content h5 {
      font-size: 16px;
      line-height: 24px;
      text-transform: none; }
    .article-content h6 {
      font-size: 20px;
      line-height: 32px; }
    .article-content p {
      /*font-size: 16px;
      line-height: 24px;*/
	  font-size: 20px;
      line-height: 32px;
	  }
    .article-content ul:not(.slick-dots) li, .article-content ol:not(.slick-dots) li {
      font-size: 16px;
      line-height: 24px; }
    .article-content ul > li:before {
      margin-right: 10px; }
    .article-content ol > li:before {
      margin-right: 10px; }
    .article-content blockquote p {
      margin: 0 0 20px; }
    .article-content blockquote figure {
      margin: 20px 0; }
      .article-content blockquote figure figcaption strong {
        font-size: 16px;
        line-height: 24px; } }

@media only screen and (max-width: 767px) {
  .article-title {
    font-size: 26px;
    line-height: 40px; }
  .article-content {
    margin: -80px 0 0; }
    .article-content h1 {
      font-size: 30px;
      line-height: 40px; }
    .article-content h2 {
      font-size: 24px;
      line-height: 32px; }
    .article-content h3 {
      font-size: 22px;
      line-height: 32px; }
    .article-content h4 {
      font-size: 18px;
      line-height: 30px; }
    .article-content h5 {
      font-size: 14px;
      line-height: 24px;
      text-transform: none; }
    .article-content h6 {
      font-size: 20px;
      line-height: 30px; }
    .article-content blockquote {
      padding-left: 30px; }
      .article-content blockquote:before {
        font-size: 16px; }
  .article-body {
    padding: 15px 15px; } }

@media only screen and (max-width: 767px) {
  .article-content {
    margin: 0; }
  .article-body {
    padding: 0; } }

.sidebar-panel {
  background: #72091C;
  padding: 20px 30px;
  color: #ffffff; }
  .sidebar-panel-head {
    margin: 0 0 35px; }
  .sidebar-panel-body {
    max-height: 226px;
    overflow-y: auto; }
  .sidebar-panel-item {
    margin: 0 0 30px; }
    .sidebar-panel-item:last-child {
      margin: 0 0; }
    .sidebar-panel-item a {
      font-family: "Roboto", sans-serif;
      font-style: normal;
      font-weight: normal;
      font-size: 18px;
      line-height: normal;
      color: #FFFFFF;
      text-decoration: none; }
      .sidebar-panel-item a:hover {
        text-decoration: underline; }

.sidebar-division {
  display: block;
  color: #ffffff;
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: normal;
  line-height: normal;
  -webkit-text-decoration-line: none;
  -moz-text-decoration-line: none;
  text-decoration-line: none;
  margin: 0 0 15px; }
  .sidebar-division:last-child {
    margin: 0; }
  .sidebar-division:hover .sidebar-division-name {
    text-decoration: none; }
  .sidebar-division-title {
    font-family: "Roboto", sans-serif;
    font-style: normal;
    font-weight: bold;
    font-size: 32px;
    line-height: normal;
    color: #474747;
    margin: 0 0 20px; }
    .sidebar-division-title:last-child {
      margin: 0; }
  .sidebar-division-name {
    display: block;
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 3px;
    text-decoration: underline; }
  .sidebar-division-link {
    font-size: 13px;
    font-weight: normal;
    text-decoration: none; }
    .sidebar-division-link .icon {
      font-size: 6px;
      margin-left: 5px; }

.sidebar-links-item {
  margin: 0 0 20px; }
  .sidebar-links-item:last-child {
    margin: 0; }
  .sidebar-links-item > a, .sidebar-links-item > span {
    text-decoration: none;
    display: inline-block;
    font-family: "Gilroy Extra Bold", sans-serif;
    font-style: normal;
    font-weight: bold;
    font-size: 18px;
    line-height: normal;
    color: rgba(71, 71, 71, 0.5);
    -webkit-transition: color .3s;
    -o-transition: color .3s;
    transition: color .3s;
    cursor: pointer; }
    .sidebar-links-item > a:hover, .sidebar-links-item > span:hover {
      color: #474747; }

.sidebar-section {
  margin: 0 0 30px;
  padding: 0 0 30px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1); }
  .sidebar-section:last-child {
    margin: 0 0;
    padding: 0 0;
    border-bottom: 0 none; }

.sidebar-title {
  margin: 0 0 10px;
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 30px;
  color: rgba(71, 71, 71, 0.3); }

.sidebar-event {
  margin: 0 0 20px;
  padding: 0 0 20px;
  position: relative;
  display: block;
  text-decoration: none;
  color: #474747; }
  .sidebar-event:before {
    content: '';
    display: block;
    height: 1px;
    width: 50%;
    position: absolute;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.1); }
  .sidebar-event:last-child {
    margin: 0 0;
    padding: 0 0; }
    .sidebar-event:last-child:before {
      display: none; }
  .sidebar-event-date {
    font-family: "Roboto", sans-serif;
    font-style: normal;
    font-weight: bold;
    font-size: 22px;
    line-height: normal;
    color: #72091C;
    margin: 0 0 10px; }
  .sidebar-event-desc {
    font-family: "Roboto", sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    line-height: 30px;
    color: #474747; }

.sidebar-subscription-title {
  font-family: "Gilroy Extra Bold", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 22px;
  margin-top: 20px;
  line-height: normal;
  text-transform: uppercase;
  color: #474747;
  margin: 0 0 10px; }

.sidebar-subscription-desc {
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 30px;
  color: #474747;
  margin: 0 0 10px; }

.sidebar-desc {
  margin: 20px 0;
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 30px;
  color: #474747; }
  .sidebar-desc:first-child {
    margin-top: 0; }
  .sidebar-desc:last-child {
    margin-bottom: 0; }

.sidebar-actions {
  margin: 20px 0 0; }

.sidebar-accordion-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1); }
  .sidebar-accordion-item:last-child {
    border-bottom: 0 none; }
  .sidebar-accordion-item.is-opened .sidebar-accordion-head .icon {
    -webkit-transform: translateY(-50%) rotate(-90deg);
    -ms-transform: translateY(-50%) rotate(-90deg);
    -o-transform: translateY(-50%) rotate(-90deg);
    transform: translateY(-50%) rotate(-90deg); }

.sidebar-accordion-head {
  padding: 20px 28px 20px 0;
  position: relative;
  cursor: pointer; }
  .sidebar-accordion-head .icon {
    position: relative; }
  .sidebar-accordion-head .icon {
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(90deg);
    -ms-transform: translateY(-50%) rotate(90deg);
    -o-transform: translateY(-50%) rotate(90deg);
    transform: translateY(-50%) rotate(90deg);
    font-size: 10px;
    color: #474747;
    -webkit-transition: -webkit-transform .3s;
    transition: -webkit-transform .3s;
    -o-transition: -o-transform .3s;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s, -o-transform .3s; }
  .sidebar-accordion-head:hover .sidebar-accordion-title {
    color: #72091C; }
  .sidebar-accordion-head:hover .icon {
    color: #72091C; }

.sidebar-accordion-title {
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 18px;
  line-height: normal;
  color: #474747; }

.sidebar-accordion-body {
  display: none;
  padding: 0 0 20px; }
  .sidebar-accordion-body ul li {
    margin: 0 0 15px; }
    .sidebar-accordion-body ul li:last-child {
      margin: 0; }
  .sidebar-accordion-body a {
    font-family: "Roboto", sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    line-height: normal;
    color: #474747;
    text-decoration: none;
    -webkit-transition: color .3s;
    -o-transition: color .3s;
    transition: color .3s; }
    .sidebar-accordion-body a:hover {
      color: #72091C; }
    .sidebar-accordion-body a.active {
      color: #72091C; }

.sidebar-documents .document {
  margin: 0 0 30px; }
  .sidebar-documents .document:last-child {
    margin: 0; }

@media only screen and (max-width: 1366px) {
  .sidebar-links-item a, .sidebar-links-item span {
    font-size: 20px; } }

@media only screen and (max-width: 1200px) {
  .sidebar-panel {
    padding: 30px 30px; }
    .sidebar-panel-content {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex; }
    .sidebar-panel-head {
      width: 320px;
      -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
      flex-shrink: 0;
      padding-right: 40px;
      margin: 0 40px 0 0;
      border-right: 1px solid rgba(255, 255, 255, 0.3); }
    .sidebar-panel-body {
      width: -webkit-calc(100% - 360px);
      width: calc(100% - 360px);
      max-height: none;
      padding-left: 0; }
    .sidebar-panel-list {
      margin-left: -15px;
      margin-right: -15px;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      padding-right: 50px; }
    .sidebar-panel-item {
      width: -webkit-calc(50% - 30px);
      width: calc(50% - 30px);
      margin: 30px 15px 0; }
      .sidebar-panel-item:last-child {
        margin: 30px 15px 0; }
      .sidebar-panel-item:nth-child(1), .sidebar-panel-item:nth-child(2) {
        margin-top: 0; }
      .sidebar-panel-item a {
        font-size: 16px; }
  .sidebar-division-name {
    font-size: 18px; }
  .sidebar-division-title {
    font-size: 24px; }
  .sidebar-accordion-head {
    padding: 10px 28px 10px 0; }
  .sidebar-accordion-title {
    font-size: 18px; }
  .sidebar-event-date {
    font-size: 18px; }
  .sidebar-event-desc {
    font-size: 16px;
    line-height: 24px; }
  .sidebar-subscription-title {
    font-size: 18px; }
  .sidebar-subscription-desc {
    font-size: 16px;
    line-height: 24px; }
  .sidebar-links-item a, .sidebar-links-item span {
    font-size: 18px; } }

@media only screen and (max-width: 992px) {
  .sidebar-panel {
    padding: 20px 20px; }
    .sidebar-panel-head {
      width: 240px;
      padding-right: 20px;
      margin: 0 20px 0 0; }
    .sidebar-panel-body {
      width: -webkit-calc(100% - 260px);
      width: calc(100% - 260px); }
    .sidebar-panel-list {
      padding-right: 0; }
  .sidebar-division-title {
    font-size: 20px; } }

@media only screen and (max-width: 767px) {
  .sidebar-panel {
    padding: 20px 20px; }
    .sidebar-panel-head {
      width: 225px;
      padding-right: 15px;
      margin: 0 15px 0 0; }
    .sidebar-panel-body {
      width: -webkit-calc(100% - 240px);
      width: calc(100% - 240px);
      max-height: 360px; }
    .sidebar-panel-list {
      display: block;
      margin: 0; }
    .sidebar-panel-item {
      margin: 0 0 15px;
      width: 100%; }
      .sidebar-panel-item:last-child {
        margin: 0;
        width: 100%; }
  .sidebar-accordion-title {
    font-size: 16px; }
  .sidebar-accordion-body a {
    font-size: 16px; }
  .sidebar-links-item a, .sidebar-links-item span {
    font-size: 16px; }
  .sidebar-desc {
    font-size: 16px;
    line-height: 24px; } }

@media only screen and (max-width: 560px) {
  .sidebar-panel-content {
    display: block; }
  .sidebar-panel-head {
    width: 100%;
    padding: 0 0 20px;
    margin: 0 0 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    border-right: 0 none; }
  .sidebar-panel-body {
    width: 100%; } }

.promo {
  background: #000000; }
  .promo-title {
    font-family: "Roboto", sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 50px;
    line-height: 70px;
    color: #FFFFFF;
    max-width: 860px; }
  .promo-body {
    position: relative; }
  .promo-top {
    position: relative; }
  .promo-bottom {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 20px; }
  .promo-main-slide {
    padding: 175px 0;
    -webkit-background-size: cover;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative; }
    .promo-main-slide:before {
      content: '';
      position: absolute;
      left: 0;
      right: 0;
      top: 0;
      bottom: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5); }
    .promo-main-slide .container {
      position: relative;
      z-index: 2; }
  .promo-main-pagination {
    position: absolute;
    left: 0;
    right: 0;
    top: 145px;
    z-index: 2; }
    .promo-main-pagination .pagination {
      margin: 0; }
  .promo-previews-slider .slick-list {
    margin: 0 -15px; }
  .promo-previews-slide {
    margin: 0 15px;
    cursor: pointer;
    padding: 0 0 0 20px;
    position: relative;
    overflow: hidden; }
    .promo-previews-slide:before, .promo-previews-slide:after {
      content: '';
      left: 0;
      bottom: 0;
      top: 0;
      height: 100%;
      width: 2px;
      background: #ffffff;
      display: block;
      position: absolute; }
    .promo-previews-slide:before {
      z-index: 1; }
    .promo-previews-slide:after {
      top: 100%;
      z-index: 2;
      background: #a58540; }
    .promo-previews-slide.slick-current:after {
      top: 0; }
    .promo-previews-slide.slick-current + .slick-slide:after {
      -webkit-animation-name: toTop;
      -o-animation-name: toTop;
      animation-name: toTop;
      -webkit-animation-duration: 5.4s;
      -o-animation-duration: 5.4s;
      animation-duration: 5.4s;
      -webkit-animation-fill-mode: forwards;
      -o-animation-fill-mode: forwards;
      animation-fill-mode: forwards; }
    .promo-previews-slide .promo-title {
      font-style: normal;
      font-weight: normal;
      font-size: 18px;
      line-height: 30px;
      max-height: 60px;
      overflow: hidden;
      text-overflow: ellipsis;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical; }
  .promo-controls {
    display: none;
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    z-index: 2; }
    .promo-controls .arrow {
      color: #ffffff;
      font-size: 20px; }

@-webkit-keyframes toTop {
  0% {
    top: 100%; }
  100% {
    top: 0; } }

@-o-keyframes toTop {
  0% {
    top: 100%; }
  100% {
    top: 0; } }

@keyframes toTop {
  0% {
    top: 100%; }
  100% {
    top: 0; } }

@media only screen and (max-width: 1366px) {
  .promo-title {
    font-size: 42px;
    line-height: 60px; }
  .promo-main-slide {
    padding: 160px 0; }
  .promo-main-pagination {
    top: 134px; } }

@media only screen and (max-width: 1200px) {
  .promo-title {
    font-size: 36px;
    line-height: 48px; }
  .promo-main-slide {
    padding: 120px 0; }
  .promo-main-pagination {
    top: 100px; }
  .promo-previews-slide {
    padding: 0 0 0 15px; }
    .promo-previews-slide .promo-title {
      font-size: 16px;
      line-height: 24px; } }

@media only screen and (max-width: 992px) {
  .promo-title {
    font-size: 30px;
    line-height: 42px; }
  .promo-main-slide {
    padding: 120px 0 80px; }
  .promo-bottom {
    display: none; }
  .promo-controls {
    display: block; } }

@media only screen and (max-width: 767px) {
  .promo-title {
    font-size: 28px; } }

.news-section {
  margin: 50px 0 70px; }
  .news-section-row {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin: 0 -15px; }
  .news-section-content {
    width: -webkit-calc(75% - 30px);
    width: calc(75% - 30px);
    margin: 0 15px; }
    .news-section-content .news-list {
      min-height: 100%; }
  .news-section-sidebar {
    width: -webkit-calc(25% - 30px);
    width: calc(25% - 30px);
    margin: 0 15px; }

.news-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -15px; }
  .news-list .news-item {
    width: -webkit-calc(33.33333% - 30px);
    width: calc(33.33333% - 30px); }
  .news-list-full .news-item {
    width: -webkit-calc(25% - 30px);
    width: calc(25% - 30px); }
    .news-list-full .news-item:nth-child(4) {
      margin-top: 0; }

.news-item {
  display: block;
  text-decoration: none;
  background: #ffffff;
  margin: 30px 15px 0;
  color: #474747;
  position: relative; }
  .news-item:nth-child(1), .news-item:nth-child(2), .news-item:nth-child(3) {
    margin-top: 0; }
  .news-item:before {
    content: '';
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 0;
    height: 110px;
    border-radius: 10px;
    z-index: 1;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s; }
  .news-item:hover:before {
    opacity: 1;
    -webkit-box-shadow: 0 15px 40px rgba(35, 35, 35, 0.2);
    box-shadow: 0 15px 40px rgba(35, 35, 35, 0.2); }
  .news-item-content {
    min-height: 100%;
    position: relative;
    z-index: 2;
    padding: 20px 20px;
    background: inherit; }
  .news-item-image {
    margin: 0 0 10px;
	height: 190px;
	overflow: hidden;}
    .news-item-image img {
      display: block;
      margin: auto;
      max-width: 100%; }
  .news-item-date {
    margin: 0 0 10px;
    font-family: "Roboto", sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 13px;
    line-height: 21px;
    color: rgba(71, 71, 71, 0.5); }
  .news-item-desc {
    font-family: "Roboto", sans-serif;
    font-style: normal;
    font-weight: normal;
	min-height: 90px;
    font-size: 18px;
    line-height: 30px;
    color: #474747;
    margin: 0 0 10px; }
  .news-item-actions {
    margin: 0 0 40px; }
  .news-item .link-next {
    border-color: #72091C;
    color: #72091C; }

@media only screen and (max-width: 1200px) {
  .news-section-row {
    display: block;
    margin: 0; }
  .news-section-content {
    width: 100%;
    margin: 0 0 30px; }
  .news-section-sidebar {
    width: 100%;
    margin: 0; }
  .news-item-desc {
    font-size: 16px;
    line-height: 24px; } }

@media only screen and (max-width: 992px) {
  .news-list .news-item {
    width: -webkit-calc(50% - 30px);
    width: calc(50% - 30px); }
    .news-list .news-item:nth-child(3) {
      margin-top: 30px; }
  .news-list-full .news-item:nth-child(4) {
    margin-top: 30px; } }

@media only screen and (max-width: 560px) {
  .news-list {
    display: block;
    margin: 0; }
    .news-list .news-item {
      width: 100%;
      margin: 0 0 15px; }
      .news-list .news-item:nth-child(1), .news-list .news-item:nth-child(2), .news-list .news-item:nth-child(3), .news-list .news-item:nth-child(4) {
        margin-top: 0; }
  .news-section-content .news-list {
    min-height: unset; }
  .news-item-image img {
    width: 100%; }
  .news-item:before {
    display: none; } }

.services-head {
  margin-left: -20px;
  margin-right: -20px; }

.services-item {
  padding: 30px 30px 30px 30px;
  position: relative;
  background: #72091C;
  margin: 0 15px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  text-decoration: none;
  overflow: hidden;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: 170px; }
  .services-item:hover{
	text-decoration: underline;
	color: #ffffff;
}
  .services-item-name {
    font-family: "Roboto", sans-serif;
    font-style: normal;
    font-weight: bold;
    font-size: 22px;
    line-height: normal;
    color: #FFFFFF !important;
    position: relative;
    z-index: 2; }
  .services-item-name p{
	  font-weight: bold;
  }	
  .services-item-image {
    position: absolute;
    right: 0;
    bottom: 0;
    max-height: 100%; }
    .services-item-image img {
      max-width: 100%;
      max-height: 100%; }

.services-outside {
  width: -webkit-calc(100% + 100px);
  width: calc(100% + 100px);
  margin: 0 -50px; }

.services-slider .slick-list {
  padding: 0 15px; }

.services-slider .services-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex; }

.services-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
  margin-bottom: 50px; }
  .services-list .services-item {
    width: -webkit-calc(25% - 30px);
    width: calc(25% - 30px);
    margin: 30px 15px 0; }
    .services-list .services-item:nth-child(1), .services-list .services-item:nth-child(2), .services-list .services-item:nth-child(3), .services-list .services-item:nth-child(4) {
      margin-top: 0; }

@media only screen and (max-width: 1366px) {
  .services-item {
    padding: 15px 15px; } }

@media only screen and (max-width: 1200px) {
  .services-outside {
    margin: 0 -30px;
    width: -webkit-calc(100% + 60px);
    width: calc(100% + 60px); }
  .services-item-name {
    font-size: 18px; }
  .services-head {
    margin-left: 0;
    margin-right: 0; }
  .services-list .services-item {
    width: -webkit-calc(33.3333% - 30px);
    width: calc(33.3333% - 30px); }
    .services-list .services-item:nth-child(4) {
      margin-top: 30px; } }

@media only screen and (max-width: 992px) {
  .services-list .services-item {
    width: -webkit-calc(50% - 30px);
    width: calc(50% - 30px); }
    .services-list .services-item:nth-child(3) {
      margin-top: 30px; } }

@media only screen and (max-width: 767px) {
  .services-outside {
    margin: 0 -15px;
    width: -webkit-calc(100% + 30px);
    width: calc(100% + 30px); }
  .services-slider .slick-list {
    padding: 0; } }

@media only screen and (max-width: 560px) {
  .services-list {
    display: block;
    margin: 0; }
    .services-list .services-item {
      width: 100%;
      margin: 0 0 15px; }
      .services-list .services-item:nth-child(3), .services-list .services-item:nth-child(4) {
        margin-top: 0; }
      .services-list .services-item:last-child {
        margin-bottom: 0; } }

.analytics-form {
  background-color: #ffffff;
  padding: 50px 50px 50px 50px;
  margin: 50px 0; }
  .analytics-form:last-child {
    margin-bottom: 0; }
  .analytics-form:first-child {
    margin-top: 0; }
  .analytics-form-title {
    font-family: "Roboto", sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 50px;
    line-height: 70px;
    color: #474747;
    margin: 0 0 40px; }

.analytics-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex; }

.no-center{
	text-align: left !important;
}

.analytics-detail .title{
	margin-top: 30px;
}

.analytics-desc {
  margin: 0 0 20px;
  /*position: relative;
  bottom: -100px;*/
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 30px;
  color: #000000; }

.analytics-panel {
  margin: 0 0 35px; }
  .analytics-panel-name {
    margin: 0 0 20px;
    font-family: "Roboto", sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    line-height: normal;
    color: #72091C;
    padding: 0 0 0 36px;
    position: relative; }
    .analytics-panel-name:before {
      content: '';
      display: block;
      position: absolute;
      left: 0;
      top: 50%;
      -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      -o-transform: translateY(-50%);
      transform: translateY(-50%);
      width: 26px;
      height: 1px;
      background: #72091C; }
  .analytics-panel-list li {
    margin: 0 0 20px; }
    .analytics-panel-list li:last-child {
      margin: 0; }
    .analytics-panel-list li a {
      font-family: "Roboto", sans-serif;
      font-style: normal;
      font-weight: normal;
      font-size: 18px;
      line-height: normal;
      color: #474747;
      text-decoration: none;
      -webkit-transition: color .3s;
      -o-transition: color .3s;
      transition: color .3s; }
      .analytics-panel-list li a:hover {
        color: #72091C;
        text-decoration: underline; }

.analytics-detail {
  width: calc(33% - 30px);
  padding-left: 40px;
  margin-right: 30px;
  margin-top: 40px;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0; }

.analytics-categories {
  /*width: -webkit-calc(100% - 406px);
  width: calc(100% - 406px);*/
  width: 100%;
  overflow: hidden; }

.analytics-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -15px; }

.analytics-item {
  margin: 30px 15px 0;
  position: relative;
  padding: 30px 30px;
  background: #72091C;
  /*width: -webkit-calc(50% - 30px);
  width: calc(50% - 30px);*/
  width: -webkit-calc(33% - 30px);
  width: calc(33% - 30px);
  text-decoration: none;
  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;
  min-height: 250px;
  overflow: hidden; }
  .gray-item {
	  background-color: #dcdce1; 
	  color: black;
	  transition: all .3s ease;
  }
  .gray-item *{
	  color: black !important;
  }
  .gray-item:hover {
	  background-color: #a58547; 
	  color: black !important;
  }
  .analytics-item:hover .analytics-item-image {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1); }
  /*.analytics-item:nth-child(1), .analytics-item:nth-child(2) {
    margin-top: 0; }*/
  .analytics-item-image {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    position: absolute;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    background-position: center;
    opacity: 0;
    -webkit-transition: all .6s;
    -o-transition: all .6s;
    transition: all .6s;
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2); }
  .analytics-item-name {
    position: relative;
    color: #ffffff;
    font-family: "Roboto", sans-serif;
    font-style: normal;
    font-weight: bold;
    font-size: 22px;
    line-height: normal;
    z-index: 2; }

@media only screen and (max-width: 1366px) {
  .analytics-form-title {
    font-size: 36px;
    line-height: 42px; } }

@media only screen and (max-width: 1200px) {
  .analytics-detail {
    width: 350px; }
  .analytics-categories {
    width: -webkit-calc(100% - 350px);
    width: calc(100% - 350px); }
  .analytics-item {
    padding: 20px 20px;
    min-height: 200px; }
    .analytics-item-name {
      font-size: 18px; }
  .analytics-desc {
    font-size: 16px;
    line-height: 24px; }
  .analytics-panel-name {
    font-size: 16px; }
  .analytics-panel-list li a {
    font-size: 16px; } }

@media only screen and (max-width: 992px) {
  .analytics-form {
    padding: 30px 30px 30px 30px; }
    .analytics-form-title {
      font-size: 30px;
      margin: 0 0 20px; }
  .analytics-list {
    margin: 0; }
  .analytics-item {
    width: 100%;
    margin: 0 0 30px; }
    .analytics-item-image {
      -webkit-transition: unset;
      -o-transition: unset;
      transition: unset;
      -webkit-transform: none;
      -ms-transform: none;
      -o-transform: none;
      transform: none;
      opacity: 1; } }

@media only screen and (max-width: 767px) {
  .analytics-form {
    padding: 20px 15px; }
    .analytics-form-title {
      font-size: 24px; }
  .analytics-row {
    display: block; }
  .analytics-detail {
    width: 100%;
    margin: 0 0 30px;
    padding: 0; }
  .analytics-categories {
    width: 100%; }
  .analytics-list {
    margin: 0 -15px; }
  .analytics-item {
    width: -webkit-calc(50% - 30px);
    width: calc(50% - 30px);
    margin: 0 15px 30px; } }

@media only screen and (max-width: 560px) {
  .analytics-list {
    display: block;
    margin: 0; }
  .analytics-item {
    width: 100%;
    margin: 0 0 15px; }
    .analytics-item:nth-child(1), .analytics-item:nth-child(2), .analytics-item:nth-child(3), .analytics-item:nth-child(4) {
      margin-top: 0; } }

.announcements-section {
  margin: 50px 0; }

.announcements-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -15px; }

.announcements-item {
  width: -webkit-calc(25% - 30px);
  width: calc(25% - 30px);
  margin: 0 15px 15px;
  overflow: hidden;
  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;
  text-decoration: none;
  position: relative;
  background: #474747;
  padding: 20px 20px;
  min-height: 250px; }
  .announcements-item:hover .announcements-item-image {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1); }
  .announcements-item:hover .announcements-item-date {
    color: #72091C; }
  .announcements-item-image {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: block;
    background-repeat: no-repeat;
    background-position: center;
    -webkit-background-size: cover;
    background-size: cover;
    opacity: 0;
    -webkit-transition: all .6s;
    -o-transition: all .6s;
    transition: all .6s;
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2); }
    .announcements-item-image:before {
      content: '';
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.7); }
  .announcements-item-body {
    position: relative;
    z-index: 2;
    overflow: hidden;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s; }
  .announcements-item-date {
    font-family: "Roboto", sans-serif;
    font-style: normal;
    font-weight: bold;
    font-size: 22px;
    line-height: normal;
    color: #FFFFFF;
    margin: 0 0 7px;
    -webkit-transition: color .3s;
    -o-transition: color .3s;
    transition: color .3s; }
  .announcements-item-desc {
    font-family: "Roboto", sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    line-height: 30px;
    color: #FFFFFF;
    margin: 0 0 10px;
    height: 120px;
    overflow: hidden;
    -ms-text-overflow: ellipsis;
    text-overflow: ellipsis; }
  .announcements-item-actions {
    opacity: 0;
    padding-top: 20px;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s; }

@media only screen and (max-width: 1200px) {
  .announcements-item {
    width: -webkit-calc(50% - 30px);
    width: calc(50% - 30px);
    min-height: 200px; }
    .announcements-item:nth-child(3), .announcements-item:nth-child(4) {
      margin-top: 15px; }
    .announcements-item-date {
      font-size: 18px; }
    .announcements-item-desc {
      font-size: 16px;
      line-height: 24px; } }

@media only screen and (max-width: 992px) {
  .announcements-item-image {
    -webkit-transition: unset;
    -o-transition: unset;
    transition: unset;
    -webkit-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
    opacity: 1; } }

@media only screen and (max-width: 560px) {
  .announcements-list {
    display: block;
    margin: 0; }
  .announcements-item {
    width: 100%;
    margin: 0 0 15px; }
    .announcements-item:nth-child(1), .announcements-item:nth-child(2), .announcements-item:nth-child(3), .announcements-item:nth-child(4) {
      margin-top: 0; } }

.regions-section {
  margin: 50px 0; }

.regions-row {
  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; }

.regions-map {
	order: 2;
  width: -webkit-calc(100% - 320px);
  width: calc(100% - 320px);
  padding-right: 30px; }

.regions-sidebar {
  order: 1;
  width: 300px;
  padding: 50px 30px 50px 5px;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  background: #ffffff; }
  .regions-sidebar-name {
    margin: 0 0 20px;
    font-family: "Roboto", sans-serif;
    font-style: normal;
    font-weight: bold;
    font-size: 32px;
    line-height: normal;
    color: #474747; }
  .regions-sidebar-body {
    overflow-y: auto;
    max-height: 400px; }
    .regions-sidebar-body.custom-scrollbar .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
      background: #474747; }
    .regions-sidebar-body.custom-scrollbar .mCSB_scrollTools .mCSB_draggerRail {
      background: #474747; }
  .regions-sidebar-item {
    margin: 0 0 15px; }
    .regions-sidebar-item:last-child {
      margin: 0; }
    .regions-sidebar-item a {
      font-family: "Gilroy Extra Bold", sans-serif;
	  text-transform: uppercase;
      font-style: normal;
      font-weight: bold;
      font-size: 14px;
      color: #474747;
      -webkit-transition: color .3s;
      -o-transition: color .3s;
      transition: color .3s;
      text-decoration: none; }
      .regions-sidebar-item a:hover {
        color: #72091C; }

@media only screen and (max-width: 1200px) {
  .regions-map {
    width: -webkit-calc(100% - 275px);
    width: calc(100% - 275px);
    padding-right: 15px; }
  .regions-sidebar {
    padding: 20px 20px;
    width: 275px; }
    .regions-sidebar-item {
      margin: 0 0 20px; }
      .regions-sidebar-item a {
        font-size: 16px; }
    .regions-sidebar-body {
      max-height: 340px; } }

@media only screen and (max-width: 992px) {
  .regions-row {
    display: block; }
  .regions-map {
    width: 100%;
    padding: 0;
    margin: 0 0 20px; }
  .regions-sidebar {
    width: 100%; }
    .regions-sidebar-name {
      font-size: 28px; }
    .regions-sidebar-list {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      margin: 0 -15px; }
    .regions-sidebar-item {
      margin: 0 15px 20px;
      width: -webkit-calc(50% - 30px);
      width: calc(50% - 30px); }
      .regions-sidebar-item:last-child {
        margin: 0 15px 20px; }
    .regions-sidebar-body {
      max-height: 220px; } }

@media only screen and (max-width: 767px) {
  .regions-sidebar-name {
    font-size: 22px; } }

@media only screen and (max-width: 560px) {
  .regions-sidebar-body {
    max-height: 320px; }
  .regions-sidebar-list {
    display: block;
    margin: 0; }
  .regions-sidebar-item {
    width: 100%;
    margin: 0 0 15px; }
    .regions-sidebar-item:last-child {
      margin: 0; } }

.gallery-section {
  padding: 50px 0 30px;
  background: #474747; }

.gallery-slider .gallery-slide {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex; }

.gallery-slider .slick-dots {
  margin: 20px 0 0; }

.gallery-slide {
  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; }
  .gallery-slide-row {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -15px; }
  .gallery-slide-item {
    width: -webkit-calc(50% - 30px);
    width: calc(50% - 30px);
    margin: 0 15px; }
  .gallery-slide-images {
    width: -webkit-calc(100% - 440px);
    width: calc(100% - 440px);
    overflow: hidden; }
  .gallery-slide-image {
    padding: 0 0 90%;
    position: relative;
    background-repeat: no-repeat;
    background-position: center;
    -webkit-background-size: cover;
    background-size: cover; }
  .gallery-slide-details {
    width: 440px;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-left: 30px; }
  .gallery-slide-category {
    font-family: "Roboto", sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 15px;
    line-height: 21px;
    text-transform: uppercase;
    color: #FFBD00;
    margin: 0 0 10px; }
  .gallery-slide-title {
    font-family: "Roboto", sans-serif;
    font-style: normal;
    font-weight: bold;
    font-size: 22px;
    line-height: normal;
    color: #FFFFFF;
    margin: 0 0 5px; }
  .gallery-slide-info {
    font-family: "Roboto", sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 13px;
    line-height: 21px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0 0 10px; }
    .gallery-slide-info span {
      margin-left: 20px; }
      .gallery-slide-info span:first-child {
        margin: 0; }
  .gallery-slide-desc {
    margin: 10px 0;
    font-family: "Roboto", sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    line-height: 30px;
    color: #FFFFFF; }
  .gallery-slide-actions {
    margin: 20px 0 0; }

@media only screen and (max-width: 1200px) {
  .gallery-slide-category {
    font-size: 14px; }
  .gallery-slide-title {
    font-size: 18px; }
  .gallery-slide-desc {
    font-size: 16px;
    line-height: 24px; }
  .gallery-slide-images {
    width: -webkit-calc(100% - 340px);
    width: calc(100% - 340px); }
  .gallery-slide-details {
    width: 340px; } }

@media only screen and (max-width: 992px) {
  .gallery-slide {
    display: block; }
    .gallery-slide-images {
      width: 100%;
      margin: 0 0 30px; }
    .gallery-slide-details {
      width: 100%;
      padding: 0;
      margin: 0; }
  .gallery-slider .gallery-slide {
    display: block; } }

@media only screen and (max-width: 560px) {
  .gallery-slide-row {
    margin: 0 -7.5px; }
  .gallery-slide-item {
    margin: 0 7.5px;
    width: -webkit-calc(50% - 15px);
    width: calc(50% - 15px); } }

.partners {
  margin: 50px 0; }
  .partners:first-child {
    margin-top: 0; }
  .partners:last-child {
    margin-bottom: 0; }
  .partners-section {
    margin: 50px 0 70px; }
  .partners-slider .slick-track {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center; }
  .partners-item {
    margin: 0 25px;
    display: block;
    text-decoration: none; }
    .partners-item img {
      -webkit-filter: grayscale(1);
      filter: grayscale(1);
      opacity: 0.5;
      -webkit-transition: all .3s;
      -o-transition: all .3s;
      transition: all .3s; }
    .partners-item:hover img {
      -webkit-filter: grayscale(0);
      filter: grayscale(0);
      opacity: 1; }
  .partners-name {
    max-width: 200px;
    margin: auto;
    font-family: "Roboto", sans-serif;
    font-style: normal;
    font-weight: bold;
    font-size: 13px;
    line-height: 21px;
    color: #474747;
    text-decoration: none;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s; }
    .partners-name:hover {
      color: #72091C; }

@media only screen and (max-width: 767px) {
  .partners-section {
    margin: 40px 0; } }

.documents {
  overflow: hidden; }
  .documents-content {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding: 30px 295px 0; }
  .documents-title {
    font-family: "Roboto", sans-serif;
    font-style: normal;
    font-weight: bold;
    font-size: 22px;
    line-height: normal;
    color: #474747;
    margin: 0 0 30px; }
  .documents-list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -25px; }
  .documents-item {
    width: -webkit-calc(50% - 50px);
    width: calc(50% - 50px);
    margin: 0 25px; }
  .documents-tags {
    margin: 30px 0 0; }

.document {
  display: block;
  text-decoration: none; }
  .document-link {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    font-family: "Roboto", sans-serif;
    color: #474747;
    -webkit-transition: color .3s;
    -o-transition: color .3s;
    transition: color .3s;
    text-decoration: none;
    font-weight: normal !important;
	font-size: 16px;}
    .document-link:hover {
      color: #72091C; }
      .document-link:hover span:not(.icon) {
        text-decoration: underline; }
    .document-link .icon {
      margin-right: 10px;
      font-size: 28px; }
    .document-link span {
      display: inline-block; }
  .document-title {
    font-family: "Roboto", sans-serif;
    font-style: normal;
    font-weight: bold;
    font-size: 22px;
    line-height: normal;
    margin: 10px 0;
    color: #72091C; }
  .document-date {
    font-family: "Roboto", sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 13px;
    line-height: 20px;
    color: rgba(71, 71, 71, 0.5); }
  .document-desc {
    font-family: "Roboto", sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 13px;
    line-height: 20px;
    color: #474747; }
  .document p, .document span {
    color: inherit;
    font-size: inherit;
    line-height: inherit;
    font-weight: inherit; }

@media only screen and (max-width: 1366px) {
  .documents-content {
    padding-left: 50px;
    padding-right: 50px; } }

@media only screen and (max-width: 1200px) {
  .documents-content {
    padding: 30px 30px 0; } }

@media only screen and (max-width: 992px) {
  .document-title {
    font-size: 18px; } }

@media only screen and (max-width: 767px) {
  .documents-list {
    margin: 0 -15px; }
  .documents-item {
    width: -webkit-calc(50% - 30px);
    width: calc(50% - 30px);
    margin: 0 15px; } }

@media only screen and (max-width: 560px) {
  .documents-content {
    padding: 30px 0 0; }
  .documents-list {
    display: block;
    margin: 0; }
  .documents-item {
    width: 100%;
    margin: 0 0 15px;
    padding: 0 0 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1); }
    .documents-item:last-child {
      margin: 0;
      border-bottom: 0 none;
      padding: 0; } }

.faq-link {
  font-size: 16px;
  font-weight: 700;
  color: #474747;
  cursor: pointer; }

.faq-item {
  border-top: 1px solid rgba(0, 0, 0, 0.1); }
  .faq-item:first-child {
    border-top: 0 none; }
  .faq-item:last-child .faq-item-body {
    padding: 0 0; }
  .faq-item.is-opened .faq-item-head .icon {
    -webkit-transform: translateY(-50%) rotate(-90deg);
    -ms-transform: translateY(-50%) rotate(-90deg);
    -o-transform: translateY(-50%) rotate(-90deg);
    transform: translateY(-50%) rotate(-90deg); }
  .faq-item-head {
    padding: 38px 38px 38px 0;
    position: relative;
    cursor: pointer; }
    .faq-item-head .icon {
      position: absolute;
      right: 0;
      top: 50%;
      -webkit-transform: translateY(-50%) rotate(90deg);
      -ms-transform: translateY(-50%) rotate(90deg);
      -o-transform: translateY(-50%) rotate(90deg);
      transform: translateY(-50%) rotate(90deg);
      font-size: 20px;
      color: #474747;
      -webkit-transition: -webkit-transform .3s;
      transition: -webkit-transform .3s;
      -o-transition: -o-transform .3s;
      transition: transform .3s;
      transition: transform .3s, -webkit-transform .3s, -o-transform .3s; }
    .faq-item-head:hover .faq-item-title {
      color: #72091C; }
    .faq-item-head:hover .icon {
      color: #72091C; }
  .faq-item-title {
    font-family: "Roboto", sans-serif;
    font-style: normal;
    font-weight: bold;
    font-size: 32px;
    line-height: normal;
    color: #474747;
    -webkit-transition: -webkit-transform .3s;
    transition: -webkit-transform .3s;
    -o-transition: -o-transform .3s;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s, -o-transform .3s; }
  .faq-item-body {
    padding: 0 0 38px;
    display: none; }

.faq-question {
  margin: 0 0 50px; }
  .faq-question:last-child {
    margin: 0; }
  .faq-question-head {
    cursor: pointer; }
    .faq-question-head:hover .faq-question-desc {
      color: #72091C; }
    .faq-question-head:hover .faq-question-info {
      color: #72091C; }
  .faq-question-body {
    padding: 20px 0 0;
    display: none; }
  .faq-question-info {
    font-family: "Roboto", sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    line-height: 30px;
    color: rgba(71, 71, 71, 0.3);
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s; }
    .faq-question-info span {
      margin-right: 20px;
      display: inline-block; }
      .faq-question-info span:last-child {
        margin-right: 0; }
  .faq-question-desc {
    font-family: "Roboto", sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    line-height: 30px;
    color: #474747;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s; }

.faq-answer {
  position: relative;
  padding: 30px 30px;
  background: #ffffff;
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 30px;
  color: #474747; }
  .faq-answer:before {
    content: '';
    width: 0;
    height: 0;
    border-left: 16px solid transparent;
    border-right: 16px solid transparent;
    border-bottom: 16px solid #ffffff;
    position: absolute;
    left: 15px;
    top: -16px; }

.faq-categories {
  padding: 0 0 20px;
  margin: 0 0 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1); }
  .faq-categories-name {
    margin: 0 0 10px;
    font-family: "Roboto", sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    line-height: 30px;
    color: #474747; }
  .faq-categories:last-child {
    margin: 0;
    padding: 0;
    border-bottom: 0 none; }
  .faq-categories-item {
    padding: 0 0 10px;
    margin: 0 0 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1); }
    .faq-categories-item:last-child {
      margin: 0;
      padding: 0;
      border-bottom: 0 none; }

@media only screen and (max-width: 1366px) {
  .faq-item-head {
    padding: 20px 38px 20px 0; }
  .faq-item-title {
    font-size: 26px; } }

@media only screen and (max-width: 992px) {
  .faq-item-title {
    font-size: 18px; }
  .faq-item-head {
    padding: 15px 30px 15px 0; }
    .faq-item-head .icon {
      font-size: 18px; }
  .faq-item-body {
    padding: 0 0 20px; }
  .faq-question {
    margin: 0 0 20px; }
    .faq-question-info {
      font-size: 16px; }
    .faq-question-desc {
      font-size: 16px; }
  .faq-answer {
    font-size: 16px;
    line-height: 24px;
    padding: 15px 15px; } }

.questions-section {
  margin: 50px 0; }

.questions-form {
  background-color: #ffffff;
  padding: 50px 500px 50px 50px;
  background-image: url("/tpl/css/../img/questions-bg.svg");
  -webkit-background-size: 420px 420px;
  background-size: 420px;
  background-position: center right;
  background-repeat: no-repeat; }
  .questions-form-title {
    font-family: "Roboto", sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 50px;
    line-height: 70px;
    color: #474747;
    margin: 0 0 40px; }

@media only screen and (max-width: 1366px) {
  .questions-form {
    padding: 50px 320px 50px 50px;
    -webkit-background-size: 360px 360px;
    background-size: 360px; }
    .questions-form-title {
      font-size: 36px;
      line-height: 42px; } }

@media only screen and (max-width: 1200px) {
  .questions-form {
    padding: 50px 50px 50px 50px;
    background-image: none; } }

@media only screen and (max-width: 992px) {
  .questions-form {
    padding: 30px 30px 30px 30px; }
    .questions-form-title {
      font-size: 30px;
      margin: 0 0 20px; } }

@media only screen and (max-width: 767px) {
  .questions-form {
    padding: 20px 15px; }
    .questions-form-title {
      font-size: 24px; } }

.contacts-item {
  margin: 0 0 50px;
  padding: 0 0 55px;
 /* border-bottom: 1px solid rgba(0, 0, 0, 0.1);*/}
  .contacts-item:last-child {
    margin: 0;
    padding: 0;
    border-bottom: 0 none; }
  .contacts-item-title {
    font-family: "Roboto", sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 15px;
    line-height: 21px;
    color: #72091C;
    text-transform: uppercase;
    margin: 0 0 10px; }
  .contacts-item-actions {
    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;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 30px 0 0; }

.contacts .news-list .news-item {
  width: -webkit-calc(33% - 30px);
  width: calc(33% - 30px);
  height: 400px; }

.filial {
  margin: 0 0 40px; }
  .filial:last-child {
    margin: 0; }
  .filial-head {
    margin: 0 0 20px; }
  .filial-name {
    display: inline-block;
    margin-right: 20px;
    font-family: "Roboto", sans-serif;
    font-style: normal;
    font-weight: bold;
    font-size: 30px;
    line-height: normal;
    color: #474747; }
  .filial-region {
    font-family: "Roboto", sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    line-height: 30px;
    color: rgba(71, 71, 71, 0.7); }
  .filial-body {
    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;
    margin-left: -15px;
    margin-right: -15px; }
  .filial-map {
    position: relative;
    width: -webkit-calc(50% - 30px);
    width: calc(50% - 30px);
    margin: 0 15px;
    height: 400px;
    background: #ffffff; }
  .filial-actions {
    margin: 20px 0 0; }
  .filial-details {
    width: -webkit-calc(50% - 30px);
    width: calc(50% - 30px);
    margin: 0 15px; }
  .filial-info-item {
    margin: 0 0 20px;
    position: relative;
    padding-left: 30px; }
    .filial-info-item:last-child {
      margin: 0; }
    .filial-info-item .icon {
      position: absolute;
      left: 0;
      top: 7px;
      font-size: 18px;
      color: #474747; }
    .filial-info-item ul {
      margin: 0 0 5px; }
      .filial-info-item ul:last-child {
        margin: 0; }
      .filial-info-item ul li {
        margin: 0 0 5px; }
        .filial-info-item ul li:last-child {
          margin: 0; }
        .filial-info-item ul li a, .filial-info-item ul li span {
          text-decoration: none;
          font-family: "Roboto", sans-serif;
          font-style: normal;
          font-weight: normal;
          font-size: 18px;
          line-height: 30px;
          color: #474747; }
    .filial-info-item small {
      display: block;
      font-family: "Roboto", sans-serif;
      font-style: normal;
      font-weight: normal;
      font-size: 18px;
      line-height: 30px;
      color: rgba(71, 71, 71, 0.5);
      margin: 0 0 5px; }
  .filial-address {
    font-family: "Roboto", sans-serif;
    font-style: normal;
    font-weight: bold;
    font-size: 18px;
    line-height: 30px;
    color: #474747;
    margin: 0 0 20px; }
  .filial-link{
	  text-transform: uppercase;
  }
  .filial-link.active {
    color: #72091C; }

@media only screen and (max-width: 1200px) {
  .contacts .news-list .news-item {
    min-height: unset; }
  .filial-body {
    display: block;
    margin: 0; }
  .filial-map {
    margin: 0 0 20px;
    width: 100%; }
  .filial-details {
    margin: 0;
    width: 100%; } }

@media only screen and (max-width: 992px) {
  .filial-name {
    font-size: 26px; }
  .filial-body {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-left: -15px;
    margin-right: -15px; }
  .filial-map {
    margin: 0 15px;
    width: -webkit-calc(60% - 30px);
    width: calc(60% - 30px); }
  .filial-details {
    margin: 0 15px;
    width: -webkit-calc(40% - 30px);
    width: calc(40% - 30px); }
  .filial-address {
    font-size: 16px;
    line-height: 24px; }
  .filial-info-item ul li a, .filial-info-item ul li span {
    font-size: 16px;
    line-height: 24px; }
  .filial-info-item .icon {
    top: 3px; }
  .filial-info-item small {
    font-size: 16px;
    line-height: 24px; } }

@media only screen and (max-width: 767px) {
  .contacts-item-actions {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start; }
  .filial-name {
    font-size: 18px; }
  .filial-region {
    font-size: 16px;
    display: block; }
  .filial-body {
    display: block;
    margin: 0; }
  .filial-map {
    margin: 0 0 20px;
    width: 100%;
    height: 300px; }
  .filial-details {
    margin: 0;
    width: 100%; } }

@media only screen and (max-width: 560px) {
  .contacts .news-list .news-item {
    width: 100%; }
    .contacts .news-list .news-item:nth-child(3) {
      margin-top: 0; } }

.printing {
  padding: 30px 0 50px;
  margin: 50px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1); }
  .printing-section {
    margin: 50px 0; }
  .printing-list {
    margin-left: -15px;
    margin-right: -15px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
  .printing-item {
    position: relative;
    overflow: hidden;
    background: #ffffff;
    display: block;
    text-decoration: none;
    width: -webkit-calc(33.3333% - 30px);
    width: calc(33.3333% - 30px);
    margin: 30px 15px 0;
    height: 420px;
    padding: 94px 30px 30px 30px; }
    .printing-item:nth-child(1), .printing-item:nth-child(2), .printing-item:nth-child(3) {
      margin-top: 0; }
    .printing-item:hover .printing-item-title {
      color: #72091C; }
    .printing-item:hover .printing-item-image {
      top: 0; }
    .printing-item-title {
      position: absolute;
      left: 0;
      right: 0;
      top: 0;
      font-family: "Roboto", sans-serif;
      font-style: normal;
      font-weight: bold;
      font-size: 22px;
      line-height: normal;
      text-align: center;
      color: #474747;
      padding: 20px 50px;
      -webkit-transition: all .3s;
      -o-transition: all .3s;
      transition: all .3s;
      z-index: 3; }
      .printing-item-title * {
        position: relative;
        z-index: 2; }
      .printing-item-title:before {
        content: '';
        display: block;
        left: 0;
        right: 0;
        position: absolute;
        top: 0;
        height: -webkit-calc(100% + 72px);
        height: calc(100% + 72px);
        background: -webkit-gradient(linear, left top, left bottom, color-stop(56%, white), color-stop(78%, rgba(255, 255, 255, 0.9)), to(rgba(255, 255, 255, 0)));
        background: -webkit-linear-gradient(top, white 56%, rgba(255, 255, 255, 0.9) 78%, rgba(255, 255, 255, 0) 100%);
        background: -o-linear-gradient(top, white 56%, rgba(255, 255, 255, 0.9) 78%, rgba(255, 255, 255, 0) 100%);
        background: linear-gradient(180deg, white 56%, rgba(255, 255, 255, 0.9) 78%, rgba(255, 255, 255, 0) 100%); }
    .printing-item-image {
      width: 260px;
      margin: auto;
      position: relative;
      top: 82px;
      -webkit-transition: all .3s;
      -o-transition: all .3s;
      transition: all .3s;
      z-index: 1; }
      .printing-item-image img {
        max-width: 100%;
        display: block; }

@media only screen and (max-width: 1200px) {
  .printing-item {
    padding: 60px 15px 15px 15px;
    height: 400px; }
    .printing-item-title {
      font-size: 18px;
      padding: 15px 15px; } }

@media only screen and (max-width: 992px) {
  .printing-item {
    position: relative;
    padding: 30px 15px;
    height: auto;
    width: -webkit-calc(50% - 30px);
    width: calc(50% - 30px);
    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: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between; }
    .printing-item:nth-child(3) {
      margin-top: 30px; }
    .printing-item-title {
      position: static;
      padding: 0;
      margin: 0 0 15px;
      width: 100%; }
      .printing-item-title:before {
        display: none; }
    .printing-item-image {
      position: static;
      top: 0;
      width: 100%;
      margin: 0; }
      .printing-item-image img {
        margin: auto; } }

@media only screen and (max-width: 767px) {
  .printing-item-title {
    font-size: 16px; } }

@media only screen and (max-width: 560px) {
  .printing-list {
    margin: 0;
    display: block; }
  .printing-item {
    width: 100%;
    margin: 0 0 15px; }
    .printing-item:last-child {
      margin-bottom: 0; } }

.offices-section {
  margin: 50px 0; }

.offices-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex; }

.offices-sidebar {
  width: 400px;
  padding-right: 30px;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0; }
  .offices-sidebar .sidebar-panel {
    background: #ffffff; }
  .offices-sidebar .sidebar-panel-head {
    margin: 0 0 20px; }
  .offices-sidebar .custom-scrollbar .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background: #474747; }
  .offices-sidebar .custom-scrollbar .mCSB_scrollTools .mCSB_draggerRail {
    background: #474747; }
  .offices-sidebar .sidebar-panel-body {
    max-height: 360px; }

/*offices-content {
  width: -webkit-calc(100% - 400px);
  width: calc(100% - 400px); }*/

.offices-content{
	width: 100%;
}

.offices-head {
  margin: 0 0 20px;
  text-align: center;
  }

.offices-head h1{
	text-transform: uppercase;
	font-family: "Gilroy Extra Bold", sans-serif;
}

.offices-name {
  display: inline-block;
  margin-right: 20px;
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 30px;
  line-height: normal;
  color: #474747; }
  
  .offices-name p {
  font-family: "Gilroy Extra Bold";
  }

.offices-location {
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 30px;
  color: rgba(71, 71, 71, 0.7); }

.offices-details {
  /*margin: 0 0 10px;*/
  margin: 20px;}

.offices-info {
  overflow: hidden; }
  .offices-info-list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -15px; }
  .offices-info-item {
    margin: 0 15px 20px;
    position: relative;
    padding-left: 30px;
    width: -webkit-calc(50% - 30px);
    width: calc(50% - 30px); }
    .offices-info-item .icon {
      position: absolute;
      left: 0;
      top: 7px;
      font-size: 18px;
      color: #474747; }
    .offices-info-item ul {
      margin: 0 0 5px; }
      .offices-info-item ul:last-child {
        margin: 0; }
      .offices-info-item ul li {
        margin: 0 0 5px; }
        .offices-info-item ul li:last-child {
          margin: 0; }
        .offices-info-item ul li a, .offices-info-item ul li span {
          text-decoration: none;
          font-family: "Roboto", sans-serif;
          font-style: normal;
          font-weight: normal;
          font-size: 18px;
          line-height: 30px;
          color: #474747; }
    .offices-info-item small {
      display: block;
      font-family: "Roboto", sans-serif;
      font-style: normal;
      font-weight: normal;
      font-size: 18px;
      line-height: 30px;
      color: rgba(71, 71, 71, 0.5);
      margin: 0 0 5px; }

.offices-services .services-list .services-item {
  width: -webkit-calc(50% - 30px);
  width: calc(50% - 30px); }
  .offices-services .services-list .services-item:nth-child(3), .offices-services .services-list .services-item:nth-child(4) {
    margin-top: 30px; }

@media only screen and (max-width: 1200px) {
  .offices-row {
    display: block; }
  .offices-sidebar {
    width: 100%;
    padding: 0; }
    .offices-sidebar .sidebar-panel-head {
      margin: 0 40px 0 0;
      border-right-color: rgba(0, 0, 0, 0.1); }
    .offices-sidebar .sidebar-panel-body {
      max-height: none;
      padding-left: 0; }
  .offices-content {
    
	padding: 20px;
	background-color: white;
	width: 100%;
    margin: 30px 0 0; }
  .offices-services .services-list .services-item {
    width: -webkit-calc(33.3333% - 30px);
    width: calc(33.3333% - 30px); }
    .offices-services .services-list .services-item:nth-child(3) {
      margin-top: 0; }
  .offices-name {
    font-size: 24px; }
  .offices-info-item .icon {
    top: 3px; }
  .offices-info-item ul li a, .offices-info-item ul li span {
    font-size: 16px;
    line-height: 24px; }
  .offices-info-item small {
    font-size: 16px;
    line-height: 24px; } }

@media only screen and (max-width: 992px) {
  .offices-services .services-list .services-item {
    width: -webkit-calc(50% - 30px);
    width: calc(50% - 30px); }
    .offices-services .services-list .services-item:nth-child(3) {
      margin-top: 30px; }
  .offices-sidebar .sidebar-panel-head {
    margin: 0 15px 0 0; } }

@media only screen and (max-width: 560px) {
  .offices-info-list {
    display: block;
    margin: 0; }
  .offices-info-item {
    margin: 0 0 15px;
    width: 100%; }
  .offices-services .services-list .services-item {
    width: 100%;
    margin: 0 0 15px; }
    .offices-services .services-list .services-item:last-child {
      margin-bottom: 0; }
    .offices-services .services-list .services-item:nth-child(3), .offices-services .services-list .services-item:nth-child(4) {
      margin-top: 0; } }

.description {
  margin: 50px 0; }
  .description:first-child {
    margin-top: 0; }
  .description:last-child {
    margin-bottom: 0; }
  .description-section {
    margin: 50px 0; }
  .description-list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
    margin-top: 40px; }
  .description-item {
    width: -webkit-calc(25% - 30px);
    width: calc(25% - 30px);
    margin: 30px 15px 0; }
    .description-item:nth-child(1), .description-item:nth-child(2), .description-item:nth-child(3), .description-item:nth-child(4) {
      margin-top: 0; }
    .description-item-title {
      margin: 0 0 10px;
      font-family: "Roboto", sans-serif;
      font-style: normal;
      font-weight: bold;
      font-size: 22px;
      line-height: normal;
      color: #474747; }
      .description-item-title a {
        color: #72091C;
        text-decoration: none; }
        .description-item-title a .icon {
          margin-left: 4px;
          font-size: 12px; }
    .description-item-desc {
      font-family: "Roboto", sans-serif;
      font-style: normal;
      font-weight: normal;
      font-size: 18px;
      line-height: 30px;
      color: #474747; }

@media only screen and (max-width: 992px) {
  .description-item {
    width: -webkit-calc(50% - 30px);
    width: calc(50% - 30px); }
    .description-item:nth-child(3), .description-item:nth-child(4) {
      margin-top: 30px; }
    .description-item-title {
      font-size: 18px; }
    .description-item-desc {
      font-size: 16px;
      line-height: 24px; } }

@media only screen and (max-width: 560px) {
  .description-list {
    display: block;
    margin: 0; }
  .description-item {
    width: 100%;
    margin: 0 0 30px; }
    .description-item:last-child {
      margin-bottom: 0; }
    .description-item:nth-child(3), .description-item:nth-child(4) {
      margin-top: 0; } }

.education {
  margin: 50px 0; }
  .education:first-child {
    margin-top: 0; }
  .education:last-child {
    margin-bottom: 0; }
  .education-section {
    margin: 50px 0; }
  .education-content {
    padding: 50px 50px;
    background: #ffffff;
    overflow: hidden;
    position: relative; }
    .education-content * {
      position: relative;
      z-index: 2; }
    .education-content:before {
      content: '';
      position: absolute;
      right: -80px;
      bottom: 30px;
      width: 470px;
      height: 406px;
      -webkit-background-size: contain;
      background-size: contain;
      background-repeat: no-repeat;
      background-image: url("/tpl/css/../img/hat.svg"); }
    .education-content .form-actions {
      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; }
  .education-row {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-top: 30px; }
  .education-details {
    width: -webkit-calc(100% - 460px);
    width: calc(100% - 460px);
    padding-right: 80px;
    margin-bottom: 100px; }
  .education-programs {
    width: 460px;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-left: 80px;
    border-left: 1px solid rgba(0, 0, 0, 0.1); }
    .education-programs ul li {
      font-family: "Roboto", sans-serif;
      font-style: normal;
      font-weight: normal;
      font-size: 18px;
      line-height: normal;
      color: #474747;
      margin: 0 0 30px; }
      .education-programs ul li:last-child {
        margin: 0; }
    .education-programs ul a {
      color: inherit;
      text-decoration: none;
      -webkit-transition: all .3s;
      -o-transition: all .3s;
      transition: all .3s; }
      .education-programs ul a:hover {
        color: #72091C; }
  .education-desc {
    font-family: "Roboto", sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    line-height: 30px;
    color: #474747;
    margin: 0 0 30px; }
  .education-info {
    padding: 0 0 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin: 30px 0; }
    .education-info-row {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      margin: 0 -15px; }
    .education-info:last-child {
      padding-bottom: 0;
      border-bottom: 0 none; }
    .education-info-item {
      width: auto;
      margin: 0 15px; }
    .education-info-key {
      font-family: "Roboto", sans-serif;
      font-style: normal;
      font-weight: normal;
      font-size: 18px;
      line-height: 30px;
      color: rgba(71, 71, 71, 0.5); }
    .education-info-val {
      font-family: "Roboto", sans-serif;
      font-style: normal;
      font-weight: bold;
      font-size: 22px;
      line-height: normal;
      color: #474747; }

@media only screen and (max-width: 1366px) {
  .education-details {
    padding-right: 40px; }
  .education-programs {
    padding-left: 40px; }
  .education-info-key {
    font-size: 16px; }
  .education-info-val {
    font-size: 18px; } }

@media only screen and (max-width: 1200px) {
  .education-content {
    padding: 30px 30px; }
    .education-content:before {
      right: -60px;
      bottom: 30px;
      width: 320px;
      height: 276px; }
  .education-details {
    padding-right: 30px;
    width: -webkit-calc(100% - 300px);
    width: calc(100% - 300px);
    margin-bottom: 30px; }
  .education-programs {
    padding-left: 30px;
    width: 300px; }
    .education-programs ul li {
      margin: 0 0 20px; } }

@media only screen and (max-width: 992px) {
  .education-content:before {
    display: none; }
  .education-content .form-actions {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start; }
  .education-row {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
  .education-details {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2;
    width: 100%;
    padding: 0;
    margin: 0; }
  .education-programs {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
    width: 100%;
    padding: 0;
    margin: 0 0 30px;
    border-left: 0 none; }
    .education-programs ul li {
      margin: 0 0 10px;
      font-size: 16px; }
  .education-desc {
    font-size: 16px;
    line-height: 24px; }
  .education-info-key {
    font-size: 14px; }
  .education-info-val {
    font-size: 16px; } }

@media only screen and (max-width: 560px) {
  .education-content {
    padding: 20px 15px; }
  .education-info-row {
    display: block;
    margin: 0; }
  .education-info-item {
    margin: 0 0 15px; }
    .education-info-item:last-child {
      margin: 0; } }

.teachers {
  margin: 50px 0; }
  .teachers:first-child {
    margin-top: 0; }
  .teachers:last-child {
    margin-bottom: 0; }
  .teachers-section {
    margin: 50px 0; }
  .teachers-list {
    margin: 30px -15px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
    .teachers-list:last-child {
      margin-bottom: 0; }
    .teachers-list:first-child {
      margin-top: 0; }
  .teachers-item {
    width: -webkit-calc(33.3333% - 30px);
    width: calc(33.3333% - 30px);
    margin: 30px 15px 0;
    display: block;
    text-decoration: none; }
    .teachers-item:nth-child(1), .teachers-item:nth-child(2), .teachers-item:nth-child(3) {
      margin-top: 0; }
    .teachers-item-image {
      margin: 0 0 20px; }
      .teachers-item-image img {
        display: block;
        max-width: 100%;
        margin: auto; }
    .teachers-item-name {
      font-family: "Roboto", sans-serif;
      font-style: normal;
      font-weight: bold;
      font-size: 22px;
      line-height: normal;
      color: #474747;
      margin: 0 0 10px; }
    .teachers-item-info {
      font-family: "Roboto", sans-serif;
      font-style: normal;
      font-weight: normal;
      font-size: 18px;
      line-height: 30px;
      color: #474747;
      margin-left: -10px;
      margin-right: -10px; }
      .teachers-item-info span {
        margin: 0 10px;
        display: inline-block; }

@media only screen and (max-width: 992px) {
  .teachers-item {
    width: -webkit-calc(50% - 30px);
    width: calc(50% - 30px); }
    .teachers-item:nth-child(3) {
      margin-top: 30px; }
    .teachers-item-name {
      font-size: 18px; }
    .teachers-item-info {
      font-size: 16px;
      line-height: 24px; } }

@media only screen and (max-width: 560px) {
  .teachers-list {
    margin: 0;
    display: block; }
  .teachers-item {
    width: 100%;
    margin: 0 0 30px; }
    .teachers-item-image img {
      margin: 0; }
    .teachers-item:nth-child(3) {
      margin-top: 0; }
    .teachers-item:last-child {
      margin-bottom: 0; } }

.countries {
  margin: 50px 0; }
  .countries-content {
    padding: 40px 50px;
    background: #ffffff; }
    .countries-content .custom-scrollbar {
      padding-right: 20px;
      padding-left: 0; }
      .countries-content .custom-scrollbar.mCS_no_scrollbar {
        padding-right: 0; }
      .countries-content .custom-scrollbar .mCSB_scrollTools {
        left: auto;
        right: -4px; }
        .countries-content .custom-scrollbar .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
          background: #474747; }
        .countries-content .custom-scrollbar .mCSB_scrollTools .mCSB_draggerRail {
          background: #474747; }
    .countries-content .filters-selects .form-select, .countries-content .filters-selects .form-input {
      width: -webkit-calc(20% - 30px);
      width: calc(20% - 30px); }
      .countries-content .filters-selects .form-select:nth-child(1), .countries-content .filters-selects .form-select:nth-child(2), .countries-content .filters-selects .form-select:nth-child(3), .countries-content .filters-selects .form-select:nth-child(4), .countries-content .filters-selects .form-select:nth-child(5), .countries-content .filters-selects .form-input:nth-child(1), .countries-content .filters-selects .form-input:nth-child(2), .countries-content .filters-selects .form-input:nth-child(3), .countries-content .filters-selects .form-input:nth-child(4), .countries-content .filters-selects .form-input:nth-child(5) {
        margin-top: 0; }
    .countries-content .pagination-item .next-page, .countries-content .pagination-item .prev-page {
      background: #E7E7E7; }
  .countries-list {
    margin: 0 0 30px;
    padding: 0 0 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1); }
    .countries-list:last-child {
      border-bottom: 0 none;
      padding: 0;
      margin: 0; }
    .countries-list .country {
      margin: 0 0 30px;
      padding: 0 0 30px;
      border-bottom: 1px solid rgba(0, 0, 0, 0.1); }
      .countries-list .country:last-child {
        border-bottom: 0 none;
        padding: 0;
        margin: 0; }

.country-head {
  position: relative;
  padding-left: 40px;
  margin: 0 0 20px; }
  .country-head-icon {
    width: 60px;
    position: absolute;
    left: 0;
    top: 4px; }
    .country-head-icon img {
      display: block;
      max-width: 100%; }
    .country-head-icon .icon {
      font-size: 30px; }
  .country-head-name {
    font-family: "Roboto", sans-serif;
    font-style: normal;
    font-weight: bold;
    font-size: 22px;
    line-height: normal;
    color: #474747; }

.country-documents {
  overflow: hidden; }
  .country-documents .documents-list {
    margin: 0 -15px; }
  .country-documents .documents-item {
    width: -webkit-calc(33.3333% - 30px);
    width: calc(33.3333% - 30px);
    margin: 30px 15px 0; }
    .country-documents .documents-item:nth-child(1), .country-documents .documents-item:nth-child(2), .country-documents .documents-item:nth-child(3) {
      margin-top: 0; }

@media only screen and (max-width: 767px) {
  .countries-content {
    padding: 30px 30px; }
  .country-documents .documents-item {
    width: -webkit-calc(50% - 30px);
    width: calc(50% - 30px); }
    .country-documents .documents-item:nth-child(3) {
      margin-top: 30px; } }

@media only screen and (max-width: 560px) {
  .countries-content {
    padding: 20px 15px; }
  .country-documents .documents-list {
    display: block;
    margin: 0; }
  .country-documents .documents-item {
    width: 100%;
    margin: 0 0 15px; }
    .country-documents .documents-item:last-child {
      margin-bottom: 0; }
    .country-documents .documents-item:nth-child(3) {
      margin-top: 0; } }

.exporter-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }

.exporter-desc {
  width: 50%;
  padding-right: 30px;
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 30px;
  color: #474747; }

.exporter-links {
  padding-left: 30px;
  width: 50%; }
  .exporter-links ul li {
    margin: 0 0 10px; }
    .exporter-links ul li:last-child {
      margin: 0; }
  .exporter-links ul a {
    font-family: "Roboto", sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    line-height: 30px;
    color: #72091C;
    text-decoration: none; }
    .exporter-links ul a:hover {
      text-decoration: underline; }

@media only screen and (max-width: 992px) {
  .exporter-row {
    display: block;
    margin: 0; }
  .exporter-desc {
    font-size: 16px;
    line-height: 24px;
    padding-right: 0;
    width: 100%; }
  .exporter-links {
    padding: 0;
    margin: 20px 0 0;
    width: 100%; }
    .exporter-links ul a {
      font-size: 16px;
      line-height: 24px; } }

.charts-item {
  margin: 0 0 50px;
  padding: 0 0 50px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1); }
  .charts-item:last-child {
    margin: 0;
    padding: 0;
    border-bottom: 0 none; }
  .charts-item .description-item {
    width: -webkit-calc(33.3333% - 30px);
    width: calc(33.3333% - 30px); }
    .charts-item .description-item:nth-child(4) {
      margin-top: 30px; }

.charts-title {
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 32px;
  line-height: normal;
  color: #474747;
  margin: 0 0 30px; }

.charts-desc {
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 30px;
  margin: 0 0 30px; }

.charts-map {
  position: relative;
  padding: 0 0 65%;
  height: 0;
  overflow: hidden; }

.charts-chart {
  position: relative;
  padding: 0 0 50%;
  height: 0; }

.charts-table {
  margin: 50px 0; }
  .charts-table:last-child {
    margin-bottom: 0; }
  .charts-table:first-child {
    margin-top: 0; }
  .charts-table .table {
    min-width: 680px; }

.chart {
  position: absolute;
  width: 100%;
  height: 100%; }

.map-marker {
  margin-left: -8px;
  margin-top: -8px;
  cursor: pointer; }

.map-marker.map-clickable {
  cursor: pointer; }

.pulse {
  width: 10px;
  height: 10px;
  border: 5px solid white;
  border-radius: 30px;
  background-color: rgba(255, 255, 255, 0.6);
  z-index: 10;
  position: absolute; }

.map-marker .dot {
  border: 10px solid white;
  background: transparent;
  border-radius: 60px;
  height: 50px;
  width: 50px;
  -webkit-animation: pulse 3s ease-out;
  -o-animation: pulse 3s ease-out;
  animation: pulse 3s ease-out;
  -webkit-animation-iteration-count: infinite;
  -o-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  position: absolute;
  top: -20px;
  left: -20px;
  z-index: 1;
  opacity: 0; }

.tooltip-content {
  max-width: 300px; }
  .tooltip-content > h4 {
    font-family: "Roboto", sans-serif;
    font-style: normal;
    font-weight: bold;
    font-size: 16px;
    line-height: normal;
    color: #474747;
    margin: 0 0 10px; }
  .tooltip-content > p {
    font-family: "Roboto", sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: normal;
    color: #474747;
    margin: 0 0 10px; }
  .tooltip-content .count {
    font-size: 18px;
    line-height: normal; }
  .tooltip-content strong {
    font-weight: 700; }
  .tooltip-content > ul > li {
    margin: 0 0 10px;
    position: relative;
    padding-left: 30px; }
    .tooltip-content > ul > li:last-child {
      margin: 0; }
    .tooltip-content > ul > li .icon {
      position: absolute;
      left: 0;
      top: 3px;
      font-size: 16px;
      color: #474747; }
    .tooltip-content > ul > li ul {
      margin: 0 0 5px; }
      .tooltip-content > ul > li ul:last-child {
        margin: 0; }
      .tooltip-content > ul > li ul li {
        margin: 0 0 5px; }
        .tooltip-content > ul > li ul li:last-child {
          margin: 0; }
        .tooltip-content > ul > li ul li a, .tooltip-content > ul > li ul li span {
          text-decoration: none;
          font-family: "Roboto", sans-serif;
          font-style: normal;
          font-weight: normal;
          font-size: 14px;
          line-height: normal;
          color: #474747; }
    .tooltip-content > ul > li small {
      display: block;
      font-family: "Roboto", sans-serif;
      font-style: normal;
      font-weight: normal;
      font-size: 14px;
      line-height: normal;
      color: rgba(71, 71, 71, 0.5);
      margin: 0 0 5px; }
  .tooltip-content .number {
    padding: 4px 4px;
    color: #474747;
    text-align: center; }
    .tooltip-content .number strong {
      font-family: "Roboto", sans-serif;
      font-style: normal;
      font-weight: bold;
      font-size: 18px;
      line-height: normal;
      display: block; }
    .tooltip-content .number span {
      font-family: "Roboto", sans-serif;
      font-style: normal;
      font-weight: normal;
      font-size: 14px;
      line-height: normal; }

.tooltip-item {
  padding: 0 0 10px;
  margin: 0 0 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1); }
  .tooltip-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0 none; }
  .tooltip-item small + p {
    margin-top: 3px; }
  .tooltip-item p .count {
    font-size: 16px;
    color: #474747; }

@media only screen and (max-width: 1200px) {
  .charts-chart {
    padding: 0 0 100%; } }

@media only screen and (max-width: 992px) {
  .charts-title {
    font-size: 28px;
    margin: 0 0 20px; }
  .charts-desc {
    font-size: 16px;
    line-height: 24px;
    margin: 0 0 20px; }
  .charts-item .description-item {
    width: -webkit-calc(50% - 30px);
    width: calc(50% - 30px); } }

@media only screen and (max-width: 767px) {
  .charts-title {
    font-size: 22px; }
  .charts-item {
    margin: 0 0 30px;
    padding: 0 0 30px; } }

@media only screen and (max-width: 560px) {
  .charts-chart {
    height: auto;
    position: static;
    overflow-y: hidden;
    overflow-x: auto;
    padding: 0 0 30px; }
    .charts-chart .chart {
      height: 540px;
      min-width: 480px;
      position: relative; }
  .charts-item .description-item {
    width: 100%; }
    .charts-item .description-item:nth-child(4) {
      margin-top: 0; } }

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(0);
    opacity: 0.0; }
  25% {
    -webkit-transform: scale(0);
    opacity: 0.1; }
  50% {
    -webkit-transform: scale(0.1);
    opacity: 0.3; }
  75% {
    -webkit-transform: scale(0.5);
    opacity: 0.5; }
  100% {
    -webkit-transform: scale(1);
    opacity: 0.0; } }

.footer {
  background-repeat: no-repeat;
  background-position: center;
  -webkit-background-size: cover;
  background-size: cover;
  position: relative; }
  .footer:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65); }
  .footer-container {
    position: relative; }
  .footer-content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding: 35px 0;
    margin: 15px 0 0; }
  .footer-logo {
    width: 150px;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0; }
    .footer-logo a {
      display: block;
      text-decoration: none; }
    .footer-logo img {
      display: block;
      max-width: 100%;
      max-height: 100%; }
  .footer-nav {
    padding: 0 0 0 90px;
    overflow: hidden;
    width: -webkit-calc(100% - 150px);
    width: calc(100% - 150px); }
    .footer-nav-groups {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      margin: 0 -30px -60px; }
    .footer-nav-group {
      margin: 0 30px 60px;
      min-width: 316px; }
      .footer-nav-group > a {
        font-weight: 700;
        font-size: 18px;
        line-height: 30px; }
    .footer-nav-link {
      font-size: 15px;
      line-height: 20px;
      font-family: "Roboto", sans-serif;
      font-style: normal;
      font-weight: normal;
      color: #ffffff;
      text-decoration: none; }
      .footer-nav-link:hover {
        text-decoration: underline; }
    .footer-nav-list {
      margin: 8px 0 0; }
    .footer-nav-item {
      margin: 0 0 18px;
	  }
      .footer-nav-item:last-child {
        margin: 0; }
  .footer-title {
    font-family: "Gilroy Extra Bold", sans-serif;
    font-style: normal;
    font-weight: bold;
    font-size: 18px;
	text-transform: uppercase;
    line-height: normal;
    color: #FFFFFF;
    margin: 0 0 8px; }
  .footer-locations {
    margin: 0 0 15px;
    line-height: 30px; }
    .footer-locations a {
      margin-right: 10px;
      font-family: "Roboto", sans-serif;
      font-style: normal;
      font-weight: normal;
      font-size: 15px;
      line-height: normal;
      -webkit-text-decoration-line: underline;
      -moz-text-decoration-line: underline;
      text-decoration-line: underline;
      color: #ffffff; }
      .footer-locations a:hover {
        text-decoration: none; }
  .footer-callback {
    margin-top: 15px; }
    .footer-callback-title {
      font-family: "Roboto", sans-serif;
      font-style: normal;
      font-weight: bold;
      font-size: 18px;
      line-height: 30px;
      color: #FFFFFF;
      margin: 0 0 10px; }
  .footer-bottom {
    padding: 35px 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center; }
    .footer-bottom-row {
      width: -webkit-calc(100% - 150px);
      width: calc(100% - 150px);
      padding: 0 0 0 90px;
      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: justify;
      -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
      justify-content: space-between; }
  .footer-socials {
    width: 150px;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0; }
  .footer-copyright {
    max-width: 356px;
    font-family: "Roboto", sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 12px;
    line-height: 18px;
    color: rgba(255, 255, 255, 0.7); }
  .footer-map {
    position: relative;
    width: 500px;
    height: 160px;
    /*border-radius: 10px;*/
    background: rgba(244, 244, 244, 0.33);
    margin: 0 0 10px;
    overflow: hidden; }
  .footer-contacts {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -20px; }
    .footer-contacts-item {
      margin: 5px 20px;
      width: auto; }
    .footer-contacts-link {
      font-family: "Roboto", sans-serif;
      font-style: normal;
      font-weight: normal;
      font-size: 15px;
      color: #ffffff;
      line-height: normal;
      text-decoration: none;
      display: -webkit-inline-box;
      display: -webkit-inline-flex;
      display: -ms-inline-flexbox;
      display: inline-flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
      -ms-flex-align: center;
      align-items: center; }
      .footer-contacts-link:hover span:not(.icon) {
        text-decoration: underline; }
      .footer-contacts-link .icon {
        margin-right: 10px;
        font-size: 18px; }

.map {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  height: 100%; }

.developer {
  width: auto;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-decoration: none; }
  .developer-logo {
    width: 52px;
    margin: 0; }
    .developer-logo img {
      width: 53px;
      height: 48px;
      display: block; }
  .developer-text {
    width: -webkit-calc(100% - 53px);
    width: 100%;
	color: rgba(255, 255, 255, 0.7);
	text-decoration: underline !important;
    padding-left: 10px;
    text-align: left; }
  .developer-text:hover{
	  color: rgba(255, 255, 255, 0.7);
	  text-decoration: none !important;
  }
    .developer-text span {
      display: block;
      font-family: "Roboto", sans-serif;
      font-weight: 400;
      color: rgba(255, 255, 255, 0.7);
      font-size: 12px;
      line-height: 18px; }

@media only screen and (max-width: 1366px) {
  .footer-logo {
    width: 100px; }
  .footer-nav {
    width: -webkit-calc(100% - 100px);
    width: calc(100% - 100px);
    padding: 0 0 0 40px; }
    .footer-nav-groups {
      margin: 0 -30px -40px; }
    .footer-nav-group {
      margin: 0 30px 40px; } }

@media only screen and (max-width: 1200px) {
  .footer-nav {
    padding: 0 0 0 30px; }
    .footer-nav-group {
      min-width: unset; }
  .footer-title {
    font-size: 28px; } }

@media only screen and (max-width: 992px) {
  .footer-title {
    font-size: 24px; } }

@media only screen and (max-width: 767px) {
  .footer-title {
    font-size: 18px; }
  .footer-content {
    padding: 20px 0;
    margin: 0; }
  .footer-bottom {
    padding: 20px 0;
    display: block; }
    .footer-bottom-row {
      margin: 0;
      padding: 0;
      display: block;
      width: 100%; }
  .footer-copyright {
    max-width: unset;
    margin: 0 0 15px; }
  .footer-map {
    width: 100%; }
  .footer-nav-groups {
    display: block;
    margin: 0 0; }
  .footer-nav-link {
    font-size: 14px; }
  .footer-nav-group {
    width: 100%;
    margin: 0 0 15px; }
    .footer-nav-group:last-child {
      margin: 0; }
    .footer-nav-group > a {
      font-size: 16px; }
  .footer-contacts-link {
    font-size: 14px; }
    .footer-contacts-link .icon {
      font-size: 16px; }
  .footer-socials {
    width: 100%;
    margin: 0 0 15px; }
  .developer-logo {
    width: 44px; }
    .developer-logo img {
      width: 44px;
      height: 40px; }
  .developer-text span {
    font-size: 10px;
    line-height: 14px; } }

@media only screen and (max-width: 560px) {
  .footer-content {
    display: block; }
  .footer-logo {
    margin: 0 0 20px; }
  .footer-nav {
    padding: 0;
    width: 100%; }
    .footer-nav-list {
      display: none; }
  .footer-contacts {
    margin: 0 -10px; }
    .footer-contacts-item {
      margin: 5px 10px; } }

/*--------------- media query ---------------*/
@media only screen and (min-width: 767px) {
  .container {
    width: 750px; } }

@media only screen and (min-width: 992px) {
  .container {
    width: 970px; } }

@media only screen and (min-width: 1200px) {
  .container {
    width: 1170px; } }

@media only screen and (min-width: 1366px) {
  .container {
    width: 1320px; } }


/** DOP CSS CONTENT **/
/**was here .article**/
/*h1, h2, h3{
	font-family: "Gilroy Extra Bold" !important;
	text-transform: uppercase;
	border-bottom: 0 !important;
}*/

/*.article h1{
	font-size: 42px;
}*/

.header-nav-bottom .header-nav-link{
	font-family: "Gilroy Extra Bold";
	font-size: 14px;
	text-transform: uppercase;
	text-decoration: none !important;
}

.menu-category-item .menu-category-head a {
    font-family: "Roboto";
	font-size: 14px;
	font-weight: 500;
}

.menu-category-item .menu-category-head a:hover {
    color: #a58540;
	
}

.header-nav-profile a{
	color: #a58540;
}

.promo-title h3{
	font-family: "Gilroy Extra Bold";
	font-size: 42px;
	text-transform: uppercase;
}

.promo-title h3{
	font-family: "Gilroy Extra Bold";
	font-size: 42px;
	text-transform: uppercase;
}

.promo-title p{
	font-family: "Roboto";
	font-size: 14px;
	font-weight: normal;
	/*text-transform: uppercase;*/
}

.header-nav-langs .selectboxit-container .selectboxit{
	
	width: 24px
	
}

.header-nav-langs .selectboxit-option-anchor{
	padding: 0;
	padding-right: 4px;
	margin-right: 6px;
	background-color: #fff !important;
}

.selectboxit-option-icon{
	width: 0;
	display: none;
}

.header-nav-langs .selectboxit-list{
	width: calc(100% + 6px);
	margin-left: 0px;
	padding-left: 0;
	padding-right: 0;
 }
 
 .slick-track{
	 margin-left: 0;
 }
 
 .footer-contacts-link:hover{
	text-decoration: none !important; 
 }
 
 .footer-contacts-link{
	text-decoration: none !important; 
 }
 
  .footer-contacts-link span:hover{
	text-decoration: none !important; 
 }
 
 .footer-contacts-link span{
	text-decoration: none !important; 
 }
 
 .footer-nav-item{
	 max-width: 360px !important;
 }
 
 .footer-nav-group > a{
	 font-family: 'Gilroy Extra Bold';
	 text-transform: uppercase;
 }
 
 .footer-developer a:hover{
	 text-decoration: none !important;
 }

.article-content .countries-body{
	background-color: white !important;
}

.offices-info-name-org{
	margin-top: 40px !important;
	margin-bottom: 40px !important;
}

.cms-content h2:first-child{
   margin-top: 30px;
}

.cms-content{
	padding: 40px 100px;
	background-color: white;
}

.organ_reestr-span{
	font-weight: 500;
}

#sertificate_map{
	padding-top: 20px;
	height: 400px;
	position: static;
}

.title-maper{
	margin-bottom: 30px;
}

.analytics-actions{
	display: none;
}

.doc_pdf{
	float: left;
	min-height: 80px;
	padding-bottom: auto;
	margin-right: 15px;
}

.doc_pdf img{
	height: 50%;
}

.services-list .export-item {
    width: calc(50% - 30px);
}

.ui-datepicker{
	z-index: 250 !important;
}

.hasDatepick{
	border-bottom: 1px solid black !important; 
}

@media screen and (max-width: 768px){
	
	.regions-section{
		display: none;
	}
	
	.news-list .news-item{
		width: 100% !important;
	}
	
	.news-section{
		margin: 45px 0 70px !important;
	}
	
	.article-content .table, .article-content table{
			min-width: 100% !important;
		}
		
	.table_h_info td{
			display: block;
			width: 100% !important;
		}	
	
	
}
/* End */


/* Start:/local/templates/zerno/styles.css?173142347524252*/
.footer-nav-item {
	max-width:180px;
}

.btn-grey 
{
background: #72091C!important; 
}

.header-nav-link {color: #474747;}

.header-container {background: #fff;}

.btn-search, .btn-close {color: #000;}

.search-panel input {color:#000; border-bottom: 1px solid #000;}

.socials-list-link {color: #000;}


.promo-main-slider a {
	text-decoration:none;
}

.promo-main-slide 
{
margin-top: 113px;
height: 650px;
}

.promo {background: #fff;}

.analytics-categories.contact {
	width:100%;
}
.search-results-tags .tag a {
	color:#474747;
}
.search-results-tags .tags-list:hover a {
	color:#fff;
}
.analytics-item{
	color:#fff !important;
}

.educ_no_margin > p{
	margin-bottom: 10px !important;
}

.slick-dots li{
	list-style-type: none;
}

.presentation::marker{
	color: inherit;
	padding-top: 12px;
}

.filial-info-item ul li{
	list-style-type: none;
}

.btn-callback{
	color: white !important;
}

.chosen-container{
	margin-left: 8px;
}

.res_parameters{
	margin-bottom: 10px;
}

.res_parameters h3{
	margin-bottom: 6px;
}

#mass_chosen{
	position: relative;
}

#mass_chosen span{
	position: relative;
	top: -8px;
}

#select_end{
	padding: 16px;
    font-size: 17px;
    margin-bottom: 20px;
    border: 0 !important;
    background-color: #f6f6f6;
    cursor: pointer;
    border-bottom: 1px solid #ccc !important;
}

.article-content ul > li::before{
	content: "" !important;
}

#select_prods_chosen{
	margin-bottom: 16px;
}

#select_mission_section p{
	margin-top: 16px;
	margin-bottom: 0;
}

#mass_effect{
	margin-left: 8px;
	margin-bottom: 16px;
}






.button_prev_calc, .button_next_calc{
	margin-left: 8px;
}

.button_prev_calc .btn{
	color: white !important;
}

.attention_section{
	margin-left: 8px;
	margin-bottom: 16px;
}

.regions-map{
	min-height: 518px;
}
.regions-map > .chart{
	height: 518px;
}

#vmap{
	/*background-color: #5da646;*/
}
#vmap_selector{
	padding: 16px;
	font-size: 17px;
	margin-bottom: 20px;
	border: 0 !important;
	background-color: #f6f6f6;
	cursor: pointer;
	border-bottom: 1px solid #ccc !important;
}
.jqvmap-zoomin{
	display: none;
}
.jqvmap-zoomout{
	display: none;
}
.form-modal-confirm {
	width:100%;
	text-align:center;
	padding:20px 0;
	font-family: "Roboto", sans-serif;
	font-size:50px;
}
.regions-sidebar.pagelist {
	width:100%;
}
.article-image {
	min-height:50px;
}

.canvas_krug{
	float: left !important;
	margin-right: 5px;

}
.class-canvas > tbody > tr > th{
	
	width: 300px;
	text-align: center;
	
}
.class-canvas canvas{
	margin-top: -40px;
}
.page-sidebar{
	border-top: 0 !important;
}
#hor_bar{
	max-width: 1331px !important;
}
#hor_bar_country{
	max-width: 1050px !important;
}
/*.div_doughnut{
	margin-bottom: 50px;
} */

.hasDatepick{
	padding-bottom: 3px;
	font-size: 16px;
	border: 0;
	border-bottom: 2px dotted black;
	cursor: pointer;
	background: inherit;
	width: 85px;
}
.no-has{
	border-bottom: 0 !important;
	cursor: default !important;
}

/*.start_button{
	display: none;
}*/

.analytics-desc{
	margin-top: 20px;
}

.page-sidebar{

	border-left: 0;
	width: 500px;

}

.page-sidebar .title-sm{
	font-family: "Gilroy Extra Bold" !important;
}

.table_canvas td, th{
	width: 500px;
}

	.title-sm h2, .title-sm h3{
		font-family: "Gilroy Extra Bold";
		border-bottom: none !important;
	}

/** TITLE SIZES **/

	/*.title-h1{
		font-size: 32px !important;
	}
	.title-h2{
		font-size: 24px !important;
	}
	.title-h3{
		font-size: 19px !important;
	}
	.title-h4{
		font-size: 16px !important;
	}
	.title-h5{
		font-size: 13px !important;
	}
	.title-h6{
		font-size: 11px !important;
	}*/

/** END OF SIZES **/

.no-pad-left{
	padding-left: 0 !important;
}

/** PRELOADER **/

.hid_prel{
	display: none;
}
.iterator-h-hid{
	display: none;
	margin-bottom: 20px;
}

.preloader {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50vh;
  overflow: hidden;
  animation-delay: 1s;
}

.item-1 {
  width: 20px;
  height: 20px;
  background: #f583a1;
  border-radius: 50%;
  background-color: #eed968;
  margin: 7px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@keyframes scale {
  0% {
    transform: scale(1);
  }
  50%,
    75% {
    transform: scale(2.5);
  }
  78%,
    100% {
    opacity: 0;
  }
}
.item-1:before {
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #eed968;
  opacity: 0.7;
  animation: scale 2s infinite cubic-bezier(0, 0, 0.49, 1.02);
  animation-delay: 200ms;
  transition: 0.5s all ease;
  transform: scale(1);
}

.item-2 {
  width: 20px;
  height: 20px;
  background: #f583a1;
  border-radius: 50%;
  background-color: #ced968;
  margin: 7px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@keyframes scale {
  0% {
    transform: scale(1);
  }
  50%,
    75% {
    transform: scale(2.5);
  }
  78%,
    100% {
    opacity: 0;
  }
}
.item-2:before {
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #ced968;
  opacity: 0.7;
  animation: scale 2s infinite cubic-bezier(0, 0, 0.49, 1.02);
  animation-delay: 400ms;
  transition: 0.5s all ease;
  transform: scale(1);
}

.item-3 {
  width: 20px;
  height: 20px;
  background: #f583a1;
  border-radius: 50%;
  background-color: #aed968;
  margin: 7px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@keyframes scale {
  0% {
    transform: scale(1);
  }
  50%,
    75% {
    transform: scale(2.5);
  }
  78%,
    100% {
    opacity: 0;
  }
}
.item-3:before {
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #aed968;
  opacity: 0.7;
  animation: scale 2s infinite cubic-bezier(0, 0, 0.49, 1.02);
  animation-delay: 600ms;
  transition: 0.5s all ease;
  transform: scale(1);
}

.item-4 {
  width: 20px;
  height: 20px;
  background: #f583a1;
  border-radius: 50%;
  background-color: #8fd968;
  margin: 7px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@keyframes scale {
  0% {
    transform: scale(1);
  }
  50%,
    75% {
    transform: scale(2.5);
  }
  78%,
    100% {
    opacity: 0;
  }
}
.item-4:before {
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #8fd968;
  opacity: 0.7;
  animation: scale 2s infinite cubic-bezier(0, 0, 0.49, 1.02);
  animation-delay: 800ms;
  transition: 0.5s all ease;
  transform: scale(1);
}

.item-5 {
  width: 20px;
  height: 20px;
  background: #f583a1;
  border-radius: 50%;
  background-color: #7cd958;
  margin: 7px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@keyframes scale {
  0% {
    transform: scale(1);
  }
  50%,
    75% {
    transform: scale(2.5);
  }
  78%,
    100% {
    opacity: 0;
  }
}
.item-5:before {
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #7cd958;
  opacity: 0.7;
  animation: scale 2s infinite cubic-bezier(0, 0, 0.49, 1.02);
  animation-delay: 1000ms;
  transition: 0.5s all ease;
  transform: scale(1);
}

.an2_table{
	width: 150px;
	height: 180px;
	background-color: rgb(201, 215, 234);
	border-radius: 24px;
	margin-right: 24px;
	font-size: 14px;
	font-weight: 300;
	padding-bottom: 8px;
	text-align: center;
	display: inline-block;
}


.an2_table > p{
	padding: 18px;
}

.an2_table > .title_an2{
	height: 40%;
}

.an2_table > .value_an2{
	height: 75px;
	background-color: white;
	border: 3px solid rgb(161, 175, 184);
	margin-left: 8px;
	padding-top: 25px;
	vertical-align: middle;
	margin-right: 8px;
	border-radius: 16px;
}

.dater_an2{
	margin-right: 40px;
	width: 85px !important;
}

.dater_an3{
	/*margin-right: 40px;*/
	width: 85px !important;
}

.title-margin{
	margin: 10px 0px; 
}

.title-large-bottom-margin{
	margin-bottom: 25px;
}

.title-large-top-margin{
	margin-top: 25px;
}

/** END OF PRELOADER **/


/** ANALIZ KACHESTVA ZERNA NOVOGO UROZHAYA **/

.zerno_info{
	/*width: 40%;*/
	margin-right: 20px;
}

.zerno_info > .cell_z{
	width: 48%;
	margin-right: 20px;
	height: 80px;
	display: inline-block;
	border-radius: 24px;
	margin-bottom: 10px;
	background-color: #ff9000;
	float: left;
	padding-left: 10px;
	padding-bottom: 10px;
	transition: 0.3s all ease;
	z-index: 5;
}

.cell_z:hover{
	background-color: #ffaf3f;
	cursor: pointer;
}

.chosen_cell_z{
	background-color: #dd7000 !important;
}

.cell_z > .icon_cell_z{
	width: 65px;
	height: 65px;
	margin-top: 8px;
	margin-left: 10px;
	margin-right: 20px;
	border-radius: 64px;

	float: left;
}

.accred_div{
	display: inline-flex;
	margin-bottom: 50px;
}

.accred_div .col-3{
	width: 300px;
	margin-right: 25px;
	height: 100%;
}

.accred_div .col-9{
	width: calc(100% - 325px);
	text-align: justify;
}

.doc_a{
	display: block;
	min-height: 70px;
	margin-bottom: 16px;
	margin-top: 18px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	text-align: justify;
	text-decoration: none !important;
}
.doc_a:first-child{
	margin-top: 0;
}
.doc_a:hover{
	text-decoration: underline !important;
}

.doc_a_corr{
	display: block;
	margin-bottom: 12px;
	font-size: 14px;
	line-height: 20px;
	text-align: justify;
}

.doc_a p{
	vertical-align: middle;
	min-height: 50%;
	margin-top: auto;
	margin-bottom: 14px;
	font-size: 18px;
    line-height: 30px;
    font-weight: normal;
    font-style: normal;
}



.cell_z > h4{
	margin: 0 !important;
	padding-top: 6px;
	font-size: 16px;
	font-weight: 500;
}

.cell_z > .desc_cell_z{
	font-size: 12px;
	width: 94%;
	line-height: 1.1;
	font-weight: 300;
}

#psh_soft > .icon_cell_z{
	background: url(/local/templates/zerno/images/wheat_soft.png) repeat-y #fff;
	background-position-y: 2px;
    background-position-x: 2px;
    background-size: 90%;
}

#psh_hard > .icon_cell_z{
	background: url(/local/templates/zerno/images/wheat_hard.png) repeat-y #fff;
	background-position-y: -2px;
    background-position-x: -2px;
    background-size: 90%;
}

#yachmen > .icon_cell_z{
	background: url(/local/templates/zerno/images/barley.png) repeat-y #fff;
	background-position-y: -2px;
    background-position-x: -2px;
    background-size: 90%;
}

#yachmen_beer > .icon_cell_z{
	background: url(/local/templates/zerno/images/barley.png) repeat-y #fff;
	background-position-y: -2px;
    background-position-x: -2px;
    background-size: 90%;
}

#rozh > .icon_cell_z{
	background: url(/local/templates/zerno/images/rye.png) repeat-y #fff;
	background-position-y: -2px;
    background-position-x: -2px;
    background-size: 90%;
}

#kukuruza > .icon_cell_z{
	background: url(/local/templates/zerno/images/corn.png) repeat-y #fff;
	background-position-y: -2px;
    background-position-x: -6px;
    background-size: 90%;
}

.zerno_map{
	margin-top: -10px;
	z-index: 1;
	width: 100%;
	position: relative;
	margin-bottom: 50px;
	height: 710px;
	background: url(/local/templates/zerno/images/map.png);
	background-size: 100%;
	background-repeat: no-repeat;
}

.new_zerno > div{
	display: inline-block;
}

/* REGIONS ID */

#reg1{
	position: absolute;
	bottom: 35%;
	left: 8%;
}

#reg2{
	position: absolute;
	bottom: 55%;
	left: 12%;
}

#reg3{
	position: absolute;
	bottom: 24%;
	left: 12%;
}

#reg4{
	position: absolute;
	bottom: 41%;
	left: 51%;
}

#reg5{
	position: absolute;
	bottom: 45%;
	left: 19%;
}

#reg6{
	position: absolute;
	bottom: 50%;
	left: 35%;
}

#reg7{
	position: absolute;
	top: 20%;
	left: 23%;
}

#reg8{
	position: absolute;
	top: 300px;
	left: 750px;
}
/* END OF REGIONS ID */

/** END OF ANALIZ KACHESTVA ZERNA NOVOGO UROZHAYA **/

/*** ADAPTIVE CHANGES ***/

@media screen and(max-width: 400px){
		.class-canvas td{
			position: relative;
			left: 5%;
		}
	}

@media screen and (max-width: 768px){
	
	.canvas_krug{
		z-index: 50;
	}
	
	.hasDatepick{
		width: 100px;
		text-align: center;
	}
	
	.zerno_map{
		width: 420px;
		position: relative;
		left: -7%;
		height: 300px !important;
		display: none !important;
	}
	
	.zerno_info > .cell_z{
		width: 100%;
		margin-right: 0;
		height: 150px;
	}
	
	.cell_z .icon_cell_z{
		margin-bottom: 30px;
	}
	
	#reg1{
		bottom: 34%;
		left: 6%;
	}
	
	#reg2{
		bottom: 50%;
		left: 5%;
	}
	
	#reg3{
		bottom: 18%;
		left: 7%;
	}
	
	#reg4{
		bottom: 33%;
		left: 48%;
	}
	
	#reg5{
		bottom: 41%;
		left: 18%
	}
	
	#reg6{
		bottom: 46%;
		left: 33%;
	}
	
	#reg7{
		top: 19%;
	}
	
	
	
	.an2_table{
		display: block;
		width: 200px;
		height: 240px;
		margin-left: auto;
		margin-right: auto;
		margin-bottom: 20px;
	}
	
	.title-h3{
		text-align: center;
	}
	
	#vmap{
		height: 300px !important;
	}
	#vmap1{
		height: 300px !important;
	}
	
	.class-canvas{
		margin-left: -6px;
	}
	
	.class-canvas td{
		display: block;
		position: relative;
		left: 15%;
	}
}



/*** END OF ADAPTIVE CHANGES ***/


/** ABOUT LEADER **/

	.bold_text{
		font-weight: 700 !important;
	}
	
	.doc_onewindow{
		margin: 40px 0 !important;
	}

	.clre{
		clear: both;
		margin-bottom: 30px;
		margin-top: 10px;
		margin-left: auto;
		margin-right: auto;
	}

	
	.info_cell{
		/*width: 29.8%;
		float: left;*/
		display: inline-block;
		margin-left: auto;
		margin-right: 20px;
		vertical-align: top;
	}
	
	.info_cell:first-child{
		display: block;
		margin-left: auto !important;
		margin-right: auto !important;
		width: 420px;
		height: 600px;
	}
	
	.info_cell:first-child > a > img{
		/*width: 100%;*/
		height: 520px;
	}
	
	
	.table_h_info tr{
		
		border-bottom: 1px solid rgba(0,0,0,0.1);
	}
	
	.table_h_info td{
		font-size: 18px;
		padding-bottom: 5px;
		padding-top: 5px;
	}
	
	.table_h_info td:first-child{
		width: 15%;
		padding-right: 16px;
	}
	
	@media screen and (max-width: 768px){
		
		
		
	}
	
	
	@media screen{
		/*.info_cell{
			
			width: 730px;
			height: 520px;
			vertical-align: top;
			
		}
		
		.info_cell > a > img{
			
			height: 840px;
		}*/
		
	}
	
	@media screen{
		.info_cell{
			
			/*width: 500px;
			height: 640px;*/
			width: 100%;
			height: 80%;
			
		}
		.info_cell > a > img{
			/*width: 100%;*/
			height: 400px;
		}
		
	}
	
	/*@media screen and (max-width: 991px){*/
		.info_cell p {
			text-align: center;
		}
	/*}*/
	
	@media screen and (max-width: 768px){
		.info_cell:first-child{
			width: 100%;
			height: 80%;
		}
		.info_cell:first-child > a > img{
			/*width: 100%;*/
			height: 420px;
		}
		.is-greatest-margin{
			padding: 10px !important;
		}
		
		.article-content{
			padding: 0 !important;
		}
		
		.leader_personal_info{
			padding: 10px 20px !important;
		}
		
		.countries-body{
			margin: 0 !important;
		}
		
	}
	
	@media screen and (min-width: 992px){
		.info_cell{
			
			width: 350px;
			height: 520px;
			
		}
		.info_cell > a > img{
			/*width: 100%;*/
			height: 440px;
		}
		
	}
	
	@media screen and (min-width: 1200px){
		.info_cell{
			
			width: 293px;
			height: 460px;
		}
		.info_cell > a > img{
			/*width: 100%;*/
			height: 380px;
		}
	}
	
	@media screen and (min-width: 1364px){
		.info_cell{
			
			width: 31%;
			height: 480px;
		}
		.info_cell > a > img{
			/*width: 100%;*/
			height: 400px;
		}
	}
	
	.leader_row{
		height: 515px;
	}
	
	.leader_row .info_cell{
		height: 100%;
		vertical-align: bottom;
		margin-left: 17px;
		margin-right: auto;
	}
	.cms-content .leader_row:first-child{
		margin-top: 20px;
	}
	
	
	
	
	
	.info_cell > a{
		width: 100%;
		display: block;
		margin-right: 20px;
	}
	
	
	
	.h1-leader{
		margin-top: -30px !important;
		z-index: 2;
		text-align: center !important;
	}
	
	.info_cell p{
		font-size: 16px;
		text-transform: uppercase;
		font-family: "Gilroy Extra Bold", sans-serif !important;
		margin-bottom: 8px !important;
		margin-top: 8px !important;
		line-height: 1.1;
		
	}
	
	.title {
		  font-family: "Gilroy Extra Bold", sans-serif;
		  text-decoration: none;
		  font-style: normal;
		  font-weight: bold;
		  line-height: normal;
		  color: #474747; }
	
	/*.title{
		font-family: "Roboto", sans-serif !important;
		font-style: normal;
		font-weight: 700 !important;
		line-height: normal;
		color: #474747;
	}*/
	
	.news-item-body *{
	
		text-decoration: none !important;
	
	}
	
	.title h1{
		font-family: "Gilroy Extra Bold" !important;
		font-size: 42px !important;
		text-transform: uppercase;
		border-bottom: none;
	}
	
	@media screen and (max-width: 768px){
		.article-head{
			margin: 0 !important;
		}
		.title h1, .article-title h1{
			font-size: 28px !important;
		}
	}
	
	.ppl p{
		line-height: 1.2 !important;
		font-size: 18px;
	}
	
	.ppl p:first{
		margin-top: 10px;
	}


/** END OF ABOUT LEADER **/

/** NEWS **/

	.news-item{
		cursor: default !important;
	}

	.sidebar-subscription{
		margin-top: 20px;
	}

	@media screen and (min-width: 1220px){
		.sidebar-subscription{
			width: 1170px;
			margin-left: auto;
			margin-right: auto;
		}
	}
	
	@media screen and (min-width: 1366px){
		.sidebar-subscription{
			width: 1320px;
			margin-left: auto;
			margin-right: auto;
		}
	}
	
	@media screen and (min-width: 992px){
		.sidebar-subscription{
			width: 970px;
			margin-left: auto;
			margin-right: auto;
		}
	}
	
	@media screen and (min-width: 767px){
		.sidebar-subscription{
			width: 750px;
			margin-left: auto;
			margin-right: auto;
		}
	
	}
	
	.container .sidebar-subscription{
		width: 100% !important;
	}

/** END OF NEWS **/

/** MAIN REGION NEWS LIST **/

	.tooltip-content{
		padding: 12px;
		border: none !important;
		background-color: #72091C;
	}
	
	.tooltip-content *{
		color: white !important;
	}

/** END OF MAIN REGION NEW LIST **/

.animate_block div{
	width: calc(32% - 30px);
	display: inline-block;
}
.animate_block div:first-child{
	margin-left: 95px;
}
.animate_block div p:first-child{
	font-size: 96px;
	font-weight: 500;
	line-height: inherit;
	font-family: "Gilroy Extra Bold", sans-serif;
	margin-bottom: -20px;
	margin-top: 20px;
}
.animate_block p{
	width: 100%;
	display: block;
}

@media screen and (max-width: 768px){
	.animate_block{
		display: none;
	}
}

#no-visible-a{
	color: #474747 !important;
	text-decoration: none;

}

.leader_personal{
	background-color: white;
}

.leader_personal h3{
	padding-top: 40px;
	font-size: 24px;
	font-family: "Gilroy Extra Bold", sans-serif;
	text-transform: uppercase;
}

.leader_personal h4{
	font-family: "Gilroy Extra Bold", sans-serif;
	font-size: 20px;
}

.leader_personal_info{
	padding: 50px 100px;
}

/** CSS CODE COMPILATION **/

.offices-info-params li{
	list-style: none;
}

.cms-content, .offices-info{
	padding: 40px 100px;
	background-color: white;
	/*text-align: justify;*/
}

.cms-ch-ed .services-item{
	/*width: calc(50% - 30px);*/
	width: 100%;
}

/*.page-content h1, */.page-content h2, .page-content h3, .page-content h4, .page-content h5, .page-content h6{
	margin: 30px 0 30px;
}

.page-content h2{
	font-family: "Gilroy Extra Bold";
	font-size: 32px;
	text-transform: uppercase;
}

.countries-body{
	margin: 20px;
	padding-top: 20px;
}
	
.countries-body h2{
	border-bottom: none;
}
		
.countries-body .doc_ros{
	padding: 20px 100px;
}
		
.doc_ros .doc_a:last-child{
	margin: 0;
}

.cms-choise p{
	font-size: inherit;
}
	
.offices-info-list p + ul{
	font-size: 18px;
    line-height: 30px;
    font-weight: normal;
    font-style: normal;
    margin: 0 0 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}	

.offices-info-item-full {
    margin: 0 15px 20px;
    position: relative;
    padding-left: 30px;
    width: 100%;
}
	
@media screen and (max-width: 719px){
	.cms-content{
		padding: 20px 10px;
	}
}	

.cms-content .faq-list .faq-item-title{
	width: 80%;
}

.is-greatest-margin{
	padding-top: 60px;
}


/** ОТСОРТИРОВАННЫЙ КОД ИЗ REFORMED.CSS **/

.cms-content h3:first-child{
	margin-top: 20px;
}

.offices-info-list {
	margin: 0 !important;
}
.offices-info-item-full {
    margin: 0 15px 20px;
    position: relative;
    padding-left: 30px;
    width: 100%;
}
.offices-info-list p{
	font-size: 18px;
    line-height: 30px;
    font-weight: normal;
    font-style: normal;
    margin: 0 0 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.cms-content h2:first-child{
   margin-top: 30px;
}

.article-body{
	padding-left: 0;
	padding-right: 0;
}

.offices-info-list ul{
	font-size: 18px;
    line-height: 30px;
    font-weight: normal;
    font-style: normal;
    margin: 0 0 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.offices-info-list h3{
	font-size: 22px;
}

.offices-content{
	width: 100% !important;
	
	padding: 20px;
}

.cms-content{
	background-color: white;
}

   .cms-content a:hover {
    color: #da7f0a !important;
    text-decoration: underline !important;
}
.cms-content a {
    color: #da7f0a !important;
    text-decoration: none !important;
}

.countries-body{
	margin: 20px;
	padding-top: 20px;
}
	
.countries-body h2{
	font-family: "Gilroy Extra Bold";
	font-size: 32px;
	text-transform: uppercase;
	border-bottom: none;
}
		
.countries-body .doc_ros{
	padding: 20px 100px;
}
		
.doc_ros .doc_a:last-child{
	margin: 0;
}
		
.title-sm{
	font-family: "Gilroy Extra Bold" !important;
	font-size: 42px !important;
	text-transform: uppercase;
	border-bottom: none;
}

/*.article-content{
	background-color: white;
}*/

#my_answer{
	min-width: 30%;
	min-height: 35%;
	padding: 30px;
}

#my_answer a{
	font-size: 18px;
	color: #DA7F0A;
}

.services-item:hover {
	text-decoration: underline;
	color: white!important;
}
			
.services-item-image {
	position: absolute !important;
	right: 0;
	bottom: 0;
	max-height: 100%;
	}
	
.offices{
	padding: 20px 100px;
}	

.celd_title{
	padding: 16px 8px !important;
	font-size: 20px;
}



.button_next_calc{
	margin-top: 20px;
}

.button_prev_calc{
	margin-top: 20px;
}

.btn_active{
	color: white;
}
.country-head{
		padding-left: 0;
	}
	
	.country-head-name-zag h3{
		font-size: 24px;
		font-family: "Gilroy Extra Bold";
		text-transform: uppercase;
	}
	
	.country-head-name h4{
		font-family: "Gilroy Extra Bold";
		font-size: 20px;
	}
	
	.country-head-icon{
		position: static !important;
	}
	
	.documents-list{
		margin-bottom: 30px !important;
	}
	
.contact-page-content{
		display: inline-flex;
	}
	
	.page-content > .page-sidebar{
		order: 1 !important;
		padding-left: 0 !important;
		padding-top: 0 !important;
		padding-right: 40px;
	}
	
	.page-content > .contacts{
		order: 2 !important;
		width: 200%;
	}
	
	.regions-sidebar-body{
		overflow-y: scroll;
		max-height: 400px;
	}
	
	.sidebar-links-item{
		margin-bottom: 6px;
	}
	
	.contacts-item{
		margin-bottom: 0px;
	}
	
	.sidebar-links-item > a, .sidebar-links-item > span{
		font-size: 13px;
	}
	
	.sidebar-group{
		height: 600px !important;
	}
	
	.leader_personal img{
		max-width: 500px;
	}
	
	#sticky-wrapper .regions-sidebar-body{
		max-height: 800px !important;
		overflow-y: hidden;
	}
	
	.title-analytics{
		text-align: left;
	}
	
	.news_a{
		color: black !important;
	}
	
	@media screen and (max-width: 769px){
		
		.offices{
			padding: 0;
		}
		
		.page-content > .page-sidebar{
			display: none;
		}
		
		.news-column{
		padding: 20px !important;
	}
	
	.article-image{
		min-height: 0 !important;
	}
	
	.cms-content{
		padding: 20px !important;
	}
	
	.low_h h2, .low_text h2{
		font-size: 32px;
		text-transfrom: uppercase;
		margin-top: 0 !important;
		margin-bottom: 30px;
	}
	
	.low_text h3{
		font-size: 24px;
		text-transform: uppercase;
		margin: 30px 0 30px;
	}
	
	.low_text ul, .low_text ol{
		/*margin-left: 24px;*/
		margin: 30px 0 30px;
		font-size: 18px;
	}
	
	.low_text ul > li{
		padding-left: 26px;
		margin: 0 0 10px;
	}
	
	.low_text p{
		/*padding: 16px;*/
		margin: 0 0 30px;
		font-size: 18px;
	}
	
	.low_text * {
		width: 100%;
		line-height: 30px;
	}
	
	.low_text p{
		max-width: 100%;
	}
	
	.low_h{
		padding: 16px;
	}
	
	.low_h a{
		color: #474747 !important;
		text-decoration: none !important;
	}
	.low_h a:hover{
		color: #474747 !important;
		text-decoration: underline;
	}
	
	
	.low_h h2, .low_text h2{
		font-size: 28px !important;
	}
		
	.offices-content{
		width: auto !important;
		/*margin: 20px;*/
	}	
	
	.offices-details{
		margin: 0 !important;
	}
	
	.offices-info{
		padding: 0 !important;
	}
		
	.offices-info-item-full{
		margin: 0;
		padding: 0;
	}	
	
	.article-content h1, .article h1, .page-content h1{
		font-size: 24px;
	}

	.countries-content .filters-selects .form-select, .countries-content .filters-selects .form-input{
		width: 100%;
	}
	
	.article-content ul:not(.slick-dots) li, .article-content ol:not(.slick-dots) li{
		font-size: 18px;
		line-height: 32px;
		margin: 0 0 0 26px!important;
		padding-left: 0;
	}	
		
		.accred_div .col-3{
			width: 100%;
		}
		
		.accred_div .col-9{
			width: 100%;
		}
		
	}
/* End */


/* Start:/local/templates/zerno/template_styles.css?173142347543*/
.header-nav {padding-left: 15px!important;}
/* End */
/* /tpl/css/slick.css?16115517091776 */
/* /tpl/css/jquery.selectBoxIt.css?16115517097022 */
/* /tpl/css/main.css?1647527421182548 */
/* /local/templates/zerno/styles.css?173142347524252 */
/* /local/templates/zerno/template_styles.css?173142347543 */
