@charset "UTF-8";
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

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

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden],
template {
  display: none;
}

a {
  background-color: transparent;
}

a:active,
a:hover {
  outline: 0;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b,
strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

mark {
  background: #ff0;
  color: #000;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

img {
  border: 0;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  margin: 1em 40px;
}

hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  height: 0;
}

pre {
  overflow: auto;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
  /* 3 */
}

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
  /* 3 */
}

button[disabled],
html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input {
  line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

input[type="search"] {
  -webkit-appearance: textfield;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: bold;
}

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

td,
th {
  padding: 0;
}

/*
==========================================*/
:root {
  --animate-duration: 1s;
  --animate-delay: 1s;
  --animate-repeat: 1;
}

.animate__animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-duration: var(--animate-duration);
  animation-duration: var(--animate-duration);
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animate__animated.animate__infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.animate__animated.animate__delay-05s {
  -webkit-animation-delay: calc(1s * 0.5);
  animation-delay: calc(1s * 0.5);
  -webkit-animation-delay: calc(var(--animate-delay) * 0.5);
  animation-delay: calc(var(--animate-delay) * 0.5);
}

.animate__animated.animate__delay-1s {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
  -webkit-animation-delay: var(--animate-delay);
  animation-delay: var(--animate-delay);
}

.animate__animated.animate__delay-2s {
  -webkit-animation-delay: calc(1s * 2);
  animation-delay: calc(1s * 2);
  -webkit-animation-delay: calc(var(--animate-delay) * 2);
  animation-delay: calc(var(--animate-delay) * 2);
}

.animate__animated.animate__delay-3s {
  -webkit-animation-delay: calc(1s * 3);
  animation-delay: calc(1s * 3);
  -webkit-animation-delay: calc(var(--animate-delay) * 3);
  animation-delay: calc(var(--animate-delay) * 3);
}

.animate__animated.animate__delay-4s {
  -webkit-animation-delay: calc(1s * 4);
  animation-delay: calc(1s * 4);
  -webkit-animation-delay: calc(var(--animate-delay) * 4);
  animation-delay: calc(var(--animate-delay) * 4);
}

.animate__animated.animate__delay-5s {
  -webkit-animation-delay: calc(1s * 5);
  animation-delay: calc(1s * 5);
  -webkit-animation-delay: calc(var(--animate-delay) * 5);
  animation-delay: calc(var(--animate-delay) * 5);
}

.animate__animated.animate__faster {
  -webkit-animation-duration: calc(1s / 2);
  animation-duration: calc(1s / 2);
  -webkit-animation-duration: calc(var(--animate-duration) / 2);
  animation-duration: calc(var(--animate-duration) / 2);
}

.animate__animated.animate__fast {
  -webkit-animation-duration: calc(1s * 0.8);
  animation-duration: calc(1s * 0.8);
  -webkit-animation-duration: calc(var(--animate-duration) * 0.8);
  animation-duration: calc(var(--animate-duration) * 0.8);
}

.animate__animated.animate__slow {
  -webkit-animation-duration: calc(1s * 2);
  animation-duration: calc(1s * 2);
  -webkit-animation-duration: calc(var(--animate-duration) * 2);
  animation-duration: calc(var(--animate-duration) * 2);
}

.animate__animated.animate__slower {
  -webkit-animation-duration: calc(1s * 3);
  animation-duration: calc(1s * 3);
  -webkit-animation-duration: calc(var(--animate-duration) * 3);
  animation-duration: calc(var(--animate-duration) * 3);
}

@media print, (prefers-reduced-motion: reduce) {
  .animate__animated {
    -webkit-animation-duration: 1ms !important;
    animation-duration: 1ms !important;
    -webkit-transition-duration: 1ms !important;
    -o-transition-duration: 1ms !important;
       transition-duration: 1ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
  }
  .animate__animated[class*='Out'] {
    opacity: 0;
  }
}

/* Fading entrances  */
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.animate__fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.animate__fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.animate__fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.animate__fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.animate__fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.animate__fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.animate__fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.animate__fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.animate__fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeInUpSmall {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 20%, 0);
    transform: translate3d(0, 20%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInUpSmall {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 20%, 0);
    transform: translate3d(0, 20%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.animate__fadeInUpSmall {
  -webkit-animation-name: fadeInUpSmall;
  animation-name: fadeInUpSmall;
}

@-webkit-keyframes inUp {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, -2px 0);
    transform: translate3d(0, -2px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes inUp {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, -2px 0);
    transform: translate3d(0, -2px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@-webkit-keyframes fadeInTopLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInTopLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.animate__fadeInTopLeft {
  -webkit-animation-name: fadeInTopLeft;
  animation-name: fadeInTopLeft;
}

@-webkit-keyframes fadeInTopRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInTopRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.animate__fadeInTopRight {
  -webkit-animation-name: fadeInTopRight;
  animation-name: fadeInTopRight;
}

@-webkit-keyframes fadeInBottomLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInBottomLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.animate__fadeInBottomLeft {
  -webkit-animation-name: fadeInBottomLeft;
  animation-name: fadeInBottomLeft;
}

@-webkit-keyframes fadeInBottomRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInBottomRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.animate__fadeInBottomRight {
  -webkit-animation-name: fadeInBottomRight;
  animation-name: fadeInBottomRight;
}

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

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

.fadeOut {
  -webkit-animation-name: fadeOut !important;
          animation-name: fadeOut !important;
}

html,
body {
  height: 100%;
}

body {
  font: 14px Rubik;
  line-height: 1.4;
  overflow-anchor: none;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth; 
}

@media (min-width: 768px) {
  body {
    font-size: 15px;
  }
}

@media (min-width: 1024px) {
  body {
    font-size: 14px;
  }
}

.clr {
  clear: both;
}

.hidden {
  display: none !important;
}

.wrap {
  width: 1000px;
  margin: 0 auto;
  position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 900;
  font-family: Montserrat;
}

h1,
.h1 {
  font-size: 24px;
}

@media (min-width: 1024px) {
  h1,
  .h1 {
    font-size: 32px;
  }
}

@media (min-width: 1200px) {
  h1,
  .h1 {
    font-size: 40px;
    line-height: 50px;
  }
}

h2,
.h2 {
  font-size: 32px;
}

h3,
.h3 {
  font-size: 28px;
  font-weight: normal;
}

h4,
.h4 {
  font-size: 24px;
}

h5,
.h5 {
  font-size: 20px;
}

h6,
.h6 {
  font-size: 18px;
}

/*
==================================*/
a {
  color: #FF5700;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
  color: #E14D00;
}

a[href^="http://"],
a[href^="https://"] {
  text-decoration: underline;
}

a[href^="http://"]:hover,
a[href^="https://"]:hover {
  color: #E14D00;
  text-decoration: underline;
}

img {
  max-width: 100%;
}

/*
==================================*/
.link-gray {
  color: #7D7D7D;
}

.link {
  color: #fff;
}

/*
==================================*/
.container {
  max-width: calc(100% - 10px);
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 1200px) {
  .container {
    max-width: 1600px;
  }
}

@media (max-width: 767px) {
  .w-mobile-100 {
    width: 100%;
  }
}

/*
==================================*/
.max-650 {
  width: 100%;
  max-width: 650px;
}

/*
==================================*/
.opacity-0 {
  opacity: 0;
}

.top-menu {
  padding: 0;
  margin: 0;
  list-style: none;
}

.top-menu a {
  color: #fff;
  display: block;
  padding: 0 10px;
  font-size: 12px;
  -webkit-transition: color .3s;
  -o-transition: color .3s;
  transition: color .3s;
}

.top-menu a svg {
  fill: #FF5700;
  width: 10px;
  height: 10px;
  position: relative;
  top: -1px;
  margin-left: 5px;
}

.top-menu a:hover {
  color: #FF5700;
}

.header-dark .top-menu a {
  color: #0C0C0C;
}

.header-dark .top-menu a:hover {
  color: #FF5700;
}

/*
=========================================*/
.navigation {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  height: 100vh;
  overflow-y: auto;
  width: 100vw;
  -webkit-transform: translateX(140%);
      -ms-transform: translateX(140%);
          transform: translateX(140%);
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  -o-transition: transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
  font-size: 14px;
  padding-top: 48px;
  z-index: 5;
}

@media (min-width: 1024px) {
  .navigation {
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
    position: relative;
    height: auto;
    background-color: transparent;
    overflow: visible;
    padding-top: 0;
  }
}

.navigation-header {
  text-align: center;
  padding: 5px 40px;
  font-size: 14px;
  font-weight: 500;
  font-family: Montserrat;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #0C0C0C;
}

@media (min-width: 1024px) {
  .navigation-header {
    display: none;
    position: relative;
  }
}

.navigation-header button {
  position: absolute;
  width: 15px;
  height: 15px;
}

.navigation-header button svg {
  width: 100%;
  height: 100%;
  fill: #FF5700;
}

.navigation-header .btn-right {
  right: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media (min-width: 1200px) {
  .navigation-header .btn-right {
    right: 15px;
  }
}

.navigation-bottom {
  padding: 15px;
  font-size: 12px;
  border-top: 1px solid #E8E8E8;
  /*padding-bottom: 70px;*/
  position: relative;
  background-color: #fff;
  z-index: 3;
  margin-top: 30px;
}

.navigation-bottom p{
  color: #FF5700;
}

.navigation .btn-nav {
  display: block;
  font-size: 14px;
  white-space: nowrap;
  width: 70px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: right;
}

.navigation .btn-nav span {
  width: 10.5px;
  margin: 2px 0;
}

.navigation .btn-nav span:nth-child(2) {
  width: 7.5px;
}

.navigation .btn-nav em {
  font-style: normal;
  display: block;
  margin-left: 5px;
}

/*
===================================*/
.btn-nav {
  top: 2px;
  right: 0;
  padding: 2px 7px;
  font-size: 0;
  position: relative;
  clear: both;
  outline: none;
  border: none;
  background: transparent;
}

@media (min-width: 1024px) {
  .btn-nav {
    padding-right: 0;
    display: none;
  }
}

.btn-nav span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px 0;
  background: #FF5700;
  -webkit-border-radius: 1px;
          border-radius: 1px;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

.btn-nav span:nth-child(2) {
  width: 16px;
}

.btn-nav:hover, .btn-nav:active, .btn-nav:focus {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

@media (max-width: 991px) {
  .button-nav-fix .btn-nav,
  .no-first .btn-nav {
    width: 48px;
    height: 48px;
    top: 0;
    right: 0;
    padding: 12px;
    position: fixed;
    z-index: 9;
    background-color: #fff;
    -webkit-border-radius: 8px 0 0 8px;
            border-radius: 8px 0 0 8px;
  }
}

@media (max-width: 991px) {
  .open-nav .btn-nav {
    opacity: 0;
    display: none;
  }
}

/*
===================================*/
.nav-outer {
  height: calc(100vh - 49px);
  overflow: auto;
  padding-bottom: 100px;
}

@media (min-width: 1024px) {
  .nav-outer {
    height: auto;
    overflow: visible;
    padding-bottom: 0;
  }
}

/*
===================================*/
.menu {
  list-style: none;
  padding: 0;
  margin: 0;
  line-height: 1.1;
}

@media (min-width: 1024px) {
  .menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
  }
}

.menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}

@media (min-width: 1024px) {
  .menu ul {
    display: none;
  }
}

.menu li {
  position: relative;
}

.menu a {
  color: #0C0C0C;
  display: block;
  padding: 14px 20px 14px 45px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  border-top: 1px solid #E8E8E8;
  position: relative;
  -webkit-transition: color .3s;
  -o-transition: color .3s;
  transition: color .3s;
}

@media (min-width: 1024px) {
  .menu a {
    color: #fff;
    border: none;
    padding: 5px 15px;
  }
}

.menu a:hover {
  color: #FF5700;
  text-decoration: none;
}

.menu a:active, .menu a:focus {
  outline: none;
}

.menu a > svg {
  position: absolute;
  left: 15px;
  top: 50%;
  margin-top: -7px;
  width: 16px;
  height: 16px;
}

@media (min-width: 1024px) {
  .menu a > svg {
    display: none;
    left: 15px;
  }
}

@media (min-width: 1200px) {
  .menu a > svg {
    left: 0;
  }
}

.menu .menu-external-link a > svg {
  position: relative;
  display: inline-block;
  margin-left: 7px;
  margin-top: 0;
  fill: #FF5700;
  width: 10px;
  height: 10px;
}

.menu .parent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}

.menu .parent > ul {
  display: none;
}

@media (min-width: 1024px) {
  .menu .parent > ul {
    position: absolute;
    top: 100%;
    left: -5px;
    background: #FFFFFF;
    -webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.25);
            box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.25);
    -webkit-border-radius: 4px;
            border-radius: 4px;
    width: 200px;
    overflow: hidden;
  }
}

.menu .parent > ul a {
  padding-left: 43px;
  border: none;
}

@media (min-width: 1024px) {
  .menu .parent > ul a {
    padding: 10px 20px;
    color: #0C0C0C;
  }
  .menu .parent > ul a:hover {
    background-color: #F4F4F4;
  }
}

.menu .parent.open > ul {
  display: block;
}

.menu > li > a {
  white-space: nowrap;
}

.menu > li:first-child > a {
  padding-left: 45px;
}

@media (min-width: 1024px) {
  .menu > li:first-child > a {
    padding-left: 40px;
  }
}

@media (min-width: 1200px) {
  .menu > li:first-child > a {
    padding-left: 25px;
  }
}

.menu > li:first-child > a > svg {
  display: block;
}

.menu .submenu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background-color: #fff;
  -webkit-transform: translateX(140%);
      -ms-transform: translateX(140%);
          transform: translateX(140%);
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  -o-transition: transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
  z-index: 4;
  padding-top: 48px;
}

@media (min-width: 1024px) {
  .menu .submenu {
    height: auto;
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
    position: absolute;
    width: 200px;
    padding-top: 0;
  }
}

.menu .submenu > ul {
  overflow: auto;
  height: 100%;
}

@media (min-width: 1024px) {
  .menu .submenu > ul {
    height: auto;
  }
}

.menu .submenu a svg {
  display: block;
}

.menu .open > .submenu {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}

/*
====================================*/
@media (min-width: 1024px) {
  .navigation .menu-2 {
    display: none;
  }
}

@media (min-width: 1440px) {
  .navigation .menu-2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
  }
}

@media (min-width: 1024px) {
  .navigation .menu-2 > li:first-child > a {
    padding-left: 0;
  }
  .navigation .menu-2 > li:first-child > a > svg {
    display: none;
  }
}

/*
=========================================*/
.navigation-second {
  display: none;
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  -o-transition: transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
  will-change: transform;
  overflow: hidden;
  z-index: 99;
}

@media (min-width: 1024px) {
  .navigation-second {
    position: fixed;
    top: 85px;
    left: 0;
    right: 0;
    background-color: #fff;
    height: 100vh;
    width: 100vw;
    overflow: auto;
    -webkit-transform: translateX(140%);
        -ms-transform: translateX(140%);
            transform: translateX(140%);
    z-index: 99;
    display: block;
  }
  .navigation-second .navigation-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
  }
}

@media (min-width: 1200px) {
  .navigation-second {
    top: 102px;
  }
}

@media (min-width: 1440px) {
  .navigation-second {
    display: none;
  }
}

.navigation-second .menu-2 {
  display: block;
}

@media (min-width: 1024px) {
  .navigation-second .menu-2 > li:first-child a {
    padding-left: 45px;
  }
}

.navigation-second .menu-2 a {
  color: #0C0C0C;
  padding: 14px 20px 14px 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  border-top: 1px solid #E8E8E8;
}

.navigation-second .menu-2 a > svg {
  left: 15px;
}

.navigation-second .menu-2 a .btn-plus {
  display: block;
  height: 100%;
  width: 40px;
}

.navigation-second .menu-2 a .btn-plus svg {
  display: none;
}

.navigation-second .menu-2 a .btn-plus::before, .navigation-second .menu-2 a .btn-plus::after {
  display: block;
}

.navigation-second .menu-2 a svg {
  display: block;
}

.navigation-second .menu-2 a:hover {
  color: #FF5700;
}

.navigation-second .menu-2 ul {
  position: relative;
  -webkit-box-shadow: none;
          box-shadow: none;
  width: 100%;
}

.navigation-second .menu-2 ul a {
  padding-left: 45px;
}

/*
===================================*/
.btn-next-level {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 4px;
  width: 40px;
  padding: 3px;
  z-index: 3;
  background-color: #fff;
  text-align: center;
  font-size: 0;
}

.btn-next-level svg {
  width: 10px;
  height: 10px;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .btn-next-level {
    display: none;
  }
}

span.btn-next-left {
  font-size: 0;
}

