@font-face {
    font-family: 'Open Sans';
    font-weight: 300;
    font-style: normal;

    src: url('../fonts/OpenSans-Light.woff2') format('woff2'), url('../fonts/OpenSans-Light.woff') format('woff');
    font-display: swap;
}

@font-face {
    font-family: 'Open Sans';
    font-weight: 400;
    font-style: normal;

    src: url('../fonts/OpenSans-Regular.woff2') format('woff2'), url('../fonts/OpenSans-Regular.woff') format('woff');
    font-display: swap;
}

@font-face {
    font-family: 'Open Sans';
    font-weight: 600;
    font-style: normal;

    src: url('../fonts/OpenSans-SemiBold.woff2') format('woff2'), url('../fonts/OpenSans-SemiBold.woff') format('woff');
    font-display: swap;
}

@font-face {
    font-family: 'Open Sans';
    font-weight: 700;
    font-style: normal;

    src: url('../fonts/OpenSans-Bold.woff2') format('woff2'), url('../fonts/OpenSans-Bold.woff') format('woff');
    font-display: swap;
}

@font-face {
    font-family: 'Open Sans';
    font-weight: 800;
    font-style: normal;

    src: url('../fonts/OpenSans-ExtraBold.woff2') format('woff2'), url('../fonts/OpenSans-ExtraBold.woff') format('woff');
    font-display: swap;
}

/* scrollbar */

::-webkit-scrollbar-thumb {
    padding-right: 100px;

    background-color: #868585;
    background-repeat: repeat-y;
}

::-webkit-resizer {
    width: 7px;
    height: 0;
    ;

    background-image: url('');
    background-repeat: no-repeat;
}

::-webkit-scrollbar {
    width: 9px;
}

/* scrollbar end */


/* кнопка наверх */

#top {
    position: fixed;
    right: 10px;
    bottom: 10px;

    display: none;

    padding: 20px;

    cursor: pointer;
    transition: .3s;

    color: #fff;
    border-radius: 0;
    background: #666;
}

#top:hover {
    background: #ee9c34;
}

.up_angle {
    width: 10px;
    height: 10px;

    transition: transform .2s linear;
    transform: rotate(-45deg);
    transform-origin: 80% 50%;

    border-top: solid 1px #fff;
    border-right: solid 1px #fff;
}

/* кнопка наверх end */


ul {
    margin-bottom: 40px;

    list-style-type: disc;
}

ol {
    margin-bottom: 40px;
}

ul li,
ol li {
    margin-bottom: 10px;
}

.table_wrapper_container {
    overflow: auto;

    width: 100%;
}

iframe {
    max-width: 100%;
}

img {
    max-width: 100%;
}


/**
 * Owl Carousel v2.2.0
 * Copyright 2013-2016 David Deutsch
 * Licensed under MIT (https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE)
 */
.owl-carousel,
.owl-carousel .owl-item {
    position: relative;

    -webkit-tap-highlight-color: transparent;
}

.owl-carousel {
    z-index: 1;

    display: none;

    width: 100%;
}

.owl-carousel .owl-stage {
    position: relative;

    -ms-touch-action: pan-Y;
}

.owl-carousel .owl-stage:after {
    line-height: 0;

    display: block;
    visibility: hidden;
    clear: both;

    height: 0;

    content: '.';
}

.owl-carousel .owl-stage-outer {
    position: relative;

    overflow: hidden;

    -webkit-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item {
    float: left;

    min-height: 1px;

    -webkit-backface-visibility: hidden;
    -webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
    display: block;

    width: 100%;

    -webkit-transform-style: preserve-3d;
}

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

.no-js .owl-carousel,
.owl-carousel.owl-loaded {
    display: block;
}

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

.owl-theme .owl-nav.disabled+.owl-dots {
    position: absolute;
    right: 25%;
    left: 25%;

    margin-top: -33px;
}

.owl-theme .owl-dots {
    text-align: center;

    -webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-dots .owl-dot {
    display: inline-block;
    zoom: 1;
    *display: inline;
}

.owl-theme .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 5px 7px;
    background: #D6D6D6;
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity 200ms ease;
    border-radius: 30px;
    cursor: pointer;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: #869791;
}

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

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

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

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

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

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

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

.owl-carousel .animated {
    -webkit-animation-duration: 1s;
    -o-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both;
}

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

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

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

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

    100% {
        opacity: 0;
    }
}

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

    100% {
        opacity: 0;
    }
}

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

    100% {
        opacity: 0;
    }
}

.owl-height {
    -webkit-transition: height 0.5s ease-in-out;
    -o-transition: height 0.5s ease-in-out;
    transition: height 0.5s ease-in-out;
}

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

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

.owl-carousel .owl-video-wrapper {
    position: relative;
    height: 100%;
    background: #000;
}

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

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

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

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

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

/*! normalize.css v5.0.0 | MIT License | github.com/necolas/normalize.css */
/**
 * 1. Change the default font family in all browsers (opinionated).
 * 2. Correct the line height in all browsers.
 * 3. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 */
/* Document
   ========================================================================== */
html {
    font-family: sans-serif;
    /* 1 */
    line-height: 1.15;
    /* 2 */
    -ms-text-size-adjust: 100%;
    /* 3 */
    -webkit-text-size-adjust: 100%;
    /* 3 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers (opinionated).
 */
body {
    margin: 0;
}

/**
 * Add the correct display in IE 9-.
 */
article,
aside,
footer,
header,
nav,
section {
    display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
    font-size: 2em;
    margin: 0.67em 0;
    font-weight: 300;
}

/* Grouping content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 * 1. Add the correct display in IE.
 */
figcaption,
figure,
main {
    /* 1 */
    display: block;
}

/**
 * Add the correct margin in IE 8.
 */
figure {
    margin: 1em 40px;
}

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    /* 1 */
    height: 0;
    /* 1 */
    overflow: visible;
    /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
    font-family: monospace, monospace;
    /* 1 */
    font-size: 1em;
    /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */
a {
    background-color: transparent;
    transition: .3s;
    /* 1 */
    -webkit-text-decoration-skip: objects;
    /* 2 */
}

/**
 * Remove the outline on focused links when they are also active or hovered
 * in all browsers (opinionated).
 */
a:active,
a:hover {
    outline-width: 0;
}

/**
 * 1. Remove the bottom border in Firefox 39-.
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
    border-bottom: none;
    /* 1 */
    text-decoration: underline;
    /* 2 */
    text-decoration: underline dotted;
    /* 2 */
}

/**
 * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
 */
b,
strong {
    font-weight: inherit;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
    font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
    font-family: monospace, monospace;
    /* 1 */
    font-size: 1em;
    /* 2 */
}

/**
 * Add the correct font style in Android 4.3-.
 */
dfn {
    font-style: italic;
}

/**
 * Add the correct background and color in IE 9-.
 */
mark {
    background-color: #ff0;
    color: #000;
}

/**
 * Add the correct font size in all browsers.
 */
small {
    font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
audio,
video {
    display: inline-block;
}

/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
    display: none;
    height: 0;
}

/**
 * Remove the border on images inside links in IE 10-.
 */
img {
    border-style: none;
}

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
    overflow: hidden;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers (opinionated).
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
    font-family: 'Open Sans', sans-serif, sans-serif;
    /* 1 */
    font-size: 100%;
    /* 1 */
    line-height: 1;
    /* 1 */
    margin: 0;
    /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
    /* 1 */
    overflow: visible;
    outline: none;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
    /* 1 */
    text-transform: none;
}

/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 *    controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS and Safari.
 */
button,
html [type="button"],
[type="reset"],
[type="submit"] {
    -webkit-appearance: button;
    /* 2 */
    cursor: pointer;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
    border-style: none;
    padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
    outline: 1px dotted ButtonText;
}

/**
 * Change the border, margin, and padding in all browsers (opinionated).
 */
fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    /* 1 */
    color: inherit;
    /* 2 */
    display: table;
    /* 1 */
    max-width: 100%;
    /* 1 */
    padding: 0;
    /* 3 */
    white-space: normal;
    /* 1 */
}

/**
 * 1. Add the correct display in IE 9-.
 * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
    display: inline-block;
    /* 1 */
    vertical-align: baseline;
    /* 2 */
}

/**
 * Remove the default vertical scrollbar in IE.
 */
