@charset "UTF-8";

@font-face {
  font-family: 'icomoon';
  src: url("../fonts/icomoon/icomoon.ttf?q93hfv") format("truetype"), url("../fonts/icomoon/icomoon.woff?q93hfv") format("woff"), url("../fonts/icomoon/icomoon.svg?q93hfv#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

[class^="icomoon-"],
[class*=" icomoon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icomoon-play:before {
  content: "\e90d";
}

.icomoon-bird:before {
  content: "\e90c";
}

.icomoon-digital:before {
  content: "\e90a";
}

.icomoon-dev-phone:before {
  content: "\e90b";
}

.icomoon-close:before {
  content: "\e909";
}

.icomoon-local:before {
  content: "\e907";
  color: #222222;
}

.icomoon-local:after {
  content: "\e908";
  margin-left: -0.8232421875em;
  color: #f0f0f0;
}

.icomoon-arr-left:before {
  content: "\e900";
}

.icomoon-arr-right:before {
  content: "\e901";
}

.icomoon-arr-double-right:before {
  content: "\e902";
}

.icomoon-arr-double-left:before {
  content: "\e903";
}

.icomoon-tg:before {
  content: "\e904";
}

.icomoon-wt:before {
  content: "\e905";
}

.icomoon-select-arr:before {
  content: "\e906";
}

/* ========================================================================
 Component: Плавающая шапка
========================================================================== */

.header-placeholder {
  display: block;
  height: auto;
  width: 100%;
}

/* Стили шапки */

.header-wrap {
  -webkit-animation-timing-function: ease-out;
  -moz-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 0.2s;
  -moz-animation-duration: 0.2s;
  animation-duration: 0.2s;
  width: 100%;
}

/* Появление */

.sticky-active {
  z-index: 980;
  -webkit-animation-name: fade-down-in;
  -moz-animation-name: fade-down-in;
  animation-name: fade-down-in;
  -webkit-backface-visibility: hidden;
}

/* Исчезновение вверх */

.sticky-leave {
  z-index: 980;
  -webkit-animation-name: fade-down-out;
  -moz-animation-name: fade-down-out;
  animation-name: fade-down-out;
  -webkit-backface-visibility: hidden;
}

@-webkit-keyframes fade-down-in {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-100%);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}

@-webkit-keyframes fade-down-out {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-100%);
  }
}

/* ========================================================================
 Component: Трехуровневое меню
========================================================================== */

.main-menu {
  margin-top: 0;
  padding: 0;
  list-style: none;
  margin-left: -20px;
  display: -moz-box;
  display: flex;
  -moz-box-pack: justify;
  justify-content: space-between;
  -moz-box-align: center;
  align-items: center;
}

.main-menu > li {
  margin-left: 20px;
  position: relative;
}

.main-menu > li:hover > a {
  color: #3846F6;
}