span.btn-next-left svg {
  position: relative;
  line-height: 1;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.btn-prev-level {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 40px !important;
  height: 45px !important;
  padding: 3px;
  z-index: 3;
  background-color: #fff;
}

.btn-prev-level svg {
  width: 18px !important;
  height: 18px !important;
}

.btn-left {
  left: 0;
}

.btn-right {
  right: 0;
}

.btn-plus {
  position: absolute;
  height: 100%;
  width: 40px;
  right: 3px;
  top: 0;
  bottom: 0;
}

@media (min-width: 1024px) {
  .btn-plus {
    height: 26px;
    width: 20px;
    right: 0;
  }
}

@media (min-width: 1200px) {
  .btn-plus {
    right: 0;
  }
}

.btn-plus:active, .btn-plus:focus {
  outline: none;
}

.btn-plus::before, .btn-plus::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

@media (min-width: 1024px) {
  .btn-plus::before, .btn-plus::after {
    display: none;
  }
}

.btn-plus::before {
  background: url(../images/icon-minus.svg) no-repeat 50% 50%;
  opacity: 0;
}

.btn-plus::after {
  background: url(../images/icon-plus.svg) no-repeat 50% 50%;
}

.btn-plus svg {
  width: 10px;
  height: 10px;
  margin-left: 10px;
  fill: #FF5700;
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  -o-transition: transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
  display: none;
}

@media (min-width: 1024px) {
  .btn-plus svg {
    display: block;
  }
}

span.btn-plus svg {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

/*
===========================================*/
.open > a > .btn-plus::after,
.open > .footer-menu-title > .btn-plus::after {
  opacity: 0;
}

.open > a > .btn-plus::before,
.open > .footer-menu-title > .btn-plus::before {
  opacity: 1;
}

.open > a > .btn-plus svg,
.open > .footer-menu-title > .btn-plus svg {
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.open-nav {
  overflow: hidden;
}

@media (min-width: 1200px) {
  .open-nav {
    overflow: visible;
  }
}

.open-nav .navigation {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}

.open-nav .navigation-second {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}

/*
==================================*/
.menu-catalog.open > a {
  position: relative;
}

@media (min-width: 1024px) {
  .menu-catalog.open > a > svg {
    opacity: 0;
  }
  .menu-catalog.open > a::before, .menu-catalog.open > a::after {
    content: "";
    position: absolute;
    top: 3px;
    left: 18px;
    background-color: #FF5700;
    width: 2px;
    height: 18px;
  }
}

@media (min-width: 1024px) and (min-width: 1200px) {
  .menu-catalog.open > a::before, .menu-catalog.open > a::after {
    left: 7px;
  }
}

@media (min-width: 1024px) {
  .menu-catalog.open > a::before {
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  .menu-catalog.open > a::after {
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
}

.nav-mobile-outer {
  width: 100%;
  width: 100vw;
  height: 100vh;
  padding: 0;
  left: 0;
  right: 0;
  position: fixed;
  overflow: hidden;
  z-index: -1;
  top: 0;
}

@media (min-width: 1024px) {
  .nav-mobile-outer {
    height: auto;
  }
}

.open-nav .nav-mobile-outer,
.open-catalog .nav-mobile-outer {
  z-index: 1;
  position: static;
}

/*
=================================*/
.navigation-catalog {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  min-height: 100vh;
  width: 100vw;
  background-color: #fff;
  z-index: 99;
  -webkit-transform: translateX(140%);
      -ms-transform: translateX(140%);
          transform: translateX(140%);
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  -o-transition: transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
  border-top: 1px solid #E8E8E8;
  -webkit-box-shadow: 0px 6px 5px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 6px 5px rgba(0, 0, 0, 0.1);
  padding-top: 48px;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .navigation-catalog {
    top: 86px;
    border-top: none;
    padding-top: 0;
    position: absolute;
    width: auto;
    overflow: visible;
  }
}

@media (min-width: 1200px) {
  .navigation-catalog {
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
    top: 102px;
    display: none;
    min-height: calc(100vh - 120px);
  }
}

.navigation-catalog .container {
  padding: 0;
  min-height: calc(100vh - 100px);
  position: relative;
  max-width: 100%;
}

@media (min-width: 1200px) {
  .navigation-catalog .container {
    max-width: 1630px;
    padding: 15px;
    padding-bottom: 100px;
  }
}

@media (min-width: 1024px) {
  .navigation-catalog .menu {
    display: block;
  }
  .navigation-catalog .menu a {
    color: #0C0C0C;
  }
  .navigation-catalog .menu > li {
    width: 22%;
    position: static;
  }
  .navigation-catalog .menu > li > a {
    color: #0C0C0C;
    padding: 10px 35px;
    white-space: normal;
  }
  .navigation-catalog .menu > li > a > svg {
    display: block;
    left: 10px;
  }
  .navigation-catalog .menu > li > a:hover {
    background-color: #F4F4F4;
  }
  .navigation-catalog .menu > li > .submenu {
    position: absolute;
    width: 75%;
    left: 22%;
    top: 0;
    height: 100%;
    padding: 20px;
    display: none;
    border-left: 1px solid #E8E8E8;
  }
}

@media (min-width: 1024px) and (min-width: 1440px) {
  .navigation-catalog .menu > li > .submenu {
    width: 62%;
  }
}

@media (min-width: 1024px) {
  .navigation-catalog .menu > li > .submenu > ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .navigation-catalog .menu > li > .submenu > ul > * {
    width: 24.5%;
    padding-right: 15px;
  }
}

@media (min-width: 1024px) and (min-width: 1440px) {
  .navigation-catalog .menu > li > .submenu > ul > * {
    width: 33%;
    padding-right: 20px;
  }
}

@media (min-width: 1024px) {
  .navigation-catalog .menu > li.open > a {
    background-color: #F4F4F4;
  }
  .navigation-catalog .menu > li.open > .submenu {
    display: block;
  }
  .navigation-catalog .menu .parent {
    display: block;
  }
  .navigation-catalog .menu .submenu {
    position: relative;
    width: 100%;
  }
  .navigation-catalog .menu .submenu ul {
    display: block;
    position: relative;
    width: 100%;
    top: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
    margin-bottom: 20px;
  }
}

@media (min-width: 1024px) and (min-width: 1440px) {
  .navigation-catalog .menu .submenu ul {
    width: calc(100% - 5px);
  }
}

@media (min-width: 1024px) {
  .navigation-catalog .menu .submenu ul a {
    padding: 5px 0;
  }
  .navigation-catalog .menu .submenu ul a svg {
    display: none;
  }
  .navigation-catalog .menu .submenu ul a:hover {
    color: #FF5700;
    background-color: transparent;
  }
  .navigation-catalog .menu .submenu .parent > a {
    font-weight: 500;
  }
}

.navigation-catalog .menu-vendors {
  position: absolute;
  right: 30px;
  bottom: 40px;
  z-index: 4;
  width: 75.8%;
}

.navigation-catalog .menu-vendors .vendor-item {
  height: auto;
  width: 120px;
  margin: 0 15px;
  max-width: 120px;
}

.navigation-catalog .menu-vendors .vendor-item + .link-gray{ 
  margin-left: 35px; 
}

.vendor-cat{
  display: none;
}


.navigation-catalog .menu-vendors .vendor-item img {
  position: relative;
  -webkit-filter: grayscale(0);
          filter: grayscale(0);
}

@media (min-width: 1024px) {
  .navigation-catalog .menu .navigation-header {
    text-align: left;
    padding: 0;
    height: auto;
    display: block;
    font-size: 18px;
    margin-bottom: 15px;
  }
}

@media (min-width: 1024px) {
  .navigation-catalog .menu .navigation-header .btn-line {
    display: none;
  }
}

.open-catalog {
  overflow: hidden;
}

@media (min-width: 1024px) {
  .open-catalog {
    overflow: visible;
  }
}

.open-catalog .navigation-catalog,
.open-catalog .navigation {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}

@media (min-width: 1200px) {
  .open-catalog .navigation-catalog,
  .open-catalog .navigation {
    display: block;
  }
}

/*
=====================================*/
.menu-bnr {
  position: absolute;
  right: 30px;
  top: 15px;
}

.menu-bnr a {
  display: block; 
  margin-bottom: 10px;
}

.cat-bnr{
  display: none;
}

/*
======================================*/
.header-dark .menu a {
  color: #0C0C0C;
}

.header-dark .menu a:hover {
  color: #FF5700;
}

.btn {
  display: inline-block;
  outline: none;
  -webkit-border-radius: 24px;
          border-radius: 24px;
  line-height: 1;
  max-width: 100%;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  border: 1px solid transparent;
  font-family: Rubik;
}

.btn:active, .btn:focus {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.btn svg {
  width: 14px;
  height: 12px;
  margin-right: 7px;
  vertical-align: middle;
  position: relative;
  top: -1px;
}

.btn em {
  display: inline-block;
  width: 20px;
  height: 20px;
  -webkit-border-radius: 50%;
          border-radius: 50%;
  font-style: normal;
  vertical-align: middle;
}

.btn-line {
  padding: 0;
  border: none;
  background-color: transparent;
  line-height: 1;
}

.btn-line:focus {
  outline: none;
}

.btn-lg {
  height: 48px;
  padding-top: 1px;
  padding-left: 32px;
  padding-right: 32px;
  font-size: 16px;
  line-height: 2.8;
  letter-spacing: .02em;
}

.btn-md {
  font-size: 12px;
  height: 40px;
  padding-top: 0;
  padding-left: 20px;
  padding-right: 20px;
  line-height: 38px;
  letter-spacing: 0.06em;
}

.btn-sm {
  font-size: 12px;
  height: 32px;
  line-height: 21px;
  padding-left: 16px;
  padding-right: 16px;
}

.btn-xs {
  font-size: 10px;
  height: 26px;
  padding-top: 0;
  padding-left: 12px;
  padding-right: 12px;
  line-height: 2.5;
}

.btn-tag {
  font-size: 14px;
  line-height: 40px;
}

@media (min-width: 1024px) {
  .btn-tag:hover {
    background-color: #fff !important;
  }
}

.btn-primary {
  background-color: #FF5700;
  color: #fff;
  text-decoration: none !important;
}

.btn-primary:not(:disabled):hover, .btn-primary:not(:disabled):active, .btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled):focus, .btn-primary:not(:disabled):not(.disabled):active:focus {
  color: #fff;
  background-color: #E14D00;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.btn-primary[disabled] {
  background-color: #E8E8E8;
  cursor: default;
}

.btn-primary-transparent {
  background-color: transparent;
  color: #fff;
  border: 1px solid #fff;
}

.btn-primary-transparent:not(:disabled):hover, 
.btn-primary-transparent:not(:disabled):active, 
.btn-primary-transparent:not(:disabled):not(.disabled):active, 
.btn-primary-transparent:not(:disabled):not(.disabled):focus, 
.btn-primary-transparent:not(:disabled):not(.disabled):active:focus {
  color: #0C0C0C;
  background-color: #fff;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.btn-primary-transparent[disabled] {
  background-color: #E8E8E8;
  cursor: default;
}

.btn-primary-transparent[disabled]:hover {
  color: #fff;
}

.btn-secondary, 
.btn-secondary:not(:disabled):active, 
.btn-secondary:not(:disabled):not(.disabled):active, 
.btn-secondary:not(:disabled):not(.disabled):focus, 
.btn-secondary:not(:disabled):not(.disabled):active:focus  {
  background-color: transparent;
  color: #FF5700;
  border: 1px solid #FF5700;
  text-decoration: none !important;
  white-space: nowrap;
}

.btn-secondary:not(:disabled):hover, 
.btn-secondary:not(:disabled):not(.btn-animate):hover {
  color: #fff !important;
  background-color: #E14D00;
  border-color: #E14D00;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.btn-secondary:not(:disabled):hover svg, .btn-secondary:not(:disabled):active svg, .btn-secondary:not(:disabled):not(.disabled):active svg, .btn-secondary:not(:disabled):not(.disabled):focus svg, .btn-secondary:not(:disabled):not(.disabled):active:focus svg, .btn-secondary:not(:disabled):not(.btn-animate):hover svg {
  stroke: #fff;
}

.btn-secondary[disabled] {
  background-color: transparent;
  border-color: #E8E8E8;
  color: #C8C8C8;
  cursor: default;
}

.btn-secondary span {
  background-color: #FF5700;
}

.btn-secondary svg {
  stroke: #FF5700;
}

.btn-secondary-black {
  background-color: #fff;
  color: #0C0C0C;
  border: 1px solid #C8C8C8;
}

.btn-secondary-black:not(:disabled):hover/*, 
.btn-secondary-black:not(:disabled):active, 
.btn-secondary-black:not(:disabled):not(.disabled):active, 
.btn-secondary-black:not(:disabled):not(.disabled):focus, 
.btn-secondary-black:not(:disabled):not(.disabled):active:focus, 
.btn-secondary-black:not(:disabled):not(.btn-animate):active */{
  color: #fff;
  background-color: #0C0C0C;
  border-color: #0C0C0C;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.btn-secondary-black:not(:disabled):hover svg, .btn-secondary-black:not(:disabled):active svg, .btn-secondary-black:not(:disabled):not(.disabled):active svg, .btn-secondary-black:not(:disabled):not(.disabled):focus svg, .btn-secondary-black:not(:disabled):not(.disabled):active:focus svg, .btn-secondary-black:not(:disabled):not(.btn-animate):active svg {
  fill: #fff;
}

.btn-secondary-black:not(:disabled):hover .icon-download, .btn-secondary-black:not(:disabled):active .icon-download, .btn-secondary-black:not(:disabled):not(.disabled):active .icon-download, .btn-secondary-black:not(:disabled):not(.disabled):focus .icon-download, .btn-secondary-black:not(:disabled):not(.disabled):active:focus .icon-download, .btn-secondary-black:not(:disabled):not(.btn-animate):active .icon-download {
  stroke: #fff;
  fill: none;
}

.btn-secondary-black[disabled], .btn-secondary-black.disabled {
  background-color: #fff;
  border-color: #E8E8E8;
  color: #C8C8C8;
  cursor: default;
}

.btn-secondary-black[disabled] svg, .btn-secondary-black.disabled svg {
  fill: #E8E8E8;
}

.btn-secondary-black[disabled] em, .btn-secondary-black.disabled em {
  background-color: #E8E8E8;
}

.btn-secondary-black svg {
  fill: #0C0C0C;
  margin-left: -5px;
}

.btn-secondary-black em {
  background-color: #0C0C0C;
  color: #fff;
  line-height: 20px;
  font-size: 12px;
  margin-left: 5px;
  margin-right: -10px;
  position: relative;
  top: -1px;
}

.btn-secondary-black span {
  background-color: #0C0C0C;
}

.btn-secondary-white {
  background-color: #fff;
  color: #0C0C0C;
  border: none;
}

.btn-secondary-white:not(:disabled):hover, .btn-secondary-white:not(:disabled):active, .btn-secondary-white:not(:disabled):not(.disabled):active, .btn-secondary-white:not(:disabled):not(.disabled):focus, .btn-secondary-white:not(:disabled):not(.disabled):active:focus, .btn-secondary-white:not(:disabled):not(.btn-animate):active {
  color: #0C0C0C;
  background-color: #E8E8E8;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.btn-secondary-white:not(:disabled):hover svg, .btn-secondary-white:not(:disabled):active svg, .btn-secondary-white:not(:disabled):not(.disabled):active svg, .btn-secondary-white:not(:disabled):not(.disabled):focus svg, .btn-secondary-white:not(:disabled):not(.disabled):active:focus svg, .btn-secondary-white:not(:disabled):not(.btn-animate):active svg {
  fill: #fff;
}

.btn-secondary-white[disabled] {
  background-color: #fff;
  color: #0C0C0C;
  cursor: default;
  opacity: .4;
}

.btn-secondary-black-orange {
  background-color: #fff;
  color: #0C0C0C;
  border: 1px solid #C8C8C8;
}

.btn-secondary-black-orange:not(:disabled):hover, .btn-secondary-black-orange:not(:disabled):active, .btn-secondary-black-orange:not(:disabled):not(.disabled):active, .btn-secondary-black-orange:not(:disabled):not(.disabled):focus, .btn-secondary-black-orange:not(:disabled):not(.disabled):active:focus, .btn-secondary-black-orange:not(:disabled):not(.btn-animate):active {
  color: #FF5700;
  background-color: #fff;
  border-color: #FF5700;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.btn-secondary-black-orange:not(:disabled):hover svg, .btn-secondary-black-orange:not(:disabled):active svg, .btn-secondary-black-orange:not(:disabled):not(.disabled):active svg, .btn-secondary-black-orange:not(:disabled):not(.disabled):focus svg, .btn-secondary-black-orange:not(:disabled):not(.disabled):active:focus svg, .btn-secondary-black-orange:not(:disabled):not(.btn-animate):active svg {
  fill: #FF5700;
  stroke: #FF5700;
}

.btn-secondary-black-orange[disabled], .btn-secondary-black-orange.disabled {
  background-color: #fff;
  border-color: #E8E8E8;
  color: #C8C8C8;
  cursor: default;
}

.btn-secondary-black-orange[disabled] svg, .btn-secondary-black-orange.disabled svg {
  fill: #E8E8E8;
}

.btn-secondary-black-orange[disabled] em, .btn-secondary-black-orange.disabled em {
  background-color: #E8E8E8;
}

.btn-secondary-black-orange svg {
  fill: #0C0C0C;
  margin-left: -5px;
}

.btn-secondary-black-orange em {
  background-color: #0C0C0C;
  color: #fff;
  line-height: 20px;
  font-size: 12px;
  margin-left: 5px;
  margin-right: -10px;
  position: relative;
  top: -1px;
}

.btn-secondary-black-orange span {
  background-color: #0C0C0C;
}

.btn-animate {
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.btn-animate:hover {
  background-color: transparent !important;
}

.btn-animate span {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  -webkit-border-radius: 50%;
          border-radius: 50%;
  -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out;
  -o-transition: width 0.3s ease-in-out, height 0.3s ease-in-out;
  transition: width 0.3s ease-in-out, height 0.3s ease-in-out;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: -1;
}

.btn-animate:not(:disabled):hover span {
  width: 225%;
  height: 400px;
}

.btn.no-hover {
  cursor: default;
}

.btn.no-hover:hover {
  background-color: inherit;
  color: inherit;
  border-color: inherit;
}

div.btn {
  cursor: default;
}

.icon-download {
  stroke: #0c0c0c;
  fill: none;
  width: 24px !important;
  height: 24px !important;
  margin-right: 3px !important;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

.btn-up {
  position: fixed;
  bottom: 430px;
  right: 50px;
  z-index: 999;
  color: #0C0C0C;
  white-space: nowrap;
  display: none;
  width: 40px;
  height: 40px;
  padding: 0;
  text-align: center;
}

@media (min-width: 1024px) {
  .btn-up {
    bottom: 350px;
    width: auto;
    padding-left: 24px;
    padding-right: 24px;
  }
}

.btn-up svg {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
  fill: #0C0C0C;
  margin: 0;
}

.btn-up.active {
  display: block;
}

@media (min-width: 768px) {
  .mw-280 {
    min-width: 280px;
  }
}

.button-bottom {
  margin-top: -10px;
  margin-bottom: 10px;
}

.form input[type="text"],
.form input[type="email"],
.form textarea {
  display: block;
  width: 100%;
  margin: 0;
  border: 1px solid #ddd;
  padding: 0 10px 0 16px;
  height: 40px;
  font-size: 14px;
  border: 1px solid #C8C8C8;
  -webkit-border-radius: 20px;
          border-radius: 20px;
}

.form input[type="text"]:focus,
.form input[type="email"]:focus,
.form textarea:focus {
  outline: none;
  border-color: #FF5700;
}

.form label {
  display: block;
}

.form label + label {
  margin-top: 20px;
}

.form textarea {
  height: 160px;
  padding-top: 10px;
}

.form textarea:focus {
  outline: none;
  border-color: #FF5700;
}

.form-group {
  position: relative;
  margin-bottom: 20px;
}

.form-group label {
  position: absolute;
  color: #7D7D7D;
  top: 0;
  font-size: 14px;
  margin: 10px;
  padding: 0 5px;
  background-color: #fff;
  -webkit-transition: top .2s ease-in-out, 
 font-size .2s ease-in-out;
  -o-transition: top .2s ease-in-out, 
 font-size .2s ease-in-out;
  transition: top .2s ease-in-out, 
 font-size .2s ease-in-out;
}

.form-group label.active {
  top: -19px;
  font-size: 12px;
}

.form-group.required::after {
  content: "*";
  position: absolute;
  right: 0;
  top: -2px;
  color: #7D7D7D;
  line-height: 1;
  font-size: 13px;
}

.form-group.field-error input,
.form-group.field-error textarea {
  border-color: #FF2F2F;
}

.form-group.field-error::after {
  color: #FF2F2F;
}

@media (max-width: 575px) {
  .form .btn {
    width: 100%;
  }
}

.form-search {
  position: relative;
}

.form-search button {
  position: absolute;
  right: 11px;
  top: 5px;
  z-index: 2;
  border: none;
  background-color: transparent;
  width: 17.5px;
  height: 17.5px;
  padding: 0;
}

.form-search button svg {
  width: 100%;
  height: 100%;
  fill: #7D7D7D;
}

.form-search input {
  padding-right: 30px;
}

.form-search-city {
  width: 100%;
  max-width: 400px;
}

.form span.error {
  display: block;
  padding-left: 16px;
  font-size: 12px;
  line-height: 16px;
  color: #0C0C0C;
  margin-top: 2px;
}

input,
.input {
  padding: 8px 8px 8px 16px;
  position: static;
  height: 40px;
  border: 1px solid #C8C8C8;
  -webkit-border-radius: 20px;
          border-radius: 20px;
}

.input{
  line-height: 23px;
}

[contenteditable][placeholder]:empty:before {
  content: attr(placeholder);
  position: absolute;
  color: gray;
  background-color: transparent;
}
[contenteditable][placeholder]:empty:focus:before {
  display: none;
}

input:focus,
.input:focus {
  outline: none;
  border-color: #FF5700;
}

h4 + .form {
  margin-top: 30px;
}

.empty-search{
  padding: 0 20px;
  color: #333 !important;
  position: relative;
  top: -15px;
  font-family: Rubik;
}

.empty-search img{
  margin-top: 10px;
}

/*
=====================================*/
.dropdown-select {
  position: relative;
  line-height: 1;
  font-size: 14px;
}

.dropdown-select > button {
  display: block;
  padding: 0;
  margin: 0;
  border: none;
  background-color: #fff;
  padding: 12px 16px;
  font-family: Montserrat;
  font-weight: 900;
  position: relative;
  width: 100%;
  text-align: left;
  border-bottom: 1px solid transparent;
}

.dropdown-select > button::after {
  content: "";
  position: absolute;
  right: 13px;
  top: 50%;
  margin-top: -2px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 4px 0 4px;
  border-color: #0C0C0C transparent transparent transparent;
}

.dropdown-select > button:hover {
  background: #F4F4F4;
}

.dropdown-select > button:active, .dropdown-select > button:focus {
  outline: none;
}

.dropdown-select ul {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  padding: 0;
  margin: 0;
  list-style: none;
  display: none;
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.25);
  font-size: 14px;
}

.dropdown-select.open {
  z-index: 3;
}

.dropdown-select.open > button {
  border-bottom: 1px solid #0C0C0C;
}

.dropdown-select.open > button::after {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.dropdown-select.open ul {
  display: block;
}

.dropdown-select .li-padding li {
  padding: 12px 16px;
  -webkit-transition: background .3s;
  -o-transition: background .3s;
  transition: background .3s;
  width: 100%;
}

.dropdown-select .li-padding li:hover {
  cursor: pointer;
  background-color: #F4F4F4;
}

/* placeholder
=====================================*/
:focus::-webkit-input-placeholder {
  color: transparent;
}

:focus:-moz-placeholder {
  color: transparent;
}

:focus::-moz-placeholder {
  color: transparent;
}

:focus:-ms-input-placeholder {
  color: transparent;
}

::-webkit-input-placeholder {
  color: #7D7D7D;
  opacity: 1;
}

:-moz-placeholder {
  color: #7D7D7D;
  opacity: 1;
}

::-moz-placeholder {
  color: #7D7D7D;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #7D7D7D;
  opacity: 1;
}

.form-search :focus::-webkit-input-placeholder {
  color: transparent;
}

.form-search :focus:-moz-placeholder {
  color: transparent;
}

.form-search :focus::-moz-placeholder {
  color: transparent;
}

.form-search :focus:-ms-input-placeholder {
  color: transparent;
}

.form-search ::-webkit-input-placeholder {
  color: #fff;
  opacity: 1;
}

.form-search :-moz-placeholder {
  color: #fff;
  opacity: 1;
}

.form-search ::-moz-placeholder {
  color: #fff;
  opacity: 1;
}

.form-search :-ms-input-placeholder {
  color: #fff;
  opacity: 1;
}

.header-dark .search :focus::-webkit-input-placeholder {
  color: transparent;
}

.header-dark .search :focus:-moz-placeholder {
  color: transparent;
}

.header-dark .search :focus::-moz-placeholder {
  color: transparent;
}

.header-dark .search :focus:-ms-input-placeholder {
  color: transparent;
}

.header-dark .search ::-webkit-input-placeholder {
  color: #7D7D7D;
  opacity: 1;
}

.header-dark .search :-moz-placeholder {
  color: #7D7D7D;
  opacity: 1;
}

.header-dark .search ::-moz-placeholder {
  color: #7D7D7D;
  opacity: 1;
}

.header-dark .search :-ms-input-placeholder {
  color: #7D7D7D;
  opacity: 1;
}

/* helpers
=====================================*/
:invalid {
  -webkit-box-shadow: none;
          box-shadow: none;
}

/*
====================================*/
.form-success {
  text-align: center;
  padding: 80px;
  font-size: 1.25em;
}

/*
==================================*/
.tgl {
  display: none;
}

.tgl + .tgl-btn {
  outline: 0;
  display: inline-block;
  width: 44px;
  height: 22px;
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  vertical-align: middle;
  background: #C8C8C8;
  -webkit-border-radius: 12px;
          border-radius: 12px;
  padding: 0;
  margin: 0;
  -webkit-transition: all .4s ease;
  -o-transition: all .4s ease;
  transition: all .4s ease;
  border: none;
}

.tgl + .tgl-btn:after, .tgl + .tgl-btn:before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  top: 7px;
  left: 7px;
}

.tgl + .tgl-btn:after {
  -webkit-border-radius: 50%;
          border-radius: 50%;
  background: #fff;
  -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;
}

.tgl + .tgl-btn:hover:after {
  will-change: padding;
}

.tgl + .tgl-btn:before {
  display: none;
}

.tgl:checked + .tgl-btn {
  background-color: #FF5700;
}

.tgl:checked + .tgl-btn::after {
  background: #fff;
  -webkit-transform: scale(2.4) translateX(9px);
      -ms-transform: scale(2.4) translateX(9px);
          transform: scale(2.4) translateX(9px);
}

.tgl:checked + .tgl-btn::after:active {
  -webkit-box-shadow: none;
          box-shadow: none;
}

/* MODAL 
==================================*/
.modal-dialog {
  background: #fff;
  width: 300px;
  padding: 30px;
  margin: 100px auto;
  position: relative;
  max-width: 98%;
  pointer-events: auto;
}

.form-close {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  border: none;
  background: none;
  outline: none;
}

.form-close:hover svg {
  fill: #0C0C0C;
}

.form-close svg {
  width: 12px;
  height: 12px;
  fill: #7D7D7D;
}

/*
===========================*/
#share .modal-dialog {
  -webkit-border-radius: 4px;
          border-radius: 4px;
  max-width: 80%;
  padding: 30px;
  top: 50vh;
  -webkit-transform: translateY(-55%);
      -ms-transform: translateY(-55%);
          transform: translateY(-55%);
  margin: 0 auto;
}

@media (min-width: 1024px) {
  #share .modal-dialog {
    width: 664px;
    padding: 40px;
  }
}

/*
===========================*/
#question .modal-dialog,
#question-en .modal-dialog {
  -webkit-border-radius: 0;
          border-radius: 0;
  max-width: 95%;
  padding: 20px;
}

@media (min-width: 1024px) {
  #question .modal-dialog,
  #question-en .modal-dialog  {
    width: 580px;
    padding: 40px;
  }
}

/*
=====================================*/
.header {
  padding: 8px 0;
  color: #fff;
  position: relative;
  z-index: 9;
}

@media (min-width: 1200px) {
  .header {
    padding-top: 10px;
    padding-bottom: 16px;
  }
}

.header-top {
  margin-bottom: 8px;
  font-size: 12px;
}

.header-top a {
  text-decoration: none;
}

.header-top a:hover {
  text-decoration: none;
}

/*
=====================================*/
.header-dark .header {
  border-bottom: 1px solid #E8E8E8;
  background-color: #fff;
}

.header-dark .header .btn-secondary-white {
  border: 1px solid #FF5700;
  color: #FF5700;
}

.header-dark .header .btn-secondary-white:hover {
  color: #fff;
  background-color: #FF5700;
}

.header-dark.main-page .header .btn-secondary-white {
  border: 1px solid #FF5700;
  color: #FF5700;
}

.header-dark.main-page .header .btn-secondary-white:hover {
  color: #fff;
  background-color: #FF5700;
}

.header-dark .link {
  color: #0C0C0C;
}

.header-dark .link:hover {
  color: #FF5700;
}

.header-dark .navigation .btn-nav em {
  color: #0C0C0C;
}

/*
=====================================*/
.logo {
  display: block;
  margin-right: 10px;
}

@media (min-width: 1900px) {
  .logo {
    margin-right: 30px;
  }
}

.logo svg {
  width: 74px;
  height: 30px;
}

@media (min-width: 1024px) {
  .logo svg {
    width: 88px;
    height: 35px;
  }
}

@media (min-width: 1200px) {
  .logo svg {
    width: 103px;
    height: 41px;
  }
}

.sup-logo {
  font-size: 10px;
  line-height: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.logo-color {
  display: none;
}

.header-dark .sup-logo {
  color: #7D7D7D;
}

.header-dark .logo-white {
  display: none;
}

.header-dark .logo-color {
  display: block;
}

@media (max-width: 767px) {
  .header .container {
    max-width: 100%;
  }
}

/*
=====================================*/
.search {
  position: relative;
  width: 100%;
  max-width: 580px;
  height: 32px;
}

@media (min-width: 1200px) {
  .search {
    height: 40px;
    max-width: 670px;
  }
}

@media (min-width: 1024px) {
  .search {
    margin-left: 10px;
    margin-right: 20px;
  }
}

@media (min-width: 1440px) {
  .search {
    margin-right: 20px;
  }
}

@media (min-width: 1900px) {
  .search {
    width: 545px;
  }
}

.search input {
  position: absolute;
  right: 0;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  -webkit-border-radius: 24px;
          border-radius: 24px;
  background-color: transparent;
  padding: 0 30px 0 15px;
  color: #fff;
  font-size: 14px;
}

.close-search {
  display: none;
  position: absolute;
  left: 100%;
  top: 10px;
  margin-left: 10px;
  font-style: normal;
  font-size: 12px;
  line-height: 16px;
}

.header-dark .search input {
  border-color: #C8C8C8;
}

.header-dark .search button svg {
  fill: #C8C8C8;
}

.open-search {
  overflow: hidden;
  padding-right: 17px;
}

.open-search .search-mobile {
  z-index: 10001;
}

.open-search .search-mobile * {
  z-index: 3;
}

.open-search .search-mobile::before {
  content: "";
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: -1;
  background-color: #fff;
}

.open-search .search-mobile input {
  border-color: #FF5700;
  width: 130%;
}

.open-search .search-mobile button {
  background-color: #E8E8E8;
}

.open-search .close-search {
  display: block;
  color: #FF5700;
}

.form-search {
  position: relative;
  z-index: 1;
}

.form-search input {
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

.form-search input:focus {
  outline: none;
  color: #0C0C0C;
  background-color: #fff;
  border-color: #FF5700;
}

.form-search input:focus ~ button {
  background-color: #FF5700;
}

.form-search input:focus ~ button svg {
  fill: #fff;
}

.form-search button {
  position: absolute;
  top: 0;
  right: 0px;
  height: 32px;
  width: 32px;
  -webkit-border-radius: 50%;
          border-radius: 50%;
  background: transparent;
  border: none;
  padding: 0;
  line-height: 1;
  font-size: 0;
  z-index: 2;
}

@media (min-width: 1200px) {
  .form-search button {
    height: 40px;
    width: 40px;
  }
}

.form-search button svg {
  width: 18px;
  height: 18px;
  fill: #C8C8C8;
  position: relative;
  top: -1px;
}

.form-search span {
  position: absolute;
  width: 12px;
  height: 12px;
  right: 40px;
  top: 50%;
  margin-top: -5px;
  line-height: 1;
  cursor: pointer;
  opacity: 0;
  font-size: 0;
}

@media (min-width: 1024px) {
  .form-search span {
    right: 50px;
  }
}

@media (min-width: 1440px) {
  .form-search span {
    right: 50px;
  }
}

.form-search span svg {
  width: 100%;
  height: 100%;
  margin: 0;
  fill: #7D7D7D;
}

.form-search-city button {
  height: 40px;
  width: 40px;
}

.form-search-city span {
  right: 45px;
}

.not-empty span {
  opacity: 1;
}

.not-empty input {
  outline: none;
  color: #0C0C0C;
  background-color: #fff;
  border-color: #FF5700;
}

.not-empty button {
  background-color: #FF5700;
}

.not-empty button svg {
  fill: #fff !important;
}

/*
=====================================*/
.main-page .header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9;
}

.main-page .header .btn-secondary-white {
  background-color: transparent;
  border: 1px solid #fff;
  color: #fff;
}

.main-page .header .btn-secondary-white:hover {
  background-color: #fff;
  color: #0C0C0C;
}

.main-header {
  position: relative;
  height: 320px;
  color: #fff;
  padding-bottom: 100px;
  padding-top: 100px;
}

@media (min-width: 1024px) {
  .main-header {
    height: 512px;
  }
}

@media (min-width: 1200px) {
  .main-header {
    height: 800px;
  }
}

.main-header .container {
  position: relative;
}

.main-header-inner {
  width: 100%;
  max-width: 750px;
  padding-right: 20px;
}

@media (min-width: 1200px) {
  .main-header-inner {
    padding-left: 50px;
    padding-right: 0;
  }
}

@media (min-width: 1440px) {
  .main-header-inner {
    padding-left: 135px;
    padding-right: 0;
  }
}

.main-header-title {
  font-weight: 900;
  font-size: 24px;
  line-height: 32px;
  font-family: Montserrat;
}

@media (min-width: 1200px) {
  .main-header-title {
    line-height: 50px;
    font-size: 40px;
  }
}

.main-header-subtitle {
  font-size: 14px;
}

@media (min-width: 1200px) {
  .main-header-subtitle {
    font-size: 18px;
  }
}

.main-header-solution {
  font-size: 18px;
  font-weight: 900;
  font-family: Montserrat;
  padding-top: 10px;
  line-height: 1;
}

@media (min-width: 1200px) {
  .main-header-solution {
    padding-top: 20px;
    font-size: 24px;
    padding-left: 50px;
  }
}

@media (min-width: 1440px) {
  .main-header-solution {
    padding-top: 20px;
    font-size: 24px;
    padding-left: 135px;
  }
}

.main-header-solution svg {
  width: 14px;
  height: 14px;
  fill: #FF5700;
  margin: 0 10px;
}

.main-header-solution svg:last-child {
  width: 12px;
  height: 8px;
}

.main-header-solution a {
  color: #fff;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
  display: inline-block;
  -webkit-transform: translateZ(0) scale(1, 1);
          transform: translateZ(0) scale(1, 1);
}

.main-header-solution a:hover {
  color: #E8E8E8;
  -webkit-transform: translateY(-4px);
      -ms-transform: translateY(-4px);
          transform: translateY(-4px);
  text-decoration: none;
}

/*
=====================================*/
.video-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(24, 24, 24, 0.7);
}

.video-controls .container {
  height: 40px;
}

@media (min-width: 1200px) {
  .video-controls .container {
    height: 60px;
  }
}

/*
=====================================*/
#play {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 12px;
  border: none;
  color: #fff;
  padding: 0;
  background-color: transparent;
}

.btn-play {
  width: 100%;
  height: 100%;
}

.btn-play svg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  fill: #fff;
  margin: 0;
}

.btn-play .icon-play {
  opacity: 0;
  margin-left: 2px;
}

.btn-play.pause .icon-pause {
  opacity: 0;
}

.btn-play.pause .icon-play {
  opacity: 1;
}

.icon-play {
  width: 11px;
  height: 14px;
}

.icon-pause {
  width: 10px;
  height: 12px;
}

#play:active,
#play:focus {
  outline: none;
}