textarea {
    overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10-.
 * 2. Remove the padding in IE 10-.
 */
[type="checkbox"],
[type="radio"] {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    /* 1 */
    padding: 0;
    /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
    height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
    -webkit-appearance: textfield;
    /* 1 */
    outline-offset: -2px;
    /* 2 */
}

/**
 * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
    -webkit-appearance: button;
    /* 1 */
    font: inherit;
    /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in IE 9-.
 * 1. Add the correct display in Edge, IE, and Firefox.
 */
details,
menu {
    display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
    display: list-item;
}

/* Scripting
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
canvas {
    display: inline-block;
}

/**
 * Add the correct display in IE.
 */
template {
    display: none;
}

/* Hidden
   ========================================================================== */
/**
 * Add the correct display in IE 10-.
 */
[hidden] {
    display: none;
}

.container {
    display: block;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 10px;
    padding-right: 10px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.arrow-right {
    border-left: 8px solid #f7921c;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

body {
    height: 100%;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #201600;
    padding-top: 80px;
}

html {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    height: 100%;
}

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

a {
    color: #f9a13b;
    text-decoration: none;
}

a:hover {
    color: #a6b2c9;
}

.page-wrapper {
    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;
    height: 100%;
}

.page-wrapper__content {
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 auto;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
    background-color: #d6d6d6;
    background-image: url(../img/bg-texture.jpg);
}

.page-footer {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}

.page-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 5px 15px;
    background-color: #fff;
}

.page-header__inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.page-header__logo img {
    max-width: 100%;
    width: 94%;
}

.header-inner {
    background: #fff;
}

.header-inner__inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.header-inner__logo {
    padding-top: 7px;
    margin-right: 25px;
}

.header-inner__right {
    width: 72%;
    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;
}

.header-inner__nav-list {
    margin: 0;
    padding: 0;
    list-style-type: none;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    font-size: 14px;
}

.header-inner__nav-list>li.active>a {
    color: #db7a26;
}

.header-inner__nav-item {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 109px;
    height: 100%;
    padding: 24px 17px 24px 17px;
    text-align: center;
    color: #1c1b1c;
    border-right: 1px solid #e7e7e7;
    cursor: pointer;
}

.header-inner__nav-item.active>span {
    color: #db7a26;
}

.header-inner__nav-item:first-child {
    border-left: 1px solid #e7e7e7;
}

.header-inner__nav-item:hover>span {
    color: #db7a26;
}

.header-inner__nav-item>span {
    margin-top: auto;
    margin-bottom: auto;
}

.header-inner__nav-item:hover .header-inner__nav-drop {
    display: block;
}

.header-inner__nav-drop {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    width: 250px;
    padding: 10px 15px;
    background-color: #fff;
    text-align: left;
    cursor: default;
}

.header-inner__nav-drop a:hover {
    text-decoration: underline;
}

.header-inner__nav-title {
    display: block;
    margin-bottom: 5px;
}

.header-inner__nav-drop-list {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.header-inner__nav-drop-list li {
    margin-bottom: 10px;
}

.header-inner__nav-link {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 109px;
    padding: 17px;
    border-right: 1px solid #e7e7e7;
    text-align: center;
    height: 100%;
    color: #1c1b1c;
}

.header-inner__nav-link span {
    margin: auto;
}

.header-inner__nav-link:hover {
    color: #db7a26;
}

.header-inner__search {
    font-size: 0;
    padding-top: 26px;
}

.header-inner__search-input {
    width: 220px;
    height: 30px;
    padding: 5px;
    font-size: 13px;
    border: 1px solid #ededee;
}

.header-inner__search-input::-webkit-input-placeholder {
    color: #747474;
}

.header-inner__search-input::-moz-placeholder {
    color: #747474;
}

.header-inner__search-input:-ms-input-placeholder {
    color: #747474;
}

.header-inner__search-input::placeholder {
    color: #747474;
}

.header-inner__search-btn {
    padding-left: 10px;
    padding-right: 0;
    vertical-align: top;
    border: none;
    background: #fff;
}

.burger {
    width: 33px;
    height: 24px;
    position: relative;
    background-color: transparent;
    border: none;
}

.burger>span {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #f7921c;
    -webkit-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: background .3s .5s;
    -o-transition: background .3s .5s;
    transition: background .3s .5s;
}

.burger>span::after,
.burger>span::before {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #f7921c;
    -webkit-transition: top .3s .3s, -webkit-transform .3s;
    transition: top .3s .3s, -webkit-transform .3s;
    -o-transition: top .3s .3s, -o-transform .3s;
    transition: top .3s .3s, transform .3s;
    transition: top .3s .3s, transform .3s, -webkit-transform .3s, -o-transform .3s;
    -webkit-transform-origin: 50% 50%;
    -o-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
}

.burger>span::after {
    top: -10px;
}

.burger>span::before {
    top: 10px;
}

.burger--open>span {
    background: 0 0;
}

.burger--open>span::before {
    top: 0px;
    -webkit-transition: top .3s, -webkit-transform .3s .5s;
    transition: top .3s, -webkit-transform .3s .5s;
    -o-transition: top .3s, -o-transform .3s .5s;
    transition: top .3s, transform .3s .5s;
    transition: top .3s, transform .3s .5s, -webkit-transform .3s .5s, -o-transform .3s .5s;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
}

.burger--open>span::after {
    top: 0px;
    -webkit-transition: top .3s, -webkit-transform .3s .5s;
    transition: top .3s, -webkit-transform .3s .5s;
    -o-transition: top .3s, -o-transform .3s .5s;
    transition: top .3s, transform .3s .5s;
    transition: top .3s, transform .3s .5s, -webkit-transform .3s .5s, -o-transform .3s .5s;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
}

.main-nav {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.main-nav__list {
    margin: 0;
    padding: 0;
    list-style-type: none;
    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;
}

.main-nav__list a.activelink,
.main-nav__list .activelink>span {
    color: tomato;
}

.main-nav__item {
    position: relative;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    border-bottom: 1px solid #f28822;
}

.main-nav__item:hover .main-nav__dropdown {
    display: block;
}

.main-nav__item:hover .main-nav__toggler,
.main-nav__item:hover .main-nav__toggler a {
    color: #000;
}

.main-nav__dropdown {
    display: none;
    width: 330px;
    padding: 20px 30px 10px 33px;
    position: absolute;
    z-index: 100;
    top: 55px;
    left: 50%;
    background-color: rgba(255, 255, 255, 0.89);
    text-transform: none;
    -webkit-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    cursor: default;
}

/*
.main-nav__dropdown::before {
  content: '';
  position: absolute;
  top: 0;
  left: 1px;
  width: 6px;
  height: 100%;
  background-color: #f8931d;
}
*/
.main-nav__dropdown::after {
    content: '';
    position: absolute;
    top: -4px;
    left: 0;
    width: 100%;
    height: 4px;
}

.main-nav__toggler {
    display: inline-block;
    padding: 20px;
}

.main-nav__toggler a {
    color: #000;
}

.main-nav__title {
    display: inline-block;
    margin-bottom: 8px;
    line-height: 1.3;
    font-size: 15px;
    font-weight: 700;
}

.main-nav__sublist {
    margin: 0;
    padding: 0;
    list-style-type: none;
    margin-bottom: 13px;
    font-size: 15px;
}

.main-nav__sublist:last-of-type {
    margin-bottom: 0;
}

.main-nav__sublist li {
    position: relative;
    margin-bottom: 8px;
    padding-left: 15px;
    font-weight: 400;
}

.main-nav__sublist li::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 0;
    width: 7px;
    height: 7px;
    background-color: #f7921c;
}

.main-nav__sublist li a {
    color: #000;
    -webkit-transition: all 0.225s ease-in;
    -o-transition: all 0.225s ease-in;
    transition: all 0.225s ease-in;
}

.main-nav__sublist li a:hover {
    color: #f7921d;
}

.slider {}

.slider__items {
    position: relative;
}

.slider__item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    height: 340px;
    -webkit-background-size: cover;
    background-size: cover;
    background-repeat: no-repeat;
}

.slider__info {
    position: absolute;
    top: 0;
    right: 0;
    background: #f7f5f5;
    padding: 40px;
    text-align: right;
    color: #000;
    min-height: 340px;
    width: 30%;
}

.slider__title {
    margin: 0;
    margin-bottom: 20px;
    font-size: 22px;
    font-weight: 400;
    text-align: left;
}

.slider__text {
    margin: 0;
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 1.5;
    text-align: left;
}

.slider__link {
    position: relative;
    margin-right: 15px;
    color: #000;
    border-bottom: 1px solid #000;
    text-transform: lowercase;
}

/*
.slider__link::after {
  content: '';
  position: absolute;
  right: -15px;
  top: 5px;
  border-left: 8px solid #fff;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}
*/
.slider__link:hover {
    color: tomato;
    border-color: tomato;
}

.slider .owl-next,
.slider .owl-prev {
    position: absolute;
    top: 0;
    width: 63px;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    font-size: 0;
    -webkit-transition: all 0.225s ease-in;
    -o-transition: all 0.225s ease-in;
    transition: all 0.225s ease-in;
}

.slider .owl-next:hover,
.slider .owl-prev:hover {
    opacity: 0.8;
}

.slider .owl-next::after,
.slider .owl-prev::after {
    content: '';
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    border-left: 20px solid #fff;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
}

.slider .owl-next {
    right: 0;
}

.slider .owl-next::after {
    right: 23px;
}

.slider .owl-prev::after {
    left: 23px;
    -webkit-transform: translateY(-50%) rotate(180deg);
    -o-transform: translateY(-50%) rotate(180deg);
    transform: translateY(-50%) rotate(180deg);
}

.panel {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 10px;
    margin-bottom: 35px;
    padding: 10px;
}

.panel__search-form {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.panel__search-input {
    width: 225px;
    height: 38px;
    padding: 0 10px 0 15px;
    color: #fff;
    border: none;
    border-bottom: 1px solid #f39200;
    font-size: 15px;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    transition: all .5s ease;
}

input[type="search"] {
    color: #333;
}

input[type="search"]::-moz-placeholder {
    color: #b7b6b6;
}

input[type="search"]::-webkit-input-placeholder {
    color: #b7b6b6;
}

input[type="search"]:-ms-input-placeholder {
    color: #b7b6b6;
}

input[type="search"]::-ms-input-placeholder {
    color: #b7b6b6;
}

input[type="search"]::placeholder {
    color: #b7b6b6;
}

.panel__search-input:focus {
    width: 500px;
}

.panel__search-input:not(:placeholder-shown) {
    width: 500px;
}

.panel__search-input::-webkit-input-placeholder {
    color: rgba(0, 0, 0, 0.5);
}

.panel__search-input::-moz-placeholder {
    color: rgba(0, 0, 0, 0.5);
}

.panel__search-input:-ms-input-placeholder {
    color: rgba(0, 0, 0, 0.5);
}

.panel__search-input::placeholder {
    color: rgba(0, 0, 0, 0.5);
}

.panel__search-btn {
    background: #f39200;
    border: none;
    border-radius: 20px 0 0 20px;
    padding: 10px;
    -webkit-transition: all 0.225s ease-in;
    -o-transition: all 0.225s ease-in;
    transition: all 0.225s ease-in;
}

.panel__search-btn:hover,
.panel__search-btn:active {
    background: #594f51;
}

/* MAGNIFY */

.magnify {
    width: 20px;
    height: 20px;
    border: 2px solid #fff;
    border-radius: 100%;
    position: relative;
    -webkit-transform: rotate(-25deg);
    -ms-transform: rotate(-25deg);
    -o-transform: rotate(-25deg);
    transform: rotate(-25deg);
}

.magnify:after {
    content: "";
    position: absolute;
    left: 10px;
    bottom: -6px;
    width: 2px;
    height: 6px;
    background-color: #fff;
    transform: rotate(-13deg);
}

.social {
    margin: 0;
    padding: 0;
    list-style-type: none;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
}

.social__item {
    margin-right: 20px;
    font-size: 20px;
}

.social__item a {
    display: inline-block;
    color: #f7921d;
    -webkit-transition: all 0.225s ease-in;
    -o-transition: all 0.225s ease-in;
    transition: all 0.225s ease-in;
}

.social__item a:hover,
.page-footer__social .social__item a:hover {
    color: tomato;
}

.social__item:last-child {
    margin-right: 0;
}

.middle-block {
    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;
    margin-bottom: 35px;
    min-height: 350px;
}

.middle-block__left {
    width: 100%;
}

.middle-block__right {
    width: 22.6%;
    margin-top: 15px;
}

.middle-block__title:before {
    content: "";
    width: 70px;
    height: 5px;
    background: #f8931e;
    display: block;
}

.middle-block__title {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 40px;
    font-weight: 300;
}

.middle-block__text {
    font-size: 17px;
    line-height: 1.8;
    font-weight: 500;
    max-width: 800px;
}

.middle-block_row_text_subscribe {
    display: flex;
}

.middle-block_col_text {
    flex: 3;
    padding: 0 40px 0 0;
}

.middle-block_col_subscribe {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.middle-block__view-link {
    display: inline-block;
    margin-right: 50px;
    color: #000;
    border-bottom: 1px solid #000;
    text-transform: lowercase;
    float: right;
}

.middle-block__view-link:hover {
    color: tomato;
    border-color: tomato;
}

.press-releases {
    margin: 45px auto 35px;
    line-height: 1.6;
}

.press-releases__caption {
    margin: 0 0 30px;
    padding: 0;
    list-style-type: none;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.press-releases__caption-item {
    padding: 10px 25px;
    font-weight: 700;
    transition: .3s;
    cursor: pointer;
}

.press-releases__caption-item:hover {
    color: #FF5301;
}

.press-releases__caption-item::after {
    /*  content: '';
  display: inline-block;
  margin-left: 3px;
  border-top: 10px solid #f7921c;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent; */
}

.press-releases__caption-item.active {
    color: #FF5301;
}

.press-releases__wrapper-table {
    max-height: 580px;
    overflow-y: scroll;
}

.press-releases__table {
    border-collapse: collapse;
    font-size: 15px;
    width: 100%;
}

.press-releases__table p {
    padding: 0;
    margin: 0;
}

.press-releases__table tr:nth-child(odd) {
    background-color: #f7f5f5;
}

.press-releases__table tr {
    vertical-align: top;
}

.press-releases__table td {
    padding-top: 21px;
    padding-bottom: 21px;
}

.press-releases__table a {
    color: #000;
    transition: 0s;
}

.press-releases__table a:hover {
    text-decoration: underline;
}

.press-releases__table-left {
    width: 19%;
    padding-left: 20px;
    font-weight: bold;
}

.press-releases__table-right {
    width: 81%;
    padding-right: 60px;
}

.press-releases__content {
    display: none;
}

.press-releases__content.active {
    display: block;
}

.press-releases__tabs tr {
    border-bottom: 1px solid #d6d6d6;
}

.press-releases__tabs tr:hover {
    background: #e8e9ed;
    transition: 0s;
}

.press-releases__tabs tr:hover a {
    color: #f39200;
    transition: 0s;
}

.news {}

.news__header {
    padding-top: 60px;
    padding-bottom: 30px;
    border-bottom: 1px solid #fff;
    -webkit-background-size: cover;
    background-size: cover;
    background-repeat: no-repeat;
}

.news__header-link {
    display: block;
    padding-left: 20px;
    font-size: 35px;
    color: #000;
    background-color: rgba(255, 255, 255, 0.6);
    border-top: 3px solid #f7921c;
    border-bottom: 3px solid #f7921c;
    -webkit-transition: all 0.225s ease-in;
    -o-transition: all 0.225s ease-in;
    transition: all 0.225s ease-in;
}

.news__header-link:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

.news__header-link::after {
    content: '';
    display: inline-block;
    border-left: 15px solid #f7921c;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    margin-left: 5px;
}

.news__subscribe {
    background: #f7f5f5;
    box-shadow: 0 6px 10px 0 rgba(149, 144, 179, 0.15), 0 15px 50px 0 rgba(182, 182, 224, 0.1);
}

.news__header-subscribe {
    font-size: 20px;
    color: #0a0a0a;
    font-weight: 100;
    margin: 0;
    padding: 15px;
}

.news__header-subscribe-form-wrapper {
    padding-bottom: 40px;
    width: 100%;
    position: relative;
}

.news__header-subscribe-form {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.news__header-subscribe-input {
    width: 100%;
    padding: 15px;
    margin-left: 15px;
    font-size: 14px;
    border: none;
    border-bottom: 1px solid #f39200;
    background: #f7f5f5;
    color: #000;
    text-overflow: ellipsis;
}

.news__header-subscribe-input::-webkit-input-placeholder {
    color: #b7b6b6;
}

.news__header-subscribe-input::-moz-placeholder {
    color: #b7b6b6;
}

.news__header-subscribe-input:-ms-input-placeholder {
    color: #b7b6b6;
}

.news__header-subscribe-input::placeholder {
    color: #b7b6b6;
}

.news__header-subscribe-input:invalid {
    box-shadow: none;
}

.news__header-subscribe-input:invalid:not(:focus),
.news__header-subscribe-input:invalid {}

.news__header-subscribe-form-btn {
    right: 15px;
    background: #f39200;
    border: 0;
    border-radius: 20px 0 0 20px;
    padding: 15px;
    color: #fff;
    -webkit-transition: all 0.225s ease-in;
    -o-transition: all 0.225s ease-in;
    transition: all 0.225s ease-in;
}

.news__header-subscribe-form-btn:hover,
.news__header-subscribe-form-btn:active {
    background: #594f51;
}

.news__title,
.subscribe__title {
    margin: 0;
    padding: 17px;
    font-size: 30px;
    font-weight: 400;
    border-left: 3px solid #000;
}

/* ENVELOPE */

.envelope {
    position: relative;
    width: 22px;
    height: 15px;
    background-color: #fff;
    border-radius: 2px;
}

.envelope:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    border-top: 8px solid #aaa;
    border-left: 11px solid transparent;
    border-right: 11px solid transparent;
    border-radius: 15%;
}

/*.news__title::first-letter {
  font-weight: 700;
}*/
.news__inner {
    position: relative;
}

.news__inner::after {
    content: '';
    position: absolute;
    top: 0;
    height: 1px;
    width: 100%;
    background-color: #fff;
    z-index: 10;
}

.news__items {
    text-align: right;
    padding: 14px 26px 20px 20px;
}

.news__item {
    margin-bottom: 30px;
    text-align: left;
    margin: 20px auto;
    padding: 30px 15px;
    background: whitesmoke;
}

.news__item:last-of-type {
    margin-bottom: 21px;
}

.news__date {
    margin: 0;
    margin-bottom: 11px;
    font-size: 14px;
    font-weight: 700;
    color: #000;
    font-weight: 600;
}

.news__link {
    position: relative;
    display: inline-block;
    line-height: 1.4;
    font-size: 14px;
    color: #000;
    text-decoration: underline;
}

.news__link:hover {
    text-decoration: none;
}

.news__link::before {
    content: '';
    position: absolute;
    left: -23px;
    top: 5px;
    width: 9px;
    height: 6px;
    border-left: 3px solid #fff;
    background-color: #000;
}

.news__all-news-link {
    position: relative;
    margin-right: 20px;
    font-size: 14px;
    color: #000;
    font-weight: 700;
    -webkit-transition: all 0.225s ease-in;
    -o-transition: all 0.225s ease-in;
    transition: all 0.225s ease-in;
}

.news__all-news-link:hover {
    color: #db7a26;
}

.news__all-news-link::after {
    content: '';
    position: absolute;
    top: 4px;
    right: -18px;
    border-left: 8px solid #f7921c;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

.bottom-block {
    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;
    border-top: 1px solid #c4c4c4;
    padding-top: 40px;
}

.bottom-block__item {
    width: 17.5%;
    margin-bottom: 40px;
}

.bottom-block__top {
    padding: 15px 20px;
    color: #f6931c;
}

.bottom-block__title {
    margin: 0;
    font-weight: 500;
    font-size: 18px;
}

/*.bottom-block__title::after {
  content: '';
  display: inline-block;
  margin-left: 13px;
  border-top: 10px solid #f6931c;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
}*/
.bottom-block__list {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.bottom-block__nav-item {
    margin-bottom: 8px;
}

.bottom-block__nav-item a {
    font-size: 15px;
    font-weight: 400;
    color: #000;
}

.bottom-block__nav-item a:hover {
    color: #db7a26;
}

.bottom-block__item-inner {
    padding: 25px 22px;
}

.bottom-block__subtitle {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
}

.bottom-block__sublist {
    margin-top: 5px;
    margin-bottom: 0;
    padding-left: 15px;
    list-style-type: square;
}

.bottom-block__sublist li {
    margin-bottom: 10px;
}

.bottom-block__sublist li a {
    color: #000;
    font-size: 15px;
}

.bottom-block__sublist li a:hover {
    color: #db7a26;
}

.page-footer {
    background-color: #231f20;
    font-size: 12px;
    color: #fff;
    padding-top: 27px;
    padding-bottom: 22px;
}

.page-footer__inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding: 0 22px;
    justify-content: space-between;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.page-footer__btn {
    position: relative;
    width: auto;
    font-size: 16px;
    font-weight: 700;
    text-align: right;
    color: #f9c687;
    background-color: transparent;
    border: none;
    -webkit-transition: all 0.225s ease-in;
    -o-transition: all 0.225s ease-in;
    transition: all 0.225s ease-in;
}

.page-footer__btn:hover {
    color: tomato;
}

.page-footer__copyright,
.page-footer__address,
.page-footer__contacts,
.page-footer__social {
    margin: 0;
    width: 15%;
}

.page-footer__social {
    display: flex;
    justify-content: center;
    text-align: center;
}

.page-footer__social .social__item {
    display: inline-flex;
    font-size: 16px;
}

.page-footer__social .social__item a {
    color: #fff;
}

.page-footer__link {
    color: #f5e0c3;
}

.page-footer__contacts-row {
    margin: 0;
}

.page-footer__contacts-row+.page-footer__contacts-row {
    margin-top: 7px;
}

.footer-inner {
    border-top: 8px solid #e08933;
}

.footer-inner__inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-top: 30px;
    padding-bottom: 15px;
}

.footer-inner__copyright {
    width: 35%;
    margin: 0;
    font-size: 17px;
}

.footer-inner__address {
    width: 48%;
    font-size: 15px;
}

.footer-inner__address p {
    margin-top: 0;
    margin-bottom: 5px;
}

.footer-inner__btn {
    padding-right: 65px;
    padding-bottom: 25px;
    font-size: 25px;
    font-weight: 700;
    color: #40333e;
    background-color: transparent;
    background-image: url(../img/contacts-inner.png);
    background-repeat: no-repeat;
    background-position: 100% 5px;
    border: none;
    -webkit-transition: all 0.225s ease-in;
    -o-transition: all 0.225s ease-in;
    transition: all 0.225s ease-in;
}

.footer-inner__btn:hover {
    opacity: 0.8;
}

.footer-inner__mail {
    display: inline-block;
    margin-left: 15px;
    text-decoration: underline;
}

.footer-inner__mail:hover {
    text-decoration: none;
}

.breadcrumbs {
    background-image: url(../img/breadcrumbs-bg.jpg);
    background-size: cover;
    padding-top: 55px;
    padding-bottom: 55px;
}

.breadcrumbs__title {
    margin: 0;
    font-size: 40px;
    font-weight: 300;
    color: #fff;
}

.contacts {
    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;
    padding-top: 40px;
    padding-bottom: 100px;
    min-height: 350px;
}

.contacts__left {
    width: 46.5%;
}

.contacts__right {
    width: 48.2%;
}

.contacts__text {
    margin-top: 0;
    line-height: 1.5;
}

.contacts__address {
    margin-top: 0;
    margin-bottom: 27px;
    font-weight: 700;
}

.contacts__item {
    margin: 0;
    margin-bottom: 32px;
    line-height: 1.7;
}

.contacts__mail {
    color: #ec7c00;
    text-decoration: underline;
}

.contacts__map {
    width: 100%;
    height: 350px;
    margin-top: 30px;
}

.contacts__map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.contact-form__btn {
    width: 85px;
    padding: 11px 20px;
    font-weight: 700;
    color: #fff;
    background-color: #e08933;
    border: none;
    -webkit-transition: all 0.225s ease-in;
    -o-transition: all 0.225s ease-in;
    transition: all 0.225s ease-in;
}

.contact-form__btn:hover {
    background-color: #f8931f;
}

.contact-form__text {
    width: 100%;
}

.contact-form__row {
    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;
}

.contact-form__input {
    width: 48%;
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    padding: 10px;
    outline: none;
    border: 1px solid #d7d7d7;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border: 1px solid #e08933;
}

.contact-form input:focus::-webkit-input-placeholder,
.contact-form textarea:focus::-webkit-input-placeholder {
    font-size: 0;
}

.contact-form input:focus::-moz-placeholder,
.contact-form textarea:focus::-moz-placeholder {
    font-size: 0;
}

.contact-form input:focus:-ms-input-placeholder,
.contact-form textarea:focus:-ms-input-placeholder {
    font-size: 0;
}

.contact-form input:focus::placeholder,
.contact-form textarea:focus::placeholder {
    font-size: 0;
}

.contact-form input::-webkit-input-placeholder,
.contact-form textarea::-webkit-input-placeholder {
    color: #000;
}

.contact-form input::-moz-placeholder,
.contact-form textarea::-moz-placeholder {
    color: #000;
}

.contact-form input:-ms-input-placeholder,
.contact-form textarea:-ms-input-placeholder {
    color: #000;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #000;
}

.contact-form textarea {
    margin-bottom: 15px;
    height: 225px;
    resize: none;
}

.rating-tabs {
    margin-top: 30px;
    margin-bottom: 50px;
    min-height: 350px;
}

.rating-tabs__title {
    margin-top: 0;
    margin-bottom: 31px;
    font-weight: 600;
}

.rating-tabs__title-big {
    margin: 0;
    font-size: 18px;
    line-height: 2.2;
    font-weight: 400;
}

.rating-tabs__caption {
    margin: 0 0 20px;
    padding: 0;
    list-style-type: none;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    background-color: #fff;
    border-bottom: 5px solid #FFA944;
}

.rating-tabs__caption a {
    color: #000;
}

.rating-tabs__text {
    margin-bottom: 30px;
}

.rating-tabs__caption-item {
    display: inline-block;
    padding: 10px 20px;
    font-size: 15px;
    border-right: 1px solid #dcdcdc;
    cursor: pointer;
    -webkit-transition: all 0.225s ease-in;
    -o-transition: all 0.225s ease-in;
    transition: all 0.225s ease-in;
}

.rating-tabs__caption-item:hover,
.rating-tabs__caption-item:active {
    color: #db7a26;
}

.rating-tabs__caption-item.active {
    color: #fff;
    background-color: #FFA944;
}

.rating-tabs__content {
    display: none;
    padding: 26px 23px 30px 20px;
    background-color: #fff;
    min-height: 350px;
}

.rating-tabs__content--without-padding {
    padding: 0;
}

.rating-tabs__content.active {
    display: block;
}

.rating-tabs p {
    line-height: 1.4;
}

.rating-classes__subtitle {
    margin-top: 25px;
    margin-bottom: 20px;
    font-size: 18px;
    color: #FFA944;
    font-weight: 700;
}

.rating-classes__lvl {
    font-weight: 700;
}

.rating-classes p {
    margin-top: 10px;
    margin-bottom: 25px;
}

.rating-classes p:last-of-type {
    margin-bottom: 0;
}

.rating-classes__item+.rating-classes__item {
    margin-top: 45px;
}

.calendar__content,
.belt__road__partners,
.analytical__partners,
.event__partners,
.data__providers,
.green__and__sustainabl__financ__org,
.about__rus,
.about__ger,
.analytics__08,
.esg__table,
.board__content {
    display: none;
    margin-bottom: 40px;
}

.calendar__content.active,
.belt__road__partners,
.analytical__partners,
.event__partners,
.data__providers,
.green__and__sustainabl__financ__org,
.about__rus,
.about__ger,
.analytics__08,
.esg__table,
.board__content.active {
    display: block;
}

.calendar__title,
.belt__road__partners,
.analytical__partners,
.event__partners,
.data__providers,
.green__and__sustainabl__financ__org,
.about__rus,
.about__ger,
.analytics__08,
.esg__table,
.board__title {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 30px;
    font-size: 18px;
    color: #FFA944;
    border-bottom: 1px solid #fff;
    cursor: pointer;
    -webkit-transition: all 0.225s ease-in;
    -o-transition: all 0.225s ease-in;
    transition: all 0.225s ease-in;
}

.calendar__title:hover,
.belt__road__partners:hover,
.analytical__partners:hover,
.event__partners:hover,
.data__providers:hover,
.green__and__sustainabl__financ__org:hover,
.about__rus:hover,
.about__ger:hover,
.analytics__08:hover,
.esg__table:hover,
.board__title:hover {
    border-bottom: 1px solid #db7a26;
}

.calendar__table {
    width: 640px;
    margin-bottom: 20px;
    border-collapse: collapse;
    font-size: 15px;
}

.calendar__table td {
    padding: 10px;
}

.calendar__table-country {
    width: 34%;
}

.calendar__table-row {
    cursor: pointer;
}

.calendar__table-row:hover {
    background-color: #f7f6f3;
}

.calendar__table-top-row {
    background-color: #e2e5ec;
    font-size: 13px;
    cursor: default;
}

.calendar__table-top-row th {
    padding: 15px 10px;
    text-align: left;
}

.methodology__title {
    margin-top: 24px;
    margin-bottom: 22px;
    font-size: 16px;
    font-weight: 700;
}

.methodology__list {
    margin-top: 30px;
}

.methodology__list li {
    margin-bottom: 10px;
}

.methodology__link {
    font-size: 16px;
    color: #000;
}

.methodology__link:hover,
.methodology__link:active {
    text-decoration: underline;
}

.methodology__link-archive {
    font-size: 16px;
    text-decoration: underline;
    color: #4168a4;
}

.methodology__link-archive:hover,
.methodology__link-archive:active {
    text-decoration: none;
}

.methodology__icon-pdf {
    display: inline-block;
    vertical-align: middle;
    margin-left: 5px;
}

.research-reports {
    width: 100%;
}

.research-reports a {
    display: inline-block;
    color: #000;
    text-decoration: underline;
    margin-right: 5px;
}

.research-reports a:hover {
    text-decoration: none;
}

.research-reports__header {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    font-size: 13px;
    font-weight: 700;
    background-color: #eaeaea;
}

.research-reports__header div {
    padding: 18px 20px;
}

.research-reports__country {
    width: 17%;
}

.research-reports__latest {
    width: 27%;
}

.research-reports__prev {
    width: 56%;
}

.research-reports__item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.research-reports__item div {
    padding: 11px 20px;
}

.research-reports__item:nth-child(even) {
    background-color: #f5f5f5;
    padding-top: 3px;
    padding-bottom: 3px;
}

.rating-list__icon {
    display: inline-block;
    width: 72px;
    padding: 5px;
    text-align: center;
    color: #fff;
    background-color: #db7a26;
    font-size: 13px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
}

.rating-list__country {
    width: 16.5%;
}

.rating-list__currency {
    width: 14%;
}

.rating-list__currency-last {
    width: 17%;
}

.rating-list__dynamics {
    width: 13.5%;
    font-size: 13px;
}

.rating-list__date {
    width: 11%;
    font-size: 13px;
}

.rating-list__header {
    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: 13px;
    font-weight: 700;
    background-color: #eaeaea;
}

.rating-list__header>div {
    padding: 8px 20px;
}

.rating-list__sgc {
    width: 28%;
}

.rating-list__cce {
    width: 31%;
}

.rating-list__sgc-parts,
.rating-list__cce-parts {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.rating-list__sgc-title,
.rating-list__cce-title {
    display: block;
    text-align: center;
    margin-bottom: 5px;
}

.rating-list__sgc-right {
    width: 44%;
}

.rating-list__sgc-left {
    width: 56%;
}

.rating-list__cce-right,
.rating-list__cce-left {
    width: 50%;
}

.rating-list__item {
    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;
    font-size: 15px;
}

.rating-list__item a {
    color: #000;
}

.rating-list__item a:hover {
    text-decoration: underline;
}

.rating-list__item:nth-child(even) {
    background-color: #f5f5f5;
}

.rating-list__item div {
    padding: 8px 20px;
}

.rating-list__text {
    padding: 20px;
}

.rating-list__text p {
    margin-bottom: 30px;
}

/*rating <tables>*/
.content__rating-table {
    border-collapse: collapse;
    border-spacing: 0;
    border: none;
    width: 100%;
    font-size: 13px;
}

.content__rating-table a {
    text-decoration: none;
    color: #000;
}

.content__rating-table a:hover {
    text-decoration: underline;
}

.content__rating-table tbody tr:nth-child(even) {
    background: #f5f5f5;
}

.content__rating-table tbody tr:nth-child(odd) {
    background: #fff;
}

.content__rating-table tbody tr:hover {
    background: #fff1e4;
}

.content__rating-table-scale tbody tr:hover {
    background: #fff;
}

.content__rating-table-scale tbody tr:nth-child(even) {
    background: #fff;
}

.content__rating-table th,
.content__rating-table td {
    padding: 10px;
}

.content__rating-table th:first-child,
.content__rating-table td:first-child {
    padding-left: 20px;
}

.content__rating-table th {
    font-weight: bold;
    background: #eaeaea;
    text-align: left;
}

.content__rating-table .rating-table-center-align {
    text-align: center;
}

.content__rating-table tr {}

.content__rating-table .rating-object {
    font-size: 15px;
}

.content__rating-table .rating-icon {
    width: 60px;
    background-color: #db7a26;
    border-radius: 2px;
    color: #fff;
    text-align: center;
    padding: 6px 0 6px 0;
}

.rating-icon.rating-gray {
    background-color: gray;
}

.content__rating-table .research-report-prev a {
    margin-right: 10px;
}

.content__rating-table .research-report-prev a:last-child {
    margin-right: 0;
}

.content__compliance-table {
    font-size: 15px;
}

/* /rating <tables>*/
.person {
    margin-top: 49px;
    margin-bottom: 40px;
    background-color: #fff;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.person__photo {
    width: 150px;
}

.person__photo img {
    max-width: 100%;
    width: 80%;
    border-radius: 500px;
}

.person__info {
    width: 85.5%;
}

.person__name {
    margin-top: 0;
    margin-bottom: 4px;
    font-size: 17px;
    color: #ec7c00;
    font-weight: 700;
}

.person__post {
    font-size: 15px;
    line-height: 1.5;
}

.person__about {
    margin-top: 10px;
    line-height: 1.6;
}

.archive__content {
    display: none;
}

.archive__content.active {
    display: block;
}

.archive__caption {
    margin: 0 0 50px;
    padding: 0;
    list-style-type: none;
    position: relative;
    font-size: 0;
    padding-left: 48px;
    padding-right: 48px;
}

.archive__caption-item {
    width: auto;
    padding: 8px 0;
    margin-bottom: 20px;
    text-align: center;
    font-size: 14px;
    background-color: #fff;
    color: #696969;
    border-right: 1px solid #e9eae9;
    cursor: pointer;
}

.archive__caption-item span {
    display: block;
}

/*
.archive__caption-item {
  width: 154px;
  height: 48px;
  padding: 15px 20px;
  margin-bottom: 20px;
  box-sizing: border-box;
  text-align: center;
  font-size: 14px;
  background-color: #fff;
  color: #696969;
  border-right: 1px solid #e9eae9;
  cursor: pointer;
}
*/
#archive__caption-item-noactive {
    color: #ccc;
}

.archive__caption-item.active {
    position: relative;
    color: #fff;
    background-color: tomato;
}

/*
.archive__caption-item.active::after {
  content: '';
  bottom: -10px;
  left: 0;
  border-top: 10px solid #ec7c00;
  border-right: 46px solid transparent;
  border-left: 46px solid transparent;
  position: absolute;
}
*/
.archive__caption-item.disabled {
    color: #b5b6b5;
    cursor: default;
}

.archive .owl-prev,
.archive .owl-next {
    position: absolute;
    top: 0;
    width: 48px;
    height: 48px;
    background: transparent;
    -webkit-transition: all 0.225s ease-in;
    -o-transition: all 0.225s ease-in;
    transition: all 0.225s ease-in;
    cursor: pointer;
}

.archive .owl-prev:hover,
.archive .owl-next:hover {
    opacity: 0.7;
}

.archive .owl-prev::after,
.archive .owl-next::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    border-left: 1px solid #ff5301;
    border-bottom: 1px solid #ff5301;
}

.archive .owl-prev {
    left: 0;
}

.archive .owl-prev::after {
    -webkit-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    left: 20px;
    top: 20px;
}

.archive .owl-next {
    right: 0;
}

.archive .owl-next::after {
    -webkit-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    transform: rotate(-135deg);
    right: 20px;
    top: 20px;
}

.type2 {
    /*padding-bottom: 203px;*/
    min-height: 350px;
    padding: 50px;
    box-sizing: border-box;
}

.type2>p {
    line-height: 1.5;
    margin-bottom: 30px;
}

.type2__title {
    margin-bottom: 27px;
    font-size: 18px;
    font-weight: normal;
    color: #ec7c00;
}

.type2__subtitle {
    margin-bottom: 25px;
    font-size: 15px;
    font-weight: 700;
}

.month__title {
    margin-top: 0;
    margin-bottom: 25px;
    font-size: 18px;
    font-weight: 500;
    color: #f6931c;
}

.month__items {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.month__items::after {
    content: '';
    width: 333px;
}

.month__item {
    position: relative;
    width: 333px;
    margin-bottom: 20px;
    border-bottom: 1px solid #ee9c34;
}

.month__item::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 0;
    background-color: #ee9c34;
    bottom: 0;
    left: 0;
    -webkit-transition: all 0.225s ease-in;
    -o-transition: all 0.225s ease-in;
    transition: all 0.225s ease-in;
}

.month__item a {
    color: #000;
    font-size: 15px;
    text-decoration: underline;
    line-height: 1.3;
    -webkit-transition: all 0.225s ease-in;
    -o-transition: all 0.225s ease-in;
    transition: all 0.225s ease-in;
}

.month__item a:hover {
    color: #ee9c34;
}

.month__new-name {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 25px;
    font-weight: 400;
}

.month__new-subtitle {
    display: block;
    text-align: right;
    font-size: 15px;
}

.month__header {
    height: 100px;
    padding: 8px 19px;
    -webkit-background-size: cover;
    background-size: cover;
    background-repeat: no-repeat;
}

.month__info {
    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;
    height: auto;
    padding: 12px 20px 27px 20px;
    background-color: #fff;
}

.month__date {
    font-size: 13px;
    color: #b9b9b9;
}

.month__bottom {
    text-align: right;
}

.month__text {
    margin-top: 7px;
    margin-bottom: 25px;
    line-height: 1.4;
}

.documents-table {
    margin-bottom: 54px;
    width: 735px;
    border-collapse: collapse;
    font-size: 15px;
}

.documents-table__header {
    background-color: #ebebeb;
    font-size: 14px;
    font-weight: 700;
    text-align: left;
}

.documents-table__header th {
    padding: 12px 6px 12px 10px;
}

.documents-table__row:hover {
    background-color: #fef1e4;
}

.documents-table__row td {
    padding: 10px;
}

.documents-table__name {
    width: 65.5%;
}

.documents-table__year {
    width: 18%;
}

.documents-table a {
    color: #000;
    text-decoration: underline;
}

.documents-table a:hover {
    color: #be6100;
}

.consultation-table {
    display: block;
    border-collapse: collapse;
    font-size: 14px;
}

.consultation-table__header {
    text-align: left;
    background-color: #eaeaea;
}

.consultation-table__header>th {
    padding: 10px;
    font-weight: 700;
}

.consultation-table__row {
    line-height: 1.6;
}

.consultation-table__row>td {
    padding: 26px 10px 0 10px;
    vertical-align: top;
}

.consultation-table__date {
    width: 9%;
}

.consultation-table__title {
    width: 15%;
}

.consultation-table__document {
    width: 19%;
}

.consultation-table__methodology {
    width: 25%;
}

.consultation-table__status {
    width: 32%;
}

.consultation-table__link {
    display: inline-block;
    margin-bottom: 30px;
}

.consultation-table__link:last-child {
    margin-bottom: 0;
}

.consultation-table a {
    color: #000;
    text-decoration: underline;
}

.consultation-table a:hover {
    text-decoration: none;
}

.risk-table {
    font-size: 15px;
}

.risk-table__header {
    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-align: center;
    background-color: #eaeaea;
    font-weight: 700;
    padding-top: 15px;
}

.risk-table__header>div {
    padding: 10px;
}

.risk-table__row {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.risk-table__row:hover {
    background-color: #fef1e4;
}

.risk-table__row>div {
    padding: 10px;
}

.risk-table__weight {
    width: 66%;
}

.risk-table__steps {
    width: 34%;
}

.risk-table__step {
    display: inline-block;
    width: 58px;
}

.risk-table__numbers {
    margin-top: 20px;
    margin-bottom: 22px;
    text-align: left;
}

/* sendform starts */

#contact_form {
    width: 99%;
}

#contact_name,
#contact_email,
#search_field {
    height: 30px;
    border: 1px solid #eeeeee;
    margin-top: 3px;
    outline: none;
}

input:required,
textarea:required {
    box-shadow: none;
    /*FF fix*/
}

#contact_text {
    height: 60px;
    resize: none;
    width: 100%;
    border: 1px solid #eeeeee;
    margin-top: 3px;
}

#contact_name:focus,
#contact_email:focus,
#contact_text:focus,
#search_field:focus {
    border: 1px solid #f57713;
}

#submit,
.orange-button {
    background: #FFA944;
    color: white;
    padding: 10px 40px;
    border: none;
    border-radius: 3px;
    transition: .5s;
}

.orange-button {
    text-align: center;
    padding-top: 9px;
}

#submit:hover,
#submit:focus {
    background-color: tomato;
}

.orange-button:hover,
.orange-button:focus {
    background-color: tomato;
}

#contact_name,
#contact_email {
    width: 100%;
}

