.breadcrumbs {
  margin-top: 8px
}
.breadcrumbs-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center
}
.breadcrumbs-list > li:not(:last-child)::after {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 12px;
  height: 1px;
  margin: 0 16px;
  background-color: #76858c;
  font-size: 12px
}
.breadcrumbs-list > li > a {
  color: #76858c;
  font-size: 12px
}
.breadcrumbs-list > li > a:hover {
  color: #ff6c02
}
.breadcrumbs-list > li > span {
  color: #1e2021;
  font-size: 12px
}
.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center
}
.pagination-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 40px;
  height: 40px;
  margin: 0 6px;
  border-radius: 50%;
  border: 1px solid #eff3f6;
  background-color: #fff;
  color: #76858c;
  font-size: 16px;
  line-height: 1
}
@media (max-width:575.98px) {
  .pagination-button {
    width: 36px;
    height: 36px
  }
}
.pagination-button:hover {
  color: inherit;
  background-color: #eff3f6
}
.pagination-button--prev {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg)
}
.pagination-button--disabled {
  pointer-events: none;
  border-color: transparent;
  opacity: .5
}
.pagination-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center
}
.pagination-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #1e2021;
  font-size: 14px;
  font-weight: 600;
  line-height: 1
}
@media (max-width:575.98px) {
  .pagination-item {
    width: 36px;
    height: 36px
  }
}
.pagination-item--current {
  pointer-events: none;
  background-color: #25373f;
  color: #fff
}
@media (max-width:575.98px) {
  .pagination-item--dots {
    display: none
  }
}
.sidebar {
  width: 100%;
  max-width: 272px;
  margin-bottom: 40px;
  padding: 24px;
  background-color: #eff3f6
}
@media (max-width:991.98px) {
  .sidebar {
    max-width: 100%;
    padding: 0;
    background-color: transparent
  }
}
@media (max-width:575.98px) {
  .sidebar {
    margin-bottom: 24px
  }
}
.sidebar .filter-trigger {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center
}
.sidebar .filter-trigger-item:not(:last-child) {
  margin-right: 24px
}
@media (max-width:575.98px) {
  .sidebar .filter-trigger-item:not(:last-child) {
    margin-right: 16px
  }
}
.sidebar .filter-trigger--open .btn:hover .active-filters {
  background-color: #fff
}
.sidebar .filter-trigger--open .active-filters {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-left: 12px;
  border-radius: 6px;
  background-color: #ff6c02;
  -webkit-transition: background-color .3s ease;
  -o-transition: background-color .3s ease;
  transition: background-color .3s ease
}
.sidebar .filter-trigger--clear {
  display: none
}
.sidebar .filter-trigger--clear.is-shown {
  display: block
}
@media (max-width:575.98px) {
  .sidebar .filter-trigger--clear .btn {
    width: 40px;
    padding: 0
  }
  .sidebar .filter-trigger--clear .btn .icon {
    margin-right: 0
  }
  .sidebar .filter-trigger--clear .btn > span {
    display: none
  }
}
@media (max-width:991.98px) {
  .sidebar .filter-wrapper {
    visibility: hidden;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    width: 100%;
    max-width: 360px;
    height: 100%;
    background-color: #eff3f6;
    -webkit-transform: translateX(30px);
    -ms-transform: translateX(30px);
    transform: translateX(30px);
    opacity: 0;
    -webkit-transition: .3s ease;
    -o-transition: .3s ease;
    transition: .3s ease
  }
}
@media (max-width:575.98px) {
  .sidebar .filter-wrapper {
    max-width: 320px
  }
}
@media (max-width:374.98px) {
  .sidebar .filter-wrapper {
    max-width: 100%
  }
}
.sidebar .filter-wrapper.is-active {
  visibility: visible;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
  opacity: 1
}
.sidebar .filter-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  border-bottom: 1px solid #dde5e9
}
.sidebar .filter-header > .container {
  height: 48px
}
@media (max-width:575.98px) {
  .sidebar .filter-header > .container {
    padding-left: 16px;
    padding-right: 16px
  }
}
.sidebar .filter-header .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  line-height: 1
}
.sidebar .filter-header .title .icon {
  margin-right: 8px
}
.sidebar .filter-header .title > span {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase
}
.sidebar .filter-header .close {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  padding-right: 2px;
  cursor: pointer
}
.sidebar .filter-header .close > svg {
  fill: #25373f
}
@media (max-width:991.98px) {
  .sidebar .filter-list {
    overflow-y: scroll;
    height: 100%;
    margin-top: 48px;
    padding: 24px 24px 84px
  }
}
@media (max-width:575.98px) {
  .sidebar .filter-list {
    padding: 16px 16px 84px
  }
}
.sidebar .filter-item:not(:last-child) {
  margin-bottom: 24px
}
.sidebar .filter-btn {
  position: relative;
  width: 100%;
  height: auto;
  padding-left: 0;
  padding-right: 32px;
  border-radius: 0;
  text-align: left;
  line-height: 16px
}
.sidebar .filter-btn[aria-expanded=true] .icon {
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg)
}
.sidebar .filter-btn .icon {
  position: absolute;
  top: 3px;
  right: 0;
  margin: 0;
  fill: #25373f;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-transition: -webkit-transform .3s ease;
  transition: -webkit-transform .3s ease;
  -o-transition: transform .3s ease;
  transition: transform .3s ease;
  transition: transform .3s ease,-webkit-transform .3s ease
}
.sidebar .filter-body {
  margin-top: 16px
}
.product-descr blockquote,
.product-descr h1,
.product-descr h2,
.product-descr h3,
.product-descr h4,
.product-descr h5,
.product-descr h6,
.product-descr img,
.product-descr ol,
.product-descr p,
.product-descr table,
.product-descr ul,
article blockquote,
article h1,
article h2,
article h3,
article h4,
article h5,
article h6,
article img,
article ol,
article p,
article table,
article ul {
  margin-bottom: 24px
}
.product-descr a,
article a {
  color: #ff6c02;
  font-weight: 600
}
.product-descr a:hover,
article a:hover {
  color: #1e2021
}
.product-descr b,
.product-descr strong,
article b,
article strong {
  font-weight: 600
}
.product-descr ul,
article ul {
  padding-left: 10px
}
.product-descr ul li,
article ul li {
  position: relative;
  padding-left: 24px
}
.product-descr ul li:not(:last-child),
article ul li:not(:last-child) {
  margin-bottom: 8px
}
.product-descr ul li::before,
article ul li::before {
  content: '';
  position: absolute;
  top: 9px;
  left: 0;
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 8px;
  background-color: #ff6c02
}
.product-descr blockquote,
article blockquote {
  padding-left: 16px;
  border-left: 1px solid #ff6c02;
  font-weight: 700
}
.product-descr blockquote span,
article blockquote span {
  display: block;
  margin-bottom: 8px;
  color: #ff6c02
}
.product-descr blockquote p:last-of-type,
article blockquote p:last-of-type {
  margin-bottom: 0
}
.product-descr mark,
article mark {
  display: inline-block;
  margin-bottom: 8px;
  padding: 4px 8px;
  border-radius: 4px;
  background-color: #eff3f6;
  font-size: 18px
}
@media (max-width:575.98px) {
  .product-descr mark,
  article mark {
    display: block;
    font-size: 16px
  }
}
.main-header {
  margin-bottom: 40px
}
.main-header .title {
  margin-top: 32px
}
@media (max-width:767.98px) {
  .main-header {
    margin-bottom: 32px
  }
  .main-header .title {
    margin-top: 16px
  }
}
.main-heroes {
  position: relative;
  margin-bottom: 40px
}
@media (max-width:991.98px) {
  .main-heroes {
    background-color: #eff3f6
  }
}
.main-heroes-wrapper {
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 424px;
  border-radius: 0 240px 240px 0;
  background-color: #eff3f6
}
@media (max-width:991.98px) {
  .main-heroes-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    height: auto;
    padding-top: 256px;
    border-radius: 0;
    background-color: transparent
  }
}
.main-heroes-meta {
  position: relative;
  margin: 32px 48px
}
@media (max-width:991.98px) {
  .main-heroes-meta {
    margin: 18px 0 24px
  }
}
.main-heroes-meta .picture {
  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;
  width: 40px;
  height: 40px;
  margin-bottom: 48px;
  border-radius: 50%;
  background-color: #fff;
  color: #ff6c02;
  font-size: 24px
}
@media (max-width:991.98px) {
  .main-heroes-meta .picture {
    margin-top: 16px;
    margin-bottom: 12px
  }
}
.main-heroes-meta .date {
  margin-bottom: 32px;
  color: #76858c
}
@media (max-width:991.98px) {
  .main-heroes-meta .date {
    margin-bottom: 8px
  }
}
.main-heroes-meta .title {
  overflow: hidden;
  height: 75%;
  line-height: 1.2
}
@media (max-width:991.98px) {
  .main-heroes-meta .title {
    overflow: visible;
    height: 100%
  }
}
.main-heroes-meta .dots {
  position: absolute;
  left: 0;
  bottom: 0
}
@media (max-width:991.98px) {
  .main-heroes-meta .dots {
    position: static;
    margin-top: 48px
  }
}
.main-heroes-photo {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 690px
}
@media (max-width:1277.98px) {
  .main-heroes-photo {
    max-width: 500px
  }
}
@media (max-width:991.98px) {
  .main-heroes-photo {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    max-width: 100%;
    height: 256px
  }
}
.main-heroes-photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover
}
.main-sidebar {
  position: static
}
@media (max-width:575.98px) {
  .main-products {
    padding-left: 0!important;
    padding-right: 0!important;
    margin-left: 1px
  }
}
.main-content-descr {
  margin-bottom: 64px
}
@media (max-width:991.98px) {
  .main-content-descr {
    margin-bottom: 40px
  }
}
.main-content-descr .title {
  margin-bottom: 16px;
  font-size: 24px
}
@media (max-width:767.98px) {
  .main-content-descr .title {
    font-size: 20px
  }
}
.main-content-descr p:last-of-type {
  margin-bottom: 0
}
.main-content-btn {
  margin-top: 32px
}
@media (max-width:991.98px) {
  .main-content-btn {
    margin-top: 24px
  }
}
.main-seo {
  margin-top: 120px
}
@media (max-width:1277.98px) {
  .main-seo {
    margin-top: 80px
  }
}
.main .error-page {
  padding-top: 120px;
  text-align: center
}
@media (max-width:1277.98px) {
  .main .error-page {
    padding-top: 80px
  }
}
@media (max-width:767.98px) {
  .main .error-page {
    padding-top: 60px
  }
}
.main .error-page-title {
  font-size: 24px;
  font-weight: 400;
  text-align: center;
  line-height: 1
}
@media (max-width:1277.98px) {
  .main .error-page-title {
    font-size: 22px
  }
}
@media (max-width:767.98px) {
  .main .error-page-title {
    font-size: 20px
  }
}
.main .error-page-title > span {
  margin-bottom: 15px;
  display: block;
  color: #25373f;
  font-size: 200px;
  font-weight: 700
}
@media (max-width:1277.98px) {
  .main .error-page-title > span {
    font-size: 150px
  }
}
@media (max-width:767.98px) {
  .main .error-page-title > span {
    font-size: 100px
  }
}
.main .error-page-btn {
  margin-top: 35px
}
.main ul.sitemap:not(:last-of-type) {
  margin-bottom: 30px
}
.main ul.sitemap h2 {
  font-weight: 700
}
.main ul.sitemap h3 {
  font-weight: 600
}
.main ul.sitemap ul > li {
  margin-left: 20px;
  margin-top: 20px
}
.main ul.sitemap ul > li > ul > li {
  position: relative;
  margin-top: 6px;
  margin-left: 20px;
  padding-left: 24px
}
.main ul.sitemap ul > li > ul > li::before {
  content: '';
  position: absolute;
  top: 9px;
  left: 0;
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 8px;
  background-color: #ff6c02
}@media (max-width:767.98px) {
  .application {
    background-color: #eff3f6
  }
}
.application-wrapper {
  padding: 32px 32px 42px;
  background-color: #eff3f6
}
@media (max-width:767.98px) {
  .application-wrapper {
    padding-left: 0;
    padding-right: 0;
    background-color: transparent
  }
}
@media (max-width:1277.98px) {
  .application-intro-left {
    margin-bottom: 48px
  }
}
.application-intro-right {
  padding-left: 90px
}
.application-form-section {
  padding-top: 24px;
  padding-bottom: 24px;
  border-top: 1px solid #dde5e9
}
.application-form-section .title {
  margin-bottom: 16px
}
@media (max-width:767.98px) {
  .application-form .form-group .form-control,
  .application-form .form-group .form-select,
  .application-form .form-group .form-textarea {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%
  }
}
@media (max-width:767.98px) {
  .application-form .form-group .form-group-note {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
    margin-top: 8px;
    margin-left: 0;
    margin-bottom: 0
  }
}
.application-form .form-group-list {
  margin-bottom: 16px
}
@media (max-width:991.98px) {
  .application-form .form-group-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
  }
}
.application-form .form-submit {
  margin-left: 38%
}
@media (max-width:1277.98px) {
  .application-form .form-submit {
    margin-left: 39%
  }
}
@media (max-width:767.98px) {
  .application-form .form-submit {
    margin-left: 0;
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
  }
}
@media (max-width:374.98px) {
  .application-form .form-submit .icon {
    display: none
  }
}
.application-descr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex
}
.application-descr .dots {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  margin-right: 16px
}
.application-descr p {
  max-width: 334px;
  margin-top: -7px
}
.application-expert {
  position: relative;
  right: -32px;
  margin-top: 90px
}
.application-expert .photo {
  position: absolute;
  left: 90px;
  bottom: 0;
  z-index: 1;
  max-width: 100%;
  height: 340px
}
@media (max-width:1277.98px) {
  .application-expert .photo {
    left: 70px;
    max-width: 100%;
    height: 300px
  }
}
@media (max-width:767.98px) {
  .application-expert .photo {
    height: 240px
  }
}
.application-expert .figure {
  width: 100%;
  height: 248px;
  border-radius: 200px 0 0 200px;
  background-color: #becfd7
}
@media (max-width:1277.98px) {
  .application-expert .figure {
    height: 200px
  }
}
@media (max-width:991.98px) {
  .application-expert .figure {
    width: 100vw
  }
}@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: local("Open Sans"),url(/static/fonts/opensans-light.woff2) format("woff2")
}
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local("Open Sans"),url(/static/fonts/opensans-regular.woff2) format("woff2")
}
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: local("Open Sans"),url(/static/fonts/opensans-semibold.woff2) format("woff2")
}
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: local("Open Sans"),url(/static/fonts/opensans-bold.woff2) format("woff2")
}
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: local("Open Sans"),url(/static/fonts/opensans-extrabold.woff2) format("woff2")
}
::-webkit-input-placeholder {
  color: #76858c
}
::-moz-placeholder {
  color: #76858c
}
:-ms-input-placeholder {
  color: #76858c
}
::-ms-input-placeholder {
  color: #76858c
}
::placeholder {
  color: #76858c
}
::-moz-selection {
  background-color: #ff6c02;
  color: #fff
}
::selection {
  background-color: #ff6c02;
  color: #fff
}
input,
textarea {
  outline: 0
}
body {
  position: relative;
  overflow-x: hidden;
  min-width: 320px;
  color: #1e2021;
  font-family: "Open Sans",sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.65
}
body.disable-scroll {
  overflow: hidden
}
body.modal-open {
  padding-right: 17px
}
@media (max-width:991.98px) {
  body.modal-open {
    padding-right: 0
  }
}
body .filter-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 998;
  background-color: #25373f
}
body .filter-backdrop.fade {
  opacity: 0
}
body .filter-backdrop.show {
  opacity: .5
}
ul {
  list-style: none;
  margin: 0;
  padding: 0
}
a {
  color: #1e2021;
  -webkit-transition: .35s ease;
  -o-transition: .35s ease;
  transition: .35s ease
}
a:hover {
  color: #ff6c02;
  text-decoration: none
}
img {
  display: block;
  max-width: 100%;
  height: auto
}
p {
  margin-bottom: 16px
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0;
  color: #1e2021;
  line-height: 1.3
}
.icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  stroke-width: 0;
  stroke: currentColor;
  fill: currentColor
}
.mt-60 {
  margin-top: 60px
}
.mb-60 {
  margin-bottom: 60px
}
.mt-50 {
  margin-top: 50px
}
.mb-50 {
  margin-bottom: 50px
}
.mt-40 {
  margin-top: 40px
}
.mb-40 {
  margin-bottom: 40px
}
.mt-35 {
  margin-top: 35px
}
.mb-35 {
  margin-bottom: 35px
}
.mt-25 {
  margin-top: 25px
}
.mb-25 {
  margin-bottom: 25px
}
.mt-15 {
  margin-top: 15px
}
.mb-15 {
  margin-bottom: 15px
}
.mt-0 {
  margin-top: 0
}
.mb-0 {
  margin-bottom: 0
}
.text-uppercase {
  text-transform: uppercase
}
.text-left {
  text-align: left
}
.text-right {
  text-align: right
}
.text-xxs {
  font-size: 12px
}
.text-xs {
  font-size: 14px
}
.text-sm {
  font-size: 16px
}
.text-md {
  font-size: 18px
}
@media (max-width:575.98px) {
  .text-md {
    font-size: 16px
  }
}
.text-lg {
  font-size: 24px
}
@media (max-width:1277.98px) {
  .text-lg {
    font-size: 22px
  }
}
@media (max-width:767.98px) {
  .text-lg {
    font-size: 20px
  }
}
.text-xl {
  font-size: 32px
}
@media (max-width:1277.98px) {
  .text-xl {
    font-size: 28px
  }
}
@media (max-width:767.98px) {
  .text-xl {
    font-size: 24px
  }
}
.w-light {
  font-weight: 200
}
.w-regular {
  font-weight: 400
}
.w-semibold {
  font-weight: 600
}
.w-bold {
  font-weight: 700
}
.w-extrabold {
  font-weight: 900
}
.btn,
button {
  display: inline-block;
  vertical-align: middle;
  border: 0;
  border-radius: 24px;
  background-color: transparent;
  color: inherit;
  font-family: inherit;
  font-size: 14px;
  font-weight: 400;
  line-height: 40px;
  text-align: center;
  outline: 0!important;
  -webkit-transition: .35s ease;
  -o-transition: .35s ease;
  transition: .35s ease
}
.btn:hover,
button:hover {
  color: inherit
}
.btn {
  height: 40px;
  padding: 0 16px
}
.btn .icon {
  font-size: 16px
}
.btn-icon-left {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center
}
.btn-icon-left .icon {
  margin-right: 10px
}
.btn-icon-right {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center
}
.btn-icon-right .icon {
  margin-left: 10px
}
.btn-primary {
  background-color: #ff6c02;
  color: #fff
}
.btn-primary:hover {
  color: #fff;
  background-color: #25373f
}
.btn-dark {
  background-color: #25373f;
  color: #fff
}
.btn-dark:hover {
  background-color: #ff6c02;
  color: #fff
}
.btn-white {
  border: 1px solid #e0e6ec;
  background-color: #fff;
  color: #1e2021
}
.btn-white:hover {
  border-color: #ff6c02;
  background-color: #fff;
  color: #ff6c02
}
.btn-transparent {
  padding: 0;
  line-height: 1
}
.btn-icon-arrow {
  padding-right: 42px;
  background-image: url(/static/images/dest/icons/arrow.svg);
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px
}
.btn-catalog,
.btn-clear,
.btn-filter {
  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
}
.btn-catalog > span,
.btn-clear > span,
.btn-filter > span {
  font-weight: 600
}
.btn-more {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 0;
  padding-right: 0;
  -webkit-transition: none;
  -o-transition: none;
  transition: none
}
.btn-more > svg {
  vertical-align: baseline;
  fill: #25373f;
  -webkit-transition: fill .35s ease,-webkit-transform .25s ease;
  transition: fill .35s ease,-webkit-transform .25s ease;
  -o-transition: fill .35s ease,transform .25s ease;
  transition: fill .35s ease,transform .25s ease;
  transition: fill .35s ease,transform .25s ease,-webkit-transform .25s ease
}
.btn-more > span {
  display: inline-block;
  vertical-align: top;
  margin-left: 8px;
  -webkit-transition: .35s ease;
  -o-transition: .35s ease;
  transition: .35s ease
}
.btn-more:hover > svg {
  fill: #ff6c02
}
.btn-more:hover > span {
  color: #ff6c02
}
.card {
  position: relative;
  height: 100%
}
.card--advantages .card-photo {
  height: 245px
}
@media (max-width:767.98px) {
  .card--advantages .card-photo {
    height: 145px
  }
}
.card--advantages .card-meta .excerpt {
  margin-top: 25px
}
@media (max-width:1277.98px) {
  .card--advantages .card-meta .excerpt {
    margin-top: 16px
  }
}
.card--article {
  margin-bottom: 8px
}
.card--article .card-photo {
  height: 136px;
  margin-bottom: 0
}
@media (max-width:374.98px) {
  .card--article .card-photo {
    height: 120px
  }
}
.card--article .card-photo:hover ~ .card-meta .title > a {
  color: #ff6c02
}
.card--article .card-meta .title > a {
  padding-top: 16px
}
.card--article .card-meta .excerpt {
  margin-top: 8px;
  color: #76858c
}
.card--article-big .card-photo {
  height: 264px
}
@media (max-width:575.98px) {
  .card--article-big .card-photo {
    height: auto;
    min-height: 136px;
    max-height: 264px
  }
  .card--article-big .card-photo img {
    min-height: 136px;
    max-height: 264px
  }
}
.card--product {
  padding: 16px;
  border: 1px solid #eff3f6;
  -webkit-transition: border-color .3s ease;
  -o-transition: border-color .3s ease;
  transition: border-color .3s ease
}
.card--product:hover {
  border-color: #becfd7;
  z-index: 1
}
.card--product:hover .card-meta .title {
  color: #ff6c02
}
.card--product .card-photo {
  height: 194px;
  padding-top: 30px;
  margin-bottom: 10px
}
.card--product .card-photo img {
  -o-object-fit: scale-down;
  object-fit: scale-down
}
.card--product .card-meta .title {
  overflow: hidden;
  height: 32px;
  line-height: 1.4
}
.card--product .card-meta .excerpt::before {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  margin: 12px 0;
  background-color: #eff3f6
}
.card--file {
  padding: 16px;
  border: 1px solid #eff3f6
}
.card--file:hover .card-meta .title {
  color: #ff6c02
}
.card--pdf {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex
}
.card--pdf .card-photo {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 120px;
  height: 160px;
  margin-bottom: 0;
  background-color: #becfd7
}
@media (max-width:575.98px) {
  .card--pdf .card-photo {
    width: 90px;
    height: 120px
  }
}
.card--pdf .card-meta {
  margin-left: 16px
}
.card--pdf .card-meta .title {
  margin-bottom: 12px
}
.card--industry {
  margin-bottom: 16px;
  text-align: center
}
.card--industry:hover .card-photo::after {
  visibility: visible;
  opacity: 1
}
.card--industry:hover .card-photo-icon {
  color: #25373f
}
.card--industry:hover .card-meta .title {
  color: #ff6c02
}
.card--industry .card-photo {
  height: 192px;
  margin-bottom: 16px;
  border-radius: 96px
}
.card--industry .card-photo::after {
  content: '';
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ff6c02;
  opacity: 0;
  -webkit-transition: .3s ease;
  -o-transition: .3s ease;
  transition: .3s ease
}
.card--industry .card-photo-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  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;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #fff;
  color: #ff6c02;
  font-size: 24px;
  -webkit-transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
  -webkit-transition: color .3s ease;
  -o-transition: color .3s ease;
  transition: color .3s ease
}
.card-icon {
  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;
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
  border-radius: 50%;
  border: 1px solid #eff3f6;
  color: #ff6c02;
  font-size: 24px
}
.card-photo {
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  position: relative;
  width: 100%;
  margin-bottom: 25px;
  -webkit-transform: translate3d(0,0,0);
  transform: translate3d(0,0,0)
}
.card-photo.rounded-left img {
  border-radius: 200px 0 0 200px
}
.card-photo.rounded-right img {
  border-radius: 0 200px 200px 0
}
.card-photo img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover
}
.card-photo .dots {
  position: absolute
}
.card-meta .title {
  -webkit-transition: color .3s ease;
  -o-transition: color .3s ease;
  transition: color .3s ease
}
.card-meta .title > a {
  display: block
}
.card-meta .excerpt {
  margin-bottom: 0;
  word-wrap: break-word
}
.card-meta .date {
  margin-top: 16px;
  color: #76858c
}
.card-meta .badge {
  position: absolute;
  top: 16px;
  left: 16px;
  margin-right: 16px;
  padding: 8px 10px;
  border-radius: 16px;
  background-color: #eff3f6;
  line-height: 1.3
}
.card-link {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: block
}
.dots {
  display: block;
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-size: 100%
}
.dots--orange {
  background-image: url(/static/images/dest/icons/dots-orange.svg)
}
.dots--gray {
  background-image: url(/static/images/dest/icons/dots-gray.svg)
}
.dots-top-right {
  top: 0;
  right: 0
}
.dots-bottom-right {
  right: 0;
  bottom: 0
}
.dots-top-right {
  top: 0;
  right: 0
}
.dots-top-left {
  top: 0;
  left: 0
}
.form-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between
}
.form-group:not(:first-child) {
  margin-top: 24px
}
.form-group-error,
.form-group-note {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 70%;
  flex: 0 0 70%;
  max-width: 340px;
  margin: 16px 0 16px auto;
  font-size: 12px;
  line-height: 1.4
}
.form-group-error {
  margin-top: 6px;
  margin-bottom: 0;
  color: red
}
.form-group-error ~ .form-group-note {
  margin-top: 6px
}
.form-group .form-control,
.form-group .form-select,
.form-group .form-textarea {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 70%;
  flex: 0 0 70%;
  margin-bottom: 0
}
.form-group .form-label {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 30%;
  flex: 0 0 30%
}
@media (max-width:767.98px) {
  .form-group {
    -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
  }
  .form-group .form-label {
    padding-bottom: 8px
  }
}
.form-group-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap
}
.form-group-list:not(:last-child) {
  margin-bottom: 24px
}
.form-group-list > div {
  margin-top: 0;
  margin-right: 40px;
  margin-bottom: 16px
}
.form-group-list > div:not(:last-child) {
  margin-bottom: 16px
}
.form-group-list--vertical {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column
}
.form-group-list--vertical > div {
  margin-right: 0
}
.form-descr {
  color: #76858c
}
.form-link {
  margin-top: 16px
}
.form-link > a {
  color: #76858c;
  font-size: 12px
}
.form-link > a:hover {
  color: #ff6c02
}
.form-label {
  margin-bottom: 0;
  line-height: 1.35;
  cursor: pointer
}
.form-control,
.form-select,
.form-textarea {
  display: block;
  width: 100%;
  max-width: 340px;
  margin-bottom: 20px;
  color: #1e2021;
  font-family: "Open Sans",sans-serif;
  font-size: 14px;
  font-weight: 400;
  border-radius: 4px;
  border: 0;
  background-color: #fff;
  background-clip: padding-box;
  outline: 0;
  -webkit-transition: border-color .3s ease-in-out,-webkit-box-shadow .3s ease-in-out;
  transition: border-color .3s ease-in-out,-webkit-box-shadow .3s ease-in-out;
  -o-transition: border-color .3s ease-in-out,box-shadow .3s ease-in-out;
  transition: border-color .3s ease-in-out,box-shadow .3s ease-in-out;
  transition: border-color .3s ease-in-out,box-shadow .3s ease-in-out,-webkit-box-shadow .3s ease-in-out
}
.form-control,
.form-select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  height: 40px;
  padding: 0 16px;
  line-height: 40px
}
.form-select {
  padding-left: 16px;
  background-image: url(/static/images/dest/icons/arrow-down.svg);
  background-repeat: no-repeat;
  background-size: 16px;
  background-position: right 14px center;
  cursor: pointer
}
.form-textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  resize: none;
  padding: 8px 16px
}
.form-submit {
  margin-top: 40px
}
@media (max-width:991.98px) {
  .form-submit {
    margin-top: 32px
  }
}
@media (max-width:575.98px) {
  .form-submit {
    width: 100%
  }
}
.form-checkbox {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center
}
.form-checkbox:not(:last-child) {
  margin-bottom: 12px
}
.form-checkbox > [type=checkbox] {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  cursor: pointer;
  opacity: 0
}
.form-checkbox > [type=checkbox]:checked + label:before {
  background-color: #ff6c02;
  background-image: url(/static/images/dest/icons/check.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px;
  opacity: 1;
  -webkit-transition: background-color .25s ease,opacity .25s ease;
  -o-transition: background-color .25s ease,opacity .25s ease;
  transition: background-color .25s ease,opacity .25s ease
}
.form-checkbox > label {
  position: relative;
  display: inline-block;
  margin-bottom: 0;
  padding-left: 24px;
  color: #25373f;
  font-size: 14px;
  line-height: 1.45;
  word-break: break-word;
  cursor: pointer
}
.form-checkbox > label::before {
  content: '';
  position: absolute;
  top: 2px;
  left: 0;
  width: 16px;
  height: 16px;
  border-radius: 2px;
  background-color: #fff
}
.form-checkbox > label > a {
  position: relative;
  z-index: 2
}
.form-policy {
  margin-top: 20px
}
.form-policy label > a {
  color: #ff6c02
}
.form-policy label > a:hover {
  color: #25373f
}
.link-arrow::after {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 16px;
  height: 16px;
  background: url(/static/images/dest/icons/arrow-dark.svg) no-repeat center/cover;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg)
}
.responsive-table {
  overflow-x: auto;
  width: 100%;
  -webkit-overflow-scrolling: touch
}
@media (max-width:575.98px) {
  .responsive-table table th {
    min-width: 140px
  }
}
@media (max-width:575.98px) and (max-width:374.98px) {
  .responsive-table table th {
    min-width: 120px
  }
}
table {
  width: 100%;
  border-collapse: collapse
}
table th {
  color: #76858c;
  font-size: 12px;
  font-weight: 400
}
table td,
table th {
  vertical-align: top;
  padding: 8px 0
}
table td {
  border-bottom: 1px solid #eff3f6
}
table tr > td:not(:last-child),
table tr > th:not(:last-child) {
  padding-right: 24px
}
.modal {
  padding-right: 0!important
}
.modal.fade {
  -webkit-transition: .3s ease;
  -o-transition: .3s ease;
  transition: .3s ease
}
.modal.fade .modal-dialog {
  -webkit-transform: translateX(30px);
  -ms-transform: translateX(30px);
  transform: translateX(30px)
}
.modal.show .modal-dialog {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0)
}
.modal-backdrop {
  background-color: #25373f
}
.modal--error .modal-dialog,
.modal--success .modal-dialog {
  max-width: 320px;
  margin-right: auto;
  background-color: transparent
}
@media (max-width:374.98px) {
  .modal--error .modal-dialog,
  .modal--success .modal-dialog {
    max-width: 280px
  }
}
.modal--error .modal-content,
.modal--success .modal-content {
  height: auto;
  border-radius: 16px;
  -webkit-box-shadow: 0 10px 28px rgba(176,190,197,.82),0 4px 6px rgba(176,190,197,.32);
  box-shadow: 0 10px 28px rgba(176,190,197,.82),0 4px 6px rgba(176,190,197,.32);
  background-color: #eff3f6
}
.modal--error .modal-header,
.modal--success .modal-header {
  position: static;
  height: 52px;
  border-bottom: 0
}
.modal--error .modal-body,
.modal--success .modal-body {
  text-align: center;
  margin-top: 0;
  padding: 0 24px 32px
}
.modal--error .modal-body svg,
.modal--success .modal-body svg {
  width: 100px;
  height: 100px
}
@media (max-width:767.98px) {
  .modal--error .modal-body svg,
  .modal--success .modal-body svg {
    width: 75px;
    height: 75px
  }
}
.modal--error .modal-body .title,
.modal--success .modal-body .title {
  margin-top: 10px
}
.modal--error .modal-body .descr,
.modal--success .modal-body .descr {
  margin-top: 10px
}
.modal--error .modal-body p,
.modal--error .modal-body span,
.modal--success .modal-body p,
.modal--success .modal-body span {
  display: block;
  margin-bottom: 0;
  line-height: 1.4
}
.modal--profile .modal-header .nav-tabs .nav-item {
  margin: 0
}
.modal--profile .modal-header .nav-tabs .nav-item:not(:last-child) {
  margin-right: 32px
}
.modal--profile .modal-header .nav-tabs .nav-link {
  position: relative;
  padding-bottom: 0;
  line-height: 47px;
  border-bottom: 0
}
.modal--profile .modal-header .nav-tabs .nav-link::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 1px;
  background-color: transparent;
  opacity: 0;
  -webkit-transition: .3s ease;
  -o-transition: .3s ease;
  transition: .3s ease
}
.modal--profile .modal-header .nav-tabs .nav-link:hover::after {
  opacity: 1;
  background-color: #beceda
}
.modal--profile .modal-header .nav-tabs .nav-item.show .nav-link::after,
.modal--profile .modal-header .nav-tabs .nav-link.active::after {
  background-color: #ff6c02;
  opacity: 1
}
.modal--profile .modal-body .form-submit {
  margin-top: 24px
}
.modal-dialog {
  max-width: 360px;
  height: 100%;
  margin: 0;
  margin-left: auto;
  background-color: #eff3f6
}
@media (max-width:575.98px) {
  .modal-dialog {
    max-width: 320px
  }
}
@media (max-width:374.98px) {
  .modal-dialog {
    max-width: 100%
  }
}
.modal-content {
  height: 100%;
  border: 0;
  background-color: transparent
}
.modal-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 48px;
  padding: 0 24px;
  border-bottom: 1px solid #dde5e9
}
@media (max-width:575.98px) {
  .modal-header {
    padding: 0 16px
  }
}
.modal-header .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  line-height: 1
}
.modal-header .title .icon {
  margin-right: 8px
}
.modal-header .title > span {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase
}
.modal-header .close {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  cursor: pointer
}
.modal-header .close > svg {
  fill: #25373f;
  -webkit-transition: fill .3s ease;
  -o-transition: fill .3s ease;
  transition: fill .3s ease
}
.modal-header .close:hover > svg {
  fill: #ff6c02
}
.modal-body {
  overflow-y: auto;
  height: 100%;
  margin-top: 48px;
  padding: 24px
}
@media (max-width:575.98px) {
  .modal-body {
    padding: 16px
  }
}
.modal-body .form-group {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column
}
.modal-body .form-label {
  margin-bottom: 8px
}
.modal-body .form-control {
  margin-left: 0
}
.modal-body .form-submit {
  margin-top: 32px
}
.header {
  position: relative;
  background-color: #fff
}
.header-top {
  padding: 8px 0;
  background: #eff3f6
}
.header-top .links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end
}
.header-top .links > li {
  line-height: 16px
}
.header-top .links > li:not(:first-child) {
  margin-left: 27px
}
.header-top .links > li > a {
  color: #1e2021;
  font-size: 12px
}
.header-top .links > li > a:hover {
  color: #ff6c02
}
.header-middle {
  position: relative;
  z-index: 10;
  padding: 30px 0 25px;
  border-bottom: 1px solid #eff3f6;
  background-color: #fff
}
@media (max-width:767.98px) {
  .header-middle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 60px;
    padding: 0
  }
}
.header-middle > .container {
  position: relative
}
.header-middle > .container [class*=col] {
  position: static
}
.header-middle .logo {
  display: block;
  max-width: 262px;
  height: auto
}
@media (max-width:767.98px) {
  .header-middle .logo {
    height: 24px
  }
}
.header-middle .search-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-left: 10px;
  margin-right: 50px
}
@media (max-width:1277.98px) {
  .header-middle .search-form {
    margin: 0
  }
}
@media (max-width:767.98px) {
  .header-middle .search-form {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: .2s ease;
    -o-transition: .2s ease;
    transition: .2s ease
  }
  .header-middle .search-form.is-active {
    visibility: visible;
    opacity: 1
  }
}
.header-middle .search-form-input {
  max-width: 100%;
  margin-bottom: 0;
  border-radius: 24px;
  border: 1px solid #becfd7
}
@media (max-width:767.98px) {
  .header-middle .search-form-input {
    height: 60px;
    padding-left: 48px;
    padding-right: 52px;
    border-radius: 0;
    border: none;
    line-height: 60px
  }
}
.header-middle .search-form-btn {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  margin-left: 24px;
  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
}
.header-middle .search-form-btn > svg {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 16px;
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
  fill: #fff
}
@media (max-width:991.98px) {
  .header-middle .search-form-btn {
    margin-left: 16px
  }
}
@media (max-width:767.98px) {
  .header-middle .search-form-btn {
    position: absolute;
    left: 0;
    width: 16px;
    padding-left: 0;
    padding-right: 0;
    background-color: transparent
  }
  .header-middle .search-form-btn > svg {
    fill: #25373f
  }
}
.header-middle .search-form-close {
  position: absolute;
  right: 22px;
  cursor: pointer
}
.header-middle .search-form-close > svg {
  fill: #25373f
}
.header-middle .mobile-action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-bottom: 4px
}
.header-middle .mobile-action .burger,
.header-middle .mobile-action .search {
  margin-left: 16px
}
.header-middle .mobile-action .burger-btn,
.header-middle .mobile-action .search-btn {
  padding: 2px
}
.header-middle .mobile-action .burger-btn > svg,
.header-middle .mobile-action .search-btn > svg {
  fill: #25373f
}
.header-middle .phone {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column
}
@media (max-width:991.98px) {
  .header-middle .phone {
    display: none
  }
}
.header-middle .phone-link {
  margin-bottom: 6px;
  padding-left: 24px;
  background-image: url(/static/images/dest/icons/phone.svg);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 16px;
  color: #1e2021;
  font-size: 18px;
  line-height: 1
}
.header-middle .phone-link:hover {
  color: #ff6c02
}
.header-middle .phone-descr {
  padding-left: 24px;
  color: #76858c;
  line-height: 1
}
.header-middle .contacts {
  margin-left: 36px
}
@media (max-width:991.98px) {
  .header-middle .contacts {
    margin-left: 0
  }
}
.header-middle .contacts-link {
  color: #1e2021;
  font-size: 18px;
  line-height: 1
}
.header-middle .contacts-link:hover {
  color: #ff6c02
}
.header-bottom {
  padding: 16px 0;
  background-color: #fff
}
.header-bottom .header-menu:not(.--jsfied) {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: none;
  scrollbar-width: none
}
.header-bottom .header-menu:not(.--jsfied)::-webkit-scrollbar {
  display: none
}
.header-bottom .header-menu .--hidden {
  display: none
}
.header-bottom .header-menu a:not(.btn-catalog),
.header-bottom .header-menu button {
  background-color: transparent;
  color: #1e2021;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center
}
.header-bottom .header-menu-primary {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-right: 114px;
  padding-right: 32px
}
@media (max-width:991.98px) {
  .header-bottom .header-menu-primary {
    margin-right: 100px;
    padding-right: 40px
  }
}
.header-bottom .header-menu-primary > li:first-child {
  max-width: 114px;
  margin-right: 16px
}
@media (max-width:991.98px) {
  .header-bottom .header-menu-primary > li:first-child {
    margin-right: 0
  }
}
.header-bottom .header-menu-primary > li > a:not(.btn-catalog) {
  padding: 0 9px;
  white-space: nowrap
}
.header-bottom .header-menu-primary > li > a:not(.btn-catalog):active,
.header-bottom .header-menu-primary > li > a:not(.btn-catalog):hover {
  color: #ff6c02
}
.header-bottom .header-menu-primary > li.more {
  position: absolute;
  left: 100%;
  white-space: nowrap
}
@media (max-width:991.98px) {
  .header-bottom .header-menu-primary > li.more {
    margin-left: -12px
  }
}
.header-bottom .header-menu-primary > li.more > li {
  white-space: normal
}
.header-bottom .header-menu.--show-secondary .header-menu-primary .more .btn-more > svg {
  fill: #ff6c02;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg)
}
.header-bottom .header-menu.--show-secondary .header-menu-primary .more .btn-more > span {
  color: #ff6c02
}
.header-bottom .header-menu .-secondary {
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 19;
  display: none;
  max-width: 100%;
  min-width: 230px;
  margin-top: 12px;
  padding: 15px 20px;
  background-color: #fff;
  -webkit-box-shadow: 0 0 10px rgba(37,55,63,.1);
  box-shadow: 0 0 10px rgba(37,55,63,.1);
  -webkit-animation: nav-secondary .2s;
  animation: nav-secondary .2s
}
.header-bottom .header-menu .-secondary > li {
  white-space: normal
}
.header-bottom .header-menu .-secondary > li:not(:last-child) {
  margin-bottom: 20px
}
.header-bottom .header-menu .-secondary > li > a {
  display: block;
  text-align: left
}
.header-bottom .header-menu .-secondary > li > a:active,
.header-bottom .header-menu .-secondary > li > a:hover {
  color: #ff6c02
}
.header-bottom .header-menu.--show-secondary .-secondary {
  display: block
}
@-webkit-keyframes nav-secondary {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-1em);
    transform: translateY(-1em)
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0)
  }
}
@keyframes nav-secondary {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-1em);
    transform: translateY(-1em)
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0)
  }
}
.header-search {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 9;
  margin-top: -72px;
  padding-bottom: 80px;
  -webkit-box-shadow: 0 0 30px rgba(37,55,63,.2);
  box-shadow: 0 0 30px rgba(37,55,63,.2);
  background-color: #fff;
  visibility: hidden;
  opacity: 0;
  -webkit-transform: translateY(-20px);
  -ms-transform: translateY(-20px);
  transform: translateY(-20px);
  -webkit-transition: .2s ease;
  -o-transition: .2s ease;
  transition: .2s ease
}
@media (max-width:767.98px) {
  .header-search {
    height: 100vh;
    max-height: 400px;
    margin-top: -60px;
    padding-bottom: 20px
  }
  .header-search::after {
    content: '';
    position: absolute;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: none;
    left: 0;
    right: 0;
    z-index: 10;
    bottom: 20px;
    height: 20px;
    background-image: -webkit-gradient(linear,left bottom,left top,from(white),to(rgba(255,255,255,.25)));
    background-image: -o-linear-gradient(bottom,#fff 0,rgba(255,255,255,.25) 100%);
    background-image: linear-gradient(to top,#fff 0,rgba(255,255,255,.25) 100%)
  }
}
.header-search.is-active {
  visibility: visible;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  opacity: 1
}
.header-search-inner {
  position: relative;
  z-index: 9
}
@media (max-width:767.98px) {
  .header-search-inner {
    overflow-y: scroll;
    height: 100%;
    padding-top: 60px;
    padding-bottom: 20px
  }
}
.header-search-title {
  margin-top: 24px;
  margin-bottom: 16px;
  font-size: 12px;
  color: #76858c
}
.header-search-list--bolder > li > a {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase
}
.header-search-list > li:not(:last-child) {
  margin-bottom: 16px
}
@media (max-width:767.98px) {
  .header-search-list > li:not(:last-child) {
    margin-bottom: 8px
  }
}
.header-search-list > li > a {
  display: inline-block;
  color: #1e2021;
  font-size: 14px
}
.header-search-list > li > a:hover {
  color: #ff6c02
}
.header-search-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 8;
  height: 100vh;
  background-color: transparent
}
.footer {
  margin-top: 120px;
  background: #eff3f6
}
@media (max-width:1277.98px) {
  .footer {
    margin-top: 80px
  }
}
@media (max-width:767.98px) {
  .footer {
    margin-top: 60px
  }
}
.footer-wrapper {
  padding-top: 30px;
  padding-bottom: 40px
}
.footer-logo > a {
  display: inline-block
}
.footer-logo img {
  max-width: 206px
}
.footer-contacts {
  margin-top: 30px
}
.footer-contacts .phone {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-bottom: 20px;
  padding-left: 24px;
  background-image: url(/static/images/dest/icons/phone.svg);
  background-repeat: no-repeat;
  background-position: left 4px;
  background-size: 16px;
  line-height: 1
}
@media (max-width:767.98px) {
  .footer-contacts .phone {
    background-position-y: 0
  }
}
@media (max-width:575.98px) {
  .footer-contacts .phone {
    padding-top: 26px;
    padding-left: 0;
    background-position-y: 0
  }
}
.footer-contacts .phone-link {
  margin-bottom: 6px;
  color: #1e2021;
  font-size: 24px
}
@media (max-width:767.98px) {
  .footer-contacts .phone-link {
    font-size: 18px
  }
}
@media (max-width:575.98px) {
  .footer-contacts .phone-link {
    font-size: 14px
  }
}
.footer-contacts .phone-link:hover {
  color: #ff6c02
}
.footer-contacts .email {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-bottom: 20px;
  padding-left: 24px;
  background-image: url(/static/images/dest/icons/mail.svg);
  background-repeat: no-repeat;
  background-position: left 3px;
  background-size: 16px;
  line-height: 1
}
@media (max-width:575.98px) {
  .footer-contacts .email {
    padding-top: 24px;
    padding-left: 0;
    background-position-y: 0
  }
}
.footer-contacts .email-link {
  color: #1e2021;
  font-size: 18px
}
@media (max-width:575.98px) {
  .footer-contacts .email-link {
    font-size: 14px
  }
}
.footer-contacts .email-link:hover {
  color: #ff6c02
}
.footer-contacts .adress {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-bottom: 20px;
  line-height: 24px
}
.footer-contacts .adress-title {
  padding-left: 24px;
  color: #76858c;
  font-size: 14px
}
@media (max-width:575.98px) {
  .footer-contacts .adress-title {
    padding-top: 24px;
    padding-left: 0;
    background-image: url(/static/images/dest/icons/place.svg);
    background-repeat: no-repeat;
    background-position: left 0;
    background-size: 16px
  }
}
.footer-contacts .adress-location {
  padding-left: 24px;
  color: #1e2021;
  font-size: 14px;
  background-image: url(/static/images/dest/icons/place.svg);
  background-repeat: no-repeat;
  background-position: left 3px;
  background-size: 16px
}
@media (max-width:575.98px) {
  .footer-contacts .adress-location {
    padding-left: 0;
    background: 0 0
  }
}
.footer-contacts .navigation > li {
  margin-bottom: 8px
}
.footer-contacts .navigation > li > a {
  color: #1e2021;
  font-size: 14px;
  font-weight: 400
}
.footer-contacts .navigation > li > a:hover {
  color: #ff6c02
}
.footer-contacts .social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center
}
@media (max-width:991.98px) {
  .footer-contacts .social {
    margin-top: 30px
  }
}
@media (max-width:767.98px) {
  .footer-contacts .social {
    margin-top: 16px
  }
}
.footer-contacts .social > a {
  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;
  width: 32px;
  height: 32px;
  margin-bottom: 12px;
  border-radius: 50%;
  background-color: #25373f;
  color: #fff;
  font-size: 16px
}
.footer-contacts .social > a:not(:last-child) {
  margin-right: 12px
}
.footer-contacts .social > a:hover {
  background-color: #ff6c02
}
.footer-copyright {
  padding: 12px 0;
  border-top: 1px solid #fff
}
.footer-copyright p,
.footer-copyright span {
  color: #25373f
}
.section {
  padding-top: 120px
}
@media (max-width:1277.98px) {
  .section {
    padding-top: 80px
  }
}
@media (max-width:767.98px) {
  .section {
    padding-top: 60px
  }
}
.section-inner {
  margin-top: 120px
}
@media (max-width:1277.98px) {
  .section-inner {
    margin-top: 80px
  }
}
@media (max-width:767.98px) {
  .section-inner {
    margin-top: 60px
  }
}
.section-gray {
  background-color: #eff3f6
}
.section-title {
  margin-bottom: 40px;
  font-size: 32px;
  line-height: 40px;
  font-weight: 700;
  letter-spacing: -1px
}
@media (max-width:1277.98px) {
  .section-title {
    font-size: 28px;
    line-height: 36px
  }
}
@media (max-width:767.98px) {
  .section-title {
    margin-bottom: 24px;
    font-size: 24px;
    line-height: 32px
  }
}
.m-menu {
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  height: 100%;
  opacity: 0;
  -webkit-transition: .2s ease;
  -o-transition: .2s ease;
  transition: .2s ease
}
.m-menu.is-active {
  visibility: visible;
  opacity: 1
}
.m-menu-wrapper {
  overflow-y: scroll;
  position: relative;
  z-index: 1;
  height: 100%;
  background-color: #fff
}
.m-menu-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
  background-color: #fff;
  border-bottom: 1px solid #eff3f6
}
.m-menu-header > .container {
  height: 60px
}
.m-menu-header .title {
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase
}
.m-menu-header .close {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  padding-right: 2px;
  cursor: pointer
}
.m-menu-header .close > svg {
  fill: #25373f
}
.m-menu-main {
  margin-top: 64px;
  padding: 24px 0 42px
}
.m-menu-catalog .btn-catalog {
  width: 100%
}
.m-menu-nav {
  margin-top: 24px
}
.m-menu-nav-list > li {
  padding-right: 2px;
  display: block
}
.m-menu-nav-list > li:not(:first-child) {
  margin-top: 16px
}
.m-menu-nav-list > li > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  color: #1e2021;
  font-weight: 600
}
.m-menu-nav-list > li > a:hover {
  color: #ff6c02
}
.m-menu-info {
  margin-top: 24px;
  border-top: 1px solid #eff3f6
}
.m-menu-info .phone {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 16px
}
.m-menu-info .phone-link {
  margin-bottom: 6px;
  padding-left: 24px;
  background-image: url(/static/images/dest/icons/phone.svg);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 16px;
  color: #1e2021;
  font-size: 18px;
  line-height: 1
}
.m-menu-info .phone-link:hover {
  color: #ff6c02
}
.m-menu-info .phone-descr {
  padding-left: 24px;
  color: #76858c;
  line-height: 1
}
.m-menu-info .contacts {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #eff3f6
}
.m-menu-info .contacts-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-right: 2px;
  color: #1e2021;
  font-size: 18px
}
.m-menu-info .contacts-link:hover {
  color: #ff6c02
}
.m-menu-links {
  margin-top: 16px;
  padding-top: 24px;
  border-top: 1px solid #eff3f6
}
.m-menu-links .links > li:not(:first-child) {
  margin-top: 24px
}
.m-menu-links .links > li > a {
  color: #1e2021
}
.m-menu-links .links > li > a:hover {
  color: #ff6c02
}
img.lazy {
  position: relative;
  border: 0;
  opacity: 0
}
img.lazy:not([src]) {
  visibility: hidden
}
img.lazy:not(.initial) {
  -webkit-transition: opacity .75s ease .2s;
  -o-transition: opacity .75s ease .2s;
  transition: opacity .75s ease .2s
}
img.error,
img.initial,
img.loaded {
  opacity: 1
}