.video-progress {
  display: block;
  width: 32px;
  height: 32px;
  -webkit-border-radius: 50%;
          border-radius: 50%;
  position: absolute;
  right: 15px;
  padding: 0;
  margin: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media (min-width: 1200px) {
  .video-progress {
    width: 48px;
    height: 48px;
  }
}

.video-progress > svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.progress-ring__circle {
  -webkit-transition: 0.35s stroke-dashoffset;
  -o-transition: 0.35s stroke-dashoffset;
  transition: 0.35s stroke-dashoffset;
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transform-origin: 50% 50%;
      -ms-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
}

.progress-ring__bg {
  stroke: rgba(255, 255, 255, 0.4);
}

/*
=====================================*/
.block-cover {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.block-cover img,
.block-cover video,
.block-cover picture {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

/*
=====================================*/
.cursor-move,
.cursor-move a {
  cursor: url(../images/icon-cursor.svg) 30 30, pointer;
  /*
    cursor:url("data:image/svg+xml,%3Csvg width='70' height='70' viewBox='0 0 70 70' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg filter='url(%23filter0_d)'%3E%3Ccircle cx='35' cy='35' r='30' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M45.7782 27.2929C45.3877 26.9024 44.7545 26.9024 44.364 27.2929C43.9735 27.6834 43.9735 28.3166 44.364 28.7071L50.7279 35.0711L44.364 41.435C43.9735 41.8256 43.9735 42.4587 44.364 42.8492C44.7545 43.2398 45.3877 43.2398 45.7782 42.8492L52.8493 35.7782C53.2398 35.3876 53.2398 34.7545 52.8493 34.364L45.7782 27.2929ZM24.364 42.8493C24.7545 43.2398 25.3876 43.2398 25.7782 42.8493C26.1687 42.4588 26.1687 41.8256 25.7782 41.4351L19.4142 35.0711L25.7782 28.7071C26.1687 28.3166 26.1687 27.6835 25.7782 27.2929C25.3876 26.9024 24.7545 26.9024 24.364 27.2929L17.2929 34.364C16.9024 34.7545 16.9024 35.3877 17.2929 35.7782L24.364 42.8493Z' fill='%23FF5700'/%3E%3C/g%3E%3Cdefs%3E%3Cfilter id='filter0_d' x='0' y='0' width='70' height='70' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3E%3CfeFlood flood-opacity='0' result='BackgroundImageFix'/%3E%3CfeColorMatrix in='SourceAlpha' type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0'/%3E%3CfeOffset/%3E%3CfeGaussianBlur stdDeviation='2.5'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0'/%3E%3CfeBlend mode='normal' in2='BackgroundImageFix' result='effect1_dropShadow'/%3E%3CfeBlend mode='normal' in='SourceGraphic' in2='effect1_dropShadow' result='shape'/%3E%3C/filter%3E%3C/defs%3E%3C/svg%3E") 30 30, pointer; 
    

    a{     
      
        cursor:url("data:image/svg+xml,%3Csvg width='70' height='70' viewBox='0 0 70 70' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg filter='url(%23filter0_d)'%3E%3Ccircle cx='35' cy='35' r='30' fill='white'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M45.7782 27.2929C45.3877 26.9024 44.7545 26.9024 44.364 27.2929C43.9735 27.6834 43.9735 28.3166 44.364 28.7071L50.7279 35.0711L44.364 41.435C43.9735 41.8256 43.9735 42.4587 44.364 42.8492C44.7545 43.2398 45.3877 43.2398 45.7782 42.8492L52.8493 35.7782C53.2398 35.3876 53.2398 34.7545 52.8493 34.364L45.7782 27.2929ZM24.364 42.8493C24.7545 43.2398 25.3876 43.2398 25.7782 42.8493C26.1687 42.4588 26.1687 41.8256 25.7782 41.4351L19.4142 35.0711L25.7782 28.7071C26.1687 28.3166 26.1687 27.6835 25.7782 27.2929C25.3876 26.9024 24.7545 26.9024 24.364 27.2929L17.2929 34.364C16.9024 34.7545 16.9024 35.3877 17.2929 35.7782L24.364 42.8493Z' fill='%23FF5700'/%3E%3C/g%3E%3Cdefs%3E%3Cfilter id='filter0_d' x='0' y='0' width='70' height='70' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3E%3CfeFlood flood-opacity='0' result='BackgroundImageFix'/%3E%3CfeColorMatrix in='SourceAlpha' type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0'/%3E%3CfeOffset/%3E%3CfeGaussianBlur stdDeviation='2.5'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0'/%3E%3CfeBlend mode='normal' in2='BackgroundImageFix' result='effect1_dropShadow'/%3E%3CfeBlend mode='normal' in='SourceGraphic' in2='effect1_dropShadow' result='shape'/%3E%3C/filter%3E%3C/defs%3E%3C/svg%3E") 30 30, pointer; 
    
    }
    */
}

/*
=====================================*/
.bnr-carousel .swiper-slide {
  width: auto;
}

/*
=====================================*/
.section-carousel {
  margin-top: 40px;
}

@media (min-width: 1200px) {
  .section-carousel {
    margin-top: 60px;
  }
}

@media (min-width: 1200px) {
  .section-carousel .container {
    padding-left: 70px;
  }
}

@media (min-width: 1440px) {
  .section-carousel .container {
    padding-left: 150px;
  }
}

.section-carousel .swiper-container {
  overflow: visible;
}

@media (min-width: 1024px) {
  .carousel-outer {
    /* clip-path: inset( -100vw -100vw -100vw 0 ); */
  }
}

.section-blocks {
  margin-top: 40px;
}

@media (min-width: 1200px) {
  .section-blocks {
    margin-top: 60px;
  }
}

@media (min-width: 1200px) {
  .section-blocks .container {
    padding-left: 70px;
  }
}

@media (min-width: 1440px) {
  .section-blocks .container {
    padding-right: 100px;
    padding-left: 150px;
  }
}

@media (min-width: 1900px) {
  .section-blocks .container {
    padding-right: 170px;
  }
}

/*
=====================================*/
.main-item {
  opacity: 0;
}

.main-item + .main-item {
  margin-top: 40px;
}

.main-item-images {
  position: relative;
}

.main-item-images img {
  -webkit-transition: opacity .5s;
  -o-transition: opacity .5s;
  transition: opacity .5s;
}

.main-item-images .img-hover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
}

.main-item-images:hover img {
  opacity: 0;
}

.main-item-images:hover .img-hover {
  opacity: 1;
}

@media (min-width: 1200px) {
  .main-item-data {
    padding-left: 45px;
  }
}

.main-item-title {
  font-family: Montserrat;
  font-weight: 900;
  font-size: 18px;
  line-height: 20px;
  color: #0C0C0C;
  -webkit-transition: color .3s;
  -o-transition: color .3s;
  transition: color .3s;
}

@media (min-width: 1024px) {
  .main-item-title {
    font-size: 24px;
    line-height: 32px;
  }
}

@media (min-width: 1200px) {
  .main-item-title {
    font-size: 32px;
    line-height: 40px;
  }
}
/*
.main-item-title:hover {
  color: #FF5700;
  text-decoration: none;
}
*/

.main-item-desc {
  font-family: Montserrat;
  font-weight: 900;
  margin-top: 10px;
  font-size: 14px;
  line-height: 16px;
}

@media (min-width: 1024px) {
  .main-item-desc {
    font-size: 16px;
    line-height: 24px;
  }
}

@media (min-width: 1200px) {
  .main-item-desc {
    font-size: 18px;
  }
}

.main-item-desc span {
  color: #FF5700;
}

.main-item .link-gray {
  margin-top: 15px;
}

.link-gray {
  color: #7D7D7D;
  display: inline-block;
  -webkit-transition: color .3s;
  -o-transition: color .3s;
  transition: color .3s;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 12px;
  white-space: nowrap;
}

.link-gray svg {
  fill: #7D7D7D;
  width: 14px;
  height: 10px;
  -webkit-transition: fill .3s, -webkit-transform .3s;
  transition: fill .3s, -webkit-transform .3s;
  -o-transition: fill .3s, transform .3s;
  transition: fill .3s, transform .3s;
  transition: fill .3s, transform .3s, -webkit-transform .3s;
  position: relative;
  top: -1px;
}

.link-gray:hover {
  color: #0C0C0C;
  text-decoration: none;
}

.link-gray:hover svg {
  fill: #0C0C0C;
  -webkit-transform: translateX(3px);
      -ms-transform: translateX(3px);
          transform: translateX(3px);
}

.link-orange {
  color: #FF5700;
  display: inline-block;
  -webkit-transition: color .3s;
  -o-transition: color .3s;
  transition: color .3s;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 12px;
  white-space: nowrap;
}

.link-orange svg {
  fill: #FF5700;
  width: 14px;
  height: 10px;
  -webkit-transition: fill .3s, -webkit-transform .3s;
  transition: fill .3s, -webkit-transform .3s;
  -o-transition: fill .3s, transform .3s;
  transition: fill .3s, transform .3s;
  transition: fill .3s, transform .3s, -webkit-transform .3s;
  position: relative;
  top: -1px;
}

.link-orange:hover {
  color: #E14D00;
  text-decoration: none;
}

.link-orange:hover svg {
  fill: #E14D00;
  -webkit-transform: translateX(3px);
      -ms-transform: translateX(3px);
          transform: translateX(3px);
}

/*
=====================================*/
.main-tabs {
  overflow: hidden;
}

.main-tabs-list {
  overflow: auto;
  margin: 0 -10px;
  padding: 0 10px;
}

@media (min-width: 1024px) {
  .main-tabs-list {
    margin: 0;
    padding: 0;
  }
}

.main-tabs-list li + li {
  margin-left: 30px;
}

.main-tabs-list li a {
  font-family: Montserrat;
  font-weight: 900;
  font-size: 24px;
  color: #0C0C0C;
}

.main-tabs-list li a.active {
  color: #FF5700;
}

.main-tabs-list li a.active svg {
  display: none;
}

.main-tabs-list li a.active svg.active {
  display: block;
}

.main-tabs-list li a:hover {
  text-decoration: none;
  color: #FF5700;
}

.main-tabs-list li a:hover svg {
  fill: #FF5700;
}

.main-tabs-list svg {
  width: 40px;
  height: 40px;
  display: block;
  position: relative;
  left: -5px;
  margin-bottom: 5px;
}

.main-tabs-list svg.active {
  display: none;
}

.main-tabs .main-item-desc {
  font-size: 16px;
  font-family: Rubik;
  line-height: 28px;
  font-weight: normal;
  margin-bottom: 25px;
}

/*
=====================================*/
.section-cooperation {
  background: url(../images/bg1.png) no-repeat 50% 50% scroll;
  -webkit-background-size: cover;
          background-size: cover;
  padding: 50px 0;
  margin-top: 40px;
  position: relative;
  z-index: 2;
}

@media (min-width: 1024px) {
  .section-cooperation {
    background-attachment: fixed;
  }
}

@media (min-width: 1200px) {
  .section-cooperation {
    padding: 80px 0;
    margin-top: 80px;
  }
}

.section-cooperation::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: -1;
  background-color: rgba(39, 39, 39, 0.8);
}

.section-cooperation .container {
  max-width: 1000px;
}

.section-cooperation .btn-secondary-white {
  margin: 0 8px 16px 8px;
}

@media (max-width: 767px) {
  .section-cooperation .btn-secondary-white {
    padding: 5px 10px;
    color: #fff;
    margin: 0;
    background-color: transparent;
    height: auto;
    line-height: 1.2;
  }
}

@media (min-width: 1024px) {
  .section-cooperation .btn-primary {
    min-width: 280px;
  }
}

/*
=====================================*/
.title {
  font-family: Montserrat;
  font-weight: 900;
  font-size: 24px;
  line-height: 32px;
}

@media (min-width: 1200px) {
  .title {
    font-size: 32px;
    line-height: 40px;
  }
}

.title2 {
  font-family: Montserrat;
  font-weight: 900;
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 15px;
}

.title-small {
  font-size: 16px;
  font-weight: 900;
  font-family: Montserrat;
}

.subtitle {
  font-size: 16px;
  width: 100%;
  max-width: 520px;
  letter-spacing: 0.005em;
  line-height: 28px;
}

/*
=====================================*/
.section-main-vendors {
  margin-top: 60px;
  position: relative;
}

/*
=====================================*/
.section-main-articles {
  margin-top: 60px;
  position: relative;
  padding: 50px 0;
}

@media (min-width: 1200px) {
  .section-main-articles {
    padding: 75px 0;
  }
}

@media (min-width: 1200px) {
  .section-main-articles .btn {
    min-width: 280px;
  }
}

.section-main-articles .link-orange {
  margin-top: 8px;
}

/*
===================================*/
@media (min-width: 1200px) {
  .padding-left {
    padding-left: 60px;
  }
}

@media (min-width: 1440px) {
  .padding-left {
    padding-left: 100px;
  }
}

@media (min-width: 1600px) {
  .padding-left {
    padding-left: 150px;
  }
}

@media (min-width: 1900px) {
  .padding-left {
    padding-left: 300px;
  }
}

@media (min-width: 2500px) {
  .padding-left {
    padding-left: 620px;
  }
}

/*
===================================*/
.padding-left2 {
  padding-left: 20px;
}

@media (min-width: 1900px) {
  .padding-left2 {
    padding-left: 165px;
  }
}

@media (min-width: 2500px) {
  .padding-left2 {
    padding-left: 490px;
  }
}

.carousel-pagination .swiper-pagination {
  width: 100%;
  text-align: center;
}

.carousel-pagination .swiper-pagination-bullet {
  display: inline-block;
  width: 100%;
  width: 8px;
  height: 8px;
  -webkit-border-radius: 25px;
          border-radius: 25px;
  background: #C8C8C8;
  opacity: 1;
  margin: 0 5px;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
  -webkit-transform: translateZ(0) scale(1, 1);
          transform: translateZ(0) scale(1, 1);
  position: relative;
}

.carousel-pagination .swiper-pagination-bullet::after {
  content: "";
  width: 8px;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
  -webkit-transform: translateZ(0) scale(1, 1);
          transform: translateZ(0) scale(1, 1);
  position: absolute;
  left: 0;
  right: 0;
  height: 8px;
  -webkit-border-radius: 25px;
          border-radius: 25px;
  background-color: #7D7D7D;
  opacity: 0;
}

.carousel-pagination .swiper-pagination-bullet-active::after {
  width: 12px;
  left: -2px;
  opacity: 1;
}

.carousel-pagination .swiper-pagination-bullet:hover {
  background-color: #7D7D7D;
}

/*
========================================*/
.carousel-nav {
  position: relative;
  padding: 0 15px;
  margin: 0 -10px;
}

@media (min-width: 1200px) {
  .carousel-nav {
    padding: 0 32px;
    margin: 0 -32px;
  }
}

.carousel-nav .carousel-button {
  position: absolute;
  bottom: 81px;
  top: 0;
  width: 15px;
  background-color: #fff;
  z-index: 3;
  cursor: pointer;
  height: auto;
  -webkit-border-radius: 4px;
          border-radius: 4px;
  -webkit-transition: background-color .3s;
  -o-transition: background-color .3s;
  transition: background-color .3s;
}

@media (min-width: 1200px) {
  .carousel-nav .carousel-button {
    width: 32px;
  }
}

.carousel-nav .carousel-button svg {
  width: 10px;
  height: 10px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin: 0 0 0 -5px;
}

.carousel-nav .carousel-button::after {
  display: none;
}

.carousel-nav .carousel-button:hover {
  background-color: #F4F4F4;
}

.carousel-nav .swiper-button-prev {
  left: 0;
}

.carousel-nav .swiper-button-prev svg {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.carousel-nav .swiper-button-next {
  right: 0;
}

.carousel-nav .swiper-button-disabled {
  opacity: .2;
}

.carousel-nav .swiper-slide {
  overflow: hidden;
}

/*
========================================*/
.all-vendors-link {
  position: relative;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}

.all-vendors-link .link-gray {
  margin-top: 25px;
}

@media (min-width: 1024px) {
  .all-vendors-link .link-gray {
    position: absolute;
    right: 10px;
    top: -20px;
    margin-top: 0;
  }
}

/*
=====================================*/
.vendors-carousel {
  padding-bottom: 20px;
}

@media (min-width: 1024px) {
  .vendors-carousel {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
}

.vendors-carousel .swiper-slide {
  width: auto;
}

.vendor-item {
  display: block;
  width: 120px;
  height: 80px;
  position: relative;
  margin: 0 15px;
  text-align: center;
}

@media (min-width: 768px) {
  .vendor-item {
    width: 140px;
  }
}

@media (min-width: 1200px) {
  .vendor-item {
    width: 150px;
  }
}

.vendor-item img {
  position: absolute;
  margin: auto;
  left: 0;
  bottom: 0;
  right: 0;
  top: 0;
  max-width: 100%;
  max-height: 100%;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
}

.vendor-item:hover img {
  -webkit-filter: grayscale(0);
          filter: grayscale(0);
}

/*
=====================================*/
.section-main-articles .title{
  width: 100%;
  max-width: 1330px;
  margin: 0 auto;
  position: relative;
}

.section-main-articles .title a{ 
  line-height: 1;
  font-weight: normal;
  font-family: Rubik;
  margin-top: 10px;
}

@media (min-width: 768px) {

  .section-main-articles .title a{
    position: absolute;
    right: 0;
    bottom: 9px; 
    margin: 0;
  }
}
 

.masonry {
  width: 100%;
  max-width: 1330px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;  
}

.masonry > *{
  margin-bottom: 30px;
}

.promo-main-list{
  width: 100%;
  max-width: 1330px;
  margin: 0 auto;
  position: relative;
}

/*
=====================================*/
.article-item { 
  width: 100%; 
  display: block;
  background-color: #fff;
  color: #0C0C0C;
  margin: 0 0 20px;
  text-align: left;   
  text-decoration: none !important; 
  
  -webkit-transform: translateZ(0) scale(1, 1);
          transform: translateZ(0) scale(1, 1);
    
  -webkit-transition: margin .2s !important;
  -o-transition: margin .2s !important;
  transition: margin .2s !important;

  overflow: hidden;
  position: relative;
}

@media (min-width: 768px) {
  .animated-articles .article-item {
    width: 48%;
  }
}
 
@media (min-width: 1024px) {
  .animated-articles .article-item {
    width: 31%;
  }
}

@media (min-width: 1200px) {
  .animated-articles .article-item {
    width: 23.88%;
  }
}

.section-main-articles .btn-more{
  width: auto;
}
 

.article-item-img {
  position: relative;
  height: 200px;
}

.article-item-img img {
  -webkit-transform: translateZ(0) scale(1, 1);
          transform: translateZ(0) scale(1, 1);
}

.article-item-inner {
  padding: 25px 15px;
}

.article-item-title {
  font-weight: 900;
  font-size: 18px;
  font-family: Montserrat;
  margin: 0 0 10px;
  -webkit-transition: color .3s;
  -o-transition: color .3s;
  transition: color .3s;
}

.article-item-dt {
  color: #7D7D7D;
  font-size: 12px;
}
 

.article-item.small .article-item-img {
  height: 120px;
}

.article-item:hover {
  text-decoration: none;
  color: #0C0C0C;
  margin-top: -2px;
  margin-bottom: 32px;
}

.article-item:hover .article-item-title {
  color: #FF5700;
}

/*
=====================================*/
.animated-articles .article-item {
  opacity: 0;
}

/*
=====================================*/
.container-header-bg .container{
  position: relative;
  z-index: 2;
}

/*
.container-header-bg .container picture,
.container-header-bg .container img{
  position: absolute;
  right: 10px;
  top: 0;
  bottom: 0;
  left: auto;
  max-width: 100%; 
  z-index: -1; 
}
 
.container-header-bg .container img{ 
  max-height: 100%; 
}

@media (min-width: 768px) { 
  .container-header-bg .container picture,
  .container-header-bg .container img{
    left: 25%; 
  }

  .import-header-bg .container picture,
  .import-header-bg .container img{
    left: 50%;
  } 
}

@media (min-width: 1440px) { 
  .container-header-bg .container picture,
  .container-header-bg .container img{
    left: auto;
  }
}
*/

/*
============================================*/ 
.image-header-bg{
  position: absolute;
  right: 10px; 
  left: 0;
  top: 0;
  bottom: 0;
  overflow: hidden;
} 

.image-header-bg img {   
  max-height: 100%;
}

@media (min-width: 768px) { 
  .image-header-bg{
    left: 300px;
  } 
}

@media (min-width: 1440px) { 
  .image-header-bg{
    left: 450px;
  }
}


/*
============================================*/
.inner-header + .section{
  z-index: 3;
  position: relative;
}

.open-filter  .inner-header + .section{ 
  position: static;
}

@media(max-width: 767px){
  .vendors-header-bg .container picture{
    right: 50px;
  }
}

@media(max-width: 1199px){
  .promo-header-bg .container picture{
    left: 42%;
  }
}


/*
=====================================*/
.news-header-bg .container {
  background-repeat: no-repeat;
  background-image: url(../images/news-320.png);
  background-position: 80% 50%;
  -webkit-background-size: contain;
          background-size: contain;
  position: relative;
}

@media (min-width: 768px) {
  .news-header-bg .container {
    background-position: 75% 50%;
  }
}

@media (min-width: 1024px) {
  .news-header-bg .container {
    background-image: url(../images/news-1024.png);
    background-position: 100% 50%;
  }
}

@media (min-width: 1200px) {
  .news-header-bg .container {
    background-image: url(../images/news-1600.png);
  }
}

@media (max-width: 991px) {
  .news-header-bg.promo .container {
    background: none;
  }
}

/*
=====================================*/
.news-header-bg .page-title,
.container-header-bg .page-title {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  padding-right: 20px;
}

@media (max-width: 767px) {
  .news-header-bg.no-bg-mobile .container {
    background: none;
  }
  .container-header-bg.no-bg-mobile picture {
    display: none
  }
}

@media (min-width: 1024px) {
  .news-header-bg-btn .container {
    background-position: calc(100% - 150px) 50%;
  }
}

@media (min-width: 1200px) {
  .news-header-bg-btn .container {
    background-position: 100% 50%;
  }
}

/*
=====================================*/
.btn-filter {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 3;
  -o-text-overflow: unset;
     text-overflow: unset;
}

@media (max-width: 767px) {
  .btn-filter {
    border: none;
    padding: 0 6px 0 0;
    margin-top: -3px;
  }
  .btn-filter svg {
    margin: 0;
  }
  .btn-filter:focus span, .btn-filter:active span, .btn-filter:hover span {
    opacity: 0;
    display: none;
  }
  .btn-filter:focus svg, .btn-filter:active svg, .btn-filter:hover svg {
    fill: #FF5700 !important;
  }
  .btn-filter em {
    display: none;
  }
}

.btn-filter i {
  font-style: normal;
  display: none;
}

@media (min-width: 768px) {
  .btn-filter i {
    display: inline-block;
  }
}

.btn-filter.has-checked::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: #0C0C0C;
  -webkit-border-radius: 50%;
          border-radius: 50%;
  position: absolute;
  right: 1px;
  top: 6px;
  margin-left: 3px;
}

@media (min-width: 768px) {
  .btn-filter.has-checked::after {
    display: none;
  }
}

.container > .btn-filter {
  right: 15px;
}

.d-flex.align-items-center .btn-filter {
  top: 0;
  margin-top: -5px;
}

/*
=====================================*/
.inner-header .container {
  min-height: 75px;
  padding-top: 20px;
  padding-bottom: 20px;
  position: relative;
}

@media (min-width: 1024px) {
  .inner-header .container {
    height: 120px;
  }
}

@media (min-width: 1200px) {
  .inner-header .container {
    height: 150px;
  }
}

.inner-header .page-title {
  position: relative;
  padding-right: 30px;
  margin: 0;
}

.inner-header .page-title + .btn-filter {
  margin: 0;
  right: 0;
  position: relative;
}

/*
=====================================*/
.news-list > .row > * {
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  .news-list > .row > *:last-child {
    margin-bottom: 0;
  }
}

/*
=====================================*/
.news-item {
  padding-bottom: 50px;
  position: relative;
  -webkit-transition: border-color .3s;
  -o-transition: border-color .3s;
  transition: border-color .3s;
  position: relative;
}

@media (min-width: 768px) {
  .news-item {
    height: 100%;
    border: 1px solid #E8E8E8;
  }
}

.news-item.important {
  border-color: #FF5700;
}

.news-item.important .news-item-title {
  color: #FF5700;
}

@media (min-width: 768px) {
  .news-item.important .news-item-title {
    color: #0C0C0C;
  }
}

.news-item.important:hover {
  border-color: #E14D00;
}

.news-item-img {
  display: block;
  position: relative;
  height: 200px;
  overflow: hidden;
}

.news-item-inner {
  padding: 24px 0 0;
}

@media (min-width: 1024px) {
  .news-item-inner {
    padding: 24px 15px 0;
  }
}

.news-item-title {
  display: block;
  color: #0C0C0C;
  font-weight: 900;
  font-size: 18px;
  line-height: 24px;
  font-family: Montserrat;
  -webkit-transition: color .3s;
  -o-transition: color .3s;
  transition: color .3s;
}

@media (min-width: 768px) {
  .news-item-title {
    height: 72px;
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
  }
}

.news-item-meta {
  font-size: 12px;
  position: absolute;
  bottom: 24px;
  left: 0;
  right: 0;
  color: #7D7D7D;
}

@media (min-width: 1024px) {
  .news-item-meta {
    left: 15px;
    right: 15px;
  }
}

.news-item-meta svg {
  width: 2px;
  height: 2px;
}

.news-item .important-icon {
  position: absolute;
  right: 15px;
  bottom: 15px;
}

.news-item .important-icon svg {
  width: 18px;
  height: 18px;
}

.news-item:hover {
  border-color: #C8C8C8;
  z-index: 3;
}

.news-item:hover .news-item-title {
  color: #FF5700;
}

/*
=====================================*/
.open-filter {
  overflow: hidden;
}

@media (min-width: 1200px) {
  .open-filter {
    overflow: visible;
  }
}

.open-filter .filter {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}

@media (max-width: 1199px) {
  .open-filter::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 98;
    background-color: rgba(12, 12, 12, 0.4);
  }
}

.filter {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  width: 100;
  overflow: hidden;
  background-color: #fff;
  z-index: 98;
  padding: 48px 0 70px;
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  -o-transition: transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
  -webkit-transform: translateX(400%);
      -ms-transform: translateX(400%);
          transform: translateX(400%);
}

@media (min-width: 768px) {
  .filter {
    max-width: 384px;
    left: auto;
    overflow: auto;
    padding: 44px 0 0;
  }
}

@media (min-width: 1200px) {
  .filter {
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
    position: relative;
    padding: 0;
    max-width: 255px;
    bottom: auto;
    height: auto;
    overflow: visible;
    z-index: 2;
  }
}

@media (min-width: 1440px) {
  .filter {
    padding-left: 20px;
    max-width: 275px;
  }
}

@media (min-width: 1200px) {
  .filter-large {
    max-width: 320px;
  }
}

.filter > .filter-close {
  position: absolute;
  top: 20px;
  right: 20px;
}

.filter > .filter-close svg {
  width: 19px;
  height: 19px;
  fill: #7D7D7D;
}

.filter > .filter-close:hover svg, .filter > .filter-close:active svg {
  fill: #0C0C0C;
}

.filter-head {
  border-top: 1px solid #E8E8E8;
  border-bottom: 1px solid #E8E8E8;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 14px 16px;
  text-align: center;
  height: 48px;
  background-color: #fff;
}

.filter-head svg {
  width: 13px;
  height: 13px;
  fill: #FF5700;
}

@media (min-width: 1024px) {
  .filter-head svg {
    fill: #7D7D7D;
  }
}

.filter-head span {
  font-weight: 900;
  font-size: 14px;
  font-family: Montserrat;
}

.filter-head > * {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  width: 33%;
}

.filter-head button:focus, .filter-head button:active {
  outline: none;
}

.filter-head .filter-close {
  text-align: right;
}

.filter-reset {
  color: #FF5700;
  font-size: 12px;
  text-align: left;
  display: block !important;
}

.filter-reset.hidden,
.filter-reset.disabled {
  color: #C8C8C8; 
}

.filter-body {
  padding: 16px;
  height: calc(100vh - 140px);
  overflow: auto;
  position: relative;
  z-index: 3;
  width: 100%;
  overflow: hidden;
}

@media (min-width: 768px) {
  .filter-body {
    padding: 16px 36px;
    height: auto;
    max-width: 350px;
    overflow: visible;
  }
}

@media (min-width: 1200px) {
  .filter-body {
    padding: 0;
    max-width: 100%;
  }
}

.filter-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px 16px 65px;
  z-index: 4;
  background-color: #fff;
}

@media (min-width: 768px) {
  .filter-footer {
    display: none;
    padding: 10px 16px;
  }
}

.filter-title {
  color: #0C0C0C;
  font-weight: 900;
  position: relative;
  font-family: Montserrat;
  padding: 13px 40px 13px 16px;
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  cursor: pointer;
}

.filter-title svg {
  position: absolute;
  right: 5px;
  top: 50%;
  width: 10px;
  height: 10px;
  margin-top: -5px;
}

@media (min-width: 768px) {
  .filter-title svg {
    display: none;
  }
}

.filter-title:hover {
  background-color: #F4F4F4;
}

.filter-title::before {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  margin-top: -2px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 4px 0 4px;
  border-color: #0C0C0C transparent transparent transparent;
  display: none;
}

@media (min-width: 768px) {
  .filter-title::before {
    display: block;
  }
}

.filter-fieldset-inner {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 90px;
  z-index: 9;
  background-color: #fff;
  padding-top: 48px;
  -webkit-transform: translateX(120%);
      -ms-transform: translateX(120%);
          transform: translateX(120%);
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  -o-transition: transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
}

@media (min-width: 768px) {
  .filter-fieldset-inner {
    position: absolute;
    bottom: auto;
    top: 100%;
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
    padding: 0;
    display: none;
    -webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.25);
            box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.25);
    -webkit-border-radius: 4px;
            border-radius: 4px;
    height: auto;
  }
}

@media (min-width: 1200px) {
  .filter-fieldset-inner {
    position: absolute;
  }
}

@media (min-width: 768px) {
  .filter-products .filter-items {
    max-height: 300px;
  }
}

.filter-letter {
  padding: 10px 15px;
  font-weight: bold;
  margin: 0;
  line-height: 1;
}

.filter-search {
  padding: 16px; 
  position: absolute;
  top: 48px;
  left: 0;
  right: 0;
  background-color: #fff;
  z-index: 11;
}

@media (min-width: 768px) {
  .filter-search {
    top: 0;
  }
}

.filter-search button {
  position: absolute;
  right: 30px;
  top: 29px;
  opacity: 0;
}

.filter-search button svg {
  width: 12px;
  height: 12px;
}

.filter-search.not-empty button {
  opacity: 1;
  background-color: transparent;
}

.filter-search.not-empty button svg {
  fill: #0C0C0C !important;
}

.filter-search + .checkbox {
  margin-top: 120px;
  position: absolute;
  background-color: #fff;
  left: 0;
  top: 0;
  right: 0;
  z-index: 12;
}

@media (min-width: 768px) {
  .filter-search + .checkbox {
    margin-top: 65px;
  }
}

@media (min-width: 1024px) {
  .filter-search + .checkbox {
    margin-top: 65px;
  }
}

.filter-vendors {
  padding-top: 0px;
}

.filter-vendors.scrollbar{
  margin-top: 140px;
}
 
@media (min-width: 768px) {
  .filter-vendors {
    height: 300px;
  } 
}

@media (min-width: 1200px) {  
  .filter-vendors { 
    padding-top: 0;
  }

  .filter-vendors.scrollbar{
    margin-top: 110px;
  }
}


@media (min-width: 768px) {
  .filter-side-bnr {
    padding: 0 36px;
  }
}

@media (min-width: 1200px) {
  .filter-side-bnr {
    padding: 0;
  }
}

.filter-side-bnr a {
  display: block;
  margin-bottom: 20px;
}

.filter-reset-link {
  padding: 0 36px 0 47px;
}

@media (min-width: 1200px) {
  .filter-reset-link {
    padding: 0 0 0 10px;
  }
}

.filter-reset-link button {
  color: #0C0C0C;
  font-size: 12px;
  line-height: 24px;
  letter-spacing: 0.06em;
}

.filter-reset-link button:hover {
  color: #FF5700;
}

.filter-items {
  height: 97%;
}

@media (max-width: 767px) {
  .filter-items {
    overflow: auto;
  }
}

.form-filter fieldset {
  border: none;
  padding: 0;
  margin: 0;
  position: relative;
  background-color: #fff;
}

.form-filter fieldset.open > .filter-fieldset-inner {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}

@media (min-width: 768px) {
  .form-filter fieldset.open > .filter-fieldset-inner {
    display: block;
  }
}