#search_field {
    padding-left: 5px;
    width: 111px;
}

.search_wrapper {
    float: left;
    width: 50px;
    margin-top: 12px;
    margin-left: 60px;
}

.search_img {
    float: right;
    width: 30px;
    padding-top: 15px;
    padding-right: 10px;
}

.modal-container-bg,
.modal-feedback-bg {
    background-color: #000000;
    height: 100%;
    left: 0;
    opacity: 0.6;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1500;
}

.modal-container-incorrect-input {
    border: 1px solid red !important;
}

#request-send2 h3,
#request-send h3 {
    color: #f57713;
    font-weight: normal;
    padding-top: 75px;
}

.modal-cookie-container {
    padding: 20px;
}

#modal-cookie {
    max-width: 500px;
    width: 90%;
    height: auto;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    margin: 100px auto;
    z-index: 1600;
    display: none;
    background-color: #fff;

}

.modal-feedback-bg {
    background-color: #000000;
    height: 100%;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1500;
}

#modal-cookie-container {
    position: relative;
    line-height: 1.6;
}

/* database */
.database_cont img {
    max-width: 200px;
    margin-bottom: 30px;
}

.database_cont .type2__title {
    margin-bottom: 20px;
}

/* database end */


/* 404 */
.container_404 {
    padding: 50px;
    box-sizing: border-box;
}

