/* reset CSS */
html, body, body div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, figure, footer, header, menu, nav, section, time, mark, audio, video, details, summary {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font-weight: normal;
  vertical-align: baseline;
  background: transparent;
}

article, aside, figure, footer, header, nav, section, details, summary {
  display: block;
}

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

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

img,
object,
embed {
  max-width: 100%;
}

html {
  overflow-y: scroll;
}

ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted #000;
  cursor: help;
}

/* tables still need cellspacing="0" in the markup */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

th {
  font-weight: bold;
  vertical-align: bottom;
}

td {
  font-weight: normal;
  vertical-align: top;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

pre {
  white-space: pre; /* CSS2 */
  white-space: pre-wrap; /* CSS 2.1 */
  white-space: pre-line; /* CSS 3 (and 2.1 as well, actually) */
  word-wrap: break-word; /* IE */
}

input[type=radio] {
  vertical-align: text-bottom;
}

input[type=checkbox] {
  vertical-align: bottom;
}

.ie7 input[type=checkbox] {
  vertical-align: baseline;
}

.ie6 input {
  vertical-align: text-bottom;
}

select, input, textarea {
  font: 99% sans-serif;
}

table {
  font-size: inherit;
  font: 100%;
}

small {
  font-size: 85%;
}

strong {
  font-weight: bold;
}

td, td img {
  vertical-align: top;
}

/* Make sure sup and sub don't mess with your line-heights https://gist.github.com/413930 */
sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* standardize any monospaced elements */
pre, code, kbd, samp {
  font-family: monospace, sans-serif;
}

/* hand cursor on clickable elements */
.clickable,
label,
input[type=button],
input[type=submit],
input[type=file],
button {
  cursor: pointer;
}

/* Webkit browsers add a 2px margin outside the chrome of form elements */
button, input, select, textarea {
  margin: 0;
}

/* make buttons play nice in IE */
button,
input[type=button] {
  width: auto;
  overflow: visible;
}

/* scale images in IE7 more attractively */
.ie7 img {
  -ms-interpolation-mode: bicubic;
}

.clearfix:before, .clearfix:after {
  content: " ";
  display: block;
  height: 0;
  overflow: hidden;
}

.clearfix:after {
  clear: both;
}

.clearfix {
  zoom: 1;
}

/*reset CSS end*/
.form-checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.form-checkbox__label {
  color: #050505;
  font-family: TTNormsPro;
  font-size: 16px;
  font-weight: 500;
  line-height: 100%;
}
@media (max-width: 1150px) {
  .form-checkbox__label {
    padding: 10px 15px;
    font-size: 13px;
  }
}
.form-checkbox__fake {
  width: 27px;
  height: 27px;
  background-color: transparent;
  border: 1px solid #F6E200;
  margin-right: 10px;
}
@media (max-width: 1150px) {
  .form-checkbox__fake {
    width: 20px;
    height: 20px;
  }
}
.form-checkbox input {
  display: none;
}
.form-checkbox input:checked + .form-checkbox__fake {
  background-color: #F6E200;
  position: relative;
}
.form-checkbox input:checked + .form-checkbox__fake::after {
  content: "";
  display: inline-block;
  width: 15px;
  height: 8px;
  border-bottom: 2px solid #050505;
  border-left: 2px solid #050505;
  position: absolute;
  -webkit-transform: rotate(-45deg) translate(-50%, -50%);
      -ms-transform: rotate(-45deg) translate(-50%, -50%);
          transform: rotate(-45deg) translate(-50%, -50%);
  left: 50%;
  top: 20%;
}
@media (max-width: 1150px) {
  .form-checkbox input:checked + .form-checkbox__fake::after {
    width: 10px;
    height: 6px;
  }
}

@media (max-width: 950px) {
  body {
    overflow-x: hidden;
  }
}
body.opened-menu {
  overflow: hidden;
  height: 100vh;
}

.page-container {
  width: 1290px;
  margin: 0 auto;
  position: relative;
}
@media (max-width: 1300px) {
  .page-container {
    width: 1100px;
  }
}
@media (max-width: 1150px) {
  .page-container {
    width: 930px;
  }
}
@media (max-width: 950px) {
  .page-container {
    width: 100%;
    padding: 15px;
  }
}
.page-container--sidebar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}
.page-container--sidebar .page-content {
  width: calc(100% - 330px);
}