.form-filter fieldset.open .filter-title::before {
  border-width: 0 4px 4px 4px;
  border-color: transparent transparent #0C0C0C transparent;
}

.form-filter .filter-items {
  padding-bottom: 70px;
}

@media (min-width: 768px) {
  .form-filter .filter-items {
    max-height: 300px;
    padding-bottom: 10px;
  }
}

.form-filter-button {
  position: fixed;
  bottom: 0;
  left: 15px;
  right: 15px;
  background-color: #fff;
  padding: 15px 0;
}

.form-filter-button button {
  width: 100%;
}

.form-filter label {
  display: block;
  position: relative;
}

.form-filter .is-checked .filter-title::after {
  content: "";
  position: absolute;
  right: 30px;
  top: 50%;
  margin-top: -4px;
  width: 8px;
  height: 8px;
  -webkit-border-radius: 50%;
          border-radius: 50%;
  background-color: #0C0C0C;
}

.form-filter-vendors {
  padding-left: 0;
}

.form-filter-vendors .checkbox-filter-radio input ~ span {
  color: #7D7D7D;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0.01em;
  padding: 4px 10px 4px 20px;
}

.teh-filter .filter-title::before {
  display: block;
}

.checkbox-filter-radio .font-weight-bold{
  font-weight: 500 !important;
}

/*
=====================================*/
.checkbox {
  display: block;
  cursor: pointer;
  margin: 0;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

.checkbox input {
  position: absolute;
  opacity: 0;
  z-index: -1;
}

.checkbox input ~ span {
  display: block;
  position: relative;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

.checkbox-filter-radio {
  font-size: 14px;
}

.checkbox-filter-radio input ~ span {
  color: #7D7D7D;
  line-height: 1;
  padding: 10px 15px 10px 20px;
}

.checkbox-filter-radio input ~ span:hover {
  color: #0C0C0C;
}

.checkbox-filter-radio input ~ span::before {
  content: "";
  position: absolute;
  left: 1px;
  top: 50%;
  margin-top: -4px;
  width: 8px;
  height: 8px;
  background-color: #0C0C0C;
  -webkit-border-radius: 50%;
          border-radius: 50%;
  opacity: 0;
  -webkit-transition: opacity .3s;
  -o-transition: opacity .3s;
  transition: opacity .3s;
}

.checkbox-filter-radio input ~ span svg {
  width: 9px;
  height: 12px;
  margin-left: 3px;
  position: relative;
  top: -2px;
}

.checkbox-filter-radio input:checked ~ span {
  color: #0C0C0C;
}

.checkbox-filter-radio input:checked ~ span::before {
  opacity: 1;
}

.checkbox-filter-radio-right input ~ span {
  padding: 19px 20px 19px 15px;
  color: #0C0C0C;
}

@media (min-width: 1200px) {
  .checkbox-filter-radio-right input ~ span {
    padding: 10px 20px 10px 15px;
  }
}

.checkbox-filter-radio-right input ~ span::before {
  left: auto;
  right: 19px;
}

@media (min-width: 1200px) {
  .checkbox-filter-radio-right input ~ span::before {
    right: 12px;
  }
}

.checkbox-filter-radio-right input:checked ~ span {
  background-color: #F4F4F4;
}

.checkbox-filter-radio-right:hover {
  background-color: #F4F4F4;
}

.checkbox-tab {
  display: inline-block;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0.01em;
  /*margin: 0 0 0 -3px;*/
}

.checkbox-tab input ~ span {
  padding: 8px 24px;
  background: #F4F4F4;
  -webkit-border-radius: 24px;
          border-radius: 24px;
  display: inline-block;
  font-size: 12px;
  line-height: 16px;
}

@media (min-width: 1024px) {
  .checkbox-tab input ~ span {
    font-size: 14px;
    line-height: 24px;
  }
}

.checkbox-tab input:checked ~ span {
  background-color: #FF5700;
  color: #fff;
  z-index: 3;
}

.checkbox-tab:hover span {
  color: #FF5700;
}

.checkbox-input input ~ span::before {
  content: "";
  position: absolute;
  top: 50%;
  margin-top: -9px;
  width: 16px;
  height: 16px;
  background-color: #fff;
  -webkit-border-radius: 4px;
          border-radius: 4px;
  border: 1.5px solid #C8C8C8;
  -webkit-transition: opacity .3s;
  -o-transition: opacity .3s;
  transition: opacity .3s;
  opacity: 1;
  display: block;
}

.checkbox-input input ~ span::after {
  content: "";
  position: absolute;
  top: 50%;
  margin-top: -5px;
  width: 8px;
  height: 8px;
  -webkit-border-radius: 50%;
          border-radius: 50%;
  background-color: #fff;
  opacity: 0;
}

.checkbox-input input ~ span:hover::before {
  border-color: #0C0C0C;
}

.checkbox-input input:checked ~ span::before {
  background-color: #0C0C0C;
  border-color: #0C0C0C;
}

.checkbox-input input:checked ~ span::after {
  opacity: 1;
}

.checkbox-right input ~ span {
  padding: 10px 20px 10px 10px;
  color: #0C0C0C;
}

.checkbox-right input ~ span::before {
  left: auto;
  right: 10px;
}

.checkbox-right input ~ span::after {
  right: 14px;
}

.checkbox-right input:checked ~ span {
  /*background-color: #F4F4F4;*/
}

.font-title-bold {
  font-weight: 900;
  font-family: Montserrat;
}

/*
=====================================*/
.nice-tabs {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.nice-tabs * {
  z-index: 2;
}

.nice-tabs input[type="radio"] {
  display: none;
}

.nice-tabs input[type="radio"]:checked + label {
  color: #fff;
}

.nice-tabs input[id="for-dealers"]:checked ~ .glider,
.nice-tabs input[id="for-latin"]:checked ~ .glider,
.nice-tabs input[id="office"]:checked ~ .glider {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}

.nice-tabs input[id="for-vendors"]:checked ~ .glider,
.nice-tabs input[id="for-cyrillic"]:checked ~ .glider,
.nice-tabs input[id="storage"]:checked ~ .glider {
  -webkit-transform: translateX(100%);
      -ms-transform: translateX(100%);
          transform: translateX(100%);
}

.nice-tabs input[id="for-customers"]:checked ~ .glider,
.nice-tabs input[id="for-numbers"]:checked ~ .glider,
.nice-tabs input[id="servicecenter"]:checked ~ .glider {
  -webkit-transform: translateX(200%);
      -ms-transform: translateX(200%);
          transform: translateX(200%);
}

.nice-tabs .tab {
  display: inline-block;
  text-align: center;
  width: 90px;
  cursor: pointer;
  -webkit-transition: color 0.15s ease-in;
  -o-transition: color 0.15s ease-in;
  transition: color 0.15s ease-in;
  margin: 0;
  padding: 8px 10px;
  -webkit-border-radius: 24px;
          border-radius: 24px;
  display: inline-block;
  font-size: 12px;
  line-height: 16px;
}

@media (min-width: 1024px) {
  .nice-tabs .tab {
    font-size: 14px;
    line-height: 24px;
    width: 120px;
  }
}

.nice-tabs .tab:hover {
  color: #FF5700;
}

.nice-tabs .glider {
  position: absolute;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  width: 90px;
  background-color: #FF5700;
  z-index: 1;
  -webkit-border-radius: 24px;
          border-radius: 24px;
  -webkit-transition: 0.25s ease-out;
  -o-transition: 0.25s ease-out;
  transition: 0.25s ease-out;
}

@media (min-width: 1024px) {
  .nice-tabs .glider {
    width: 120px;
  }
}

.nice-tabs.small .tab {
  width: 78px;
}

.nice-tabs.small .glider {
  width: 33.3333%;
}

.nice-tabs #for-customers + .tab {
  width: 105px;
}

@media (min-width: 1024px) {
  .nice-tabs #for-customers + .tab {
    width: 138px;
  }
}

.nice-tabs #for-customers:checked ~ .glider {
  width: 105px;
  -webkit-transform: translateX(170%);
      -ms-transform: translateX(170%);
          transform: translateX(170%);
}

@media (min-width: 1024px) {
  .nice-tabs #for-customers:checked ~ .glider {
    width: 138px;
    -webkit-transform: translateX(173%);
        -ms-transform: translateX(173%);
            transform: translateX(173%);
  }
}

.nice-tabs #servicecenter + .tab {
  width: 170px;
}

.nice-tabs #servicecenter:checked ~ .glider {
  width: 170px;
  -webkit-transform: translateX(141.3%);
      -ms-transform: translateX(141.3%);
          transform: translateX(141.3%);
}

/*
=====================================*/
@media (min-width: 1024px) {
  .inner-page-header {
    padding: 20px 0 10px;
  }
}

.news-page-head {
  padding: 17px 20px 15px;
  font-weight: 900;
  font-family: Montserrat;
  font-size: 14px;
  line-height: 1;
  border-bottom: 1px solid #E8E8E8;
  margin-bottom: 20px;
}

.news-page-head .link-back svg {
  width: 18px;
  height: 15px;
  fill: #FF5700;
}

.news-page-head .btn-line {
  text-align: right;
}

.news-page-head .btn-line svg {
  width: 13px;
  height: 13px;
  fill: #FF5700;
}

.link-back{
  text-decoration: none !important;
}

.link-back svg {
  /*transform: rotate(180deg);*/
  width: 10px;
  height: 10px;
}

.link-back.btn svg {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.news-meta {
  font-size: 12px;
  color: #7D7D7D;
  line-height: 16px;
  margin-bottom: 20px;
}

@media (min-width: 1024px) {
  .news-meta {
    margin-bottom: 0;
  }
}

.news-meta svg {
  width: 2px;
  height: 2px;
  margin: 0 5px;
}

/*
=====================================*/
.page-title {
  font-family: Montserrat;
  font-size: 24px;
  line-height: 32px;
  font-weight: 900;
  margin: 0 0 30px;
  padding-right: 20px;
}

@media (min-width: 1024px) {
  .page-title {
    font-size: 32px;
    line-height: 40px;
  }
}

.page-title + .btn-filter {
  margin-top: -35px;
}

@media (min-width: 768px) {
  .page-title + .btn-filter {
    margin-bottom: 30px;
    position: relative;
    margin-top: 0px;
  }
}

@media (min-width: 1024px) {
  .block-button-back {
    margin-bottom: -35px;
  }
}

/*
=====================================*/
.list > .row > * {
  margin-bottom: 20px;
}

/*
=====================================*/
.content-block {
  border: 1px solid  #E8E8E8;
  padding: 24px 24px 80px;
  position: relative;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

@media (min-width: 768px) {
  .content-block {
    height: 100%;
  }
}

.content-block-title {
  font-weight: 500;
  font-size: 16px;
  line-height: 28px;
}

.content-block .btn {
  position: absolute;
  bottom: 24px;
  left: 24px;
}

.content-block:hover {
  border-color: #C8C8C8;
}

.content-block-orange {
  border-color: #FF5700;
}

.content-block-orange:hover {
  border-color: #E14D00;
}

/*
=====================================*/
.content-block2 {
  border-top: 1px solid  #E8E8E8;
  padding: 20px 0;
  position: relative;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

.content-block2-title {
  font-weight: bold;
  font-size: 16px;
  line-height: 28px;
}

.content-block2 .btn {
  position: absolute;
  bottom: 24px;
  left: 24px;
}

.content-block2:last-child {
  border-bottom: 1px solid  #E8E8E8;
}

/*
=====================================*/
.content-block3 {
  padding: 20px 0;
}

.content-block3-title {
  font-weight: bold;
  font-size: 16px;
  line-height: 28px;
}

.content .content-block3-intro,
.content-block3-intro {
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: 0.01em;
}

/*
=====================================*/
.gray-str {
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0.01em;
  color: #7D7D7D;
}

.gray-str svg {
  width: 2px;
  height: 2px;
}

.gray-line {
  display: block;
  width: 100%;
  height: 1px;
  background-color: #E8E8E8;
}

/*
=====================================*/
.btn-share svg {
  -webkit-transition: fill .3s;
  -o-transition: fill .3s;
  transition: fill .3s;
}

.btn-share:hover {
  color: #FF5700;
}

.btn-share:hover svg {
  fill: #FF5700;
}

/*
=====================================*/
#share .gray-str {
  font-size: 12px;
}

.share-blocktitle {
  font-weight: 900;
  margin-bottom: 15px;
  font-size: 24px;
  font-family: Montserrat;
}

.share-title {
  font-size: 14px;
  line-height: 24px;
}

@media (min-width: 1024px) {
  .share-title {
    line-height: 28px;
    font-size: 16px;
  }
}

.share-buttons .likely__widget {
  height: auto;
  background: none;
}

.share-buttons .likely__icon,
.share-buttons .likely__counter {
  display: none;
}

.share-buttons .likely__button_facebook svg {
  fill: #1877F2;
}

.share-buttons svg {
  width: 32px;
  height: 32px;
  position: relative;
  top: 0;
  left: 0;
}

.share-buttons .likely__button {
  margin-left: 10px;
  padding: 0;
}

@media (min-width: 1200px) {
  .share-buttons .likely__button {
    margin-left: 24px;
  }
}

.copy-link {
  position: relative;
}

@media (min-width: 1024px) {
  .copy-link {
    margin-right: 10px;
  }
}

.copy-link svg {
  width: 26px;
  height: 12px;
}

/*
=====================================*/
.info-panel {
  position: fixed;
  z-index: 9999;
  bottom: -400px;
  left: 0;
  right: 0;
  color: #fff;
  background-color: #424242;
  font-size: 14px;
  line-height: 24px;
  text-align: center;
  -webkit-transition: -webkit-transform 1s;
  transition: -webkit-transform 1s;
  -o-transition: transform 1s;
  transition: transform 1s;
  transition: transform 1s, -webkit-transform 1s;
  padding: 24px 0;
}

.info-panel.small {
  padding: 20px;
}

.info-panel.active {
  -webkit-transform: translateY(-400px);
      -ms-transform: translateY(-400px);
          transform: translateY(-400px);
}

.info-panel-cookie{
  text-align: left;
  background: #FFF4E4;
  color: #212529;
  padding-top: 32px;
  padding-bottom: 32px;
  font-size: 12px;
  line-height: 16px;
}

.info-panel-cookie p{
  margin: 0;
}

.info-panel-cookie p + p{
  margin-top: 10px;
}


.cookie-buttons button{
  margin: 15px;
}


/*
=====================================*/
[data-tooltip] {
  display: inline-block;
  position: relative;
  z-index: 2;
  cursor: pointer;
}

[data-tooltip]:before,
[data-tooltip]:after {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  position: absolute;
}

[data-tooltip]:before {
  top: 100%;
  left: 50%;
  margin-top: 5px;
  padding: 8px 12px;
  width: auto;
  height: auto;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-border-radius: 4px;
          border-radius: 4px;
  background-color: #fff;
  color: #0C0C0C;
  content: attr(data-tooltip);
  text-align: center;
  font-size: 12px;
  line-height: 16px;
  white-space: nowrap;
  -webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.25);
  margin-left: 0;
}

[data-tooltip]:after {
  top: 100%;
  left: 50%;
  margin-top: -1px;
  margin-left: -4px;
  color: #fff;
  -webkit-transform: rotate(0deg) scaleX(1.5);
      -ms-transform: rotate(0deg) scaleX(1.5);
          transform: rotate(0deg) scaleX(1.5);
  text-shadow: 0 -1px 1px rgba(0, 0, 0, 0.15);
  content: "▲";
  font-size: 8px;
  line-height: 1;
}

[data-tooltip]:hover:before,
[data-tooltip]:hover:after {
  visibility: visible;
  opacity: 1;
}

[data-tooltip]:hover {
  z-index: 9;
}

.tooltip-to-left[data-tooltip]:before {
  left: auto;
  right: 100%;
  margin-right: 6px;
}

.tooltip-to-left[data-tooltip]:after {
  position: absolute;
  left: auto;
  right: 100%;
  margin-top: -5px;
  margin-left: -1px;
  -webkit-transform: rotate(90deg) scaleX(1.5);
      -ms-transform: rotate(90deg) scaleX(1.5);
          transform: rotate(90deg) scaleX(1.5);
}

.tooltip-to-bottom[data-tooltip]:before {
  left: 50%;
  margin: 10px 0 0;
  top: 100%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.tooltip-to-bottom[data-tooltip]:after {
  left: 50%;
  top: 100%;
  margin: 5px 0 0;
  -webkit-transform: rotate(0) scaleX(1.5);
      -ms-transform: rotate(0) scaleX(1.5);
          transform: rotate(0) scaleX(1.5);
}


@media(max-width: 767px) {

  .news-item [data-tooltip]:before{
    left: -30px;
  }

}

/*
=====================================*/
.promo-list {
  margin-bottom: 25px;
}

h4 + .promo-list {
  margin-top: 25px;
}

@media (min-width: 1024px) {
  h4 + .promo-list {
    margin-top: 23px;
  }
}

.promo-item {
  background: #FFFFFF;
  border-bottom: 1px solid #E8E8E8;
  padding-bottom: 30px;
  position: relative;
  -webkit-transition: border-color .3s;
  -o-transition: border-color .3s;
  transition: border-color .3s;
  /*
    .region-item:last-child,
    .region-item:nth-child(n+3),
    .region-item:nth-last-child(2),
    .region-item:nth-last-child(3){
        .region-item-list{
            left: auto;
            right: 100%;

            &::before,
            &::after{
                left: auto;
                right: -7px;
                transform: rotate(180deg);
            }

            &::after{
                right: -6px;
            }                
        }
    }
    */
}

@media (min-width: 1024px) {
  .promo-item {
    padding: 35px 32px 30px;
    border: 1px solid #E8E8E8;
    margin-top: 10px;
  }
}

.promo-item + .promo-item {
  margin-top: 30px;
}

@media (min-width: 1024px) {
  .promo-item + .promo-item {
    margin-top: 20px;
  }
}

.promo-item-head {
  font-size: 14px;
  line-height: 16px;
  letter-spacing: 0.005em;
}

@media (min-width: 1024px) {
  .promo-item-head {
    font-size: 16px;
    line-height: 28px;
  }
}

.promo-item-head a {
  white-space: nowrap;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0.01em;
  text-decoration: underline;
  color: #7D7D7D;
  padding-right: 15px;
  position: relative;
}

.promo-item-head a svg {
  width: 10px;
  height: 13px;
  position: absolute;
  right: 0;
  top: 4px;
}

.promo-item-head a:hover, .promo-item-head a:active {
  color: #0C0C0C;
}

.promo-item-title {
  display: block;
  color: #0C0C0C;
  font-family: Montserrat;
  font-weight: 900;
  font-size: 24px;
  line-height: 32px;
  margin-top: 10px;
  -webkit-transition: color .3s;
  -o-transition: color .3s;
  transition: color .3s;
}

@media (min-width: 1200px) {
  .promo-item-title {
    margin-top: 24px;
  }
}

.promo-item-intro {
  margin-top: 16px;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0.005em;
}

@media (min-width: 1024px) {
  .promo-item-intro {
    font-size: 16px;
    line-height: 28px;
    margin-top: 16px;
  }
}

.promo-item-products {
  margin-top: 24px;
  font-size: 14px;
  line-height: 16px;
  color: #7D7D7D;
}

.promo-item-products span {
  margin-bottom: 10px;
  margin-right: 10px;
}

.promo-item-products .btn-secondary-black:hover {
  border-color: #FF5700;
  color: #FF5700;
  background-color: #fff;
}

.promo-item-vendors {
  margin-top: 24px;
  font-size: 14px;
  color: #7D7D7D;
}

.promo-item-vendors [data-tooltip] {
  margin-right: 15px;
}

@media (min-width: 1440px) {
  .promo-item-vendors [data-tooltip] {
    margin-right: 25px;
  }
}

@media (max-width: 991px) {
  .promo-item-vendors [data-tooltip]::before, .promo-item-vendors [data-tooltip]::after {
    display: none;
  }
}

.promo-item-vendors img {
  max-height: 30px;
}

.promo-item-vendors span {
  display: inline-block;
  margin-left: 10px;
}

.promo-item:hover {
  border-color: #C8C8C8;
  z-index: 3;
}

.promo-item:hover .promo-item-title {
  color: #FF5700;
}

.promo-item .gray-str {
  position: relative;
  padding-right: 15px;
}

.promo-item .gray-str svg {
  width: 10px;
  height: 13px;
  position: absolute;
  right: 0;
  top: 4px;
}

/*
=====================================*/
.dt-small {
  font-size: 12px;
}

/*
=====================================*/
.promo-products {
  margin: 20px 0 30px;
}

.promo-products span {
  margin-right: 16px;
  margin-bottom: 16px;
}

.promo-products .btn:hover, .promo-products .btn:active, .promo-products .btn:focus {
  background-color: #fff  !important;
  color: #FF5700 !important;
  border-color: #FF5700 !important;
}

/*
=====================================*/
.promo-regions {
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0.01em;
  margin: 20px 0 30px;
}

.promo-regions > * {
  margin-right: 16px;
  margin-bottom: 16px;
}

.region-item {
  display: inline-block;
  position: relative;
  cursor: pointer;
  color: #0C0C0C;
  margin-left: 8px;
}

.region-item-list {
  position: absolute;
  left: 50%;
  top: 100%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  padding: 10px 15px;
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.25);
  color: #0C0C0C;
  font-size: 12px;
  line-height: 16px;
  min-width: 150px;
  margin-top: 10px;
  visibility: hidden;
  opacity: 0;
  z-index: -1;
  -webkit-transition: opacity .3s;
  -o-transition: opacity .3s;
  transition: opacity .3s;
  -webkit-border-radius: 4px;
          border-radius: 4px;
}

.region-item-list span {
  display: block;
  margin: 7px 0;
}

.region-item-list::after, .region-item-list::before {
  content: "";
  position: absolute;
  left: 50%;
  width: 0;
  height: 0;
  border-style: solid;
  z-index: 2;
  margin-left: 0px;
  margin-top: -3px;
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}

.region-item-list::before {
  top: -7px;
  border-width: 7.5px 6px 7.5px 0;
  border-color: transparent rgba(0, 0, 0, 0.1) transparent transparent;
}

.region-item-list::after {
  top: -6px;
  border-width: 7.5px 6px 7.5px 0;
  border-color: transparent #fff transparent transparent;
  z-index: 3;
}

.region-item:hover {
  color: #FF5700;
}

.region-item:hover .region-item-list {
  visibility: visible;
  opacity: 1;
  z-index: 99;
}

/*
=====================================*/
.promo-vendors {
  margin-top: 22px;
}

.promo-vendors .col {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 50%;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
}

@media (min-width: 768px) {
  .promo-vendors .col {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 25%;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
  }
}

@media (min-width: 1200px) {
  .promo-vendors .col {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 20%;
        -ms-flex: 0 0 20%;
            flex: 0 0 20%;
  }
}

/*
=====================================*/
.vendor-block {
  text-align: center;
  font-size: 14px;
  color: #0C0C0C;
  margin-bottom: 25px;
  display: block;
  color: #7D7D7D;
}

.vendor-block-img {
  position: relative;
  height: 80px;
}

.vendor-block-img img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  max-width: 80%;
  max-height: 100%;
}

.vendor-block:hover {
  color: #0C0C0C;
}

/*
=====================================*/
.section-filter fieldset {
  padding: 0;
  margin: 0;
  border: none;
}

.section-tabs {
  display: inline-block;
  background: #F4F4F4;
  -webkit-border-radius: 24px;
          border-radius: 24px;
  margin-bottom: 24px;
}

/*
=====================================*/
.services {
  margin-top: 30px;
}

.services-row {
  margin-bottom: 20px;
  position: relative;
  min-height: 155px;
  border-bottom: 1px solid #E8E8E8;
  padding-bottom: 20px;
}

.services-row:last-child {
  border-bottom: none;
}

@media (min-width: 1024px) {
  .services-row {
    margin-bottom: 60px;
    border-bottom: none;
  }
}

.services-row-title {
  font-weight: 900;
  font-family: Montserrat;
  font-size: 18px;
  line-height: 1.3;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

@media (min-width: 1024px) {
  .services-row-title {
    font-size: 24px;
  }
}

.services-row > svg {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  max-width: 90%;
  max-height: 100%;
  min-width: 400px;
}

@media (min-width: 1024px) {
  .services-row > svg {
    width: 450px;
  }
}

.services-row .svg-hover {
  opacity: 0;
}

.services-row:hover svg:not(.svg-hover) {
  opacity: 0;
}

.services-row:hover .svg-hover {
  opacity: 1;
}

/*
=====================================*/
.service-item {
  position: relative;
  margin-right: 8px;
  margin-bottom: 8px;
  z-index: 2;
}

@media (min-width: 1024px) {
  .service-item {
    margin-right: 16px;
    margin-bottom: 16px;
  }
}

.service-item > span {
  position: relative;
  display: block;
  background-color: transparent;
  padding: 0 5px;
  margin: 0;
  overflow: hidden;
  white-space: nowrap;
}

.service-item > span::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 10px;
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, white 100%);
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(white));
  background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, white 100%);
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, white 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=1 );
}

.service-item.btn {
  font-size: 12px;
  line-height: 28px;
  height: 32px;
  letter-spacing: 0.01em;
  background-color: #fff !important;
}

@media (min-width: 1024px) {
  .service-item.btn {
    font-size: 14px;
    line-height: 38px;
    height: 40px;
  }
}

.service-item.btn:hover, .service-item.btn:active, .service-item.btn:focus {
  background-color: #fff !important;
  color: #FF5700 !important;
  border-color: #FF5700 !important;
}

@media (max-width: 767px) {
  .service-item.disabled:not(.service-item-more) {
    display: none !important;
  }
}

.service-item-tooltip {
  position: absolute;
  text-align: left;
  left: 50%;
  top: 100%;
  padding: 12px;
  background-color: #fff;
  color: #0C0C0C;
  font-size: 12px;
  line-height: 16px;
  width: 300px;
  margin-left: -150px;
  margin-top: 10px;
  opacity: 0;
  z-index: -1;
  -webkit-transition: opacity .3s;
  -o-transition: opacity .3s;
  transition: opacity .3s;
  -webkit-border-radius: 2px;
          border-radius: 2px;
  -webkit-transform: translateZ(0) scale(1, 1);
          transform: translateZ(0) scale(1, 1);
  -webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.25);
  display: none;
}

.service-item-tooltip.disabled{
  display: none;
}

@media (min-width: 1024px) {
  .service-item-tooltip {
    display: block;
  }
}

.service-item-tooltip::after, .service-item-tooltip::before {
  content: "";
  position: absolute;
  left: 50%;
  width: 0;
  height: 0;
  border-style: solid;
}

.service-item-tooltip::after {
  top: -6px;
  margin-left: -7px;
  border-width: 0 7.5px 6px 7.5px;
  border-color: transparent transparent #fff transparent;
}

.service-item-tooltip::before {
  top: -6px;
  margin-left: -7px;
  border-width: 0 7.5px 6px 7.5px;
  border-color: transparent transparent rgba(0, 0, 0, 0.5) transparent;
}

.service-item:hover {
  z-index: 3;
  overflow: visible;
}

.service-item:hover > span::after {
  opacity: 0;
}

.service-item:hover .service-item-tooltip {
  visibility: visible;
  opacity: 1;
  z-index: 4;
}

.service-item-more {
  padding-left: 14px;
  padding-right: 33px;
  min-width: 45px;
  -webkit-transition: width .3s;
  -o-transition: width .3s;
  transition: width .3s;
  position: relative;
}

.service-item-more i {
  font-style: normal;
}

.service-item-more strong {
  font-weight: normal;
}

.service-item-more svg {
  width: 8px;
  height: 10px;
  -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
          transform: rotate(0deg);
  top: 10px;
  right: 9px;
  fill: #0C0C0C !important;
  opacity: 1 !important;
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  -o-transition: transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
  position: absolute;
}

.service-item-more.active i {
  display: none;
}

.service-item-more.active svg {
  right: 50%;
  margin-right: -4px;
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.service-item-more:active svg, .service-item-more:hover svg, .service-item-more:focus svg {
  fill: #FF5700 !important;
}

.service-item.to-right .service-item-tooltip {
  left: 0;
  margin-left: 0px;
}

.service-item.to-right .service-item-tooltip::after, .service-item.to-right .service-item-tooltip::before {
  left: 40px;
}

.service-item.to-left .service-item-tooltip {
  left: auto;
  right: 0;
  margin-left: 0px;
}

.service-item.to-left .service-item-tooltip::after, .service-item.to-left .service-item-tooltip::before {
  left: auto;
  right: 40px;
}

/*
=====================================*/
@media (max-width: 767px) {
  .no-mobile {
    display: none;
  }
}

@media (max-width: 767px) {
  .no-mobile.active {
    display: block;
  }
}

/*
=====================================*/
#modal-service-tooltip .modal-dialog {
  -webkit-border-radius: 4px;
          border-radius: 4px;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0.005em;
  padding: 40px 22px;
}