.img_404 {
    height: 300px;
    position: relative;
    margin: 0 auto;
    max-width: 350px;
}

.container_404 h1 {
    font-weight: 300;
    max-width: 100%;
    margin: 0 0 10px;
}

.container_404 img {
    max-width: 300px;
    position: absolute;
    top: 0;
    bottom: 0;
}

.container_404 img:nth-child(1) {
    animation: macintosh 4s ease-in-out infinite;
}

@keyframes macintosh {
    0% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(15px)
    }

    100% {
        transform: translateY(0)
    }
}

.container_404 img:nth-child(2) {
    animation: keyboard 3.6s ease-in-out infinite;
    left: 100px;
}

@keyframes keyboard {
    0% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-10px)
    }

    100% {
        transform: translateY(0)
    }
}

.txt_404 {
    background: #faf4e6;
    margin: 0 auto;
    max-width: 350px;
    padding: 25px;
    border: 3px solid #24211a;
    border-radius: 12px;
    box-shadow: 5px 5px 0px 0px #24211a;
}

/* 404 end */

/* form registration */
.rating-tabs__content {
    overflow-x: hidden;
}

.cont_form {
    max-width: 700px;
    box-sizing: border-box;
    display: block;
    position: relative;
}

.row_form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    grid-gap: 0 2rem;
}