.page-title {
  position: relative;
  margin-bottom: 20px;
  margin-top: 20px;
  padding: 20px 0;
}
@media (max-width: 950px) {
  .page-title {
    margin: 0;
  }
}
.page-title h1 {
  position: relative;
  color: #050505;
  font-family: DrukTextWideCyr;
  font-size: 43px;
  font-weight: 1000;
  line-height: 100%; /* 43px */
  text-transform: uppercase;
}
@media (max-width: 1150px) {
  .page-title h1 {
    font-size: 38px;
  }
}
@media (max-width: 950px) {
  .page-title h1 {
    font-size: 24px;
    line-height: 25px; /* 104.167% */
  }
}

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 950px) {
  .pagination {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (max-width: 500px) {
  .pagination {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.pagination__prev, .pagination__next {
  height: 22px;
  width: 22px;
  border: 1px solid #050505;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: unset;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
@media (max-width: 1300px) {
  .pagination__prev, .pagination__next {
    height: 20px;
    width: 20px;
  }
}
@media (max-width: 1150px) {
  .pagination__prev, .pagination__next {
    height: 16px;
    width: 16px;
  }
}
@media (max-width: 950px) {
  .pagination__prev, .pagination__next {
    height: 20px;
    width: 20px;
  }
}
.pagination__prev:hover, .pagination__next:hover {
  background-color: #F6E200;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.pagination__prev .icon, .pagination__next .icon {
  height: 12px;
  width: 10px;
}
@media (max-width: 1300px) {
  .pagination__prev .icon, .pagination__next .icon {
    height: 8px;
    width: 10px;
  }
}
@media (max-width: 1150px) {
  .pagination__prev .icon, .pagination__next .icon {
    height: 7px;
    width: 9px;
  }
}
@media (max-width: 950px) {
  .pagination__prev .icon, .pagination__next .icon {
    height: 8px;
    width: 10px;
  }
}
.pagination__prev {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.page-sidebar {
  width: 300px;
}
@media (max-width: 1300px) {
  .page-sidebar {
    width: 235px;
  }
}
@media (max-width: 1150px) {
  .page-sidebar {
    width: 215px;
  }
}
@media (max-width: 950px) {
  .page-sidebar {
    display: none;
  }
}

.sidebar-menu {
  border: 1px solid #A3A7AA;
}
.sidebar-menu__list {
  border: 1px solid #D9D9D9;
  border-top: 0;
  padding: 11px 0;
}

.sidebar-menu-head {
  background-color: #F6E200;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 13px;
}
.sidebar-menu-head .icon {
  margin-right: 10px;
  width: 12px;
  height: 10px;
  stroke: #050505;
  stroke-width: 2px;
}
.sidebar-menu-head__title {
  color: #050505;
  font-family: TTNormsPro;
  font-size: 16px;
  font-weight: 700;
  line-height: 17.6px; /* 110% */
}
@media (max-width: 1300px) {
  .sidebar-menu-head__title {
    font-size: 14px;
  }
}
@media (max-width: 1150px) {
  .sidebar-menu-head__title {
    font-size: 12px;
    line-height: 13.686px; /* 114.052% */
  }
}

.sidebar-menu-item {
  padding-left: 35px;
  position: relative;
  background-color: unset;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.sidebar-menu-item::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 13px;
  height: 19px;
  background-image: url(../images/svg/arrow-list-marker.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}
@media (max-width: 1300px) {
  .sidebar-menu-item::before {
    width: 10px;
    height: 15px;
  }
}
@media (max-width: 1150px) {
  .sidebar-menu-item::before {
    font-size: 9px;
    line-height: 13px; /* 114.052% */
  }
}
.sidebar-menu-item__link {
  display: inline-block;
  padding: 12px;
  color: #050505;
  font-family: TTNormsPro;
  font-size: 14px;
  font-weight: 400;
  line-height: 17.5px; /* 125% */
  text-decoration: none;
  width: 100%;
}
@media (max-width: 1300px) {
  .sidebar-menu-item__link {
    font-size: 12px;
    padding: 7px 20px 7px 12px;
  }
}
@media (max-width: 1150px) {
  .sidebar-menu-item__link {
    font-size: 12px;
    padding: 6px 20px 6px 12px;
  }
}
.sidebar-menu-item:hover {
  background-color: rgba(0, 0, 0, 0.03);
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.sidebar-menu-item:hover .sidebar-menu-item__link {
  color: #050505;
}

.page-main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media (max-width: 950px) {
  .page-main .page-container {
    padding: 0 15px;
  }
}

.page-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-bottom: 30px;
  width: 100%;
}
.page-content a {
  color: #050505;
}
.page-content a:hover {
  color: #F6E200;
}

.page {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  min-height: 100vh;
}

.pagination-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 15px;
}
.pagination-list a {
  width: 35px;
  height: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-decoration: none;
  background-color: unset;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  color: #050505;
  font-family: TTNormsPro;
  font-size: 14px;
  font-weight: 700;
}
@media (max-width: 1300px) {
  .pagination-list a {
    font-size: 12px;
    width: 30px;
    height: 30px;
  }
}
@media (max-width: 1150px) {
  .pagination-list a {
    font-size: 12px;
    width: 26px;
    height: 26px;
  }
}
@media (max-width: 950px) {
  .pagination-list a {
    font-size: 12px;
    width: 30px;
    height: 30px;
  }
}
.pagination-list a:hover {
  background-color: #F6E200;
  color: #050505;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.pagination-list ._active a {
  background-color: #F6E200;
  color: #050505;
}

html::-webkit-scrollbar {
  width: 10px; /* width of the entire scrollbar */
}

html::-webkit-scrollbar-track {
  background: #EFEFEF; /* color of the tracking area */
}

html::-webkit-scrollbar-thumb {
  background-color: #F6E200; /* color of the scroll thumb */
  border-radius: 20px; /* roundness of the scroll thumb */
}

.jq-selectbox__dropdown ul::-webkit-scrollbar {
  width: 5px; /* width of the entire scrollbar */
}

.jq-selectbox__dropdown ul::-webkit-scrollbar-track {
  background: #EFEFEF; /* color of the tracking area */
}

.jq-selectbox__dropdown ul::-webkit-scrollbar-thumb {
  background-color: #F6E200; /* color of the scroll thumb */
  border-radius: 20px; /* roundness of the scroll thumb */
}

.btn {
  display: inline-block;
  padding: 15px 25px;
  background-color: #D9D9D9;
  color: #121318;
  font-family: TTNormsPro;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
}
.btn--primary {
  background-color: #F6E200;
  border: 2px solid #F6E200;
  color: #050505;
}
.btn--primary:hover {
  background-color: #ffffff;
}
.btn--row {
  width: 100%;
}
.btn--thin {
  font-weight: 400;
}

.slider-dots-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin: 15px 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.slider-dots-nav .slick-dots {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font-weight: normal;
  vertical-align: baseline;
  background: transparent;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.slider-dots-nav .slick-dots button {
  cursor: pointer;
  margin: 0;
  width: auto;
  overflow: visible;
}
.slider-dots-nav .slick-dots li {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font-weight: normal;
  vertical-align: baseline;
  background: transparent;
  width: 30px;
  overflow: hidden;
  margin: 7px;
  height: 3px;
}
.slider-dots-nav .slick-dots li button {
  display: block;
  width: 100%;
  height: 100%;
  background: #a8a8a8;
  margin: 0 !important;
  border: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  content: none;
  color: transparent;
}
.slider-dots-nav .slick-dots li.slick-active button {
  background: #F6E200;
}

.sound-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 32px;
  height: 32px;
  background: 0;
  position: absolute;
  border: 0;
  padding: 0;
  margin: 0;
  background-image: url(../images/svg/sound.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
  opacity: 0.7;
}
.sound-btn--muted {
  background-image: url(../images/svg/sound-muted.svg);
}

.breadcrumbs {
  font-family: TTNormsPro;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 13px;
  color: #333333;
  margin: 20px 0;
}

.breadcrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.breadcrumb__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.breadcrumb__item a {
  color: #606567;
  text-decoration: none;
  display: inline-block;
  margin-right: 5px;
}
.breadcrumb__item a:hover {
  color: #606567;
  text-decoration: underline;
}
.breadcrumb__item span {
  margin: 5px 5px 8px 10px;
  text-decoration: unset;
  -webkit-line-clamp: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 15px;
}
.breadcrumb__item:not(:last-child)::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background-image: url(../images/svg/breadcrumbs-arrow.svg);
  background-repeat: no-repeat;
  background-size: 100%;
}
.breadcrumb__item:first-child span {
  margin-left: 0;
}

.beadcrumbs-dropdown {
  margin: 0 10px;
  position: relative;
}
.beadcrumbs-dropdown__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  padding: 3px 0 9px 0;
  width: 44px;
  font-weight: bold;
}
.beadcrumbs-dropdown__btn {
  color: #1e252a;
  background-color: #ededed;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.beadcrumbs-dropdown__btn:hover {
  background-color: #606567;
  color: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.beadcrumbs-dropdown__list {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  background-color: #fff;
  border-radius: 6px;
  -webkit-box-shadow: 0 4px 44px rgba(0, 0, 0, 0.12);
          box-shadow: 0 4px 44px rgba(0, 0, 0, 0.12);
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-width: 250px;
  max-width: 300px;
  padding: 6px 0;
  position: absolute;
  top: 40px;
  width: auto;
  z-index: 102;
}
.beadcrumbs-dropdown__list--opened {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.beadcrumbs-dropdown-item {
  width: 250px;
}
@media (max-width: 380px) {
  .beadcrumbs-dropdown-item {
    width: 200px;
  }
}
.beadcrumbs-dropdown-item a {
  color: #606567;
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
  margin: 0;
  display: inline-block;
  padding: 7px 10px;
  max-width: 250px;
  width: 100%;
}
.beadcrumbs-dropdown-item a span {
  margin: 0;
  display: inline-block;
  max-width: 100%;
  width: 100%;
}
.beadcrumbs-dropdown-item:hover {
  background-color: rgba(0, 0, 0, 0.03);
  color: #000;
}
.beadcrumbs-dropdown-item:hover a {
  color: #000;
}

.tipography {
  font-family: TTNormsPro;
  font-size: 16px;
}
.tipography i {
  font-style: italic;
}
.tipography h1 {
  display: block;
  font-size: 2em;
  margin-top: 0.67em;
  margin-bottom: 0.67em;
  margin-left: 0;
  margin-right: 0;
  font-weight: bold;
}
.tipography h2 {
  display: block;
  unicode-bidi: embed;
  font-size: 1.5em;
  margin: 0.75em 0;
  font-weight: bolder;
}
.tipography h3 {
  display: block;
  unicode-bidi: embed;
  font-size: 1.17em;
  margin: 0.83em 0;
  font-weight: bolder;
}
.tipography h4 {
  display: block;
  unicode-bidi: embed;
  margin: 1.12em 0;
  font-weight: bolder;
}
.tipography h5 {
  display: block;
  unicode-bidi: embed;
  font-size: 0.83em;
  margin: 1.5em 0;
  font-weight: bolder;
}
.tipography h6 {
  display: block;
  unicode-bidi: embed;
  font-size: 0.75em;
  margin: 1.67em 0;
  font-weight: bolder;
}
.tipography strong, .tipography b {
  font-weight: bolder;
}
.tipography p {
  display: block;
  unicode-bidi: embed;
  margin: 1.12em 0;
}
.tipography ul {
  margin: 20px 0;
  list-style-type: disc;
  padding-left: 20px;
}
.tipography ul li {
  position: relative;
  margin: 10px 0;
}
.tipography ul li::marker {
  color: #F6E200;
}
.tipography ol {
  margin: 1em 0;
  counter-reset: num-list;
  padding-left: 1.5em;
}
.tipography ol li {
  position: relative;
  margin: 10px 0;
}
.tipography ol li::marker {
  color: #050505;
}
.tipography a {
  text-decoration: underline;
}
.tipography a:hover {
  text-decoration: none;
}

.sections-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  row-gap: 10px;
  padding-top: 10px;
  padding-bottom: 20px;
  margin-bottom: 30px;
}
@media (max-width: 500px) {
  .sections-list {
    margin-bottom: 0;
  }
}

.sections-list-item a {
  color: #A3A7AA;
  font-family: TTNormsPro;
  font-size: 20px;
  font-weight: 700;
  line-height: 17.542px; /* 103.189% */
  display: inline-block;
  text-decoration: none;
  white-space: nowrap;
}
@media (max-width: 1150px) {
  .sections-list-item a {
    font-size: 17px;
  }
}
@media (max-width: 500px) {
  .sections-list-item a {
    font-size: 12px;
  }
}
.sections-list-item a:hover {
  color: #050505;
}
.sections-list-item--active a {
  color: #050505;
}

.page-loader {
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.7098039216);
  z-index: 2;
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.page-loader.show {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.contacts-block {
  color: #050505;
  font-family: TTNormsPro;
  font-size: 23.16px;
  font-weight: 400;
  line-height: 33.119px; /* 143% */
  margin: 15px 0;
}
@media (max-width: 1300px) {
  .contacts-block {
    font-size: 20px;
    line-height: 28.774px; /* 143.872% */
  }
}
@media (max-width: 1150px) {
  .contacts-block {
    font-size: 17px;
  }
}
@media (max-width: 500px) {
  .contacts-block {
    font-size: 12px;
    line-height: 14.127px; /* 117.727% */
  }
}
.contacts-block__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.contact__link {
  text-decoration: none;
}

.tags-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  row-gap: 15px;
  -ms-flex-negative: 1;
      flex-shrink: 1;
}

.tags-list-item {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.tags-list-item a.tags-list-item__link,
.tags-list-item .tags-list-item__link {
  width: 100%;
  display: inline-block;
  text-decoration: none;
  background-color: rgba(246, 226, 0, 0.31);
  color: #050505;
  text-align: center;
  font-family: TTNormsPro;
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
  padding: 13px 20px;
}
.tags-list-item a.tags-list-item__link:hover,
.tags-list-item .tags-list-item__link:hover {
  background-color: #F6E200;
  color: #050505;
}
.tags-list-item a.tags-list-item__link--checked,
.tags-list-item .tags-list-item__link--checked {
  background-color: #F6E200;
  color: #050505;
}
@media (max-width: 1300px) {
  .tags-list-item a.tags-list-item__link,
  .tags-list-item .tags-list-item__link {
    font-size: 12px;
  }
}
.tags-list-item a.tags-list-item__checkbox,
.tags-list-item .tags-list-item__checkbox {
  display: none;
}
.tags-list-item a.tags-list-item__checkbox[checked] ~ .tags-list-item__link,
.tags-list-item .tags-list-item__checkbox[checked] ~ .tags-list-item__link {
  background-color: #F6E200;
  color: #050505;
}

.page-items-count {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.page-items-count__title {
  color: #050505;
  font-family: TTNormsPro;
  font-size: 14px;
  font-weight: 700;
}

.styled-select {
  border: 1px solid #D9D9D9;
}
.styled-select .jq-selectbox__select-text {
  color: #050505;
  font-family: TTNormsPro;
  font-size: 14px;
  font-weight: 700;
  line-height: 20.02px; /* 143% */
}
@media (max-width: 1300px) {
  .styled-select .jq-selectbox__select-text {
    font-size: 12px;
    line-height: 17.184px; /* 143.203% */
  }
}
@media (max-width: 1150px) {
  .styled-select .jq-selectbox__select-text {
    font-size: 12px;
    line-height: 14.383px; /* 130.755% */
  }
}
.styled-select .jq-selectbox__select {
  background: #ffffff;
  -webkit-box-shadow: unset;
          box-shadow: unset;
  border-radius: 0;
  border: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 30px 0 10px;
}
.styled-select .jq-selectbox__dropdown {
  border-radius: 0;
}
.styled-select .jq-selectbox__trigger {
  border: 0;
}
.styled-select .jq-selectbox__trigger-arrow {
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background-image: url(../images/svg/arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.styled-select.dropdown.opened .jq-selectbox__trigger-arrow {
  -webkit-transform: rotate(270deg);
      -ms-transform: rotate(270deg);
          transform: rotate(270deg);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.styled-select:focus-visible {
  outline: 0;
}
.styled-select.jq-selectbox.focused .jq-selectbox__select {
  border: 1px solid #F6E200;
}

.section-title {
  color: #050505;
  font-family: TTNormsPro;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
}

.page-text {
  color: #050505;
  font-family: TTNormsPro;
  font-size: 18px;
  font-weight: 500;
  line-height: 26px;
}
@media (max-width: 1300px) {
  .page-text {
    font-size: 17px;
  }
}
@media (max-width: 1150px) {
  .page-text {
    font-size: 16px;
  }
}
@media (max-width: 500px) {
  .page-text {
    margin: 10px 0 10px 0;
    font-size: 12px;
    line-height: 14px;
  }
}

.info-hint {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background-color: #F6E200;
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}
.info-hint::before {
  content: "i";
  font-weight: 700;
  font-size: 20px;
  text-align: center;
}
@media (max-width: 1150px) {
  .info-hint::before {
    font-size: 18px;
  }
}
@media (max-width: 950px) {
  .info-hint::before {
    font-size: 14px;
  }
}
@media (max-width: 500px) {
  .info-hint::before {
    font-size: 12px;
  }
}
@media (max-width: 1150px) {
  .info-hint {
    width: 22px;
    height: 22px;
  }
}
@media (max-width: 950px) {
  .info-hint {
    width: 18px;
    height: 18px;
  }
}
@media (max-width: 500px) {
  .info-hint {
    width: 12px;
    height: 12px;
  }
}

.info-descr--hidden {
  display: none;
}

.accordion-item__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #050505;
  font-family: TTNormsPro;
  font-size: 18px;
  font-weight: 700;
  line-height: 33.119px; /* 183.995% */
  padding-bottom: 10px;
  cursor: pointer;
}
.accordion-item__header .icon-cross, .accordion-item__header svg {
  width: 12px;
  height: 12px;
  fill: #050505;
  margin-right: 10px;
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
          transform: rotate(0deg);
}
.accordion-item__header svg path {
  fill: #050505;
}
@media (max-width: 1150px) {
  .accordion-item__header {
    font-size: 17px;
  }
  .accordion-item__header .icon-cross, .accordion-item__header svg {
    width: 15px;
    height: 15px;
  }
}
@media (max-width: 950px) {
  .accordion-item__header {
    font-size: 17px;
    line-height: 20.457px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .accordion-item__header .icon-cross, .accordion-item__header svg {
    width: 13px;
    height: 13px;
  }
}
@media (max-width: 500px) {
  .accordion-item__header {
    font-size: 12px;
    line-height: 20.457px;
  }
  .accordion-item__header .icon-cross, .accordion-item__header svg {
    width: 10px;
    height: 10px;
  }
}
.accordion-item__dropdown {
  padding-top: 0;
  padding-bottom: 10px;
  display: none;
}
@media (max-width: 500px) {
  .accordion-item__dropdown {
    padding-top: 0;
    padding-bottom: 10px;
  }
}
.accordion-item__htitle {
  color: #050505;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: TTNormsPro;
  font-size: 18px;
  font-weight: 700;
  line-height: 33.119px; /* 183.995% */
}
@media (max-width: 1150px) {
  .accordion-item__htitle {
    font-size: 17px;
  }
  .accordion-item__htitle .icon-cross, .accordion-item__htitle svg {
    width: 15px;
    height: 15px;
  }
}
@media (max-width: 950px) {
  .accordion-item__htitle {
    font-size: 17px;
    line-height: 20.457px;
  }
  .accordion-item__htitle .icon-cross, .accordion-item__htitle svg {
    width: 13px;
    height: 13px;
  }
}
@media (max-width: 500px) {
  .accordion-item__htitle {
    font-size: 12px;
    line-height: 20.457px;
  }
  .accordion-item__htitle .icon-cross, .accordion-item__htitle svg {
    width: 10px;
    height: 10px;
  }
}
.accordion-item__hcontent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: 20px;
}
.accordion-item--opened > .accordion-item__header {
  color: #F6E200;
}
.accordion-item--opened > .accordion-item__header .icon-cross, .accordion-item--opened > .accordion-item__header svg {
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  fill: #F6E200;
}
.accordion-item--opened > .accordion-item__header .icon-cross rect, .accordion-item--opened > .accordion-item__header svg rect {
  fill: #F6E200;
}
.accordion-item--opened > .accordion-item__header .accordion-item__htitle {
  color: #F6E200;
}
.accordion-item--opened > .accordion-item__header .accordion-item__htitle .icon-cross, .accordion-item--opened > .accordion-item__header .accordion-item__htitle svg {
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  fill: #F6E200;
}
.accordion-item--opened > .accordion-item__header .accordion-item__htitle .icon-cross rect, .accordion-item--opened > .accordion-item__header .accordion-item__htitle svg rect {
  fill: #F6E200;
}

.accordion-item-header__title {
  color: #050505;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: TTNormsPro;
  font-size: 18px;
  font-weight: 700;
  line-height: 33.119px; /* 183.995% */
}
@media (max-width: 1150px) {
  .accordion-item-header__title {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    font-size: 17px;
  }
  .accordion-item-header__title .icon-cross, .accordion-item-header__title svg {
    width: 15px;
    height: 15px;
  }
}
@media (max-width: 950px) {
  .accordion-item-header__title {
    font-size: 17px;
    line-height: 20.457px;
  }
  .accordion-item-header__title .icon-cross, .accordion-item-header__title svg {
    width: 13px;
    height: 13px;
  }
}
@media (max-width: 500px) {
  .accordion-item-header__title {
    font-size: 12px;
    line-height: 20.457px;
  }
  .accordion-item-header__title .icon-cross, .accordion-item-header__title svg {
    width: 10px;
    height: 10px;
  }
}
.accordion-item-header__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: 20px;
}

.row-link-item {
  padding: 5px 0;
}
@media (max-width: 500px) {
  .row-link-item {
    padding: 10px 0;
  }
}
.row-link-item, .row-link-item a {
  text-decoration: none;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  color: #050505;
  font-family: TTNormsPro;
  font-size: 17px;
  font-weight: 500;
  line-height: 33.119px;
}
.row-link-item:hover, .row-link-item a:hover {
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  color: #F6E200;
}
@media (max-width: 1300px) {
  .row-link-item, .row-link-item a {
    font-size: 17px;
  }
}
@media (max-width: 500px) {
  .row-link-item, .row-link-item a {
    font-size: 12px;
    line-height: 14px;
  }
}

.search-form {
  width: 100%;
}
.search-form__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  margin-bottom: 10px;
}
.search-form__field {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.search-form__field input[type=text] {
  display: block;
  width: 100%;
  font-size: 16px;
  padding: 13px 30px;
  background-color: rgba(214, 216, 213, 0.3);
  border: 0;
  outline: 0;
}
@media (max-width: 1300px) {
  .search-form__field input[type=text] {
    font-size: 16px;
  }
}
@media (max-width: 1150px) {
  .search-form__field input[type=text] {
    font-size: 15px;
  }
}
@media (max-width: 950px) {
  .search-form__field input[type=text] {
    font-size: 13px;
  }
}
@media (max-width: 500px) {
  .search-form__field input[type=text] {
    font-size: 12px;
  }
}
.search-form__submit button {
  background-color: #F6E200;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  color: #050505;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 2px solid #F6E200;
  -webkit-box-shadow: none;
          box-shadow: none;
  padding: 10px 15px;
  font-family: TTNormsPro;
  font-size: 16px;
  font-weight: 700;
}
@media (max-width: 1150px) {
  .search-form__submit button {
    font-size: 15px;
  }
}
@media (max-width: 950px) {
  .search-form__submit button {
    font-size: 13px;
  }
}
@media (max-width: 500px) {
  .search-form__submit button {
    font-size: 12px;
  }
}
.search-form__submit button:hover {
  background-color: #ffffff;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.search-form__submit button .icon {
  width: 15px;
  height: 15px;
  margin-left: 10px;
  fill: none;
  stroke: #050505;
  stroke-width: 2px;
}

.file-type-link-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 20px 0;
}
.file-type-link-item__info {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.file-type-link-item__name {
  color: #050505;
  font-family: TTNormsPro;
  font-size: 17px;
  font-weight: 500;
  line-height: 33.119px;
}
@media (max-width: 1300px) {
  .file-type-link-item__name {
    font-size: 16px;
  }
}
@media (max-width: 1150px) {
  .file-type-link-item__name {
    font-size: 15px;
  }
}
@media (max-width: 950px) {
  .file-type-link-item__name {
    font-size: 13px;
  }
}
@media (max-width: 500px) {
  .file-type-link-item__name {
    font-size: 12px;
    line-height: 14px;
  }
}
.file-type-link-item__subname {
  color: #D6D8D5;
  font-family: TTNormsPro;
  font-size: 17px;
  font-weight: 500;
  line-height: 33.119px; /* 194.818% */
}
@media (max-width: 1300px) {
  .file-type-link-item__subname {
    font-size: 16px;
  }
}
@media (max-width: 1150px) {
  .file-type-link-item__subname {
    font-size: 15px;
  }
}
@media (max-width: 950px) {
  .file-type-link-item__subname {
    font-size: 13px;
  }
}
@media (max-width: 500px) {
  .file-type-link-item__subname {
    font-size: 12px;
    line-height: 14px;
    margin-top: 10px;
  }
}
.file-type-link-item__types {
  width: 30%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 10px 0;
}

.download-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  color: #050505;
}
.download-link__name {
  color: #050505;
  font-family: TTNormsPro;
  font-size: 17px;
  font-weight: 500;
  line-height: 33.119px; /* 194.818% */
}
@media (max-width: 1300px) {
  .download-link__name {
    font-size: 16px;
  }
}
@media (max-width: 1150px) {
  .download-link__name {
    font-size: 15px;
  }
}
@media (max-width: 950px) {
  .download-link__name {
    font-size: 13px;
  }
}
@media (max-width: 500px) {
  .download-link__name {
    font-size: 12px;
    line-height: 14px;
  }
}
.download-link .icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  stroke: #050505;
  stroke-width: 2px;
  fill: none;
  width: 15px;
  height: 15px;
  margin-right: 10px;
}
.download-link:hover {
  color: #F6E200;
}
.download-link:hover .icon {
  stroke: #F6E200;
}
.download-link:hover .icon.unfilled {
  stroke: #F6E200;
}
.download-link:hover .download-link__name {
  color: #F6E200;
}

.files-list__item {
  margin: 15px 0;
}

.inactive {
  color: #D6D8D5;
}

.sidebar-filter__head {
  background-color: #D6D8D5;
  text-align: center;
  color: #050505;
  font-family: TTNormsPro;
  font-size: 18px;
  font-weight: 700;
  line-height: 26px; /* 144.444% */
  padding: 10px;
}
@media (max-width: 1300px) {
  .sidebar-filter__head {
    font-size: 16px;
  }
}
@media (max-width: 1150px) {
  .sidebar-filter__head {
    font-size: 15px;
  }
}
@media (max-width: 950px) {
  .sidebar-filter__head {
    font-size: 13px;
  }
}
@media (max-width: 500px) {
  .sidebar-filter__head {
    font-size: 12px;
  }
}
.sidebar-filter__body {
  border-left: 1px solid #D6D8D5;
  border-right: 1px solid #D6D8D5;
}
@media (max-width: 950px) {
  .sidebar-filter__body {
    display: none;
  }
}
.sidebar-filter__controls {
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 10px;
}
.sidebar-filter__btn button {
  border: 2px solid #D6D8D5;
  background-color: #D6D8D5;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  display: block;
  width: 100%;
  color: #050505;
  font-family: TTNormsPro;
  font-size: 18px;
  font-weight: 700;
  line-height: 26px; /* 144.444% */
  padding: 10px;
}
@media (max-width: 1300px) {
  .sidebar-filter__btn button {
    font-size: 16px;
  }
}
@media (max-width: 1150px) {
  .sidebar-filter__btn button {
    font-size: 15px;
  }
}
@media (max-width: 950px) {
  .sidebar-filter__btn button {
    font-size: 13px;
  }
}
@media (max-width: 500px) {
  .sidebar-filter__btn button {
    font-size: 12px;
  }
}
.sidebar-filter__btn button:hover {
  background-color: #ffffff;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.checkbox-field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.checkbox-field__label {
  color: #050505;
  font-family: TTNormsPro;
  font-size: 18px;
  font-weight: 500;
  line-height: 26px;
}
@media (max-width: 1300px) {
  .checkbox-field__label {
    font-size: 16px;
  }
}
@media (max-width: 1150px) {
  .checkbox-field__label {
    font-size: 15px;
  }
}
@media (max-width: 950px) {
  .checkbox-field__label {
    font-size: 13px;
  }
}
@media (max-width: 500px) {
  .checkbox-field__label {
    font-size: 12px;
  }
}
.checkbox-field__fake {
  width: 18px;
  height: 18px;
  background-color: #ffffff;
  border: 1px solid #D9D9D9;
  margin-right: 10px;
}
.checkbox-field input {
  display: none;
}
.checkbox-field input:checked + .checkbox-field__fake {
  background-color: #D9D9D9;
}

.link-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #050505;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  font-family: TTNormsPro;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
}
@media (max-width: 1300px) {
  .link-icon {
    font-size: 16px;
  }
}
@media (max-width: 1150px) {
  .link-icon {
    font-size: 15px;
  }
}
@media (max-width: 950px) {
  .link-icon {
    font-size: 13px;
  }
}
@media (max-width: 500px) {
  .link-icon {
    font-size: 12px;
  }
}
.link-icon .icon {
  margin-left: 10px;
  height: 10px;
  width: 10px;
  fill: #050505;
  -webkit-transition: fill 0.3s;
  transition: fill 0.3s;
}
.link-icon .icon.rotated {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
  margin-left: 0;
  margin-right: 10px;
}
.link-icon:hover {
  color: #F6E200;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.link-icon:hover .icon {
  fill: #F6E200;
  -webkit-transition: fill 0.3s;
  transition: fill 0.3s;
}

.info-aleft .mfp-content {
  background-color: #ffffff;
  padding: 50px;
  max-width: 650px;
}

.info-aleft-content {
  color: #1C252E;
  font-family: TTNormsPro;
  font-weight: 500;
  font-size: 20px;
  line-height: 1;
}