/*
=====================================*/
.regions-block {
  padding: 0 0 20px;
}

@media (min-width: 1024px) {
  .regions-block {
    padding: 20px 0 48px;
  }
}

@media (min-width: 1024px) {
  .region-col {
    width: 220px;
  }
}

.region-col-title {
  font-weight: 900;
  font-family: Montserrat;
  font-size: 14px;
  padding: 12px 10px;
  line-height: 16px;
  position: relative;
  margin: 0 -10px;
}

@media (min-width: 1024px) {
  .region-col-title {
    font-size: 18px;
    padding-left: 0;
    margin: 0;
  }
}

.region-col ul {
  list-style: none;
  display: none;
  margin: 0 -10px;
  padding: 0 10px;
  border-bottom: 1px solid #E8E8E8;
}

@media (min-width: 1024px) {
  .region-col ul {
    display: block;
    border: none;
    margin: 0;
  }
}

.region-col ul a {
  color: #0C0C0C;
  font-size: 14px;
  line-height: 24px;
  display: block;
  margin: 0 -10px;
  padding: 4px 10px;
}

@media (min-width: 1024px) {
  .region-col ul a {
    padding: 0;
    margin-bottom: 4px;
  }
}

.region-col ul a:hover {
  color: #0C0C0C;
  background-color: #F4F4F4;
}

@media (min-width: 1024px) {
  .region-col ul a:hover {
    color: #FF5700;
    background-color: transparent;
  }
}

.region-col ul a.active {
  color: #FF5700;
}

@media (min-width: 1024px) {
  .region-col ul .disabled a {
    color: #C8C8C8;
    cursor: default;
    pointer-events: none;
  }
}

.region-col .btn-plus {
  height: 100%;
}

.region-col.open .region-col-title {
  background-color: #F4F4F4;
}

@media (min-width: 1024px) {
  .region-col.open .region-col-title {
    background-color: transparent;
  }
}

.region-col.open .btn-plus::after {
  opacity: 0;
}

.region-col.open .btn-plus::before {
  opacity: 1;
}

.region-col.open ul {
  display: block;
}

/*
=====================================*/
.offices-block {
  background-color: #F4F4F4;
  padding:  0;
}

/*
=====================================*/
.office-block {
  position: relative;
  display: none;
  z-index: 2;
  padding: 40px 0;
}

.office-block.active {
  display: block;
}

.office-block-title {
  font-family: Montserrat;
  font-weight: 900;
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 15px;
}

.office-block-bg {
  position: absolute;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: -1;
  display: flex;
  align-items: flex-end;
}

.office-block-bg img{
  max-height: 100%;
}

/*
=====================================*/
.address-col {
  font-size: 14px;
}

@media (min-width: 1024px) {
  .address-col {
    width: 238px;
    margin-right: 24px;
  }
}

@media (min-width: 1440px) {
  .address-col {
    width: 337px;
    margin-right: 64px;
  }
}

.address-col-title {
  font-size: 16px;
  margin-bottom: 10px;
  cursor: pointer;
}

.address-col-title svg {
  fill: #C8C8C8;
  width: 14px;
  height: 18px;
  margin-right: 5px;
  position: relative;
  top: -2px;
}

.address-col-title:not(.no-addr):hover {
  color: #FF5700;
}

.address-col-title:not(.no-addr):hover svg {
  fill: #FF5700;
}

.address-col-title:active {
  color: #0C0C0C;
}

.address-col-title:active svg {
  fill: #FF5700;
}

.address-col-title.no-addr {
  cursor: default;
}

.address-col-address {
  line-height: 26px;
}

@media (min-width: 1024px) {
  .address-col-address {
    line-height: 28px;
  }
}

.address-col-address svg {
  width: 16px;
  height: 16px;
  margin-left: 5px;
}

.address-col-grafik {
  margin-top: 20px;
}

.address-col-phones {
  margin-top: 20px;
}

.address-col-phones p {
  margin: 5px 0 0;
}

.address-col-phones a {
  display: inline-block;
  color: #0C0C0C;
  text-decoration: underline;
}

@media (min-width: 1024px) {
  .address-col-phones a {
    text-decoration: none;
  }
}

.address-col-phones a:hover {
  color: #FF5700;
  text-decoration: none;
}

.btn-copy svg {
  stroke: #C8C8C8;
}

.btn-copy:hover svg {
  stroke: #FF5700;
}

.btn-copy:active, .btn-copy:focus {
  outline: none;
}

/*
=====================================*/
.map-block {
  margin-bottom: -60px;
}

.map-block > * {
  height: 338px;
}

/*
=====================================*/
.modal-address .modal-dialog {
  background-color: #F4F4F4;
  min-width: 300px;
  padding: 23px 0 0;
  position: relative;
}

.modal-address-title {
  position: fixed;
  padding: 0 23px;
  font-size: 18px;
  font-family: Montserrat;
  font-weight: 900;
}

.modal-address-outer {
  min-height: 300px;
  max-height: calc(100vh - 250px);
  padding: 0 23px;
  overflow: hidden;
  overflow: auto;
}

.modal-address img {
  max-width: 100%;
  display: block;
  margin: 20px auto 0;
}

.modal-address .address-col {
  margin-bottom: 25px;
  max-width: 100%;
}

.modal-address .address-col-title {
  cursor: default;
}

.modal-address .address-col-title svg {
  fill: #FF5700;
}

.modal-address .address-col a {
  color: #0C0C0C;
}

/*
=====================================*/
.btn-scroll-animation {
  position: fixed;
  right: 50px;
  bottom: 150px;
  width: 40px;
  height: 40px;
  background-color: #FF5700;
  -webkit-border-radius: 50%;
          border-radius: 50%;
  z-index: 99;
  display: none;
  -webkit-animation: scrolled 2s infinite;
          animation: scrolled 2s infinite;
}

@media (min-width: 1024px) {
  .btn-scroll-animation {
    display: block;
  }
}

@-webkit-keyframes scrolled {
  0% {
    -webkit-transform: translateY(70px);
            transform: translateY(70px);
    opacity: 1;
  }
  60% {
    opacity: .2;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    opacity: 0;
  }
}

@keyframes scrolled {
  0% {
    -webkit-transform: translateY(70px);
            transform: translateY(70px);
    opacity: 1;
  }
  60% {
    opacity: .2;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    opacity: 0;
  }
}

.disable-btn-scroll .btn-scroll-animation,
.no-first .btn-scroll-animation {
  display: none;
}

/*
=====================================*/
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}

.video-wrapper iframe,
.video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*
=====================================*/
.event-content {
  letter-spacing: 0.02em;
  font-size: 16px;
  line-height: 28px;
}

@media (min-width: 1200px) {
  .event-content {
    font-size: 18px;
    line-height: 32px;
    padding: 20px 0 20px 40px;
  }
}

.events-wrapper {
  margin-bottom: 80px;
}

/*
=====================================*/
.event-block {
  position: relative;
  margin-bottom: 45px;
}

@media (min-width: 1024px) {
  .event-block {
    padding-left: 105px;
    margin-bottom: 60px;
  }
}

.event-block-icon {
  width: 105px;
  margin-bottom: 15px;
}

@media (min-width: 1024px) {
  .event-block-icon {
    width: 105px;
    position: absolute;
    left: 0;
    top: 5px;
  }
}

.event-block-icon svg {
  width: 67px;
  height: 71px;
}

.event-block-title {
  font-weight: 900;
  font-family: Montserrat;
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 15px;
}

.event-block-txt {
  font-size: 16px;
  line-height: 28px;
}

@media (min-width: 1200px) {
  .event-blocks > * {
    padding-right: 60px;
  }
  .event-blocks > *:nth-child(2), .event-blocks > *:nth-child(4) {
    padding-left: 50px;
    padding-right: 10px;
  }
}

/*
=====================================*/
.gallery-item {
  display: block;
  position: relative;
}

.gallery-item span {
  position: absolute;
  left: 50%;
  top: 50%;
  background-color: #fff;
  -webkit-border-radius: 50%;
          border-radius: 50%;
  width: 40px;
  height: 40px;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 0;
  -webkit-transition: opacity .3s;
  -o-transition: opacity .3s;
  transition: opacity .3s;
}

.gallery-item span svg {
  width: 17.5px;
  height: 17.5px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  fill: #FF5700;
}

.gallery-item:hover span {
  opacity: 1;
}

/*
=====================================*/
.counts-animation {
  margin-top: 30px;
  margin-bottom: 50px;
}

.counts-animation h4 {
  margin-bottom: 25px;
}

.counts-animation p {
  margin-top: 25px;
}

.count-line {
  font-size: 16px;
  line-height: 28px;
}

.count-line span {
  font-weight: 900;
  font-family: Montserrat;
  font-size: 32px;
  line-height: 40px;
}

.count-line span:last-child {
  display: inline-block;
  margin-right: 10px;
}

.count-line + .count-line {
  margin-top: 5px;
}

/*
=====================================*/
.service-section-nav {
  color: #7D7D7D;
  font-size: 12px;
  line-height: 16px;
  margin-bottom: 30px;
  padding-top: 20px;
}

.service-section-nav span {
  display: inline-block;
  padding: 3px 0;
}

.service-section-nav span:first-child {
  margin-right: 10px;
}

.service-section-nav svg {
  width: 10px;
  height: 9px;
  fill: #7D7D7D;
  margin-right: 5px;
}

.service-section-nav a {
  display: inline-block;
  padding: 3px 10px;
  -webkit-border-radius: 30px;
          border-radius: 30px;
  border: 1px solid transparent;
  color: #7D7D7D;
  text-transform: lowercase;
}

.service-section-nav a.active {
  border-color: #FF5700;
  color: #FF5700;
}

.service-section-nav a:hover {
  color: #FF5700;
}

/*
=====================================*/
.block-bordered {
  padding: 0;
  margin-top: 40px;
}

@media (min-width: 1024px) {
  .block-bordered {
    border: 1px solid #E8E8E8;
    padding: 60px 65px;
    margin-top: 50px;
  }
}

.block-bordered h4 {
  font-family: Montserrat;
  font-weight: 900;
}

.block-success {
  padding-top: 50px;
  padding-bottom: 50px;
  display: none;
}

@media (min-width: 768px) {
  .block-success {
    padding-top: 128px;
    padding-bottom: 128px;
  }
}

.is-sended .block-success {
  display: block;
}

.is-sended .block-form {
  display: none;
}

/*
=====================================*/
.color-nums {
  list-style: none;
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0.005em;
  counter-reset: counter;
  padding: 0;
  margin: 0;
}

.color-nums li {
  counter-increment: counter;
  position: relative;
  padding-left: 56px;
  min-height: 40px;
  padding-top: 7px;
  margin-top: 35px;
}

@media (min-width: 1024px) {
  .color-nums li {
    margin-top: 45px;
  }
}

.color-nums li::before {
  content: counter(counter);
  background: #FF5700;
  width: 40px;
  height: 40px;
  -webkit-border-radius: 50%;
          border-radius: 50%;
  display: inline-block;
  line-height: 40px;
  color: #fff;
  text-align: center;
  position: absolute;
  left: 0;
  top: 0;
}

/*
=====================================*/
.drop-zone {
  position: relative;
  margin-bottom: 22px;
}

.drop-zone .file-default-preview {
  display: block;
  position: relative;
  font-size: 14px;
  background: #F4F4F4;
  -webkit-border-radius: 20px;
          border-radius: 20px;
  padding: 35px;
  text-align: left;
}

.drop-zone .file-default-preview em {
  font-style: normal;
  color: #FF5700;
  cursor: pointer;
}

.drop-zone .file-default-preview em:hover {
  color: #E14D00;
}

.drop-zone .file-default-preview span span {
  color: #7D7D7D;
  display: block;
  margin-top: 5px;
}

.drop-zone .file-preview {
  border: none;
  padding: 0;
}

.drop-zone .file-drop-zone {
  border: none;
  min-height: 1px;
  margin: 0;
  padding: 0;
}

.drop-zone .btn-file {
  /*opacity: 0;*/
  position: absolute;
  overflow: hidden;
  right: 0;
  left: 0;
  bottom: -20px;
  border-radius: 0;
  padding: 2px 0;
  border: none !important;
  background-color: transparent !important;
}

#file-error{
  display: block;
  text-align: right;
  color: red;
}

.drop-zone .kv-file-content,
.drop-zone .kv-zoom-cache, 
.drop-zone .file-size-info,
.drop-zone .kv-file-upload {
  display: none;
}

.drop-zone .fileinput-remove {
  position: relative;
  border: 1px solid #FF5700;
}

.drop-zone .krajee-default.file-preview-frame {
  float: none;
  margin: 0;
  padding: 5px 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
  text-align: left;
  position: relative;
}

.drop-zone .file-actions {
  position: absolute;
  right: 0;
  top: 0;
}

.drop-zone .krajee-default .file-footer-caption {
  text-align: left;
  margin-bottom: 0;
  font-size: 14px;
  padding: 0;
}

.drop-zone .krajee-default .file-caption-info,
.drop-zone .krajee-default .file-size-info {
  width: 100%;
  height: auto;
  margin: 0;
  color: #0C0C0C;
  font-size: 12px;
}

.drop-zone .krajee-default.file-preview-frame .file-thumbnail-footer {
  height: auto;
}

.drop-zone .krajee-default.file-preview-frame:not(.file-preview-error):hover {
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.drop-zone .file-drop-zone.clickable:hover {
  border: none;
}

.drop-zone .kv-file-remove {
  font-size: 10px;
  line-height: 14px;
  text-transform: uppercase;
  color: #7D7D7D;
  padding: 0 2px;
}

.drop-zone .kv-file-remove:hover {
  color: #FF5700;
}

.drop-zone.is-required::after {
  content: "*";
  position: absolute;
  right: 0;
  top: -2px;
  color: #7D7D7D;
  line-height: 1;
  font-size: 13px;
}

.fileloaded .drop-zone > span {
  /*display: none;*/
}

#question .drop-zone::after {
  content: ""; 
  display: none;
}

/*
=====================================*/
.form-agree {
  margin-top: 20px;
  color: #7D7D7D;
  font-size: 12px;
}

.form-agree a {
  color: #000;
}

.form-agree a:hover {
  color: #FF5700;
}

.jGrowl-notification.af-message-success{
  display: none !important;
  opacity: 0;
}

/*
=====================================*/
.block-question {
  line-height: 24px;
  font-size: 14px;
  border: 1px solid #E8E8E8;
  padding: 45px 20px;
  margin-top: 40px;
  position: relative;
}

@media (min-width: 768px) {
  .block-question {
    padding: 5px 40px;
  }
}

@media (min-width: 1200px) {
  .block-question {
    margin-top: 50px;
  }
}

.block-question > div {
  position: relative;
  z-index: 2;
}

.block-question-title {
  font-size: 18px;
  font-family: Montserrat;
}

.block-question .btn {
  margin-top: 25px;
}

.block-question .btn:active, .block-question .btn:focus {
  background-color: transparent !important;
  color: #FF5700 !important;
  border: 1px solid #FF5700 !important;
}

.block-question .btn:hover {
  color: #fff !important;
}

.block-question img {
  margin-left: auto;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100px;
}

@media (min-width: 768px) {
  .block-question img {
    position: relative;
    width: auto;
  }
}

/*
=====================================*/
.side-menu {
  padding: 0;
  margin: 0;
  list-style: none;
}

.side-menu a {
  color: #0C0C0C;
  line-height: 16px;
  font-size: 14px;
  position: relative;
  display: block;
  padding: 4px 15px;
}

.side-menu a:hover {
  background-color: #F4F4F4;
}

.side-menu ul {
  padding: 0;
  margin: 0;
  list-style: none;
  border-bottom: 1px solid #E8E8E8;
}

.side-menu ul a {
  line-height: 24px;
}

.side-menu > li > a {
  font-weight: 900;
  font-family: Montserrat;
  padding: 12px 35px 12px 15px;
}

.side-menu > li .active > a {
  background-color: #F4F4F4;
}

.side-menu > li .active > a::after {
  content: "";
  width: 8px;
  height: 8px;
  position: absolute;
  right: 15px;
  top: 12px;
  -webkit-border-radius: 50%;
          border-radius: 50%;
  background-color: #0C0C0C;
}

.side-menu > li .active > a:hover {
  color: #0C0C0C;
}

.side-menu-sub .parent > a::after, .side-menu-sub .parent > a::before {
  content: "";
  position: absolute;
  right: 8px;
  top: 12px;
  background-color: #0C0C0C;
  z-index: 2;
  width: 16px;
  height: 16px;
}

.side-menu-sub .parent > a::after {
  background: url(../images/icon-plus.svg) no-repeat 50% 50%;
}

.side-menu-sub .parent > a::before {
  background: url(../images/icon-minus.svg) no-repeat 50% 50%;
  opacity: 0;
}

.side-menu-sub .parent.active > a::before, .side-menu-sub .parent.open > a::before {
  opacity: 1;
}

.side-menu-sub .parent.active > a::after, .side-menu-sub .parent.open > a::after {
  opacity: 0;
}

.side-menu-sub ul {
  display: none;
}

.side-menu-sub .active > ul,
.side-menu-sub .open > ul {
  display: block;
}

.side-menu + .filter-side-bnr {
  padding-left: 15px;
}

.side-menu-cats .parent > a {
  padding-left: 7px;
}

.side-menu-services{
  opacity: 0;
  transition: opacity .3s;
}

.side-menu-services.show{
  opacity: 1;
}

/*
=====================================*/
.side-links a {
  display: block;
  color: #0C0C0C;
  font-size: 14px;
  line-height: 24px;
  margin-top: 16px;
}

.side-links a:hover {
  color: #FF5700;
}

.filter + .side-links {
  padding-left: 15px;
}

/*
=====================================*/
.side-menu-links {
  padding: 0;
  margin: 0;
  list-style: none;
}

.side-menu-links a {
  color: #7D7D7D;
  line-height: 24px;
  font-size: 14px;
  position: relative;
  display: block;
  padding: 5px 15px 5px 20px;
  letter-spacing: 0.01em;
}

.side-menu-links a:hover {
  color: #0C0C0C;
}

.side-menu-links .active > a {
  color: #0C0C0C;
}

.side-menu-links .active > a::after {
  content: "";
  width: 8px;
  height: 8px;
  position: absolute;
  left: 0;
  top: 12px;
  -webkit-border-radius: 50%;
          border-radius: 50%;
  background-color: #0C0C0C;
}

.side-menu-links .active > a:hover {
  color: #0C0C0C;
}

/*
=====================================*/
.inner-form-success img {
  margin-bottom: 15px;
}

/*
=====================================*/
@media (max-width: 767px) {
  .content .city-results {
    margin-right: -20px;
  }
}

.content .city-results table {
  font-size: 12px;
  line-height: 16px;
  min-width: 500px;
}

/*
=====================================*/
.ios-checkbox {
  white-space: nowrap;
  position: relative;
  padding-left: 54px;
}

.ios-checkbox label {
  position: absolute !important;
  left: 0;
  top: 0;
}

.ios-checkbox span {
  white-space: normal;
  display: inline-block;
  padding-top: 2px;
}

.ios-checkbox + .ios-checkbox {
  margin-top: 20px;
}

/*
=====================================*/
.map-storage {
  height: calc(100vh - 100px);
  min-height: 300px;
  background-color: #F4F4F4;
}

@media (min-width: 768px) {
  .map-storage {
    height: 400px;
  }
}

@media (max-width: 767px) {
  .map-storage-action {
    background-color: #fff;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    padding: 20px 0;
  }
}

@media (max-width: 767px) {
  .map-storage-block {
    display: none;
  }
}

/*
=====================================*/
@media (max-width: 767px) {
  .open-map-storage {
    overflow: hidden;
  }
}

@media (max-width: 767px) {
  .open-map-storage .map-storage-block {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;
    background-color: #fff;
    z-index: 9;
    padding-top: 24px;
  }
}

.open-map-storage .map-storage-block form {
  padding-left: 20px;
  padding-right: 20px;
}

/*
=====================================*/
.section-head .title {
  width: 100%;
  max-width: 1000px;
}

.section-head .content {
  width: 100%;
  max-width: 650px;
  margin-top: 20px;
}

/*
=====================================*/
.section-gray {
  background: #F4F4F4;
}

.section-gray .btn-secondary-black {
  background-color: transparent;
}

.section-paddings {
  padding-top: 60px;
  padding-bottom: 60px;
}

@media (min-width: 1200px) {
  .section-paddings {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.section-color {
  background: #FFF4E4;
}

/*
=====================================*/
.item-block + .item-block {
  margin-top: 60px;
}

@media (min-width: 1024px) {
  .item-block-data {
    padding-left: 30px;
  }
}

.item-block .title {
  margin-bottom: 25px;
  margin-top: 40px;
}

@media (min-width: 1024px) {
  .item-block .title {
    margin-top: 0;
  }
}

.item-block .title span {
  color: #FF5700;
  font-size: 60px;
  line-height: 58px;
  display: block;
}

@media (min-width: 768px) {
  .item-block .title span {
    display: inline-block;
  }
}

.item-block ul {
  list-style: none;
  font-size: 16px;
  line-height: 28px;
  margin: 0;
  padding: 0;
}

@media (min-width: 768px) {
  .item-block ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
}

.item-block ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
}

@media (min-width: 768px) {
  .item-block ul li {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
  }
}

.item-block ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background-color: #FF5700;
  -webkit-border-radius: 50%;
          border-radius: 50%;
  line-height: 1;
}