.form-group {
    background: #F1F3F4;
    margin: 0 0 15px 0;
    padding: 0;
    border-radius: 7px;
    height: auto;
    min-height: 60px;
    position: relative;
    box-sizing: border-box;
}

.registration_input {
    min-height: 60px;
    padding-left: 10px;
    border-radius: 7px;
    position: relative;
    z-index: 1;
    width: 100%;
    border: none;
    font-size: 17px;
    background: transparent;
}

.form_registration input:focus,
.form_registration textarea:focus {
    outline: none;
}

textarea.registration_input {
    resize: none;
    height: 20px;
    padding-top: 25px;
    box-sizing: border-box;
}

.form-label {
    font-size: 16px;
    position: absolute;
    left: 10px;
    top: 25px;
    display: block;
    margin: 0;
    font-weight: 300;
    z-index: 0;
    color: #6b6b6b;
    line-height: 10px;
}

.form_registration input[type="submit"] {
    background: #f7921d;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border: none;
    padding: 15px 20px;
    outline: 1px solid;
    outline-color: rgb(247, 146, 29);
    outline-offset: 0px;
    transition: all 1250ms cubic-bezier(0.19, 1, 0.22, 1);
    cursor: pointer;
}

.form_registration input[type="submit"]:hover {
    outline-color: rgba(255, 255, 255, 0);
    outline-offset: 15px;
    background: tomato;
}