.main-menu > li > a {
  display: -moz-inline-box;
  display: inline-flex;
  padding: 2px 24px;
  text-align: center;
  min-height: 40px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 50px;
  -moz-box-align: center;
  align-items: center;
  -moz-box-pack: center;
  justify-content: center;
  background: transparent;
  color: #3846F6;
  line-height: 1;
  text-transform: uppercase;
  border: 1px solid transparent;
  -moz-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.main-menu > li > a:not(:disabled):hover {
  text-decoration: none;
  background: transparent;
  color: #3846F6;
  border-color: #3846F6;
}

.main-menu > li.current-menu-item > a {
  text-decoration: none;
  background: transparent;
  color: #3846F6;
  border-color: #3846F6;
}

.main-menu .arr-down {
  display: none;
}

.main-menu > li.menu-item-has-children > a > .arr-down {
  display: block;
}

.menu-item-has-children {
  position: relative;
}

.menu-item-has-children > a i {
  font-size: 14px;
  margin-left: 10px;
  padding-top: 2px;
  font-style: normal;
}

.uk-notouch .menu-item-has-children:hover > .sub-menu {
  visibility: visible;
  opacity: 1;
  -moz-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
  pointer-events: inherit;
}

.sub-menu > li.menu-item-has-children > a > .arr-down {
  display: block;
}

.sub-menu > li.menu-item-has-children > a > .arr-down:before {
  display: block;
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.sub-menu > li.menu-item-has-children > a {
  -moz-box-pack: justify;
  justify-content: space-between;
}

.sub-menu .sub-menu {
  left: 100%;
  top: 0;
}

.sub-menu .sub-menu:before {
  display: none;
}

.sub-menu .current-menu-item > a {
  background: #FA4811 !important;
  text-decoration: none;
  color: #fff !important;
}

.uk-touch .open-submenu + .sub-menu {
  visibility: visible;
  opacity: 1;
  -moz-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
  pointer-events: inherit;
}

.uk-touch .sub-menu .open-submenu {
  background: #FA4811;
  color: #fff !important;
}

.uk-touch .open-submenu {
  color: #3846F6 !important;
}

.sub-menu {
  list-style: none;
  position: absolute;
  top: 100%;
  left: -20px;
  width: 260px;
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.2);
  background: #ffffff;
  padding: 15px 0;
  border-radius: 14px;
  visibility: hidden;
  opacity: 0;
  -moz-transform: translate(0, 20px);
  -ms-transform: translate(0, 20px);
  transform: translate(0, 20px);
  -moz-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  pointer-events: none;
}

.sub-menu:before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 10px 10px 10px;
  border-color: transparent transparent #fff transparent;
  top: -8px;
  left: 14px;
}