/*
=====================================*/
.teh-item {
  font-size: 16px;
  font-family: Montserrat;
  font-weight: 900;
  margin-top: 10px;
  margin-bottom: 10px;
  position: relative;
  max-width: 300px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (min-width: 768px) {
  .teh-item {
    max-width: 100%;
    text-align: center;
    padding: 0 30px;
    margin-top: 30px;
    margin-bottom: 20px;
    font-size: 18px;
    display: block;
  }
}

@media (min-width: 1440px) {
  .teh-item {
    padding: 0 40px;
  }
}

@media (min-width: 1900px) {
  .teh-item {
    padding: 0 50px;
  }
}

.teh-item-icon {
  text-align: center;
  margin-bottom: 0;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 30%;
      -ms-flex: 0 0 30%;
          flex: 0 0 30%;
  height: 80px;
  margin-right: 20px;
}

@media (min-width: 768px) {
  .teh-item-icon {
    margin-bottom: 15px;
    margin-right: 0;
  }
}

.teh-item-icon img,
.teh-item-icon svg {
  max-height: 95%;
  max-height: 95%;
}

.teh-item-icon svg {
  width: 100%;
}

.teh-carousel {
  width: 100%;
  height: 350px;
}

.teh-carousel .swiper-slide {
  font-size: 18px;
  height: 100px;
  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

/*
=====================================*/
.item-block2 {
  background-color: #fff;
  padding: 24px 16px;
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0.005em;
  position: relative;
  display: block;
  color: #0C0C0C;
}

.item-block2 span {
  display: block;
}

@media (min-width: 768px) {
  .item-block2 {
    height: 100%;
    padding-bottom: 50px;
  }
}

@media (min-width: 1024px) {
  .item-block2 {
    padding: 40px 32px 80px;
  }
}

.item-block2-title {
  font-size: 18px;
  line-height: 32px;
  font-weight: 900;
  font-family: Montserrat;
  color: #0C0C0C;
  margin-bottom: 20px;
  -webkit-transition: color .3s;
  -o-transition: color .3s;
  transition: color .3s;
}

@media (min-width: 1024px) {
  .item-block2-title {
    font-size: 24px;
    line-height: 32px;
  }
}

@media (min-width: 768px) {
  .item-block2-more {
    position: absolute;
    bottom: 20px;
    left: 16px;
  }
}

@media (min-width: 1024px) {
  .item-block2-more {
    bottom: 40px;
    left: 32px;
  }
}

.item-block2:hover {
  color: #0C0C0C;
}

.item-block2:hover .item-block2-title {
  color: #FF5700;
}

.item-block2:hover .link-gray {
  color: #0C0C0C;
}

.item-block2:hover .link-gray svg {
  fill: #0C0C0C;
  -webkit-transform: translateX(3px);
      -ms-transform: translateX(3px);
          transform: translateX(3px);
}

/*
=====================================*/
.teh-filter {
  margin-top: 30px;
  margin-bottom: 30px;
}

.teh-filter fieldset {
  margin-top: 10px;
}

@media (min-width: 768px) {
  .teh-filter fieldset {
    max-width: 300px;
    width: 100%;
    margin: 10px;
  }
}

.teh-filter .filter-fieldset-inner {
  bottom: 0;
  z-index: 100;
}

@media (min-width: 1024px) {
  .teh-filter .filter-fieldset-inner {
    bottom: auto;
  }
}

.teh-filter .disabled{
  opacity: .4;
}

.teh-filter .filter-title>span + svg{
  display: none;
}

/*
=====================================*/
.margin-bottom-negative {
  margin-bottom: -60px;
}

/*
=====================================*/
@media (min-width: 1600px) {
  .section-discuss .container {
    background: url(../images/solution-left.png) no-repeat 0 50%, url(../images/solution-right.png) no-repeat 100% 50%;
  }
}

.section-discuss-outer {
  width: 100%;
  max-width: 770px;
}

/*
=====================================*/
.con-item {
  margin-bottom: 30px;
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0.005em;
  position: relative;
  padding: 0 10px 0 70px;
}

.con-item-icon {
  width: 70px;
  position: absolute;
  left: 5px;
  top: 0;
}

.con-item-icon svg {
  max-width: 70%;
  height: 40px;
  fill: #FF5700;
}

/*
=====================================*/
.advantages-carousel .teh-item {
  padding-left: 20px;
  padding-right: 20px;
  display: block;
  text-align: center;
  max-width: 100%;
}

.advantages-carousel .teh-item-icon {
  margin-right: 0;
  margin-bottom: 20px;
}

/*
=====================================*/
.solution-item {
  display: block;
  padding: 20px;
  background-color: #fff;
  color: #0C0C0C;
  text-align: center;
  font-family: Montserrat;
  font-weight: 900;
  font-size: 18px;
  line-height: 24px;
  -webkit-transition: color .3s;
  -o-transition: color .3s;
  transition: color .3s;
}

@media (min-width: 768px) {
  .solution-item {
    height: 100%;
    padding: 32px 24px;
  }
}

.solution-item-title {
  min-height: 48px;
}

.solution-item-icon {
  margin-top: 25px;
  height: 80px;
}

.solution-item-icon img,
.solution-item-icon svg {
  max-height: 95%;
  max-height: 95%;
}

.solution-item-icon svg {
  width: 100%;
}

/*
=====================================*/
@media (max-width: 767px) {
  .solutions-list > *:nth-child(n+5) {
    display: none;
  }
}

/*
=====================================*/
.breadcrumb {
  padding: 0;
  background-color: transparent;
  color: #7D7D7D;
  font-size: 12px;
  line-height: 16px;
}

@media (min-width: 1024px) {
  .breadcrumb {
    padding-top: 10px;
    padding-bottom: 5px;
  }
}

.breadcrumb a {
  color: #7D7D7D;
}

.breadcrumb a:hover {
  color: #0C0C0C;
}

.breadcrumb svg {
  width: 8px;
  height: 8px;
  fill: #7D7D7D;
  vertical-align: middle;
  margin: 4px 5px 0;
}

/*
=====================================*/
.search-vendor {
  width: 100%;
  max-width: 505px;
  margin-bottom: 40px;
  margin-left: 0;
}

@media (min-width: 1024px) {
  .search-vendor {
    height: 40px;
  }
}

@media (min-width: 1024px) {
  .search-vendor button {
    height: 40px;
    width: 40px;
  }
}

@media (min-width: 1200px) {
  .section-middle {
    min-height: calc(100vh - 600px);
  }
}

/*
=====================================*/
.accordion-row + .accordion-row {
  border-top: 1px solid #E8E8E8;
}

.accordion-content {
  padding: 0 0 25px 44px;
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0.005em;
  width: 100%;
  max-width: 650px;
}

@media (min-width: 768px) {
  .accordion-content {
    padding-left: 88px;
  }
}

.btn-accordion {
  width: 100%;
  position: relative;
  border: none;
  background-color: transparent;
  padding: 20px 0 20px 44px;
  font-size: 24px;
  font-weight: 900;
  font-family: Montserrat;
  line-height: 34px;
  text-align: left;
}

.btn-accordion  a{
  display: block;
  min-width: 150px;
  text-align: right;
}


.btn-accordion  img{
  max-height: 50px;
}

@media (min-width: 768px) {
  .btn-accordion {
    padding: 24px 0 24px 88px;
  }
}

.btn-accordion:focus, .btn-accordion:active {
  outline: none;
}

.btn-accordion:hover svg {
  fill: #0C0C0C;
}

.btn-accordion svg {
  position: absolute;
  left: 6px;
  top: 40px;
  fill: #7D7D7D;
  width: 12px;
  height: 12px;
  margin-top: -7px;
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

@media (min-width: 768px) {
  .btn-accordion svg {
    top: 50%;
    left: 29px;
  }
}

.btn-accordion.collapsed svg {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}

.btn-accordion img {
  display: inline-block;
  margin-top: 15px;
}

@media (min-width: 768px) {
  .btn-accordion img {
    margin-top: 0;
    height: 40px;
  }
}

/*
=====================================*/
#service-centers .modal-dialog {
  -webkit-border-radius: 0;
          border-radius: 0;
  width: 100%;
  max-width: 95%;
  padding: 20px;
}

@media (min-width: 768px) {
  #service-centers .modal-dialog {
    width: 500px;
    padding: 40px;
  }
}

.tab-overflow-scroll {
  /*
    max-height: 50vh;
    overflow: auto;
    */
}

.service-centers-tab {
  border: none;
  background: #F4F4F4;
  -webkit-border-radius: 24px;
          border-radius: 24px;
  margin-bottom: 24px;
  margin-top: 20px;
  display: inline-block;
  font-size: 14px;
  line-height: 24px;
  text-transform: uppercase;
}

.service-centers-tab li {
  display: inline-block;
}

.service-centers-tab a {
  display: inline-block;
  padding: 8px 24px;
  color: #0C0C0C;
  -webkit-border-radius: 24px;
          border-radius: 24px;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

.service-centers-tab a:hover {
  color: #FF5700;
}

.service-centers-tab a.active {
  color: #fff;
  background-color: #FF5700;
}

/*
=====================================*/
.list-plus {
  margin: 0;
  padding: 0;
  list-style: none;
}

.list-plus > li {
  border-bottom: 1px solid #E8E8E8;
}

.list-plus > li > a {
  color: #0C0C0C;
  display: block;
  padding: 12px 16px 11px;
  font-family: Montserrat;
  font-weight: 800;
  font-size: 14px;
  line-height: 16px;
  position: relative;
}

.list-plus > li > a:hover {
  background-color: #F4F4F4;
}

.list-plus > li:last-child {
  border: none;
}

.list-plus ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.list-plus ul a {
  color: #0C0C0C;
  display: block;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0.01em;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  padding: 5px 16px;
}

.list-plus ul a:hover {
  color: #FF5700;
}

/*
=====================================*/
.alphabets {
  margin-top: 10px;
}

.alphabet-filter-row {
  border-bottom: 1px solid #E8E8E8;
  border-top: 1px solid #E8E8E8;
  margin-bottom: -1px;
}

@media (min-width: 1200px) {
  .alphabet-filter-row > * {
    white-space: nowrap;
  }
}

.alphabet-filter-row a {
  display: inline-block;
  color: #0C0C0C;
  padding: 5px 3px;
  font-weight: 800;
  font-size: 16px;
  line-height: 24px;
  font-family: Montserrat;
}

@media (min-width: 1200px) {
  .alphabet-filter-row a {
    padding: 5px 7px;
  }
}

@media (min-width: 1900px) {
  .alphabet-filter-row a {
    padding: 6px 10px 5px;
  }
}

.alphabet-filter-row a:hover {
  color: #FF5700;
}

.alphabet-filter-row a.disabled {
  color: #C8C8C8;
}

.alphabet-filter-row a.active {
  color: #FF5700;
}

.alphabet-filter-row .alphabet-filter-reset {
  color: #0C0C0C;
  font-size: 12px;
  line-height: 24px;
  font-family: Rubik;
  font-weight: normal;
  letter-spacing: 0.06em;
}

.alphabet-filter-row .alphabet-filter-reset.disabled {
  color: #C8C8C8;
  cursor: default;
}

.alphabet-filter-row .alphabet-filter-reset.disabled:hover {
  color: #C8C8C8;
}

/*
=====================================*/
.vendors-list {
  margin-top: 40px;
}

.vendors-list .col {
  width: 50%;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 50%;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
}

@media (min-width: 768px) {
  .vendors-list .col {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 140px;
        -ms-flex: 0 0 140px;
            flex: 0 0 140px;
  }
}

@media (min-width: 1024px) {
  .vendors-list .col {
    max-width: 140px;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 140px;
        -ms-flex: 0 0 140px;
            flex: 0 0 140px;
    width: 100%;
  }
}

@media (min-width: 1900px) {
  .vendors-list .col {
    max-width: 11.11%;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 11.11%;
        -ms-flex: 0 0 11.11%;
            flex: 0 0 11.11%;
  }
}

.vendors-list .vendor-block {
  max-width: 100%;
  width: 140px;
  margin: 0 auto 25px;
}

.vendor-row {
  margin-bottom: 40px;
}

.vendor-letter {
  text-transform: uppercase;
  font-weight: 900;
  font-family: Montserrat;
  font-size: 32px;
  line-height: 40px;
  margin-bottom: 20px;
}

/*
=====================================*/
.side-vendor-block {
  font-size: 12px;
  line-height: 16px;
  color: #7D7D7D;
}

.side-vendor-block a {
  color: #0C0C0C;
}

.side-vendor-block a:hover {
  color: #FF5700;
}

.side-vendor-block img {
  max-height: 80px;
  margin-bottom: 15px;
}

/*
=====================================*/
.catalog-item {
  display: block;
  text-align: center;
  border: 1px solid #E8E8E8;
  padding: 16px 8px;
  font-weight: 900;
  font-size: 14px;
  line-height: 16px;
  font-family: Montserrat;
  color: #0C0C0C;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

@media (min-width: 768px) {
  .catalog-item {
    height: 100%;
  }
}

.catalog-item span {
  display: block;
}

.catalog-item-icon {
  position: relative;
  height: 50px;
  margin-bottom: 15px;
}

.catalog-item-icon img,
.catalog-item-icon svg {
  position: absolute;
  margin: auto;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  max-width: 90%;
  max-height: 90%;
}

.catalog-item:hover {
  border-color: #C8C8C8;
}

/*
=====================================*/
.content-bnr {
  display: block;
  text-align: center;
}

/*
=====================================*/
.large-item {
  display: block;
  background: #FFFFFF;
  border: 1px solid #E8E8E8;
  -webkit-transition: border-color .3s;
  -o-transition: border-color .3s;
  transition: border-color .3s;
  height: 100%;
  color: #0C0C0C;
}

.large-item span {
  display: block;
}

.large-item-image {
  height: 180px;
  position: relative;
  overflow: hidden;
}

@media (min-width: 1200px) {
  .large-item-image {
    height: 280px;
  }
}

.large-item-image img {
  -webkit-transition: -webkit-transform .8s;
  transition: -webkit-transform .8s;
  -o-transition: transform .8s;
  transition: transform .8s;
  transition: transform .8s, -webkit-transform .8s;
}

.large-item-data {
  padding: 24px 16px;
}

@media (min-width: 1024px) {
  .large-item-data {
    padding: 30px 24px;
  }
}

.large-item-title {
  font-family: Montserrat;
  font-weight: 800;
  font-size: 24px;
  line-height: 32px;
  -webkit-transition: color .3s;
  -o-transition: color .3s;
  transition: color .3s;
}

@media (min-width: 1024px) {
  .large-item-title {
    font-size: 32px;
    line-height: 40px;
  }
}

.large-item-txt {
  margin-top: 15px;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0.02em;
}

@media (min-width: 1024px) {
  .large-item-txt {
    font-size: 18px;
    line-height: 32px;
  }
}

.large-item:hover {
  color: #0C0C0C;
  border-color: #C8C8C8;
}

.large-item:hover .large-item-title {
  color: #FF5700;
}

.large-item:hover img {
  -webkit-transform: scale(1.01);
      -ms-transform: scale(1.01);
          transform: scale(1.01);
}

/*
=====================================*/
.about-carousel {
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

@-webkit-keyframes progressbar {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

@keyframes progressbar {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

.about-carousel-pagination {
  position: absolute;
  bottom: 40px;
  left: 15px;
}

@media (min-width: 1200px) {
  .about-carousel-pagination {
    bottom: 50px;
  }
}

@media (min-width: 1440px) {
  .about-carousel-pagination {
    bottom: 80px;
  }
}

#progress {
  position: relative;
  width: 100%;
  max-width: 320px;
  height: 1px;
  background-color: #000;
}

#progress::after {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  height: 1px;
  width: 100%;
  background-color: #FF5700;
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
  width: 0%;
  -webkit-animation: progressbar 6s 1 ease-in-out;
          animation: progressbar 6s 1 ease-in-out;
}

/*
=====================================*/
.no-first .header {
  z-index: -1;
  opacity: 0;
}

.no-first.open-nav .header {
  z-index: inherit;
  opacity: 1;
}

.section-height {
  overflow: hidden;
  min-height: 600px;
  height: 100vh;
}

@media (min-width: 1200px) {
  .section-height {
    min-height: 650px;
  }
}

@media (min-width: 1900px) {
  .section-height {
    min-height: 800px;
  }
}

.hero {
  width: 100%;
  position: relative;
  z-index: 3;
}

.hero .container {
  position: relative;
  z-index: 3;
  padding-top: 80px;
  min-height: 550px;
  height: 100vh;
}

@media (min-width: 768px) {
  .hero .container {
    min-height: 600px;
  }
}

@media (min-width: 1200px) {
  .hero .container {
    min-height: 630px;
  }
}

@media (min-width: 1900px) {
  .hero .container {
    min-height: 800px;
  }
}

.hero-content {
  height: 100%;
  padding-top: 70px;
  padding-bottom: 120px;
  position: relative;
}

@media (min-width: 768px) {
  .hero-content {
    padding-top: 100px;
  }
}

@media (min-width: 1024px) {
  .hero-content {
    padding-top: 120px;
  }
}

@media (min-width: 1440px) {
  .hero-content {
    padding-top: 150px;
    padding-bottom: 120px;
  }
}

.hero-title {
  max-width: 500px;
  width: 100%;
  margin-top: 100px;
}

@media (min-width: 1024px) {
  .hero-title {
    margin-top: 100px;
  }
}

@media (min-width: 1200px) {
  .hero-title {
    margin-top: 70px;
  }
}

@media (min-width: 1440px) {
  .hero-title {
    margin-top: 150px;
  }
}

@media (min-width: 1900px) {
  .hero-title {
    margin-top: 200px;
  }
}

.hero-txt {
  max-width: 400px;
  width: 100%;
  font-size: 16px;
  line-height: 24px;
  position: absolute;
  bottom: 70px;
}

@media (min-width: 1200px) {
  .hero-txt {
    bottom: 70px;
  }
}

@media (min-width: 1440px) {
  .hero-txt {
    bottom: 100px;
  }
}

.hero-txt .about-carousel-vertical {
  height: 120px;
  overflow: hidden;
}

.hero-txt a {
  color: #fff;
  display: block;
  -webkit-transition: color .3s;
  -o-transition: color .3s;
  transition: color .3s;
}

.hero-txt a:hover {
  color: #FF5700;
}

.hero.is-cloned {
  position: fixed;
  top: 0;
  left: 0;
}

.hero-cloned {
  min-height: 100vh;
}

/*
======================================*/
#fullpage {
  z-index: 3;
}

/*
=====================================*/
.section-about-statistic {
  position: relative;
  z-index: 4;
}

.section-about-statistic .container {
  max-width: 1034px;
  position: relative;
  z-index: 34;
}

.section-about-statistic .content {
  margin-top: 25px;
  max-width: 650px;
}

.bg-txt {
  position: fixed;
  left: 50%;
  top: 40%;
  font-weight: bold;
  font-size: 38px;
  line-height: 45px;
  text-align: center;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #fff;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  max-width: 1034px;
  width: 100%;
  -webkit-clip-path: circle(0% at 50% 0);
          clip-path: circle(0% at 50% 0);
  z-index: 1;
}

@media (min-width: 768px) {
  .bg-txt {
    font-size: 78px;
    line-height: 94px;
  }
}

@media (min-width: 1200px) {
  .bg-txt {
    font-size: 132px;
    line-height: 164px;
  }
}

.bg-txt-outer {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  background-color: #F4F4F4;
}

@-webkit-keyframes textAppear {
  0% {
    -webkit-clip-path: circle(5% at 40% 0);
            clip-path: circle(5% at 40% 0);
  }
  100% {
    -webkit-clip-path: circle(140% at 0% 0%);
            clip-path: circle(140% at 0% 0%);
  }
}

@keyframes textAppear {
  0% {
    -webkit-clip-path: circle(5% at 40% 0);
            clip-path: circle(5% at 40% 0);
  }
  100% {
    -webkit-clip-path: circle(140% at 0% 0%);
            clip-path: circle(140% at 0% 0%);
  }
}

@-webkit-keyframes textDisappear {
  0% {
    -webkit-clip-path: circle(140% at 0 0);
            clip-path: circle(140% at 0 0);
  }
  100% {
    -webkit-clip-path: circle(3% at 40% 0);
            clip-path: circle(3% at 40% 0);
  }
}

@keyframes textDisappear {
  0% {
    -webkit-clip-path: circle(140% at 0 0);
            clip-path: circle(140% at 0 0);
  }
  100% {
    -webkit-clip-path: circle(3% at 40% 0);
            clip-path: circle(3% at 40% 0);
  }
}

.section-about-statistic-container {
  -webkit-transition: opacity .5s;
  -o-transition: opacity .5s;
  transition: opacity .5s;
}

.animate-txt .bg-txt {
  -webkit-animation: textAppear .5s .3s ease-in forwards;
          animation: textAppear .5s .3s ease-in forwards;
}

.animate-txt .section-about-statistic-container {
  -webkit-animation-name: fadeIn;
          animation-name: fadeIn;
}

.statistic-scrolled .bg-txt {
  -webkit-clip-path: circle(140% at 0 0);
          clip-path: circle(140% at 0 0);
  -webkit-animation: textDisappear .7s .5s ease-out forwards;
          animation: textDisappear .7s .5s ease-out forwards;
}

/*
=====================================*/
.st-item {
  margin-bottom: 50px;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0.005em;
}

@media (min-width: 768px) {
  .st-item {
    font-size: 16px;
    line-height: 28px;
    padding-right: 15px;
  }
}

@media (min-width: 1024px) {
  .st-item {
    font-size: 16px;
    line-height: 28px;
  }
}

@media (min-width: 1200px) {
  .st-item {
    padding-right: 30px;
  }
}

.st-item-num {
  font-family: Montserrat;
  font-weight: 900;
  font-size: 60px;
  line-height: 60px;
}

@media (min-width: 1024px) {
  .st-item-num {
    font-size: 80px;
    line-height: 80px;
  }
}

.st-item-title {
  font-family: Montserrat;
  font-weight: 900;
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 16px;
}

@media (min-width: 1024px) {
  .st-item-title {
    font-size: 24px;
    line-height: 32px;
  }
}

/*
=====================================*/
.section-color-about,
.section-gray-about,
.section-values-about {
  position: relative;
  z-index: 3;
}

.section-color-about .container,
.section-gray-about .container,
.section-values-about .container {
  padding-left: 20px;
  padding-right: 20px;
}

.section-color-about {
  z-index: 4;
}

.section-about-statistic .container,
.section-map .container {
  padding-left: 20px;
  padding-right: 20px;
}

.section-values-about .container{
  position: relative;
  z-index: 2
}

.slider-images{
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
}

.slider-images img{
  position: absolute;
  top: 50%;
  right: 0%;
  transform: translate(0, -50%);
  max-width: 100%;
  max-height: 100%;
  display: none;
}

.slider-images .slider-img-0{ 
  display: block;
}

/*
=====================================*/
.logo-animation {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 290px;
  height: 270px;
  -webkit-transform: translate(-50%, -50%) scale(0.8);
      -ms-transform: translate(-50%, -50%) scale(0.8);
          transform: translate(-50%, -50%) scale(0.8);
}

@media (min-width: 1024px) {
  .logo-animation {
    -webkit-transform: translate(-50%, -50%) scale(1);
        -ms-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
  }
}

.logo-animation svg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 0;
}

.logo-animation-outer {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  background-color: #FFF4E4;
  opacity: 0;
  -webkit-transition: opacity .5s;
  -o-transition: opacity .5s;
  transition: opacity .5s;
}

.symbol-o {
  width: 100%;
  height: 100%;
}

.symbol-c {
  width: 140px;
  height: 155px;
  margin-left: -15px;
}

.symbol-s {
  width: 56px;
  height: 68px;
  margin-left: -5px;
}

.symbol-distributed {
  width: 250px;
  height: 24px;
  margin-top: 63px;
  margin-left: 45px;
  -webkit-transition: opacity .5s;
  -o-transition: opacity .5s;
  transition: opacity .5s;
}

.animate-logo .logo-animation-outer {
  opacity: 1;
}

.animate-logo .symbol-o {
  -webkit-animation: symbol .8s .1s forwards;
          animation: symbol .8s .1s forwards;
}

.animate-logo .symbol-c {
  -webkit-animation: symbol .5s .8s forwards;
          animation: symbol .5s .8s forwards;
}

.animate-logo .symbol-s {
  -webkit-animation: symbol .4s 1.2s forwards;
          animation: symbol .4s 1.2s forwards;
}

.animate-logo .bg-txt-outer {
  opacity: 0;
}

.animate-logo .section-color-about-container {
  -webkit-animation-name: fadeIn;
          animation-name: fadeIn;
}

.animate-logo-2 .symbol-o {
  -webkit-animation: symbol-o 1s  forwards;
          animation: symbol-o 1s  forwards;
}

.animate-logo-2 .symbol-c {
  -webkit-animation: symbol-c 1s  forwards;
          animation: symbol-c 1s  forwards;
}

.animate-logo-2 .symbol-s {
  -webkit-animation: symbol-s 1s forwards;
          animation: symbol-s 1s forwards;
}

.animate-logo-2 .symbol-distributed {
  -webkit-animation: symbol-distributed 1s 1s forwards;
          animation: symbol-distributed 1s 1s forwards;
}

@-webkit-keyframes symbol {
  0% {
    opacity: 0.1;
    -webkit-transform: translate(-50%, -50%) scale(0.5);
            transform: translate(-50%, -50%) scale(0.5);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes symbol {
  0% {
    opacity: 0.1;
    -webkit-transform: translate(-50%, -50%) scale(0.5);
            transform: translate(-50%, -50%) scale(0.5);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
  }
}

@-webkit-keyframes symbol-o {
  0% {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  50% {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(-220px, -50%) scale(0.3);
            transform: translate(-220px, -50%) scale(0.3);
  }
}

@keyframes symbol-o {
  0% {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  50% {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(-220px, -50%) scale(0.3);
            transform: translate(-220px, -50%) scale(0.3);
  }
}

@-webkit-keyframes symbol-c {
  0% {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  50% {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(-45px, -50%) scale(0.51);
            transform: translate(-45px, -50%) scale(0.51);
  }
}

@keyframes symbol-c {
  0% {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  50% {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(-45px, -50%) scale(0.51);
            transform: translate(-45px, -50%) scale(0.51);
  }
}

@-webkit-keyframes symbol-s {
  0% {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  50% {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(65px, -50%) scale(1.15);
            transform: translate(65px, -50%) scale(1.15);
  }
}

@keyframes symbol-s {
  0% {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  50% {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(65px, -50%) scale(1.15);
            transform: translate(65px, -50%) scale(1.15);
  }
}

@-webkit-keyframes symbol-distributed {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    margin-left: 53px;
  }
}

@keyframes symbol-distributed {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    margin-left: 53px;
  }
}

/*
=====================================*/
.products-scrolled .logo-animation-outer {
  opacity: 1;
}

.products-scrolled .logo-animation-outer svg {
  opacity: 1;
}

.products-scrolled .symbol-o {
  -webkit-transform: translate(-220px, -50%) scale(0.3);
      -ms-transform: translate(-220px, -50%) scale(0.3);
          transform: translate(-220px, -50%) scale(0.3);
  animation: symbol-o-revers 1.1s 1s forwards;
}

.products-scrolled .symbol-c {
  -webkit-transform: translate(-45px, -50%) scale(0.51);
      -ms-transform: translate(-45px, -50%) scale(0.51);
          transform: translate(-45px, -50%) scale(0.51);
  -webkit-animation: symbol-c-revers 1.1s 1s forwards;
          animation: symbol-c-revers 1.1s 1s forwards;
}

.products-scrolled .symbol-s {
  -webkit-transform: translate(65px, -50%) scale(1.15);
      -ms-transform: translate(65px, -50%) scale(1.15);
          transform: translate(65px, -50%) scale(1.15);
  -webkit-animation: symbol-s-revers 1.1s 1s forwards;
          animation: symbol-s-revers 1.1s 1s forwards;
}

.products-scrolled .symbol-distributed {
  margin-left: 53px;
  -webkit-animation: symbol-distributed-revers 1s forwards;
          animation: symbol-distributed-revers 1s forwards;
}

@-webkit-keyframes symbol-o-revers {
  0% {
    opacity: 1;
    -webkit-transform: translate(-220px, -50%) scale(0.3);
            transform: translate(-220px, -50%) scale(0.3);
  }
  70% {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%) scale(0.3);
            transform: translate(-50%, -50%) scale(0.3);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate(-50%, -50%) scale(0.1);
            transform: translate(-50%, -50%) scale(0.1);
  }
}

@keyframes symbol-o-revers {
  0% {
    opacity: 1;
    -webkit-transform: translate(-220px, -50%) scale(0.3);
            transform: translate(-220px, -50%) scale(0.3);
  }
  70% {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%) scale(0.3);
            transform: translate(-50%, -50%) scale(0.3);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate(-50%, -50%) scale(0.1);
            transform: translate(-50%, -50%) scale(0.1);
  }
}

@-webkit-keyframes symbol-c-revers {
  0% {
    opacity: 1;
    -webkit-transform: translate(-45px, -50%) scale(0.51);
            transform: translate(-45px, -50%) scale(0.51);
  }
  70% {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%) scale(0.51);
            transform: translate(-50%, -50%) scale(0.51);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate(-50%, -50%) scale(0.1);
            transform: translate(-50%, -50%) scale(0.1);
  }
}

@keyframes symbol-c-revers {
  0% {
    opacity: 1;
    -webkit-transform: translate(-45px, -50%) scale(0.51);
            transform: translate(-45px, -50%) scale(0.51);
  }
  70% {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%) scale(0.51);
            transform: translate(-50%, -50%) scale(0.51);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate(-50%, -50%) scale(0.1);
            transform: translate(-50%, -50%) scale(0.1);
  }
}

@-webkit-keyframes symbol-s-revers {
  0% {
    opacity: 1;
    -webkit-transform: translate(65px, -50%) scale(1.15);
            transform: translate(65px, -50%) scale(1.15);
  }
  70% {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%) scale(1.15);
            transform: translate(-50%, -50%) scale(1.15);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate(-50%, -50%) scale(0.1);
            transform: translate(-50%, -50%) scale(0.1);
  }
}

@keyframes symbol-s-revers {
  0% {
    opacity: 1;
    -webkit-transform: translate(65px, -50%) scale(1.15);
            transform: translate(65px, -50%) scale(1.15);
  }
  70% {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%) scale(1.15);
            transform: translate(-50%, -50%) scale(1.15);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate(-50%, -50%) scale(0.1);
            transform: translate(-50%, -50%) scale(0.1);
  }
}

@-webkit-keyframes symbol-distributed-revers {
  0% {
    opacity: 1;
    margin-left: 53px;
  }
  100% {
    margin-left: 45px;
    opacity: 0;
  }
}

@keyframes symbol-distributed-revers {
  0% {
    opacity: 1;
    margin-left: 53px;
  }
  100% {
    margin-left: 45px;
    opacity: 0;
  }
}

/*
=====================================*/
.section-map {
  position: relative;
  z-index: 3;
  background-color: #fff;
}

.section-map-inner {
  width: 100%;
  max-width: 650px;
}

.section-map .container {
  max-width: 1350px;
}

.map-section {
  position: relative;
  width: 1317px;
  -webkit-transform: scale(0.8);
      -ms-transform: scale(0.8);
          transform: scale(0.8);
  margin-left: -110px;
  margin-top: -90px;
}

@media (min-width: 1024px) {
  .map-section {
    -webkit-transform: scale(0.72);
        -ms-transform: scale(0.72);
            transform: scale(0.72);
    margin-left: -150px;
  }
}

@media (min-width: 1200px) {
  .map-section {
    margin: 0;
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1);
  }
}

.map-section-outer {
  overflow: hidden;
  margin-right: -15px;
  margin-left: -15px;
  position: relative;
}

@media (min-width: 1200px) {
  .map-section-outer {
    margin: 0;
    overflow: visible;
  }
}

.map-section-image {
  width: 1024px;
}

.map-section-image img {
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  -o-transition: transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
}

.svg-map {
  width: 100%;
}

.svg-map circle {
  -webkit-transition: -webkit-transform 1.2s ease-in-out;
  transition: -webkit-transform 1.2s ease-in-out;
  -o-transition: transform 1.2s ease-in-out;
  transition: transform 1.2s ease-in-out;
  transition: transform 1.2s ease-in-out, -webkit-transform 1.2s ease-in-out;
}

.svg-city-dots {
  position: absolute;
  bottom: 20px;
  left: -11px;
  width: 1298px;
  opacity: 0;
  -webkit-transition: opacity .9s;
  -o-transition: opacity .9s;
  transition: opacity .9s;
}

.svg-city-dots circle {
  -webkit-animation: pulse infinite;
          animation: pulse infinite;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-delay: 2.5s;
          animation-delay: 2.5s;
  fill: #FF5700;
  stroke: #FF5700;
}

.svg-city-dots circle:nth-of-type(2n) {
  -webkit-animation-delay: 3.5s;
          animation-delay: 3.5s;
  -webkit-animation-duration: 2.5s;
          animation-duration: 2.5s;
}

.svg-city-dots circle:nth-of-type(3n) {
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
}

.is-visible .svg-city-dots {
  opacity: 1;
}

.link-contacts {
  color: #FF5700;
  font-size: 16px;
  text-transform: uppercase;
  line-height: 1;
  -webkit-transition: color .3s;
  -o-transition: color .3s;
  transition: color .3s;
  /*animation: colorPulse 1s infinite;*/
}

.link-contacts svg {
  width: 18px;
  height: 24px;
  fill: #FF5700;
  vertical-align: middle;
  margin-right: 5px;
  margin-top: -2px;
  -webkit-transition: fill .3s;
  -o-transition: fill .3s;
  transition: fill .3s;
  /*animation: colorPulse 1s infinite;*/
}

.link-contacts:hover {
  color: #E14D00;
}

.link-contacts:hover svg {
  fill: #E14D00;
}

@-webkit-keyframes colorPulse {
  0% {
    color: #FF5700;
    fill: #FF5700;
  }
  100% {
    color: #E14D00;
    fill: #E14D00;
  }
}

@keyframes colorPulse {
  0% {
    color: #FF5700;
    fill: #FF5700;
  }
  100% {
    color: #E14D00;
    fill: #E14D00;
  }
}

/*
=====================================*/
@-webkit-keyframes pulse {
  0% {
    stroke-width: 0;
    opacity: 0.3;
  }
  20% {
    stroke-width: 5;
    opacity: 0.6;
  }
  40% {
    stroke-width: 10;
    opacity: 1;
  }
}
@keyframes pulse {
  0% {
    stroke-width: 0;
    opacity: 0.3;
  }
  20% {
    stroke-width: 5;
    opacity: 0.6;
  }
  40% {
    stroke-width: 10;
    opacity: 1;
  }
}

/*
=====================================*/
.section-values-about .container {
  max-width: 1350px;
}

.bg-image {
  height: 100vh;
  min-height: 600px;
  background-repeat: no-repeat;
  background-position: 100% 50%;
}

@media (max-width: 767px) {
  .bg-image {
    background: none !important;
  }
}

@media (min-width: 1024px) {
  .bg-image {
    min-height: 650px;
  }
}

@media (min-width: 1200px) {
  .bg-image {
    min-height: 800px;
  }
}

/*
=====================================*/
.values-nav {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  font-size: 18px;
  line-height: 32px;
  letter-spacing: 0.02em;
}

.values-nav li {
  margin-bottom: 15px;
  cursor: pointer;
}

.values-nav li.active, .values-nav li:hover {
  color: #FF5700;
}

.values-nav li:focus {
  outline: none;
}

.values-nav-menu {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0.02em;
}

.values-nav-menu li {
  margin-bottom: 15px;
  cursor: pointer;
}

.values-nav-menu li a {
  color: #0C0C0C;
}

.values-nav-menu li a:hover {
  color: #FF5700;
}

.values-slider {
  width: 100%;
  max-width: 400px;
  font-size: 18px;
  line-height: 32px;
  letter-spacing: 0.02em;
  margin: 0;
  cursor: -webkit-grab;
  cursor: grab;
}

.values-slider .swiper-slide {
  width: 100%;
  padding-right: 24px;
}

/*
=====================================*/
#fullpage2 {
  min-height: 100vh;
}