.form_registration_hide {
    opacity: 0;
}

.success_box {
    width: 90%;
    max-width: 400px;
    max-height: 400px;
    padding: 20px;
    background: #f7f5f5;
    box-shadow: 0 6px 10px 0 rgba(149, 144, 179, 0.15), 0 15px 50px 0 rgba(182, 182, 224, 0.1);
    border-radius: 7px;
    border: 1px solid #d9d9d9;
    position: absolute;
    top: 20px;
    left: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    opacity: 0;
    text-align: center;
    transition: 1s;
}

.success_box svg {
    fill: #23893c;
    background: #d3f3d4;
    border-radius: 100%;
}

.success_box_visible {
    opacity: 1;
    transition-delay: .3s;
}

/* form registration end */
@media (min-width: 320px) {
    .container {
        width: 100%;
    }
}

@media (min-width: 480px) {
    .container {
        width: 100%;
    }
}

@media (min-width: 480px) and (max-width: 1219px) {
    .slider__info {
        width: 50%;
    }

    .press-releases__table-right {
        padding: 15px;
    }

    .bottom-block {
        justify-content: flex-end;
    }

    .bottom-block__item {
        width: 33%;
        margin-bottom: 10px;
    }

    .bottom-block__item:last-child {
        margin-bottom: 10px;
    }

    .person__info {
        padding-left: 20px;
    }
}

