@charset "UTF-8";

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

[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-arr-top:before {
  content: "\e912";
}

.icomoon-list-star:before {
  content: "\e911";
}

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

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

.icomoon-local:before {
  content: "\e900";
  color: #e35e00;
}

.icomoon-local:after {
  content: "\e902";
  margin-left: -0.75em;
  color: whitesmoke;
}

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

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

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

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

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

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

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

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

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

.icomoon-earth:before {
  content: "\e90f";
}

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

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

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

/* ========================================================================
 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;
  -moz-box-flex: 1;
  flex-grow: 1;
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
  align-items: center;
  gap: 8px;
}

.main-menu > li {
  position: relative;
}

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

.main-menu > li > a {
  color: #353535;
  white-space: nowrap;
  line-height: 38px;
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
  align-items: center;
  padding: 0 10px;
}

.main-menu > li > a:hover {
  color: #e35e00;
  text-decoration: none;
}

.main-menu > li.current-menu-item > a {
  color: #e35e00;
}

.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;
}

.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: #474FA0 !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: #474FA0;
  text-decoration: none;
  color: #fff;
}

.sub-menu li.active > a {
  background: #474FA0;
}

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

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

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

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

.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: Слайдер
========================================================================== */

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

.slider-prev,
.slider-next {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  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: 12px;
  cursor: pointer;
  color: #e35e00;
  -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 {
  background: #e35e00;
  color: #fff;
}

.slider-prev.swiper-button-disabled,
.slider-next.swiper-button-disabled {
  color: #f9dcc8;
  cursor: not-allowed;
}

/* ========================================================================
 Component: Fancybox 3
========================================================================== */

.popap {
  background: #f6f6f6;
  border-radius: 20px;
}

.ok-send {
  padding-top: 100px;
  padding-bottom: 100px;
}

body .fancybox-is-open .fancybox-bg {
  opacity: 1;
}

body .fancybox-bg {
  background: rgba(179, 179, 179, 0.5);
  -webkit-backdrop-filter: blur(11.2px);
  backdrop-filter: blur(11.2px);
}

body .fancybox-inner {
  z-index: 0;
}

body .fancybox-close-small {
  opacity: 1;
  top: 20px !important;
  right: 20px !important;
}

body .fancybox-close-small:hover {
  color: currentColor !important;
}

body .fancybox-close-small svg {
  display: none;
}

body .fancybox-close-small:before {
  content: "\e90b";
  font-family: 'icomoon' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 20px;
}

body .popap-big {
  border-radius: 30px;
}

/* ========================================================================
 Component: Custom Select
========================================================================== */

.real-select {
  display: none;
}

.form-select {
  position: relative;
}

.js-cf7-select {
  display: none !important;
}

.cf7-select {
  position: relative;
}

.cf7-select__trigger {
  position: relative;
  width: 100%;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid #fff;
  background: #fff;
  color: #737373;
  text-align: left;
  cursor: pointer;
  border-radius: 200px !important;
  -moz-transition: box-shadow .2s ease, background .2s ease;
  transition: box-shadow .2s ease, background .2s ease;
}

.is-invalid .cf7-select__trigger {
  border-color: red !important;
}

.cf7-select__text {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-right: 20px;
}

.cf7-select__arrow {
  position: absolute;
  top: 0;
  bottom: 0;
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
  align-items: center;
  right: 20px;
  color: #E46104;
  font-size: 5px;
}

.cf7-select__arrow:before {
  content: "\e903";
  font-family: 'icomoon' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.cf7-select.is-open .cf7-select__arrow {
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.cf7-select__dropdown {
  position: absolute;
  top: -moz-calc(100% + 8px);
  top: calc(100% + 8px);
  left: 0;
  width: 100%;
  z-index: 50;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.cf7-select__dropdown[hidden] {
  display: none;
}

.cf7-select__list {
  max-height: 275px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #f39200 transparent;
  padding: 15px;
}

.cf7-select__list::-webkit-scrollbar {
  width: 6px;
}

.cf7-select__list::-webkit-scrollbar-track {
  background: transparent;
}

.cf7-select__list::-webkit-scrollbar-thumb {
  background: #f39200;
  border-radius: 10px;
}

.cf7-select__option {
  padding: 10px 20px 10px 0;
  line-height: 1.25;
  cursor: pointer;
  border-top: 1px solid #e2e2e2;
  outline: none;
  -moz-transition: background .2s ease, color .2s ease;
  transition: background .2s ease, color .2s ease;
  display: -moz-box;
  display: flex;
  -moz-box-align: center;
  align-items: center;
  -moz-box-pack: justify;
  justify-content: space-between;
}

.cf7-select__option:after {
  content: "\e908";
  font-family: 'icomoon' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #e35e00;
  font-size: 7px;
}

.cf7-select__option:first-child {
  border-top: 0;
}

.cf7-select__option:hover,
.cf7-select__option.is-active,
.cf7-select__option:focus {
  background: #fafafa;
  color: #222;
}

.cf7-select__option.is-selected {
  color: #222;
}

@media screen and (min-width: 768px) {
  body .popap-big .fancybox-close-small {
    top: 40px !important;
    right: 40px !important;
  }

  body .popap-call-back .fancybox-close-small:not(:hover) {
    color: #f8d8c2 !important;
  }
}

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

  .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;
    width: auto;
    padding: 0;
    background: none;
    box-shadow: none;
    overflow-y: initial;
  }

  .offcanvas-head,
  .offcanvas-bottom,
  .mob-menu {
    display: none;
  }
}

@media screen and (max-width: 1024px) {
  .main-menu > li > a {
    padding: 0;
  }

  .menu-item-has-children > a i {
    position: relative;
    top: -2px;
  }

  .sub-menu {
    width: auto;
  }
}

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

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

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

  .main-menu > li > a {
    line-height: 1.35;
    padding: 5px 20px;
    display: block;
  }

  .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;
  }

  .main-menu-wrap {
    display: -moz-box;
    display: flex;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    flex-direction: column;
  }

  .main-menu-wrap .main-menu {
    -moz-box-flex: 1;
    flex-grow: 1;
  }

  .offcanvas-head {
    padding: 20px;
    border-bottom: 1px solid rgba(255, 94, 0, 0.39);
    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-bottom {
    margin-top: 20px;
    padding: 20px;
    border-top: 1px solid rgba(255, 94, 0, 0.39);
  }

  .offcanvas-bottom > * + * {
    margin-top: 20px;
    -moz-box-pack: center;
    justify-content: center;
    text-align: center;
  }

  .tm-offcanvas-close {
    line-height: 1;
    font-size: 24px;
    text-decoration: none !important;
    color: #e35e00;
  }

  .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;
  }
}

@media screen and (max-width: 767px) {
  .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;
  }

  .ok-send {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
  }

  body .fancybox-close-small {
    top: 10px !important;
    right: 10px !important;
  }

  body .popap-big .fancybox-close-small {
    border-radius: 20px;
    top: 20px !important;
    right: 20px !important;
  }

  .cf7-select__trigger {
    min-height: 40px;
  }
}

@media (min-height: 577px) {
  body .fancybox-close-small {
    color: #323235 !important;
  }
}