#fullpage2 .fp-tableCell{
  position: relative;
}

/*
=====================================*/
.section-how {
  /*min-height: 100vh;*/
  position: relative;
  overflow: hidden;
} 

.section-how .fp-tableCell{
  /*min-height: 100vh;*/
}

.section-how .container {
  position: relative;
  z-index: 3;
  padding-bottom: 80px;
  padding-top: 20px;
}

.section-how .h4 {
  -webkit-transition: all 2s;
  -o-transition: all 2s;
  transition: all 2s;
  font-weight: 900;
  font-family: Montserrat;
}

.section-how .content {
  -webkit-transition: all 2s;
  -o-transition: all 2s;
  transition: all 2s;
}

.section-how-1 .fp-tableCell {
  vertical-align: top;
}

.section-how-1 .container {
  padding-top: 80px;
}

@media (min-width: 1024px) {
  .section-how-1 .container {
    padding-top: 120px;
  }
}

.section-how-img {
  position: absolute;
  top: 0;
  right: 50px;
  bottom: 40px;
  bottom: 0px;
  left: 0;
  z-index: 2; 
  text-align: right;
}

.section-how-img img {
  position: absolute;
  right: 0;
  bottom: 0; 
  max-height: 100%;
}

.section-how.active .h4 {
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeInUp;
          animation-name: fadeInUp;
}

.section-how.active .content {
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeInUp;
          animation-name: fadeInUp;
}

.section-how .fp-scroller {
  height: 100%;
}

.by .col-xl-4 {
  -webkit-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
  opacity: 0;
}

.by .col-xl-5 {
  -webkit-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
  opacity: 0;
}

.direction-up .by .col-xl-4 {
  -webkit-transform: translateY(-70px);
      -ms-transform: translateY(-70px);
          transform: translateY(-70px);
}

@media (min-width: 1200px) {
  .direction-up .by .col-xl-4 {
    -webkit-transform: translateY(-50px);
        -ms-transform: translateY(-50px);
            transform: translateY(-50px);
  }
}

.direction-up .by .col-xl-5 {
  -webkit-transform: translateY(-50px);
      -ms-transform: translateY(-50px);
          transform: translateY(-50px);
}

@media (min-width: 1200px) {
  .direction-up .by .col-xl-5 {
    -webkit-transform: translateY(250px);
        -ms-transform: translateY(250px);
            transform: translateY(250px);
  }
}

.direction-down .by .col-xl-4 {
  -webkit-transform: translateY(-70px);
      -ms-transform: translateY(-70px);
          transform: translateY(-70px);
}

@media (min-width: 1200px) {
  .direction-down .by .col-xl-4 {
    -webkit-transform: translateY(50px);
        -ms-transform: translateY(50px);
            transform: translateY(50px);
  }
}

.direction-down .by .col-xl-5 {
  -webkit-transform: translateY(-50px);
      -ms-transform: translateY(-50px);
          transform: translateY(-50px);
}

@media (min-width: 1200px) {
  .direction-down .by .col-xl-5 {
    -webkit-transform: translateY(-250px);
        -ms-transform: translateY(-250px);
            transform: translateY(-250px);
  }
}

/*
=====================================*/
.rating-item {
  padding: 50px 20px;
  background-color: #fff;
  width: 100%;
  max-width: 770px;
  margin: 0 auto;
}

@media (min-width: 1200px) {
  .rating-item {
    height: 100%;
  }
}

.rating-item-image {
  display: block;
  position: relative;
  height: 100px;
  overflow: hidden;
}

.rating-item-image img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  max-height: 100%;
  max-height: 100%;
  -webkit-transition: -webkit-transform 2s;
  transition: -webkit-transform 2s;
  -o-transition: transform 2s;
  transition: transform 2s;
  transition: transform 2s, -webkit-transform 2s;
}

.rating-item-years {
  margin-top: 24px;
  font-size: 12px;
  line-height: 16px;
  padding: 0 14px;
  display: inline-block;
}

@media (min-width: 768px) {
  .rating-item-years {
    -webkit-border-radius: 32px;
            border-radius: 32px;
    background: #FFE1D2;
  }
}

.rating-item-years span {
  display: inline-block;
  padding: 9px 8px;
  position: relative;
}

.rating-item-years span.break {
  display: none;
}

@media (max-width: 767px) {
  .rating-item-years span {
    -webkit-border-radius: 32px;
            border-radius: 32px;
    background: #FFE1D2;
    padding-left: 20px;
    padding-right: 30px;
    margin: 0 -15px;
  }
  .rating-item-years span:first-child {
    padding-left: 25px;
  }
  .rating-item-years span:nth-child(4n) {
    padding-right: 28px;
  }
  .rating-item-years span:last-child {
    padding-right: 25px;
  }
  .rating-item-years span.break {
    display: block;
    width: 100%;
    height: 0;
    padding: 1px 0;
    background-color: transparent;
  }
  .rating-item-years span.break::before, .rating-item-years span.break::after {
    display: none;
  }
  .rating-item-years span.break + span {
    padding-left: 25px;
  }
  .rating-item-years span.break + span::before {
    display: none;
  }
}

.rating-item-years span + span::before {
  content: "•";
  display: inline-block;
  position: absolute;
  left: 8px;
}

@media (min-width: 768px) {
  .rating-item-years span + span::before {
    left: -4px;
  }
}

.rating-item-hover:hover img {
  -webkit-transform: scale(4) translateY(15px);
      -ms-transform: scale(4) translateY(15px);
          transform: scale(4) translateY(15px);
}

.rating-item-title {
  color: #0C0C0C;
  font-weight: 900;
  font-size: 24px;
  line-height: 32px;
  margin-top: 24px;
  font-family: Montserrat;
}

.rating-item-txt {
  margin-top: 20px;
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0.005em;
}

/*
=====================================*/
.sections {
  background-color: white;
  -webkit-transition: background-color 1s ease-in;
  -o-transition: background-color 1s ease-in;
  transition: background-color 1s ease-in;
}

.section-block {
  background-position: 100% 50%;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

@media (max-width: 767px) {
  .section-block {
    background-position: 50% 100%;
  }
}

@media (max-width: 1199px) {
  .section-block {
    -webkit-background-size: contain;
            background-size: contain;
  }
}

@media (max-width: 1199px) {
  .section-block .row {
    max-width: 650px;
  }
}

.section-block .h2 {
  margin-bottom: 30px;
}

.sections-progress {
  position: fixed;
  bottom: 30px;
  left: 20px;
  height: 1px;
  width: 300px;
  z-index: 3;
  background-color: #7D7D7D;
}

@media (min-width: 1900px) {
  .sections-progress {
    left: 50px;
  }
}

.sections-progress span {
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 1px;
  background-color: #FF5700;
  -webkit-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
  will-change: transform;
}

/*
=====================================*/
.section-how {
  background-color: #fff;
  -webkit-transition: background-color 2s;
  -o-transition: background-color 2s;
  transition: background-color 2s;
}

[data-bgcolor="white"].active {
  background-color: #fff;
}

[data-bgcolor="peach"].active {
  background-color: #FFF4E4;
}

/*
=====================================*/
.products > .row > * {
  margin-bottom: 40px;
}

.products > .row > .col-12 {
  margin-bottom: 20px;
}

.products-total {
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0.01em;
  color: #424242;
}

.products-views a {
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-left: 5px;
}

.products-views a svg {
  width: 100%;
  height: 100%;
  opacity: .2;
  -webkit-transition: opacity .3s;
  -o-transition: opacity .3s;
  transition: opacity .3s;
}

.products-views a.active svg, .products-views a:hover svg {
  opacity: 1;
}

.products-info {
  padding: 18px 16px;
  margin-top: 11px;
  font-size: 14px;
  background-color: #F4F4F4;
}

/*
=====================================*/
.product-item {
  position: relative;
  padding-bottom: 55px;
  height: 100%;
}

.product-item-image {
  display: block;
  position: relative;
  height: 140px;
  margin-bottom: 10px;
}

@media (min-width: 768px) {
  .product-item-image {
    height: 210px;
  }
}

@media (min-width: 1200px) {
  .product-item-image {
    height: 270px;
  }
}

.product-item-image img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  max-height: 95%;
  max-width: 95%;
}

.product-item-vendor {
  font-size: 12px;
  color: #7D7D7D;
}

.product-item-title {
  display: block;
  display: -webkit-box;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0.01em;
  color: #0C0C0C;
  margin: 0 0 10px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .product-item-title {
    line-clamp: 2;
    -webkit-line-clamp: 2;
  }
}

.product-item-params {
  font-size: 12px;
  overflow: hidden;
}

.product-item-params span {
  color: #7D7D7D;
}

.product-item-params p {
  margin: 0;
}

.product-item-actions {
  position: absolute;
  bottom: 0;
  left: 0;
}

.product-item-list {
  padding-bottom: 15px;
  border-bottom: 1px solid #E8E8E8;
  height: auto;
  margin-top: -5px;
}

.product-item-list .product-item-image {
  height: 80px;
}

@media (min-width: 768px) {
  .product-item-list .product-item-image {
    height: 130px;
  }
}

.product-item-list .product-item-actions {
  position: relative;
  bottom: 0;
}

.labels {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  display: inline-block;
}

.labels .label {
  display: block;
  margin-bottom: 5px;
}

.labels .label-promo {
  color: #fff;
  background-color: #FF5700;
  padding: 2px 6px;
  -webkit-border-radius: 3px;
          border-radius: 3px;
  font-size: 12px;
  line-height: 16px;
}

/*
=====================================*/
.btn-product-price {
  position: relative;
  width: 140px;
  max-width: 100%;
  text-align: center;
  text-overflow: unset;
}

.btn-product-price i {
  font-style: normal;
  white-space: nowrap;
}

.btn-product-price i:nth-child(2){
  display: none;
}

.btn-product-price i svg {
  fill: #fff;
  margin-right: 0;
  margin-left: 5px;
  width: 10px;
  height: 10px;
}

.btn-product-price:hover i:first-child {
  display: none;
}

.btn-product-price:hover i:nth-child(2) {
  display: block;
  text-decoration: underline;
  padding-left: 10px;
}

/*
=====================================*/
.no-products {
  font-size: 14px;
  line-height: 24px;
  padding: 20px 0 20px 55px;
  position: relative;
  min-height: 30px;
}

.no-products svg {
  fill: none;
  width: 27px;
  height: 27px;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -13.5px;
}

#mse2_results .no-products{
  margin-left: 20px;
}

/*
=====================================*/
.link-back-category {
  color: #FF5700;
  display: block;
  margin-top: 5px;
  margin-bottom: 5px;
  font-size: 14px;
  line-height: 24px;
  padding-left: 5px;
}

.link-back-category svg {
  width: 10px;
  height: 10px;
  fill: #FF5700;
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
  margin-right: 5px;
}

.link-back-category:hover {
  color: #E14D00;
}

/*
=====================================*/
.product-gallery {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  width: 100%;
  max-width: 600px;
}

.product-gallery-thumbs {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 60px;
      -ms-flex: 0 0 60px;
          flex: 0 0 60px;
  width: 60px;
  margin-right: 60px;
  overflow: hidden;
}

.product-gallery-thumbs .swiper-slide {
  border: 1px solid transparent;
}

.product-gallery-thumbs .swiper-slide.is-hovered {
  border-color: #FF5700;
}

.product-gallery-thumbs img {
  max-width: 95%;
}

.product-gallery-image {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 calc(100% - 120px);
      -ms-flex: 0 0 calc(100% - 120px);
          flex: 0 0 calc(100% - 120px);
  width: calc(100% - 120px);
  position: relative;
  height: 440px;
}

.product-gallery-image img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  max-width: 100%;
  max-height: 90%;
  cursor: pointer;
}

.product-gallery .labels {
  top: 13px;
}

.product-gallery-mobile .labels {
  left: 10px;
  top: 0;
}

.swiper-thumbs {
  height: 420px;
  padding-top: 15px;
  padding-bottom: 15px;
}

.swiper-thumbs .swiper-slide {
  height: 60px !important;
  width: 60px;
  position: relative;
  margin-bottom: 5px;
}

.swiper-thumbs .swiper-slide img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  max-width: 100%;
  max-height: 90%;
}

.thumb-button {
  position: absolute;
  width: 100%;
  background-color: #fff;
  height: 20px;
  z-index: 3;
  text-align: center;
  cursor: pointer;
}

.thumb-button svg {
  width: 14px;
  height: 12px;
  fill: #0C0C0C;
}

.thumb-button-prev {
  top: 0;
}

.thumb-button-prev svg {
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.thumb-button-next {
  bottom: -4px;
}

.thumb-button-next svg {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}

.thumb-button.swiper-button-disabled {
  opacity: .2;
}

.swiper-products-mobile {
  text-align: center;
}

/* cloud zoom wrapper styles */
.cloud-zoom-wrap {
  top: 0;
  z-index: 9999;
  position: relative;
  height: 100%;
}

.cloud-zoom-wrap a {
  height: 100%;
}

/* This is the zoom window. */
.cloud-zoom-big {
  border: 4px solid #ccc;
  overflow: hidden;
}

/* This is the loading message. */
.cloud-zoom-loading {
  color: white;
  background: #222;
  padding: 3px;
  border: 1px solid #000;
}

/*
=====================================*/
.product-intro {
  color: #7D7D7D;
  margin-top: 10px;
  font-size: 14px;
  line-height: 24px;
  width: 100%;
  max-width: 700px;
}

.product-params {
  margin-top: 10px;
  color: #0C0C0C;
  margin-top: 10px;
  font-size: 14px;
  line-height: 24px;
}

.product-params span {
  color: #7D7D7D;
}

.product-params > * {
  margin-right: 10px;
}

.product .btn-product-price {
  margin-top: 20px;
}

.product-promo {
  padding: 20px 0;
  border-top: 1px solid #E8E8E8;
  font-size: 14px;
  line-height: 24px;
}

.product-promo:last-child {
  border-bottom: 1px solid #E8E8E8;
}

.product-promo-date {
  color: #7D7D7D;
}

.product-promo-title {
  display: block;
  color: #0C0C0C;
}

.product-promo-regions {
  font-size: 12px;
  line-height: 16px;
  color: #7D7D7D;
}

.product-options .h4 {
  font-size: 24px;
  font-family: Montserrat;
}

.product-options .h6 {
  font-family: Montserrat;
}

/*
=====================================*/
.options {
  position: relative;
  padding: 0;
  margin: 0 0 60px;
  list-style: none;
  width: 100%;
  max-width: 700px;
  font-size: 14px;
  line-height: 24px;
}

.options li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  overflow: hidden;
  margin-top: 11px;
}

.options li > span {
  display: block;
  height: auto;
}

.options li > span:first-child {
  position: relative;
  background-color: #fff;
  color: #7D7D7D;
  max-width: 340px;
}