@media (min-width: 480px) and (max-width: 767px) {
    .panel__search {
        width: 55%;
    }

    .panel__search-input {
        width: 100%;
    }

    /*
  .press-releases__caption-item {
    width: 50%;
  }
  */
    .footer-inner__copyright {
        width: 50%;
    }

    .footer-inner__address {
        width: 50%;
    }

    .rating-tabs__caption-item {
        width: 33.33333333%;
        border: none;
    }

    .rating-list__country {
        width: 26%;
    }

    .rating-list__currency {
        width: 8%;
    }

    .rating-list__date {
        width: 15%;
    }

    .rating-list__sgc {
        width: 17%;
    }

    .rating-list__cce {
        width: 17%;
    }
}

@media (min-width: 768px) {
    .container {
        width: 100%;
        padding: 0 50px;
    }

    .type2 {
        padding: 50px 0;
    }
}

@media (min-width: 768px) and (max-width: 1219px) {
    .panel__search {
        width: auto;
    }

    .middle-block__right {
        width: 30%;
    }

    .press-releases__caption-item::after {
        content: none;
    }

    .news__header-link {
        padding-left: 10px;
    }

    .news__header-link::after {
        content: none;
    }

    .footer-inner__address {
        width: 36%;
    }

    .rating-tabs__caption-item {
        padding: 10px 7px;
    }

    .rating-list__currency-last {
        width: 14%;
    }
}

@media (min-width: 1024px) {
    .container {
        width: 768px;
        padding: 0;
    }
}

@media (min-width: 1220px) {
    .container {
        width: 1220px;
        padding-right: 0;
        padding-left: 0;
    }

    .header-inner {
        position: fixed;
        left: 0;
        top: 0;
        right: 0;
        z-index: 1000;
    }

    .burger {
        display: none;
    }

    .main-nav__item:hover .main-nav__toggler,
    .main-nav__item:hover .main-nav__toggler a {
        color: #f28822;
    }

    .consultation-table {
        margin-bottom: 50px;
    }
}