.sub-menu a {
  padding: 8px 20px;
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
  align-items: center;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  color: #18171a;
  -moz-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.sub-menu a:hover {
  background: #3846F6;
  text-decoration: none;
  color: #fff;
}

.sub-menu li.active > a {
  background: #3846F6;
}

.sub-menu > li:hover > a {
  background: #3846F6;
  text-decoration: none;
  color: #fff;
}

.offcanvas-bottom {
  margin-top: 16px;
  padding: 30px 0;
  border-top: 1px solid #d2d2d2;
  border-bottom: 1px solid #d2d2d2;
  display: -moz-box;
  display: flex;
  -moz-box-pack: center;
  justify-content: center;
}

/* ========================================================================
 Component: Окно куки
========================================================================== */

.cookie-window {
  position: fixed;
  z-index: 99999;
  right: 26px;
  bottom: 34px;
  padding: 14px 75px 18px 25px;
  background: #FFFFFF;
  border-radius: 10px;
}

.cookie-window-title {
  margin-bottom: 0;
}

.cookie-window-title ~ p {
  margin-top: 7px;
}

.cookie-window-descr {
  font-size: 12px;
  line-height: 1.25;
  color: #404040;
}

.cookie-window-descr a {
  color: inherit;
  text-decoration: underline;
}

.cookie-window-descr a:hover {
  color: #000;
}

.cookie-window-close {
  position: absolute;
  right: 16px;
  top: 50%;
  margin-top: -12px;
  cursor: pointer;
  line-height: 0.5;
  width: 24px;
  height: 24px;
  display: -moz-box;
  display: flex;
}

.cookie-window-close svg {
  margin: auto;
}

.cookie-window-close svg path {
  -moz-transition: 0.3s ease;
  transition: 0.3s ease;
}

.cookie-window-close:hover svg path {
  stroke: #000;
}

/* ========================================================================
 Component: Off-canvas
========================================================================== */

.uk-offcanvas {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1000;
  touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}

.uk-offcanvas.uk-active {
  display: block;
  height: 100vh;
}

.uk-offcanvas-page {
  position: fixed !important;
  -moz-transition: margin-left 0.3s ease-in-out;
  transition: margin-left 0.3s ease-in-out;
  margin-left: 0;
}

.uk-offcanvas-bar {
  height: 100vh;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  -moz-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
  z-index: 1001;
  /* 2 */
  width: 360px;
  padding: 0;
  max-width: 100%;
  background: #FFFFFF;
  box-shadow: 0px 5px 30px rgba(46, 33, 110, 0.15);
  /* 3 */
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  /* 4 */
  -moz-transition: transform 0.3s ease-in-out, -moz-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -moz-transform 0.3s ease-in-out;
  /* 5 */
  -ms-scroll-chaining: none;
}

.uk-offcanvas.uk-active .uk-offcanvas-bar.uk-offcanvas-bar-show {
  -moz-transform: translateX(0%);
  -ms-transform: translateX(0%);
  transform: translateX(0%);
}

.uk-offcanvas-bar-flip {
  left: auto;
  right: 0;
  -moz-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
}

.uk-offcanvas-bar[mode='none'] {
  -moz-transition: none;
  transition: none;
}

.uk-offcanvas-bar[mode='reveal'] {
  -moz-transform: translateX(0%);
  -ms-transform: translateX(0%);
  transform: translateX(0%);
  clip: rect(0, 0, 100vh, 0);
  -moz-transition: transform 0.3s ease-in-out, clip 0.3s ease-in-out, -moz-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, clip 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, clip 0.3s ease-in-out, -moz-transform 0.3s ease-in-out;
}

.uk-offcanvas-bar-flip[mode='reveal'] {
  clip: none;
  -moz-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
}

.uk-offcanvas-bar-flip[mode='reveal'] > * {
  -moz-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
  -moz-transition: transform 0.3s ease-in-out, -moz-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -moz-transform 0.3s ease-in-out;
}

.uk-offcanvas.uk-active .uk-offcanvas-bar-flip[mode='reveal'].uk-offcanvas-bar-show > * {
  -moz-transform: translateX(0%);
  -ms-transform: translateX(0%);
  transform: translateX(0%);
}

/* ========================================================================
 Component: Слайдер
========================================================================== */

.slider-arrows {
  display: -moz-box;
  display: flex;
  -moz-box-pack: end;
  justify-content: flex-end;
}

.swiper-button-lock {
  display: none !important;
}

.slider-prev,
.slider-next {
  width: 56px;
  height: 42px;
  flex-shrink: 0;
  display: -moz-inline-box;
  display: inline-flex;
  -moz-box-align: center;
  align-items: center;
  -moz-box-pack: center;
  justify-content: center;
  line-height: 1;
  font-size: 22px;
  cursor: pointer;
  color: #CBCBCB;
  -moz-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.slider-prev:not(.swiper-button-disabled):hover,
.slider-next:not(.swiper-button-disabled):hover {
  color: #3846F6;
}

.slider-prev.swiper-button-disabled,
.slider-next.swiper-button-disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.slider-prev {
  margin-right: 8px;
}

/* ========================================================================
   Uikit Animation
 ========================================================================== */

[class*='uk-animation-'] {
  -webkit-animation-duration: 0.8s;
  -moz-animation-duration: 0.8s;
  animation-duration: 0.8s;
  -webkit-animation-timing-function: ease-out;
  -moz-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  animation-fill-mode: both;
}

.uk-animation-slide-left {
  -webkit-animation-name: uk-fade-left;
  -moz-animation-name: uk-fade-left;
  animation-name: uk-fade-left;
}

.uk-animation-slide-right {
  -webkit-animation-name: uk-fade-right;
  -moz-animation-name: uk-fade-right;
  animation-name: uk-fade-right;
}

@-webkit-keyframes uk-fade-left {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}

@-moz-keyframes uk-fade-left {
  0% {
    opacity: 0;
    -moz-transform: translateX(-100%);
    transform: translateX(-100%);
  }

  100% {
    opacity: 1;
    -moz-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes uk-fade-left {
  0% {
    opacity: 0;
    -moz-transform: translateX(-100%);
    transform: translateX(-100%);
  }

  100% {
    opacity: 1;
    -moz-transform: translateX(0);
    transform: translateX(0);
  }
}

@-webkit-keyframes uk-fade-right {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100%);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}

@-moz-keyframes uk-fade-right {
  0% {
    opacity: 0;
    -moz-transform: translateX(100%);
    transform: translateX(100%);
  }

  100% {
    opacity: 1;
    -moz-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes uk-fade-right {
  0% {
    opacity: 0;
    -moz-transform: translateX(100%);
    transform: translateX(100%);
  }

  100% {
    opacity: 1;
    -moz-transform: translateX(0);
    transform: translateX(0);
  }
}

@media screen and (min-width: 768px) {
  .header-menu {
    display: block;
    position: static;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    touch-action: initial;
    background: none;
    padding-top: 30px;
  }

  .main-menu-wrap {
    height: auto;
    position: static;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    -moz-transform: none;
    -ms-transform: none;
    transform: none;
    z-index: 1001;
    padding: 0;
    background: none;
    box-shadow: none;
    overflow-y: initial;
    max-width: 1240px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
    width: 100%;
  }

  .offcanvas-head {
    display: none;
  }

  .header-menu-wrap {
    position: absolute;
    z-index: 10;
    left: 0;
    right: 0;
    top: 100%;
    background: #eee;
  }

  .header-wrap {
    position: relative;
  }
}

@media screen and (max-width: 1240px) {
  .offcanvas-bottom {
    padding: 20px 0;
    margin-top: 12px;
  }
}

@media screen and (max-width: 1024px) {
  .menu-item-has-children > a i {
    position: relative;
    top: -2px;
  }

  .sub-menu {
    width: auto;
  }
}

@media screen and (max-width: 767px) {
  .main-menu {
    display: block;
    margin-right: 0;
    margin-left: 0;
    padding: 0 15px;
  }

  .main-menu > li {
    margin-left: 0;
  }

  .main-menu > li + li {
    margin-top: 1px;
  }

  .main-menu > li > a {
    text-align: left;
  }

  .sub-menu {
    position: relative;
    left: auto;
    margin-left: 20px;
    visibility: visible;
    opacity: 1;
    pointer-events: inherit;
    top: auto;
    -moz-transform: none;
    -ms-transform: none;
    transform: none;
    display: none;
    border-radius: 10px;
    margin-right: 20px;
  }

  .open-submenu + .sub-menu {
    margin-top: 10px;
    display: block;
  }

  .sub-menu a,
  .main-menu > li > a {
    white-space: normal;
  }

  .sub-menu:before {
    display: none;
  }

  .offcanvas-head {
    padding: 20px;
    border-bottom: 1px solid #d2d2d2;
    margin-bottom: 20px;
    display: -moz-box;
    display: flex;
    -moz-box-pack: justify;
    justify-content: space-between;
    -moz-box-align: start;
    align-items: flex-start;
  }

  .offcanvas-logo {
    max-width: 160px;
  }

  .tm-offcanvas-close {
    line-height: 1;
    font-size: 16px;
    text-decoration: none !important;
    width: 24px;
    height: 24px;
    display: -moz-inline-box;
    display: inline-flex;
    -moz-box-align: center;
    align-items: center;
    -moz-box-pack: center;
    justify-content: center;
  }

  .sub-menu .sub-menu {
    left: auto;
    box-shadow: none;
    padding: 0;
    display: block;
  }

  .sub-menu > li.menu-item-has-children > a > .arr-down {
    display: none;
  }

  .offcanvas-bottom {
    display: block;
    padding-left: 20px;
    padding-right: 20px;
    text-align: center;
    border-bottom: none;
  }

  .offcanvas-bottom .contacts-row {
    -moz-box-pack: center;
    justify-content: center;
  }

  .offcanvas-bottom > * + * {
    margin-top: 15px;
  }

  .cookie-window {
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: 0;
    padding: 14px 45px 15px 20px;
  }

  .cookie-window-close {
    right: 10px;
  }

  .cookie-window-title {
    font-size: 16px;
  }
}

@media screen {
  [data-uk-scrollspy*='uk-animation-']:not([data-uk-scrollspy*='target']) {
    opacity: 0;
  }
}