.options li > span:first-child::after {
  content: "";
  position: absolute;
  height: 1px;
  left: 100%;
  top: 15px;
  width: 700px;
  z-index: -1;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(10%, #7D7D7D), color-stop(0%, rgba(255, 255, 255, 0)));
  background-image: -webkit-linear-gradient(left, #7D7D7D 10%, rgba(255, 255, 255, 0) 0%);
  background-image: -o-linear-gradient(left, #7D7D7D 10%, rgba(255, 255, 255, 0) 0%);
  background-image: linear-gradient(to right, #7D7D7D 10%, rgba(255, 255, 255, 0) 0%);
  background-position: top;
  -webkit-background-size: 15px 1px;
          background-size: 15px 1px;
  background-repeat: repeat-x;
}

.options li > span:last-child {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 45%;
      -ms-flex: 0 0 45%;
          flex: 0 0 45%;
}

.options li > span span {
  background-color: #fff;
  position: relative;
  z-index: 2;
  display: block;
  padding-left: 5px;
  width: 100%;
}

.options li.sub_accordian {
  margin-top: 16px;
}

.options + .h6 {
  margin-top: -45px;
}

/*
=====================================*/
.policy-block-title {
  font-family: Montserrat;
  font-weight: 800;
  font-size: 18px;
  line-height: 24px;
  margin-bottom: 24px;
}

.policy-block-desc {
  font-size: 12px;
  line-height: 16px;
  border-top: 1px solid  #E8E8E8;
  padding-top: 20px;
  margin-bottom: 25px;
  width: 100%;
  max-width: 360px;
}

@media (min-width: 1200px) {
  .policy-block-desc {
    margin-left: 70px;
  }
}

@media (min-width: 1440px) {
  .policy-block-desc {
    margin-left: 0;
  }
}

/*
=====================================*/
.section-404 {
  background-color: #282727;
  min-height: 100vh;
  padding-top: 100px;
  padding-bottom: 20px;
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0.005em;
}

@media (min-width: 1024px) {
  .section-404 {
    padding-top: 150px;
  }
}

.section-404 .btn {
  margin-top: 30px;
}

.block-404 {
  width: 300px;
  height: 190px;
  margin: 20px auto 30px;
  position: relative;
  background: url(../images/bg-404.png) no-repeat 50% 50%;
  -webkit-background-size: 100% auto;
          background-size: 100% auto;
  text-align: center;
}

@media (min-width: 1024px) {
  .block-404 {
    width: 370px;
    height: 220px;
  }
}

.block-404-text {
  position: absolute;
  top: 25px;
  right: 0;
  width: 110px;
  color: #0C0C0C;
  font-size: 12px;
  line-height: 18px;
}

@media (min-width: 1024px) {
  .block-404-text {
    font-size: 14px;
    right: 12px;
    top: 30px;
  }
}

.block-404-text strong {
  font-size: 26px;
  font-weight: 900;
  display: block;
  font-family: Montserrat;
  margin-bottom: 10px;
}

@media (min-width: 1024px) {
  .block-404-text strong {
    font-size: 32px;
  }
}

.title-404 {
  font-weight: 900;
  font-size: 24px;
  line-height: 32px;
  font-family: Montserrat;
  margin-bottom: 15px;
}

/*
=====================================*/
.num-item {
  width: 18%;
  min-width: 250px;
  font-size: 16px;
  line-height: 24px;
}

@media (min-width: 768px) {
  .num-item {
    margin-bottom: 50px;
  }
}

@media (min-width: 1200px) {
  .num-item {
    margin-bottom: 0;
  }
}

.num-item-num {
  font-weight: 900;
  font-family: Montserrat;
  font-size: 30px;
  margin-bottom: 5px;
  white-space: nowrap;
}

.num-item-num span {
  font-size: 50px;
  line-height: 50px;
  display: inline-block;
  vertical-align: middle;
  padding: 0 5px;
}

.swiper-slide .num-item {
  width: 200px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 50px;
}

/*
=====================================*/
.sv-item {
  position: relative;
  padding-left: 60px;
  margin-top: 30px;
  margin-bottom: 30px;
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0.005em;
}

.sv-item-icon {
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
}

.sv-item-icon svg {
  width: 100%;
  height: 100%;
}

.sv-item .h6 {
  margin-bottom: 15px;
}

.sv-item p {
  margin: 0;
}

@media (min-width: 768px) {
  .sv-item-data {
    padding-right: 20px;
  }
}

@media (min-width: 1024px) {
  .sv-item-data {
    padding-right: 40px;
  }
}

@media (min-width: 1200px) {
  .sv-item-data {
    padding-right: 60px;
  }
}

.swiper-slide .sv-item {
  margin-bottom: 0px;
  margin-top: 0;
}

.num-carousel {
  padding-bottom: 50px;
}

.num-carousel .swiper-slide:nth-child(3) {
  top: 75px;
}

.num-carousel2 .swiper-slide:nth-child(3) {
  top: 0;
}
 
/*
=====================================*/
.fancybox-bg {
  background-color: #fff;
}

.fancybox-is-open .fancybox-bg {
  opacity: 1;
}

.fancybox-button:disabled svg {
  opacity: .2;
}

.fancybox-navigation .fancybox-button div,
.fancybox-button.fancybox-button--close {
  background: transparent;
}

.fancybox-button--arrow_left svg {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.fancybox-button.fancybox-button--close svg {
  width: 23px;
  height: 23px;
}

.fancybox-button:hover svg {
  fill: #0C0C0C;
}

.fancybox-stage {
  padding-bottom: 50px;
}

.fancybox-stage .fancybox-slide {
  height: calc(100% - 50px);
}

.fancybox-stage .fancybox-slide img {
  max-height: 100%;
}

.fancybox-content {
  max-height: 100% !important;
}

.fancybox-caption {
  text-align: center;
  opacity: 1;
  visibility: visible;
}

.fancybox-caption::before, .fancybox-caption::after {
  display: none;
}

.fancybox-caption span {
  display: inline-block;
  width: 100%;
  width: 8px;
  height: 8px;
  -webkit-border-radius: 25px;
          border-radius: 25px;
  background-color: #C8C8C8;
  margin: 0 5px;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
  -webkit-transform: translateZ(0) scale(1, 1);
          transform: translateZ(0) scale(1, 1);
  position: relative;
}

.fancybox-caption span::after {
  content: "";
  width: 8px;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
  -webkit-transform: translateZ(0) scale(1, 1);
          transform: translateZ(0) scale(1, 1);
  position: absolute;
  left: 0;
  right: 0;
  height: 8px;
  -webkit-border-radius: 25px;
          border-radius: 25px;
  background-color: #7D7D7D;
  opacity: 0;
}

.fancybox-caption span.current::after {
  width: 12px;
  left: -2px;
  opacity: 1;
}

/*
====================================*/
.fancybox-show-thumbs .fancybox-inner {
  right: 0 !important;
}

@media (min-width: 768px) {
  .fancybox-show-thumbs .fancybox-inner {
    left: 100px !important;
  }
}

.fancybox-thumbs.fancybox-thumbs-y {
  right: auto;
  left: 20px;
  width: 95px;
  display: none;
}

@media (min-width: 768px) {
  .fancybox-thumbs.fancybox-thumbs-y {
    display: block;
  }
}

.fancybox-thumbs__list a {
  max-width: 100%;
  width: 70px;
  height: 75px;
  float: none;
  display: block;
  margin: 3px 0;
  -webkit-background-size: contain;
          background-size: contain;
  background-color: #fff;
}

.fancybox-thumbs__list a::before {
  border: 1px solid #FF5700;
}

/*
=====================================*/
@media (min-width: 1200px) {
  .news-content {
    width: 100%;
    max-width: 650px;
  }
}

.news-introtext {
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0.005em;
}

@media (min-width: 1024px) {
  .news-introtext {
    font-size: 18px;
    line-height: 32px;
    letter-spacing: 0.02em;
  }
}

/*
=====================================*/
@media (min-width: 1200px) {
  .news-sidebar {
    margin-top: -40px;
  }
}

.news-sidebar-title {
  font-weight: 900;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #E8E8E8;
  font-size: 16px;
  font-family: Montserrat;
}

@media (min-width: 1200px) {
  .news-sidebar-filter {
    padding-left: 15px;
  }
}

.side-news {
  border-bottom: 1px solid #E8E8E8;
  margin-bottom: 15px;
  padding-bottom: 15px;
  font-size: 14px;
  line-height: 24px;
}

.side-news a {
  display: block;
  color: #0C0C0C;
}

.side-news a:hover {
  color: #FF5700;
}

.side-news-dt {
  font-size: 12px;
  margin-bottom: 10px;
  color: #7D7D7D;
}

/*
=====================================*/
.btn-share {
  font-size: 12px;
  line-height: 16px;
  padding: 0;
  -webkit-border-radius: 0;
          border-radius: 0;
}

.btn-share svg {
  width: 12px;
  height: 14px;
  margin-right: 5px;
}

/*
===================================*/
.content {
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0.01em;
}

@media (min-width: 1024px) {
  .content {
    font-size: 16px;
    line-height: 28px;
    letter-spacing: 0.005em;
  }
}

.content p {
  margin-bottom: 15px;
}

.content p + h2,
.content p + h3,
.content p + h4,
.content ul + h2,
.content ul + h3,
.content ul + h4,
.content ol + h2,
.content ol + h3,
.content ol + h4 {
  margin-top: 30px;
}

.content img {
  max-width: 100%;
  height: auto !important;
}

.content ul,
.content ol {
  margin: 10px 0 20px 0;
  padding: 0;
  list-style: none;
}

.content ul li,
.content ol li {
  margin: 0 0 15px 0;
  padding-left: 28px;
  position: relative;
}

.content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background-color: #0C0C0C;
  -webkit-border-radius: 50%;
          border-radius: 50%;
  line-height: 1;
}

.content ol {
  list-style: decimal;
  padding-left: 20px;
}

.content ol li {
  padding-left: 11px;
}

.content ol li::marker {
  line-height: 1;
  font-weight: bold;
}

.content h1,
.content h2,
.content h3,
.content h4,
.content h5,
.content h6 {
  margin-top: 10px;
  margin-bottom: 20px;
  font-weight: 900;
}

.content h3 {
  font-size: 24px;
}

.content img {
  margin-bottom: 20px;
}

@media (min-width: 1200px) {
  .content img + img {
    margin-left: 10px;
  }
}

.content * + img {
  margin-top: 20px;
}

.content img.left {
  float: left;
  width: 300px;
  margin: 5px 20px 20px 0;
}

.content img.right {
  float: right;
  width: 300px;
  margin: 5px 0 20px 20px;
}

.content * + figure {
  margin-top: 30px;
}

.content figure {
  text-align: left;
  margin: 0 0 30px;
}

.content figure img {
  margin-bottom: 0;
}

.content figcaption {
  font-size: 12px;
  line-height: 16px;
  color: #7D7D7D;
  margin-top: 16px;
}

.content * + blockquote {
  margin-top: 20px;
}

.content blockquote {
  background: #F4F4F4;
  padding: 20px;
  margin: 0 -20px 20px;
}

@media (min-width: 1024px) {
  .content blockquote {
    margin: 10px -40px 20px;
    padding: 24px 40px;
  }
}

.content blockquote strong {
  font-weight: 500;
}

.content * + blockquote {
  margin-top: 20px;
}

.content .btn {
  margin-top: 15px;
}

@media (max-width: 575px) {
  .content .btn {
    width: 100%;
  }
  .content .content-block .btn {
    width: auto;
  }
}

.content .btn + .btn {
  margin-left: 5px;
}

@media (min-width: 768px) {
  .content .btn + .btn {
    margin-left: 10px;
  }
}

@media (min-width: 1024px) {
  .content .btn + .btn {
    margin-left: 15px;
  }
}

.content table {
  width: 100%;
  border: none;
  margin: 40px 0;
  font-size: 14px;
  line-height: 24px;
}

.content table thead {
  background-color: #F4F4F4;
  border: none;
}

.content table th {
  font-weight: normal;
  vertical-align: middle;
  border: none;
}

.content table tr {
  border-bottom: 1px solid #E8E8E8;
}

.content table td {
  padding: 15px;
  border: none;
}

.content .video-wrapper {
  margin: 20px 0;
}

.justifyleft {
  float: left;
}

.justifyright {
  float: right;
}

.note {
  padding-left: 15px;
  margin-top: 30px;
  font-size: 12px;
  line-height: 16px;
  color: #7D7D7D;
  position: relative;
}

.note::before {
  content: "*";
  position: absolute;
  left: 0;
  top: 0;
}

.content figure img{
  width: 100%;
}

/*
=====================================*/
.content-carousel .swiper-pagination {
  bottom: 75px;
  width: 100%;
  left: 0;
  right: 0;
  position: absolute;
}

@media (min-width: 1200px) {
  .content-carousel .swiper-pagination {
    bottom: 55px;
  }
}

.content-carousel figcaption {
  margin-top: 35px;
}

/*
=====================================*/
.content-quote {
  margin-top: 30px;
  padding-top: 24px;
  padding-bottom: 24px;
  border-top: 1px solid #E8E8E8;
  border-bottom: 1px solid #E8E8E8;
  font-size: 14px;
  line-height: 24px;
}

.content-quote-head {
  margin-bottom: 10px;
}

.content-quote-head img {
  width: 60px !important;
  height: 60px !important;
  -webkit-border-radius: 50%;
          border-radius: 50%;
}

.content-quote-head > div {
  width: calc(100% - 76px);
}

.content-quote-post {
  color: #7D7D7D;
  margin-top: -3px;
  font-size: 12px;
  line-height: 16px;
}

@media (min-width: 1200px) {
  .content-quote-post {
    font-size: 14px;
    line-height: 24px;
  }
}

.content-quote-txt {
  position: relative;
  padding-left: 76px;
  font-size: 14px;
}

@media (min-width: 1200px) {
  .content-quote-txt {
    font-size: 16px;
  }
}

.content-quote-txt svg {
  width: 18px;
  height: 12px;
  position: absolute;
  left: 40px;
  top: 5px;
}

.no-photo .content-quote-txt {
  padding-left: 30px;
}

.no-photo .content-quote-txt svg { 
  left: 1px; 
}

/* pagination
=====================================*/
.pagination {
  text-align: center;
  width: 100%;
  margin: 50px 0 30px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  position: relative;
  padding-bottom: 40px;
}

.pagination li {
  display: inline-block;
  margin: 0 5px;
}

.pagination li a {
  display: block;
  font-size: 14px;
  width: 32px;
  height: 32px;
  line-height: 32px;
  color: #FF5700;
  text-align: center;
  -webkit-border-radius: 50%;
          border-radius: 50%;
  padding: 0;
}

.pagination li a:hover {
  text-decoration: none;
  color: #E14D00;
}

.pagination li.active a {
  background: #FF5700;
  color: #fff;
  text-decoration: none;
}

.pagination li.disabled a {
  cursor: default;
  pointer-events: none;
}

@media (max-width: 767px) {
  .pagination li.page-prev, .pagination li.page-next {
    position: absolute;
    bottom: 0;
  }
}

.pagination li.page-prev a, .pagination li.page-next a {
  width: auto;
  text-transform: uppercase;
  font-size: 12px;
}

.pagination li.page-prev a svg, .pagination li.page-next a svg {
  fill: #FF5700;
}

.pagination li.page-prev a:hover svg, .pagination li.page-next a:hover svg {
  fill: #E14D00;
}

.pagination li.page-prev.disabled a, .pagination li.page-next.disabled a {
  color: #C8C8C8;
}

.pagination li.page-prev.disabled a svg, .pagination li.page-next.disabled a svg {
  fill: #C8C8C8;
}

.pagination li.page-prev svg, .pagination li.page-next svg {
  width: 10px;
  height: 10px;
  margin: 0 3px;
  display: inline-block;
  position: relative;
  top: -1px;
}

.pagination li.page-prev {
  margin-right: 15px;
  left: 0;
}

.pagination li.page-prev svg {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.pagination li.page-next {
  margin-left: 15px;
  right: 0;
}

.pagination .page-skip a {
  color: #0C0C0C;
}

/* footer
=====================================*/
.main-page .footer {
  margin-top: 0;
  border: none;
}

.footer {
  background-color: #fff;
  border-top: 1px solid #E8E8E8;
  padding: 20px 0 5px;
  margin-top: 60px;
  position: relative;
  z-index: 2;
}

@media (min-width: 1024px) {
  .footer {
    padding: 50px 0 5px;
  }
}

@media (min-width: 1200px) {
  .footer {
    padding: 50px 0 20px;
  }
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  display: none;
}

@media (min-width: 1024px) {
  .footer-menu {
    display: block;
  }
}

.footer-menu-title {
  font-weight: 900;
  font-size: 18px;
  font-family: Montserrat;
  margin: 0 -20px 0;
  padding: 11px 20px;
  border-top: 1px solid #E8E8E8;
  position: relative;
}

@media (min-width: 1024px) {
  .footer-menu-title {
    margin: 0 0 15px;
    padding: 0;
    border: none;
  }
}

.footer-menu a {
  display: block;
  margin-bottom: 10px;
  font-size: 16px;
  color: #0C0C0C;
}

@media (min-width: 1024px) {
  .footer-menu a {
    font-size: 14px;
  }
}

@media (min-width: 1200px) {
  .footer-menu a {
    font-size: 16px;
  }
}

.footer-menu a:hover {
  text-decoration: none;
  color: #FF5700;
}

.footer-txt {
  font-size: 12px;
  color: #7d7d7d;
  margin-top: 5px;
  margin-bottom: 5px;
}

.open > .footer-menu {
  display: block;
}

.copy {
  font-size: 12px;
  margin-bottom: 5px;
}

.socials {
  border-top: 1px solid #E8E8E8;
  padding: 20px 0 0;
  margin: 0 -20px;
}

@media (min-width: 1024px) {
  .socials {
    border: none;
    margin: 0;
    padding: 0;
  }
}

.socials svg {
  width: 26px;
  height: 26px;
  margin: 0 10px 10px;
  fill: #C8C8C8;
}

@media (min-width: 1024px) {
  .socials svg {
    width: 20px;
    height: 20px;
    margin: -3px 10px 0 0;
  }
}

.socials + .socials {
  margin: 0;
  padding: 0;
  border: none;
}

@media (min-width: 1024px) {
  .socials + .socials {
    border-top: 1px solid #E8E8E8;
    padding-top: 15px;
    margin-top: 15px;
  }
}

.socials a:hover svg {
  fill: #FF5700;
}

/*************** SCROLLBAR BASE CSS ***************/
.scroll-wrapper {
  overflow: hidden !important;
  padding: 0 !important;
  position: relative;
}

.scroll-wrapper > .scroll-content {
  border: none !important;
  -webkit-box-sizing: content-box !important;
          box-sizing: content-box !important;
  height: auto;
  left: 0;
  margin: 0;
  max-height: none;
  max-width: none !important;
  overflow: scroll !important; 
  position: relative !important;
  top: 0;
  width: auto !important;
  background-color: #fff;
}

.scroll-wrapper > .scroll-content::-webkit-scrollbar {
  height: 0;
  width: 0;
}

.scroll-wrapper.scroll--rtl {
  direction: rtl;
}

.scroll-element {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  display: none;
}

.scroll-element div {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

.scroll-element .scroll-bar,
.scroll-element .scroll-arrow {
  cursor: default;
}

.scroll-element.scroll-x.scroll-scrollx_visible, .scroll-element.scroll-y.scroll-scrolly_visible {
  display: block;
}

.scroll-textarea {
  border: 1px solid #cccccc;
  border-top-color: #999999;
}

.scroll-textarea > .scroll-content {
  overflow: hidden !important;
}

.scroll-textarea > .scroll-content > textarea {
  border: none !important;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 100% !important;
  margin: 0;
  max-height: none !important;
  max-width: none !important;
  overflow: scroll !important;
  outline: none;
  padding: 2px;
  position: relative !important;
  top: 0;
  width: 100% !important;
}

.scroll-textarea > .scroll-content > textarea::-webkit-scrollbar {
  height: 0;
  width: 0;
}

/*************** SIMPLE INNER SCROLLBAR ***************/
.scrollbar-inner > .scroll-element,
.scrollbar-inner > .scroll-element div {
  border: none;
  margin: 0;
  padding: 0;
  position: absolute;
  z-index: 10;
}

.scrollbar-inner > .scroll-element div {
  display: block;
  height: 100%;
  left: 0;
  top: 0;
  width: 100%;
}

.scrollbar-inner > .scroll-element.scroll-x {
  bottom: 2px;
  height: 8px;
  left: 0;
  width: 100%;
}

.scrollbar-inner > .scroll-element.scroll-y {
  height: 100%;
  right: 2px;
  top: 0;
  width: 8px;
}

.scrollbar-inner > .scroll-element .scroll-element_outer {
  overflow: hidden;
}

.scrollbar-inner > .scroll-element .scroll-element_outer,
.scrollbar-inner > .scroll-element .scroll-element_track,
.scrollbar-inner > .scroll-element .scroll-bar {
  -webkit-border-radius: 8px;
  border-radius: 8px;
}

.scrollbar-inner > .scroll-element .scroll-element_track,
.scrollbar-inner > .scroll-element .scroll-bar {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
  filter: alpha(opacity=40);
  opacity: 0.4;
}

.scrollbar-inner > .scroll-element .scroll-element_track {
  background-color: #e0e0e0;
}

.scrollbar-inner > .scroll-element .scroll-bar {
  background-color: #c2c2c2;
}

.scrollbar-inner > .scroll-element:hover .scroll-bar {
  background-color: #919191;
}

.scrollbar-inner > .scroll-element.scroll-draggable .scroll-bar {
  background-color: #919191;
}

/* update scrollbar offset if both scrolls are visible */
.scrollbar-inner > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_track {
  left: -12px;
}

.scrollbar-inner > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_track {
  top: -12px;
}

.scrollbar-inner > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_size {
  left: -12px;
}

.scrollbar-inner > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_size {
  top: -12px;
}

/*************** SIMPLE OUTER SCROLLBAR ***************/
.scrollbar-outer > .scroll-element,
.scrollbar-outer > .scroll-element div {
  border: none;
  margin: 0;
  padding: 0;
  position: absolute;
  z-index: 10;
}

.scrollbar-outer > .scroll-element {
  background-color: #ffffff;
}

.scrollbar-outer > .scroll-element div {
  display: block;
  height: 100%;
  left: 0;
  top: 0;
  width: 100%;
}

.scrollbar-outer > .scroll-element.scroll-x {
  bottom: 0;
  height: 12px;
  left: 0;
  width: 100%;
}

.scrollbar-outer > .scroll-element.scroll-y {
  height: 100%;
  right: 0;
  top: 0;
  width: 12px;
}

.scrollbar-outer > .scroll-element.scroll-x .scroll-element_outer {
  height: 8px;
  top: 2px;
}

.scrollbar-outer > .scroll-element.scroll-y .scroll-element_outer {
  left: 2px;
  width: 8px;
}

.scrollbar-outer > .scroll-element .scroll-element_outer {
  overflow: hidden;
}

.scrollbar-outer > .scroll-element .scroll-element_track {
  background-color: #eeeeee;
}

.scrollbar-outer > .scroll-element .scroll-element_outer,
.scrollbar-outer > .scroll-element .scroll-element_track,
.scrollbar-outer > .scroll-element .scroll-bar {
  -webkit-border-radius: 8px;
  border-radius: 8px;
}

.scrollbar-outer > .scroll-element .scroll-bar {
  background-color: #d9d9d9;
}

.scrollbar-outer > .scroll-element .scroll-bar:hover {
  background-color: #c2c2c2;
}

.scrollbar-outer > .scroll-element.scroll-draggable .scroll-bar {
  background-color: #919191;
}

/* scrollbar height/width & offset from container borders */
.scrollbar-outer > .scroll-content.scroll-scrolly_visible {
  left: -12px;
  margin-left: 12px;
}

.scrollbar-outer > .scroll-content.scroll-scrollx_visible {
  top: -12px;
  margin-top: 12px;
}

.scrollbar-outer > .scroll-element.scroll-x .scroll-bar {
  min-width: 10px;
}

.scrollbar-outer > .scroll-element.scroll-y .scroll-bar {
  min-height: 10px;
}

/* update scrollbar offset if both scrolls are visible */
.scrollbar-outer > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_track {
  left: -14px;
}

.scrollbar-outer > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_track {
  top: -14px;
}

.scrollbar-outer > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_size {
  left: -14px;
}

.scrollbar-outer > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_size {
  top: -14px;
}

/*************** SCROLLBAR MAC OS X ***************/
.scrollbar-macosx > .scroll-element,
.scrollbar-macosx > .scroll-element div {
  background: none;
  border: none;
  margin: 0;
  padding: 0;
  position: absolute;
  z-index: 10;
}

.scrollbar-macosx > .scroll-element div {
  display: block;
  height: 100%;
  left: 0;
  top: 0;
  width: 100%;
}

.scrollbar-macosx > .scroll-element .scroll-element_track {
  display: none;
}

.scrollbar-macosx > .scroll-element .scroll-bar {
  background-color: #C8C8C8;
  display: block;
  opacity: .4;
  -webkit-border-radius: 7px;
  border-radius: 7px;
  -webkit-transition: opacity 0.2s linear;
  -o-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}

.scrollbar-macosx:hover > .scroll-element .scroll-bar,
.scrollbar-macosx > .scroll-element.scroll-draggable .scroll-bar {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
  filter: alpha(opacity=70);
  opacity: 0.7;
}

.scrollbar-macosx > .scroll-element.scroll-x {
  bottom: 0px;
  height: 0px;
  left: 0;
  min-width: 100%;
  overflow: visible;
  width: 100%;
}

.scrollbar-macosx > .scroll-element.scroll-y {
  height: 100%;
  min-height: 100%;
  right: 0px;
  top: 0;
  width: 0px;
  z-index: 99;
}

/* scrollbar height/width & offset from container borders */
.scrollbar-macosx > .scroll-element.scroll-x .scroll-bar {
  height: 7px;
  min-width: 10px;
  top: -9px;
}

.scrollbar-macosx > .scroll-element.scroll-y .scroll-bar {
  left: -9px;
  min-height: 10px;
  width: 7px;
}

.scrollbar-macosx > .scroll-element.scroll-x .scroll-element_outer {
  left: 2px;
}

.scrollbar-macosx > .scroll-element.scroll-x .scroll-element_size {
  left: -4px;
}

.scrollbar-macosx > .scroll-element.scroll-y .scroll-element_outer {
  top: 2px;
}

.scrollbar-macosx > .scroll-element.scroll-y .scroll-element_size {
  top: -4px;
}

/* update scrollbar offset if both scrolls are visible */
.scrollbar-macosx > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_size {
  left: -11px;
}

.scrollbar-macosx > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_size {
  top: -11px;
}

/*************** SCROLLBAR LIGHT ***************/
.scrollbar-light > .scroll-element,
.scrollbar-light > .scroll-element div {
  border: none;
  margin: 0;
  overflow: hidden;
  padding: 0;
  position: absolute;
  z-index: 10;
}

.scrollbar-light > .scroll-element {
  background-color: #ffffff;
}

.scrollbar-light > .scroll-element div {
  display: block;
  height: 100%;
  left: 0;
  top: 0;
  width: 100%;
}

.scrollbar-light > .scroll-element .scroll-element_outer {
  -webkit-border-radius: 10px;
  border-radius: 10px;
}

.scrollbar-light > .scroll-element .scroll-element_size {
  background: #dbdbdb;
  background: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2RiZGJkYiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNlOGU4ZTgiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+");
  background: -webkit-gradient(linear, left top, right top, color-stop(0%, #dbdbdb), color-stop(100%, #e8e8e8));
  background: -webkit-linear-gradient(left, #dbdbdb 0%, #e8e8e8 100%);
  background: -o-linear-gradient(left, #dbdbdb 0%, #e8e8e8 100%);
  background: -webkit-gradient(linear, left top, right top, from(#dbdbdb), to(#e8e8e8));
  background: linear-gradient(to right, #dbdbdb 0%, #e8e8e8 100%);
  -webkit-border-radius: 10px;
  border-radius: 10px;
}

.scrollbar-light > .scroll-element.scroll-x {
  bottom: 0;
  height: 17px;
  left: 0;
  min-width: 100%;
  width: 100%;
}

.scrollbar-light > .scroll-element.scroll-y {
  height: 100%;
  min-height: 100%;
  right: 0;
  top: 0;
  width: 17px;
}

.scrollbar-light > .scroll-element .scroll-bar {
  background: #fefefe;
  background: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZlZmVmZSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmNWY1ZjUiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+");
  background: -webkit-gradient(linear, left top, right top, color-stop(0%, #fefefe), color-stop(100%, #f5f5f5));
  background: -webkit-linear-gradient(left, #fefefe 0%, #f5f5f5 100%);
  background: -o-linear-gradient(left, #fefefe 0%, #f5f5f5 100%);
  background: -webkit-gradient(linear, left top, right top, from(#fefefe), to(#f5f5f5));
  background: linear-gradient(to right, #fefefe 0%, #f5f5f5 100%);
  border: 1px solid #dbdbdb;
  -webkit-border-radius: 10px;
  border-radius: 10px;
}

/* scrollbar height/width & offset from container borders */
.scrollbar-light > .scroll-content.scroll-scrolly_visible {
  left: -17px;
  margin-left: 17px;
}

.scrollbar-light > .scroll-content.scroll-scrollx_visible {
  top: -17px;
  margin-top: 17px;
}

.scrollbar-light > .scroll-element.scroll-x .scroll-bar {
  height: 10px;
  min-width: 10px;
  top: 0px;
}

.scrollbar-light > .scroll-element.scroll-y .scroll-bar {
  left: 0px;
  min-height: 10px;
  width: 10px;
}

.scrollbar-light > .scroll-element.scroll-x .scroll-element_outer {
  height: 12px;
  left: 2px;
  top: 2px;
}

.scrollbar-light > .scroll-element.scroll-x .scroll-element_size {
  left: -4px;
}

.scrollbar-light > .scroll-element.scroll-y .scroll-element_outer {
  left: 2px;
  top: 2px;
  width: 12px;
}

.scrollbar-light > .scroll-element.scroll-y .scroll-element_size {
  top: -4px;
}

/* update scrollbar offset if both scrolls are visible */
.scrollbar-light > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_size {
  left: -19px;
}

.scrollbar-light > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_size {
  top: -19px;
}

.scrollbar-light > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_track {
  left: -19px;
}

.scrollbar-light > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_track {
  top: -19px;
}

/*************** SCROLLBAR RAIL ***************/
.scrollbar-rail > .scroll-element,
.scrollbar-rail > .scroll-element div {
  border: none;
  margin: 0;
  overflow: hidden;
  padding: 0;
  position: absolute;
  z-index: 10;
}

.scrollbar-rail > .scroll-element {
  background-color: #ffffff;
}

.scrollbar-rail > .scroll-element div {
  display: block;
  height: 100%;
  left: 0;
  top: 0;
  width: 100%;
}

.scrollbar-rail > .scroll-element .scroll-element_size {
  background-color: #999;
  background-color: rgba(0, 0, 0, 0.3);
}

.scrollbar-rail > .scroll-element .scroll-element_outer:hover .scroll-element_size {
  background-color: #666;
  background-color: rgba(0, 0, 0, 0.5);
}

.scrollbar-rail > .scroll-element.scroll-x {
  bottom: 0;
  height: 12px;
  left: 0;
  min-width: 100%;
  padding: 3px 0 2px;
  width: 100%;
}

.scrollbar-rail > .scroll-element.scroll-y {
  height: 100%;
  min-height: 100%;
  padding: 0 2px 0 3px;
  right: 0;
  top: 0;
  width: 12px;
}

.scrollbar-rail > .scroll-element .scroll-bar {
  background-color: #d0b9a0;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  -webkit-box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
          box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.scrollbar-rail > .scroll-element .scroll-element_outer:hover .scroll-bar {
  -webkit-box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
          box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

/* scrollbar height/width & offset from container borders */
.scrollbar-rail > .scroll-content.scroll-scrolly_visible {
  left: -17px;
  margin-left: 17px;
}

.scrollbar-rail > .scroll-content.scroll-scrollx_visible {
  margin-top: 17px;
  top: -17px;
}

.scrollbar-rail > .scroll-element.scroll-x .scroll-bar {
  height: 10px;
  min-width: 10px;
  top: 1px;
}

.scrollbar-rail > .scroll-element.scroll-y .scroll-bar {
  left: 1px;
  min-height: 10px;
  width: 10px;
}

.scrollbar-rail > .scroll-element.scroll-x .scroll-element_outer {
  height: 15px;
  left: 5px;
}

.scrollbar-rail > .scroll-element.scroll-x .scroll-element_size {
  height: 2px;
  left: -10px;
  top: 5px;
}

.scrollbar-rail > .scroll-element.scroll-y .scroll-element_outer {
  top: 5px;
  width: 15px;
}

.scrollbar-rail > .scroll-element.scroll-y .scroll-element_size {
  left: 5px;
  top: -10px;
  width: 2px;
}

/* update scrollbar offset if both scrolls are visible */
.scrollbar-rail > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_size {
  left: -25px;
}

.scrollbar-rail > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_size {
  top: -25px;
}

.scrollbar-rail > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_track {
  left: -25px;
}

.scrollbar-rail > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_track {
  top: -25px;
}

/*************** SCROLLBAR DYNAMIC ***************/
.scrollbar-dynamic > .scroll-element,
.scrollbar-dynamic > .scroll-element div {
  background: none;
  border: none;
  margin: 0;
  padding: 0;
  position: absolute;
  z-index: 10;
}

.scrollbar-dynamic > .scroll-element div {
  display: block;
  height: 100%;
  left: 0;
  top: 0;
  width: 100%;
}

.scrollbar-dynamic > .scroll-element.scroll-x {
  bottom: 2px;
  height: 7px;
  left: 0;
  min-width: 100%;
  width: 100%;
}

.scrollbar-dynamic > .scroll-element.scroll-y {
  height: 100%;
  min-height: 100%;
  right: 2px;
  top: 0;
  width: 7px;
}

.scrollbar-dynamic > .scroll-element .scroll-element_outer {
  opacity: 0.3;
  -webkit-border-radius: 12px;
  border-radius: 12px;
}

.scrollbar-dynamic > .scroll-element .scroll-element_size {
  background-color: #cccccc;
  opacity: 0;
  -webkit-border-radius: 12px;
  border-radius: 12px;
  -webkit-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

.scrollbar-dynamic > .scroll-element .scroll-bar {
  background-color: #6c6e71;
  -webkit-border-radius: 7px;
  border-radius: 7px;
}

/* scrollbar height/width & offset from container borders */
.scrollbar-dynamic > .scroll-element.scroll-x .scroll-bar {
  bottom: 0;
  height: 7px;
  min-width: 24px;
  top: auto;
}

.scrollbar-dynamic > .scroll-element.scroll-y .scroll-bar {
  left: auto;
  min-height: 24px;
  right: 0;
  width: 7px;
}

.scrollbar-dynamic > .scroll-element.scroll-x .scroll-element_outer {
  bottom: 0;
  top: auto;
  left: 2px;
  -webkit-transition: height 0.2s;
  -o-transition: height 0.2s;
  transition: height 0.2s;
}

.scrollbar-dynamic > .scroll-element.scroll-y .scroll-element_outer {
  left: auto;
  right: 0;
  top: 2px;
  -webkit-transition: width 0.2s;
  -o-transition: width 0.2s;
  transition: width 0.2s;
}

.scrollbar-dynamic > .scroll-element.scroll-x .scroll-element_size {
  left: -4px;
}

.scrollbar-dynamic > .scroll-element.scroll-y .scroll-element_size {
  top: -4px;
}

/* update scrollbar offset if both scrolls are visible */
.scrollbar-dynamic > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_size {
  left: -11px;
}

.scrollbar-dynamic > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_size {
  top: -11px;
}

/* hover & drag */
.scrollbar-dynamic > .scroll-element:hover .scroll-element_outer,
.scrollbar-dynamic > .scroll-element.scroll-draggable .scroll-element_outer {
  overflow: hidden;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
  filter: alpha(opacity=70);
  opacity: 0.7;
}

.scrollbar-dynamic > .scroll-element:hover .scroll-element_outer .scroll-element_size,
.scrollbar-dynamic > .scroll-element.scroll-draggable .scroll-element_outer .scroll-element_size {
  opacity: 1;
}

.scrollbar-dynamic > .scroll-element:hover .scroll-element_outer .scroll-bar,
.scrollbar-dynamic > .scroll-element.scroll-draggable .scroll-element_outer .scroll-bar {
  height: 100%;
  width: 100%;
  -webkit-border-radius: 12px;
  border-radius: 12px;
}

.scrollbar-dynamic > .scroll-element.scroll-x:hover .scroll-element_outer,
.scrollbar-dynamic > .scroll-element.scroll-x.scroll-draggable .scroll-element_outer {
  height: 20px;
  min-height: 7px;
}

.scrollbar-dynamic > .scroll-element.scroll-y:hover .scroll-element_outer,
.scrollbar-dynamic > .scroll-element.scroll-y.scroll-draggable .scroll-element_outer {
  min-width: 7px;
  width: 20px;
}

/*************** SCROLLBAR GOOGLE CHROME ***************/
.scrollbar-chrome > .scroll-element,
.scrollbar-chrome > .scroll-element div {
  border: none;
  margin: 0;
  overflow: hidden;
  padding: 0;
  position: absolute;
  z-index: 10;
}

.scrollbar-chrome > .scroll-element {
  background-color: #ffffff;
}

.scrollbar-chrome > .scroll-element div {
  display: block;
  height: 100%;
  left: 0;
  top: 0;
  width: 100%;
}

.scrollbar-chrome > .scroll-element .scroll-element_track {
  background: #f1f1f1;
  border: 1px solid #dbdbdb;
}

.scrollbar-chrome > .scroll-element.scroll-x {
  bottom: 0;
  height: 16px;
  left: 0;
  min-width: 100%;
  width: 100%;
}

.scrollbar-chrome > .scroll-element.scroll-y {
  height: 100%;
  min-height: 100%;
  right: 0;
  top: 0;
  width: 16px;
}

.scrollbar-chrome > .scroll-element .scroll-bar {
  background-color: #d9d9d9;
  border: 1px solid #bdbdbd;
  cursor: default;
  -webkit-border-radius: 2px;
  border-radius: 2px;
}

.scrollbar-chrome > .scroll-element .scroll-bar:hover {
  background-color: #c2c2c2;
  border-color: #a9a9a9;
}

.scrollbar-chrome > .scroll-element.scroll-draggable .scroll-bar {
  background-color: #919191;
  border-color: #7e7e7e;
}

/* scrollbar height/width & offset from container borders */
.scrollbar-chrome > .scroll-content.scroll-scrolly_visible {
  left: -16px;
  margin-left: 16px;
}

.scrollbar-chrome > .scroll-content.scroll-scrollx_visible {
  top: -16px;
  margin-top: 16px;
}

.scrollbar-chrome > .scroll-element.scroll-x .scroll-bar {
  height: 8px;
  min-width: 10px;
  top: 3px;
}

.scrollbar-chrome > .scroll-element.scroll-y .scroll-bar {
  left: 3px;
  min-height: 10px;
  width: 8px;
}

.scrollbar-chrome > .scroll-element.scroll-x .scroll-element_outer {
  border-left: 1px solid #dbdbdb;
}

.scrollbar-chrome > .scroll-element.scroll-x .scroll-element_track {
  height: 14px;
  left: -3px;
}

.scrollbar-chrome > .scroll-element.scroll-x .scroll-element_size {
  height: 14px;
  left: -4px;
}

.scrollbar-chrome > .scroll-element.scroll-y .scroll-element_outer {
  border-top: 1px solid #dbdbdb;
}

.scrollbar-chrome > .scroll-element.scroll-y .scroll-element_track {
  top: -3px;
  width: 14px;
}

.scrollbar-chrome > .scroll-element.scroll-y .scroll-element_size {
  top: -4px;
  width: 14px;
}

/* update scrollbar offset if both scrolls are visible */
.scrollbar-chrome > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_size {
  left: -19px;
}

.scrollbar-chrome > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_size {
  top: -19px;
}

.scrollbar-chrome > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_track {
  left: -19px;
}

.scrollbar-chrome > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_track {
  top: -19px;
}
 

/*
=====================================*/
.mse2-ac-item{
  color: #222D42;
  font-size: 14px;
  padding: 5px 0;
}

.search-category{ 
  opacity: .4;
  padding-right: 20px;
}

.search-title{ 
  opacity: .8;
}

@media (min-width: 768px) {
  .search-category{
    width: 180px; 
    text-align: right;  
  }
  
  .search-title{
    width: calc(100% - 200px); 
  }

  .main .search-category{
     width: 200px;
  }
}

.ui-state-active .mse2-ac-item,
.ui-widget-content .ui-state-active .mse2-ac-item,
.ui-widget-header .ui-state-active .mse2-ac-item,
a.ui-button:active .mse2-ac-item,
.ui-button:active .mse2-ac-item,
.ui-button.ui-state-active:hover .mse2-ac-item { 
	background: transparent; 
	color: #337ab7 !important;
}

.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
a.ui-button:active,
.ui-button:active,
.ui-button.ui-state-active:hover {
	border-color: transparent !important; 
	background: transparent !important; 
}

.ui-widget-shadow { 
	box-shadow: none
}

.ui-widget::before{
 
}

.ui-widget.ui-widget-content,
.ui-widget{
  border: none !important;
  padding: 30px 0;
}

.main .ui-widget::before{
  display: none;
}

.main .ui-widget.ui-widget-content,
.main .ui-widget{
  padding-left: 0; 
}

.hide{
  display: none;
}

.file-upload-indicator{
  position: relative;
  right: 0;
  top: 0;
  margin-top: 0;
  width: 220px !important;
  text-align: left;
}

@media(min-width: 768px){
  .file-upload-indicator{ 
    position: absolute;
    right: 0;
    top: -12px;
    margin-top: 0; 
    text-align: right;
  }
}

.text-danger::after{
  content: "\26A0   Превышен размер! Файл не будет отправлен.";
  color: red; 
  font-size: 13px;
  font-style: normal;
}

.confident-wrap__label {
    position: relative;
}

.confident-wrap__label input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.confident-wrap__text {
    margin-left: 45px;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
}

/* On mouse-over, add a grey background color */
.confident-wrap__label:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.confident-wrap__label input:checked ~ .checkmark {
  background-color: #FF5700;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.confident-wrap__label input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.confident-wrap__label .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

#acceptedTerms-error {
  margin-left: 30px;
}