@media (min-width: 0) and (max-width: 1219px) {
    .page-header {
        padding-top: 15px;
        padding-bottom: 15px;
    }

    .header-inner__inner {
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .header-inner__logo img {
        width: 150px;
    }

    .header-inner__right {
        position: absolute;
        display: none;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        top: 40px;
        left: 0;
        width: 100%;
        background-color: #fff;
    }

    .header-inner__right.open {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
    }

    .header-inner__nav {
        -webkit-box-ordinal-group: 3;
        -webkit-order: 2;
        -ms-flex-order: 2;
        order: 2;
    }

    .header-inner__nav-list {
        display: block;
    }

    .header-inner__nav-item {
        width: 100%;
        display: block;
        text-align: left;
        padding: 0 17px;
    }

    .header-inner__nav-item:hover>span {
        color: #1c1b1c;
    }

    .header-inner__nav-drop {
        display: block;
        position: static;
        width: 100%;
    }

    .header-inner__nav-link span {
        margin: 0;
    }

    .header-inner__nav-link {
        border: 0;
        text-align: left;
        width: 100%;
        -webkit-box-align: start;
        -webkit-align-items: flex-start;
        -ms-flex-align: start;
        align-items: flex-start;
    }

    .header-inner__nav-link:hover {
        color: #1c1b1c;
    }

    .header-inner__search {
        -webkit-box-ordinal-group: 2;
        -webkit-order: 1;
        -ms-flex-order: 1;
        order: 1;
        padding-left: 20px;
        margin-bottom: 15px;
    }

    .main-nav {
        display: none;
        position: fixed;
        z-index: 100;
        top: 70px;
        left: 0;
        width: 100%;
        height: 100%;
        overflow-y: scroll;
        background-color: #fff;
    }

    .main-nav.open {
        display: block;
    }

    .main-nav__list {
        display: block;
        width: 100%;
        padding-bottom: 70px;
    }

    .main-nav__dropdown {
        display: block;
        position: static;
        width: auto;
        -webkit-transform: none;
        -o-transform: none;
        transform: none;
        background-color: #fff;
    }

    .main-nav__item {
        background: #f7f5f5;
        border-bottom: none;
    }

    .middle-block__view-link {
        margin-left: 0;
    }

    .documents-table {
        width: 100%;
    }

    .risk-table__weight {
        width: 44%;
    }

    .risk-table__steps {
        width: 56%;
    }

    .search-results-block {
        padding: 50px;
    }
}

@media (max-width: 1024px) {

    .img_404,
    .txt_404 {
        width: 40%;
    }
}

@media (max-width: 991px) {
    iframe {
        height: auto;
        width: auto;
    }

    .img_404,
    .txt_404 {
        width: 60%;
    }
}

@media (min-width: 0) and (max-width: 699px) {
    .calendar__table {
        width: auto;
    }

    .calendar__table-country {
        width: auto;
    }
}

@media (min-width: 0) and (max-width: 767px) {
    .middle-block__left {
        width: 100%;
    }

    .middle-block__right {
        width: 100%;
    }

    .press-releases {
        margin-top: 20px;
    }

    .page-footer__copyright {
        margin-left: 0;
    }

    .page-footer__address {
        margin-bottom: 20px;
    }

    .page-footer__contacts {}

    .breadcrumbs {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .breadcrumbs__title {
        font-size: 30px;
    }

    .contacts__left {
        width: 100%;
    }

    .contacts__right {
        width: 100%;
    }

    .contact-form {
        margin-bottom: 20px;
    }

    .research-reports__country {
        width: 40%;
    }

    .research-reports__latest {
        width: 30%;
    }

    .research-reports__prev {
        width: 30%;
    }

    .rating-list__icon {
        width: auto;
        max-width: 36px;
        padding: 2px;
    }

    .rating-list__currency-last {
        width: 11%;
    }

    .rating-list__dynamics {
        width: 24%;
    }

    .rating-list__header>div {
        padding: 8px 2px;
    }

    .rating-list__sgc-title,
    .rating-list__cce-title {
        text-align: left;
    }

    .rating-list__sgc-right {
        width: 100%;
    }

    .rating-list__sgc-left {
        width: 100%;
    }

    .rating-list__cce-right,
    .rating-list__cce-left {
        width: 100%;
    }

    .rating-list__item div {
        padding: 8px 2px;
    }

    .month__item {
        width: 100%;
    }

    .consultation-table {
        overflow-x: scroll;
    }

    .risk-table {
        font-size: 14px;
    }

    .risk-table__header {
        text-align: left;
    }

    .risk-table__step {
        width: 40px;
    }
}

@media (min-width: 0) and (max-width: 479px) {
    .slider {
        display: none;
    }

    .panel {
        margin-bottom: 20px;
    }

    .panel__search {
        width: 100%;
        margin-top: 10px;
    }

    .panel__search-input {
        width: 100%;
    }

    .panel__search-input:focus {
        width: 100%;
    }

    .social {
        width: 100%;
        /*margin-top: 10px;*/
    }

    .press-releases__caption-item {
        width: 100%;
    }

    .press-releases__table-right {
        padding: 10px;
    }

    .bottom-block__item {
        width: 100%;
        margin-bottom: 10px;
    }

    .footer-inner__copyright {
        width: 100%;
        margin-bottom: 15px;
    }

    .footer-inner__address {
        width: 100%;
        margin-bottom: 15px;
    }

    .contact-form__input {
        width: 100%;
    }

    .rating-tabs {
        margin-bottom: 20px;
        padding: 0 15px;
    }

    .rating-tabs__title-big {
        font-size: 15px;
    }

    .rating-tabs__caption-item {
        width: 50%;
        border: none;
    }

    .calendar__table td {
        padding: 4px;
    }

    .calendar__table-top-row th {
        padding: 4px;
    }

    .research-reports a {
        margin-right: 0;
    }

    .research-reports__header div {
        padding-right: 2px;
        padding-left: 2px;
    }

    .research-reports__item div {
        padding-right: 2px;
        padding-left: 2px;
    }

    .rating-list__country {
        width: 32%;
    }

    .rating-list__currency,
    .rating-list__currency-last {
        /*width: 11%;*/
        width: auto;
    }

    .rating-list__date {
        width: 35%;
    }

    .rating-list__sgc {
        width: 20%;
    }

    .rating-list__cce {
        width: 20%;
    }

    .person {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .person__photo {
        margin-bottom: 30px;
    }

    .person__info {
        width: 100%;
    }
}

@media (max-width: 991px) {
    .middle-block_row_text_subscribe {
        flex-direction: column;
    }

    .middle-block_col_subscribe {
        justify-content: unset;
    }

    .middle-block {
        padding: 0 15px;
    }
}

@media (max-width: 812px) {
    .month__item {
        width: 100%;
    }
}

@media (max-width: 640px) {
    .page-footer__social {
        padding: 3px 0;
        justify-content: space-between;
    }

    .page-footer__social .social__item {
        font-size: 13px;
    }
}


@media screen and (max-width: 480px) {
    .risk-table {
        overflow-x: scroll;
    }

    .risk-table__header,
    .risk-table__rows {
        width: 500px;
    }

    .social {
        margin: 20px 0 10px 0;
    }

    .panel {
        padding: 0 15px;
    }

    .type2 {
        padding: 30px 20px;
    }

    .middle-block_col_text {
        padding: unset;
    }

    .middle-block__text {
        font-size: 15px;
    }

    .press-releases__caption-item {
        font-size: 14px;
    }

    .press-releases__table-left {
        font-size: 12px;
    }

    .page-footer__copyright,
    .page-footer__address,
    .page-footer__contacts,
    .page-footer__social {
        margin-bottom: 30px;
    }

    .page-footer__copyright,
    .page-footer__address,
    .page-footer__contacts {
        width: 100%;
    }

    .page-footer__social {
        width: 30%;
    }

    .page-footer__btn {
        padding: 0;
        width: 100%;
        text-align: left;
    }

    .news__subscribe {
        width: 100%;
    }

    .img_404,
    .txt_404 {
        width: 100%;
    }

}

@media screen and (min-height: 360px) and (max-width: 991px) and (orientation: landscape) {
    .middle-block_col_text {
        padding: unset;
    }

    .middle-block__text {
        font-size: 16px;
    }

    .press-releases__caption-item {
        padding: 5px 10px;
        font-size: 14px;
    }

    .container_404 {
        display: flex;
    }

    .img_404,
    .txt_404 {
        width: 40%;
    }

    .img_404 {
        height: auto;
    }

}

@media screen and (max-height: 430px) and (max-width: 991px) and (orientation: landscape) {
    #modal-cookie {
        margin: 50px auto;
    }
}

@media screen and (max-height: 360px) and (max-width: 640px) and (orientation: landscape) {
    #modal-cookie {
        margin: 20px auto;
    }
}

@media screen and (max-height: 320px) and (max-width: 600px) and (orientation: landscape) {
    #modal-cookie {
        margin: 10px auto;
    }
}

@media screen and (max-height: 430px) and (max-width: 991px) and (orientation: landscape),
(max-width: 480px) and (orientation: portrait) {
    .contacts {
        padding: 40px 15px 15px;
    }

    .database_cont img {
        max-width: 150px;
    }

    .container_404 img {
        right: 0;
    }

    .container_404 img:nth-child(2) {
        left: 0;
        top: 60px;
    }

    .container_404 h1 {
        font-size: 30px;
    }
}

@media (max-width: 440px) {
    .page-header__logo img {
        width: 70%;
    }

    .container_404 h1 {
        font-size: 25px;
    }
}

/* calendar temlate */

.event_container {
    width: 100%;
    height: 600px;
}

.calendar_container p,
.calendar_container h4,
.calendar_container a,
.calendar_container i {
    margin: 0;
    padding: 0;
    line-height: 1.5;
}

/* сетка */
/** общий блок **/
.calendar_container {
    padding-top: 30px;
    max-width: 930px;
    margin: auto;
}

/** блок выбора даты **/
.calendar_container .eventlink {
    background: #FFA944;
    color: white;
    padding: 10px 40px;
    border-radius: 3px;
    transition: .5s;
}

.calendar_container .eventlink:hover {
    background: tomato;
}

.date_search_section select {
    padding: 10px 0;
    border: unset;
}

.date_search_section {
    width: 100%;
    height: 70px;
    border-bottom: 3px solid #FFA944;
}

.date_search_box select {
    position: relative;
    margin-right: 10px;
    cursor: pointer;
}

.date_search_box select:focus {
    outline: unset;
}

/** блок выбора даты end **/
/** блок событий **/
.event_container {
    margin-top: 30px;
}

.events_row {
    display: flex;
    margin-top: 50px;
}

.day_col {
    flex: 1;
}

.events_col {
    flex: 10;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

/*** день недели ***/
.day_event_box {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.day_week {
    margin: 0 0 2px 0;
}

.day_week p {
    font-size: 18px;
    color: #FFA944;
    margin: 0;
    text-transform: capitalize;
    font-weight: bold;
}

.day_date p {
    font-size: 24px;
    color: white;
    background: #FFA944;
    border-radius: 100%;
    width: 55px;
    height: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/*** колонка дней ***/
/*** колонка события ***/
.time_event p {
    font-size: 14px;
    font-weight: bold;
    color: #F7921C;
    margin: 0;
    margin: 0 0 10px 0px;
}

.heading_event h4 {
    margin: 0 0 15px 0;
}

.item_event {
    padding: 0 0 0 50px;
    max-width: 750px;
    margin-bottom: 50px;
}

.more_event_box p,
.more_event_box a {
    color: #EB4F23;
}

.more_event_box a:hover {
    color: #a6b2c9;
}

.more_event_box {
    display: flex;
    margin-top: 15px;
}

.add_calendar_box a {
    display: flex;
    margin-right: 40px;
}

.add_calendar_link i {
    margin-right: 8px;
}

/* calendar temlate end */

@media(max-width:767px) {
    .calendar_container {
        padding: 30px;
    }
}

@media(max-width:600px) {
    .events_row {
        flex-direction: column;
    }

    .day_event_box {
        width: 55px;
        margin-bottom: 40px;
    }

    .item_event {
        padding: 0;
    }
}

@media(max-width:440px) {
    .middle-block__title {
        font-size: 30px;
    }

    .date_search_section {
        height: 60px;
    }

    .date_search_box {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .calendar_container {
        padding: 30px 20px;
    }

    .calendar_container .eventlink {
        font-size: 15px;
        padding: 8px 20px;
    }
}

@media (max-width: 340px) {
    .calendar_container {
        font-size: 13px;
    }
}