  /* Cookie Banner Styles */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #050507;
  backdrop-filter: blur(20px);
  border-top: 1px solid #2646cb;
  padding: 20px;
  z-index: 10000;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  font-family: 'Arian', sans-serif;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cookie-text {
  flex: 1;
  color: #d7d7df;
  font-size: 16px;
  line-height: 1.5;
  font-family: 'Arian', sans-serif !important;
}

.cookie-text strong {
  color: #d7d7df;
}

.cookie-text a {
  color: #2646cb;
  text-decoration: none;
  transition: color 0.3s ease;
}

.cookie-text a:hover {
  color: #2646cb;
  opacity: 0.8;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  align-items: center;
}

.cookie-btn {
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.cookie-btn-accept {
  background: linear-gradient(45deg, #2646cb, #2646cb);
  color: #ffffff;
  box-shadow: 0 4px 15px #2646cb40;
}

.cookie-btn-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px #2646cb60;
}

.cookie-btn-decline {
  background: rgba(255, 255, 255, 0.1);
  color: #d7d7df;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-btn-decline:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #d7d7df;
}

.cookie-btn-settings {
  background: #fff;
  color: #2646cb;
  border: 1px solid #2646cb;
  padding: 10px 20px;
}

.cookie-btn-settings:hover {
  background: #2646cb20;
}

/* Cookie Settings Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  z-index: 10001;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  font-family: 'Arian', sans-serif;
}

.cookie-modal.show {
  display: flex;
}

.cookie-modal-content {
  background: #050507;
  border-radius: 15px;
  border: 1px solid #2646cb;
  max-width: 500px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 20px;
  position: relative;
  z-index: 10002;
}

.cookie-modal-header {
  margin-bottom: 15px;
}

.cookie-modal-title {
  font-size: calc(14px * 1.2);
  color: #2646cb;
  margin-bottom: 8px;
}

.cookie-category {
  margin-bottom: 15px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.cookie-category-title {
  font-weight: 600;
  color: #d7d7df;
}

.cookie-switch {
  position: relative;
  width: 50px;
  height: 24px;
}

.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.2);
  transition: 0.3s;
  border-radius: 24px;
}

.cookie-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.3s;
  border-radius: 50%;
}

input:checked + .cookie-slider {
  background-color: #2646cb;
}

input:checked + .cookie-slider:before {
  transform: translateX(26px);
}

input:disabled + .cookie-slider {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-category-description {
  color: #d7d7df;
  font-size: 14px;
  line-height: 1.5;
}

.cookie-modal-footer {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
  margin-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 12px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-buttons {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .cookie-btn {
    flex: 1;
    min-width: 120px;
  }

  .cookie-modal-content {
    margin: 5px;
    padding: 12px;
  }

  .cookie-category-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
.container,.container-fluid,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl{width:100%;padding-right:var(--bs-gutter-x,.75rem);padding-left:var(--bs-gutter-x,.75rem);margin-right:auto;margin-left:auto}.row{--bs-gutter-x:1.5rem;--bs-gutter-y:0;display:flex;flex-wrap:wrap;margin-top:calc(-1 * var(--bs-gutter-y));margin-right:calc(-.5 * var(--bs-gutter-x));margin-left:calc(-.5 * var(--bs-gutter-x))}.row>*{box-sizing:border-box;flex-shrink:0;width:100%;max-width:100%;padding-right:calc(var(--bs-gutter-x) * .5);padding-left:calc(var(--bs-gutter-x) * .5);margin-top:var(--bs-gutter-y)}.col{flex:1 0 0%}.row-cols-auto>*{flex:0 0 auto;width:auto}.row-cols-1>*{flex:0 0 auto;width:100%}.row-cols-2>*{flex:0 0 auto;width:50%}.row-cols-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-4>*{flex:0 0 auto;width:25%}.row-cols-5>*{flex:0 0 auto;width:20%}.row-cols-6>*{flex:0 0 auto;width:16.6666666667%}.col-auto{flex:0 0 auto;width:auto}.col-1{flex:0 0 auto;width:8.33333333%}.col-2{flex:0 0 auto;width:16.66666667%}.col-3{flex:0 0 auto;width:25%}.col-4{flex:0 0 auto;width:33.33333333%}.col-5{flex:0 0 auto;width:41.66666667%}.col-6{flex:0 0 auto;width:50%}.col-7{flex:0 0 auto;width:58.33333333%}.col-8{flex:0 0 auto;width:66.66666667%}.col-9{flex:0 0 auto;width:75%}.col-10{flex:0 0 auto;width:83.33333333%}.col-11{flex:0 0 auto;width:91.66666667%}.col-12{flex:0 0 auto;width:100%}.offset-1{margin-left:8.33333333%}.offset-2{margin-left:16.66666667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.33333333%}.offset-5{margin-left:41.66666667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.33333333%}.offset-8{margin-left:66.66666667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.33333333%}.offset-11{margin-left:91.66666667%}.g-0,.gx-0{--bs-gutter-x:0}.g-0,.gy-0{--bs-gutter-y:0}.g-1,.gx-1{--bs-gutter-x:0.25rem}.g-1,.gy-1{--bs-gutter-y:0.25rem}.g-2,.gx-2{--bs-gutter-x:0.5rem}.g-2,.gy-2{--bs-gutter-y:0.5rem}.g-3,.gx-3{--bs-gutter-x:1rem}.g-3,.gy-3{--bs-gutter-y:1rem}.g-4,.gx-4{--bs-gutter-x:1.5rem}.g-4,.gy-4{--bs-gutter-y:1.5rem}.g-5,.gx-5{--bs-gutter-x:3rem}.g-5,.gy-5{--bs-gutter-y:3rem}.d-inline{display:inline!important}.d-inline-block{display:inline-block!important}.d-block{display:block!important}.d-grid{display:grid!important}.d-table{display:table!important}.d-table-row{display:table-row!important}.d-table-cell{display:table-cell!important}.d-flex{display:flex!important}.d-inline-flex{display:inline-flex!important}.d-none{display:none!important}.flex-fill{flex:1 1 auto!important}.flex-row{flex-direction:row!important}.flex-column{flex-direction:column!important}.flex-row-reverse{flex-direction:row-reverse!important}.flex-column-reverse{flex-direction:column-reverse!important}.flex-grow-0{flex-grow:0!important}.flex-grow-1{flex-grow:1!important}.flex-shrink-0{flex-shrink:0!important}.flex-shrink-1{flex-shrink:1!important}.flex-wrap{flex-wrap:wrap!important}.flex-nowrap{flex-wrap:nowrap!important}.flex-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-start{justify-content:flex-start!important}.justify-content-end{justify-content:flex-end!important}.justify-content-center{justify-content:center!important}.justify-content-between{justify-content:space-between!important}.justify-content-around{justify-content:space-around!important}.justify-content-evenly{justify-content:space-evenly!important}.align-items-start{align-items:flex-start!important}.align-items-end{align-items:flex-end!important}.align-items-center{align-items:center!important}.align-items-baseline{align-items:baseline!important}.align-items-stretch{align-items:stretch!important}.align-content-start{align-content:flex-start!important}.align-content-end{align-content:flex-end!important}.align-content-center{align-content:center!important}.align-content-between{align-content:space-between!important}.align-content-around{align-content:space-around!important}.align-content-stretch{align-content:stretch!important}.align-self-auto{align-self:auto!important}.align-self-start{align-self:flex-start!important}.align-self-end{align-self:flex-end!important}.align-self-center{align-self:center!important}.align-self-baseline{align-self:baseline!important}.align-self-stretch{align-self:stretch!important}.order-first{order:-1!important}.order-0{order:0!important}.order-1{order:1!important}.order-2{order:2!important}.order-3{order:3!important}.order-4{order:4!important}.order-5{order:5!important}.order-last{order:6!important}.m-0{margin:0!important}.m-1{margin:.25rem!important}.m-2{margin:.5rem!important}.m-3{margin:1rem!important}.m-4{margin:1.5rem!important}.m-5{margin:3rem!important}.m-auto{margin:auto!important}.mx-0{margin-right:0!important;margin-left:0!important}.mx-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-3{margin-right:1rem!important;margin-left:1rem!important}.mx-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-5{margin-right:3rem!important;margin-left:3rem!important}.mx-auto{margin-right:auto!important;margin-left:auto!important}.my-0{margin-top:0!important;margin-bottom:0!important}.my-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-0{margin-top:0!important}.mt-1{margin-top:.25rem!important}.mt-2{margin-top:.5rem!important}.mt-3{margin-top:1rem!important}.mt-4{margin-top:1.5rem!important}.mt-5{margin-top:3rem!important}.mt-auto{margin-top:auto!important}.me-0{margin-right:0!important}.me-1{margin-right:.25rem!important}.me-2{margin-right:.5rem!important}.me-3{margin-right:1rem!important}.me-4{margin-right:1.5rem!important}.me-5{margin-right:3rem!important}.me-auto{margin-right:auto!important}.mb-0{margin-bottom:0!important}.mb-1{margin-bottom:.25rem!important}.mb-2{margin-bottom:.5rem!important}.mb-3{margin-bottom:1rem!important}.mb-4{margin-bottom:1.5rem!important}.mb-5{margin-bottom:3rem!important}.mb-auto{margin-bottom:auto!important}.ms-0{margin-left:0!important}.ms-1{margin-left:.25rem!important}.ms-2{margin-left:.5rem!important}.ms-3{margin-left:1rem!important}.ms-4{margin-left:1.5rem!important}.ms-5{margin-left:3rem!important}.ms-auto{margin-left:auto!important}.p-0{padding:0!important}.p-1{padding:.25rem!important}.p-2{padding:.5rem!important}.p-3{padding:1rem!important}.p-4{padding:1.5rem!important}.p-5{padding:3rem!important}.px-0{padding-right:0!important;padding-left:0!important}.px-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-3{padding-right:1rem!important;padding-left:1rem!important}.px-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-5{padding-right:3rem!important;padding-left:3rem!important}.py-0{padding-top:0!important;padding-bottom:0!important}.py-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-0{padding-top:0!important}.pt-1{padding-top:.25rem!important}.pt-2{padding-top:.5rem!important}.pt-3{padding-top:1rem!important}.pt-4{padding-top:1.5rem!important}.pt-5{padding-top:3rem!important}.pe-0{padding-right:0!important}.pe-1{padding-right:.25rem!important}.pe-2{padding-right:.5rem!important}.pe-3{padding-right:1rem!important}.pe-4{padding-right:1.5rem!important}.pe-5{padding-right:3rem!important}.pb-0{padding-bottom:0!important}.pb-1{padding-bottom:.25rem!important}.pb-2{padding-bottom:.5rem!important}.pb-3{padding-bottom:1rem!important}.pb-4{padding-bottom:1.5rem!important}.pb-5{padding-bottom:3rem!important}.ps-0{padding-left:0!important}.ps-1{padding-left:.25rem!important}.ps-2{padding-left:.5rem!important}.ps-3{padding-left:1rem!important}.ps-4{padding-left:1.5rem!important}.ps-5{padding-left:3rem!important}
.mainbg{background-image:url('/img/video-bg.jpg');background-size: cover;background-position: left bottom;}
.mainbg-m{background-image:url('/img/video-bg-m.jpg')}
.header-title.withbg {background: transparent !important}

.cookie-agreement {
    display: none;
    overflow: hidden
}

.cookie-agreement.open {
    display: block
}

.cookie-agreement > .close {
    position: absolute;
    top: 16px;
    right: 16px;
    color: #8f8f9d;
    font-size: 24px
}

.cookie-agreement > .close:hover {
    opacity: 0.5
}

.cookie-agreement.type5 {
    width: auto;
    bottom: 20px;
    position: fixed;
    left: calc(50% - 325px);
    background-color: #fff;
    border-radius: 4px;
    z-index: 100;
    box-shadow: 0px 4px 32px rgba(0, 0, 0, 0.1)
}

.cookie-agreement.type5 .inner {
    padding: 24px 42px 24px 32px
}

.cookie-agreement.type5 > .close {
    top: 8px;
    right: 8px;
    font-size: 16px
}

.box_item {
    position: relative;
    padding: 48px 48px 48px 48px;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: rgba(0, 0, 0, 0.7);
}
.box_item:hover {
    -webkit-box-shadow: 0 12px 12px 12px rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 24px 12px rgba(255, 255, 255, 0.3);
}

.offers {
    position: sticky;
    top: 92px;
    margin-bottom: 12px;
}
.underline {border-bottom:1px solid #ccc}
.underline:hover {border-bottom:1px solid #24c}
.fw400 {font-weight: 400}
.fw600 {font-weight: 600}
.srv-banner {background-color: #222; width: 100%; line-height: 220px;position: relative;margin-bottom: 30px}
.srv-banner img {float: right; margin-right: 20px}
.srv-banner h2 {display: inline}
.middle{vertical-align:middle;}
.srv-banner span {color:#fff;display: inline-block; vertical-align: middle; line-height: 1.25; padding-left: 40px; width: 60%}
.img-responsive {height: auto;max-width: 100%;}
.widget-shadow{position:fixed;background:rgba(33,33,33,.3);width:100%;height:100%;top:0;left:0;visibility:hidden;z-index:10100;-webkit-animation:widget-show .3s linear forwards;animation:widget-show .3s linear forwards;backdrop-filter:blur(3px)}
@-webkit-keyframes widget-show{0{opacity:0}
50%{opacity:0}
100%{opacity:1;visibility:visible}
}
@keyframes widget-show{0{opacity:0}
50%{opacity:0}
100%{opacity:1;visibility:visible}
}
.cimeswidget {
  position: fixed;
  min-width: auto;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  opacity: 1;
  -webkit-transition: opacity 0.5s linear;
  -moz-transition: opacity 0.5s linear;
  -ms-transition: opacity 0.5s linear;
  -o-transition: opacity 0.5s linear;
  transition: opacity 0.5s linear;
  z-index: 99999999; right: 50px; bottom: 50px;
}

.cimeswidget *, .cimeswidget *:before, .cimeswidget *:after {
  box-sizing: border-box;
}

.cimeswidget ul li:after{content: none}

.cimeswidget .pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-sizing: border-box;
  border-radius: 50%;
  width: 100%;
  height: 100%;
  background: #24c;
  z-index: 1;
  pointer-events: none;
}

.cimeswidget .pulse.pulse--first {
  animation-delay: -0.1s;
}

.cimeswidget .pulse.pulse--second {
  animation-delay: .25s;
}

.cimeswidget .pulse.pulse--animated {
  -webkit-animation: pulse--animation 3.2s ease-in-out infinite;
  -moz-animation: pulse--animation 3.2s ease-in-out infinite;
  -ms-animation: pulse--animation 3.2s ease-in-out infinite;
  -o-animation: pulse--animation 3.2s ease-in-out infinite;
  animation: pulse--animation 3.2s ease-in-out infinite;
}

.cimeswidget .main-button {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 50%;
  cursor: pointer;
  background-color: #24c;
  z-index: 2;
}

.cimeswidget .main-button .roller {
  display: initial;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  list-style-type: none;
}

.cimeswidget .main-button .roller .button-icons_icon {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  margin: 0;
  padding: 0;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  list-style-type: none;
  opacity: 0;
  -webkit-transition: opacity 0.3s linear;
  -moz-transition: opacity 0.3s linear;
  -ms-transition: opacity 0.3s linear;
  -o-transition: opacity 0.3s linear;
  transition: opacity 0.3s linear;
  background-repeat: no-repeat;
  background-size: 49.99998px;
  background-position: 5px 5px;
}

.cimeswidget .main-button .roller .button-icons_icon:before {
  content: none;
}

.cimeswidget .main-button .roller .button-icons_icon.button-icons_icon-own {
  background-size: 30px;
  background-position: center center;
}


.cimeswidget .main-button .roller .button-icons_icon--custom img {
  outline: none;
  width: auto;
  height: auto;
  min-width: 20px;
  min-height: 20px;
  max-width: 60px;
  max-height: 60px;
  border-radius: 50%;
}

.cimeswidget.active-icon-1 .main-button .button-icons_icon:nth-child(1) {
  opacity: 1;
  -webkit-transition: opacity 0.7s linear;
  -moz-transition: opacity 0.7s linear;
  -ms-transition: opacity 0.7s linear;
  -o-transition: opacity 0.7s linear;
  transition: opacity 0.7s linear;
  -webkit-transition-delay: 0.4s;
  -moz-transition-delay: 0.4s;
  -o-transition-delay: 0.4s;
  transition-delay: 0.4s;
}

.cimeswidget.active-icon-2 .main-button .button-icons_icon:nth-child(2) {
  opacity: 1;
  -webkit-transition: opacity 0.7s linear;
  -moz-transition: opacity 0.7s linear;
  -ms-transition: opacity 0.7s linear;
  -o-transition: opacity 0.7s linear;
  transition: opacity 0.7s linear;
  -webkit-transition-delay: 0.4s;
  -moz-transition-delay: 0.4s;
  -o-transition-delay: 0.4s;
  transition-delay: 0.4s;
}

.cimeswidget.active-icon-3 .main-button .button-icons_icon:nth-child(3) {
  opacity: 1;
  -webkit-transition: opacity 0.7s linear;
  -moz-transition: opacity 0.7s linear;
  -ms-transition: opacity 0.7s linear;
  -o-transition: opacity 0.7s linear;
  transition: opacity 0.7s linear;
  -webkit-transition-delay: 0.4s;
  -moz-transition-delay: 0.4s;
  -o-transition-delay: 0.4s;
  transition-delay: 0.4s;
}

.cimeswidget.active-icon-4 .main-button .button-icons_icon:nth-child(4) {
  opacity: 1;
  -webkit-transition: opacity 0.7s linear;
  -moz-transition: opacity 0.7s linear;
  -ms-transition: opacity 0.7s linear;
  -o-transition: opacity 0.7s linear;
  transition: opacity 0.7s linear;
  -webkit-transition-delay: 0.4s;
  -moz-transition-delay: 0.4s;
  -o-transition-delay: 0.4s;
  transition-delay: 0.4s;
}

.cimeswidget.active-icon-5 .main-button .button-icons_icon:nth-child(5) {
  opacity: 1;
  -webkit-transition: opacity 0.7s linear;
  -moz-transition: opacity 0.7s linear;
  -ms-transition: opacity 0.7s linear;
  -o-transition: opacity 0.7s linear;
  transition: opacity 0.7s linear;
  -webkit-transition-delay: 0.4s;
  -moz-transition-delay: 0.4s;
  -o-transition-delay: 0.4s;
  transition-delay: 0.4s;
}

.cimeswidget.active-icon-6 .main-button .button-icons_icon:nth-child(6) {
  opacity: 1;
  -webkit-transition: opacity 0.7s linear;
  -moz-transition: opacity 0.7s linear;
  -ms-transition: opacity 0.7s linear;
  -o-transition: opacity 0.7s linear;
  transition: opacity 0.7s linear;
  -webkit-transition-delay: 0.4s;
  -moz-transition-delay: 0.4s;
  -o-transition-delay: 0.4s;
  transition-delay: 0.4s;
}

.cimeswidget .stack {
  margin: 0;
  padding: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.cimeswidget .stack .button-collapse {
  margin: 0 0 60px 0;
  padding: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
}

.cimeswidget .stack .buttons_roller {
  display: initial;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  list-style-type: none;
  z-index: 1;
}

.cimeswidget .stack .buttons_roller .action-button {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 -50px;
  padding: 0;
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  opacity: 0;
  list-style-type: none;
  background-color: #24c;
  -webkit-transition: margin-bottom 0.3s, opacity 0.2s linear;
  -moz-transition: margin-bottom 0.3s, opacity 0.2s linear;
  -ms-transition: margin-bottom 0.3s, opacity 0.2s linear;
  -o-transition: margin-bottom 0.3s, opacity 0.2s linear;
  transition: margin-bottom 0.3s, opacity 0.2s linear;
  /* Чтобы не анимировать кнопку сворачивания */
}

.cimeswidget .stack .buttons_roller .action-button::before {
  content: attr(data-hint);
  visibility: hidden;
  opacity: 0;
  position: absolute;
  width: auto;
  height: auto;
  top: initial;
  left: initial;
  bottom: 30%;
  text-align: center;
  font-family: 'Arian', sans-serif;
  font-size: 16px;
  line-height: normal;
  white-space: nowrap;
  color: #FFFFFF;
  margin: 0;
  padding: 4px 18px;
  border-radius: 19px;
  background-color: rgba(0, 0, 0, 0.7);
  -webkit-transition: opacity 0.2s linear;
  -moz-transition: opacity 0.2s linear;
  -ms-transition: opacity 0.2s linear;
  -o-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}

.cimeswidget .stack .buttons_roller .action-button:hover::before {
  visibility: visible;
  opacity: 1;
  -webkit-transition: opacity 0.2s linear;
  -moz-transition: opacity 0.2s linear;
  -ms-transition: opacity 0.2s linear;
  -o-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}

.cimeswidget .stack .buttons_roller .action-button:first-child {
  margin: 0 0 10px;
  opacity: 1;
}

.cimeswidget .stack .buttons_roller .action-button .button_cmd {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-size: 49.99998px;
  background-position: 5px 5px;
}

.cimeswidget .icon-telegram {
  background-image:url("data:image/svg+xml;charset=utf8,%3Csvg%20version='1.1'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cg%20stroke='none'%20stroke-width='1'%20fill='none'%20fill-rule='evenodd'%3E%3Cg%20fill-rule='nonzero'%20fill='%23ffffff'%3E%3Cpath%20d='M32.1478873,16.6783217%20L12.8873239,24.0559441%20C12.4295775,24.2307692%2012.4295775,24.8951049%2012.8873239,25.0699301%20L17.5704225,26.8181818%20L19.4014085,32.6223776%20C19.5422535,33.006993%2019.9647887,33.1118881%2020.2816901,32.8671329%20L22.9225352,30.7692308%20C23.2042254,30.5594406%2023.5915493,30.5594406%2023.8732394,30.7342657%20L28.5915493,34.1258741%20C28.9084507,34.3706294%2029.3661972,34.1958042%2029.471831,33.7762238%20L32.9225352,17.2727273%20C32.9929577,16.8881119%2032.5352113,16.5034965%2032.1478873,16.6783217%20Z%20M28.4859155,20.5594406%20L20.915493,27.5174825%20C20.6690141,27.7622378%2020.4929577,28.0769231%2020.4225352,28.4615385%20L20.1760563,30.3496503%20C20.1408451,30.5944056%2019.7535211,30.6293706%2019.7183099,30.3846154%20L18.6971831,26.9230769%20C18.556338,26.5034965%2018.7676056,26.1188811%2019.1197183,25.9090909%20L28.2746479,20.3146853%20C28.4507042,20.1748252%2028.5915493,20.3846154%2028.4859155,20.5594406%20Z'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cimeswidget .icon-callback {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20version='1.1'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cg%20stroke='none'%20stroke-width='1'%20fill='none'%20fill-rule='evenodd'%3E%3Cg%20transform='translate(14.335664,%2015.734266)'%20fill-rule='nonzero'%20fill='%23ffffff'%3E%3Cpath%20d='M0.0760115906,5.10809654%20C0.176533935,5.71123061%200.310563727,6.34787212%200.478100968,6.91749874%20C1.48332441,10.5363031%203.66130854,13.3509288%206.40891929,15.763465%20C8.58690341,17.6733896%2011.2004844,19.0136875%2014.01511,19.6168216%20C15.9250346,20.018911%2017.600407,19.348762%2018.9407049,18.0084641%20C19.5773464,17.3718226%2019.6778687,16.433614%2019.6778687,15.5289129%20C19.6778687,15.3613757%2019.4433166,15.1268235%2019.2422719,14.9927937%20C18.6056304,14.5907044%2017.901974,14.2556299%2017.1983176,13.8535405%20L15.6234675,12.8818245%20C15.0873483,12.54675%2014.8192888,12.54675%2014.3501845,13.0158543%20C13.8810802,13.4849586%2013.4454834,14.0210777%2012.9763791,14.5571969%20C12.3397376,15.2943608%2012.1051855,15.2943608%2011.2339918,14.7917491%20C9.19003748,13.6524958%207.38063528,12.245183%206.0738448,10.2682436%20C5.67175543,9.66510949%205.26966605,8.99496053%204.90108412,8.35831901%20C4.56600964,7.78869239%204.63302454,7.55414026%205.10212881,7.08503598%20C5.57123308,6.61593171%206.2078746,6.14682744%206.71048632,5.67772316%20C7.31362038,5.10809654%207.31362038,4.87354441%206.87802356,4.169888%20C6.27488949,3.16466455%205.67175543,2.09242621%205.03511391,1.05369532%20C4.59951709,0.249516566%204.3984724,0.216009118%203.4937713,0.316531462%20C1.51683186,0.551083599%200.813175449,2.02541132%200.243548831,3.63376883%20C0.0425041425,4.13638055%200.00899669437,4.60548482%200.0760115906,5.10809654%20Z'%3E%3C/path%3E%3Cpolygon%20class='scb_icons_shape'%20points='18.4615385%204.1958042%2015.5944056%201.3986014%2012.2377622%204.82517483%2011.1188811%203.74125874%2010.4895105%209.47552448%2016.2587413%208.70629371%2015.1398601%207.62237762'%3E%3C/polygon%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cimeswidget .icon-chat {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20version='1.1'%20viewBox='3%203%2080%2080'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cg%20stroke='none'%20stroke-width='1'%20fill='%23ffffff'%20fill-rule='evenodd'%3E%3Cg%20transform='translate(-215.000000,%20-137.000000)'%3E%3Cg%20transform='translate(215.000000,%20137.000000)'%3E%3Cpath%20d='M52.7975217,41.9075708%20L52.7975217,48.3771283%20L57.1882512,52.7678578%20L57.1882512,46.354803%20L59.0363599,46.354803%20C60.4818869,46.354803%2061.6943403,45.1423495%2061.6943403,43.6991768%20L61.6943403,33.1261118%20C61.6943403,31.6829391%2060.4818869,30.4704856%2059.0363599,30.4704856%20L37.4876483,30.4704856%20C36.0444755,30.4704856%2034.8320221,31.6829391%2034.8320221,33.1261118%20L34.8320221,37.1707624%20L48.0607132,37.1707624%20C50.6598368,37.1707624%2052.7975217,39.3084473%2052.7975217,41.9075708'%3E%3C/path%3E%3Cpath%20d='M48.0604778,39.2502966%20L26.5117662,39.2502966%20C25.0685935,39.2502966%2023.85614,40.4627501%2023.85614,41.9082771%20L23.85614,52.4224851%20C23.85614,53.8656579%2025.0685935,55.0781113%2026.5117662,55.0781113%20L30.3256975,55.0781113%20L30.3256975,61.5500231%20L36.7952549,55.0781113%20L48.0604778,55.0781113%20C49.5036506,55.0781113%2050.7184583,53.8656579%2050.7184583,52.4224851%20L50.7184583,41.9082771%20C50.7184583,40.4627501%2049.5036506,39.2502966%2048.0604778,39.2502966'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cimeswidget .icon-whatsapp {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20viewBox='0%200%2050%2050'%20version='1.1'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cg%20stroke='none'%20stroke-width='1'%20fill='none'%20fill-rule='evenodd'%3E%3Cg%20fill-rule='nonzero'%20fill='%23ffffff'%3E%3Cg%20transform='translate(12.676056,%2012.237762)'%3E%3Cpath%20d='M12.7403846,0.000229738334%20C6.16987179,-0.0395538275%200.801282051,5.09252617%200.480769231,11.5772474%20C0.480769231,11.7363817%200.480769231,11.9352995%200.480769231,12.0944338%20C0.480769231,14.2825299%201.08173077,16.470626%202.24358974,18.3404536%20L0,24.8251748%20L6.77083333,22.6768623%20C12.7403846,25.9391147%2020.2323718,23.7510185%2023.4775641,17.8630508%20C24.4391026,16.1125739%2024.9599359,14.1233956%2025,12.0944338%20C25,11.9750831%2025,11.8955159%2025,11.7761652%20C24.7996795,5.21187686%2019.3910256,0.000229738334%2012.7403846,0.000229738334%20Z%20M12.7403846,22.3188102%20C10.7371795,22.3188102%208.73397436,21.7220567%207.05128205,20.6479004%20L3.0849359,21.881191%20L4.36698718,18.1017522%20C3.0849359,16.3512753%202.40384615,14.2825299%202.40384615,12.1342173%20C2.40384615,11.8159488%202.40384615,11.4578967%202.44391026,11.1396282%20C3.04487179,5.49036182%208.13301282,1.39265454%2013.8221154,1.98940803%20C18.75,2.50659439%2022.5961538,6.40538384%2023.036859,11.2987624%20C23.036859,11.5374638%2023.0769231,11.8159488%2023.0769231,12.0944338%20C23.0769231,17.7834837%2018.4294872,22.3188102%2012.7403846,22.3188102%20L12.7403846,22.3188102%20Z'%3E%3C/path%3E%3Cpath%20d='M19.0155823,14.6072633%20C18.6842193,14.4487776%2017.1516653,13.735592%2016.9031431,13.6563491%20C16.6132004,13.5771063%2016.4060986,13.4978634%2016.1989967,13.8148348%20C15.9918948,14.0921848%2015.4120095,14.765749%2015.2049076,14.9638562%20C14.9978057,15.1619633%2014.8321242,15.2015847%2014.5421816,15.043099%20C13.6309333,14.6865062%2012.7611054,14.2110491%2012.056959,13.5771063%20C11.394233,12.9827849%2010.7729273,12.3092206%2010.3173032,11.5167921%20C10.1516217,11.2394421%2010.3173032,11.0809564%2010.4415643,10.9224707%20C10.5658254,10.763985%2010.7729273,10.5658779%2010.8971884,10.4073921%20C10.9386088,10.3677707%2010.9800292,10.3281493%2011.0214496,10.2489064%20C11.1042903,10.1300422%2011.1457107,10.0111779%2011.2285515,9.8923136%20C11.3113922,9.7338279%2011.3113922,9.53572077%2011.1871311,9.37723506%20C11.1042903,9.21874936%2010.4829847,7.79237801%2010.2344624,7.19805661%20C9.98594015,6.60373522%209.69599751,6.68297807%209.530316,6.68297807%20C9.3646345,6.68297807%209.11611223,6.64335664%208.95043073,6.64335664%20C8.61906771,6.64335664%208.32912507,6.80184235%208.12202319,6.99994948%20C7.41787679,7.6338923%207.00367302,8.54518511%207.04509339,9.45647791%20C7.04509339,9.81307075%207.08651377,10.1300422%207.2107749,10.4470136%20C7.45929716,11.1998207%207.83208055,11.8733849%208.32912507,12.5073277%20C8.49480658,12.7054349%2010.4829847,15.7959061%2013.6723537,16.9845489%20C16.8617227,18.1731917%2016.8203023,17.7769774%2017.4001876,17.737356%20C17.9386525,17.6977346%2019.2641046,17.0241703%2019.5126268,16.3506061%20C19.7197287,15.9147704%2019.7611491,15.4393133%2019.6783083,14.9638562%20C19.5126268,14.8449919%2019.3055249,14.765749%2019.0155823,14.6072633%20Z'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cimeswidget .icon-max {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='20'%20height='20'%20viewBox='0%200%20100%20100'%20fill='%23fff'%3E%3Cpath%20fill-rule='evenodd'%20d='M50.7571%200.261719C78.2929%200.261719%2099.8857%2022.5974%2099.8857%2050.1474C99.8857%2077.6974%2077.6071%2099.4903%2051.0214%2099.4903C41.5857%2099.4903%2037.0143%2098.1617%2029.65%2092.9474C29.1429%2092.5903%2028.45%2092.6831%2028.0214%2093.1403C22.3571%2099.1831%207.85%20103.426%207.18571%2095.176C7.18571%2080.7903%200%2071.4474%200%2049.876C0%2021.5546%2023.2214%200.261719%2050.7571%200.261719ZM51.5286%2024.8117C38.4643%2024.126%2028.2643%2033.1974%2026.0143%2047.3831C24.15%2059.1332%2027.45%2073.4546%2030.2786%2074.176C31.4786%2074.4832%2034.3571%2072.276%2036.4571%2070.2974C36.85%2069.926%2037.45%2069.8617%2037.9071%2070.1474C41.1786%2072.1474%2044.8786%2073.6474%2048.9571%2073.8617C62.3714%2074.5617%2074.2571%2064.0617%2074.9643%2050.6474C75.6643%2037.2331%2064.9429%2025.5046%2051.5286%2024.8046V24.8117Z'/%3E%3C/svg%3E");
}
/* Силуэт MAX занимает весь холст, а у соседних иконок внутри SVG есть поля:
   при общих 50px кружок MAX выходил заметно крупнее. Отсюда свой размер.
   Селекторы длинные, потому что общие правила .button_cmd и
   .button-icons_icon специфичнее короткого .cimeswidget .icon-max. */
.cimeswidget .stack .buttons_roller .action-button .button_cmd.icon-max,
.cimeswidget .main-button .roller .button-icons_icon.icon-max {
  background-size: 24px;
  background-position: center;
}





.cimeswidget .stack .buttons_roller .action-button .button_cmd.wicon-collapse {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20viewBox='0%200%2024%2015'%20version='1.1'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cg%20transform='translate(4999%20-6840)'%3E%3Cg%3E%3Cuse%20xlink:href='%23path0_stroke'%20class='scb_svg_close'%20transform='translate(-4997%206842)'%20fill='%23ffffff'%3E%3C/use%3E%3C/g%3E%3C/g%3E%3Cdefs%3E%3Cpath%20id='path0_stroke'%20d='M%2010.2562%2010.2562L%209.19552%2011.3168L%2010.2562%2012.3775L%2011.3168%2011.3168L%2010.2562%2010.2562ZM%20-1.06066%201.06066L%209.19552%2011.3168L%2011.3168%209.19552L%201.06066%20-1.06066L%20-1.06066%201.06066ZM%2011.3168%2011.3168L%2021.3509%201.28279L%2019.2296%20-0.83853L%209.19552%209.19552L%2011.3168%2011.3168Z'%3E%3C/path%3E%3C/defs%3E%3C/svg%3E");
  background-position: center;
  background-size: 24px;
}

.cimeswidget .stack.stack-up {
  -webkit-transform: scaleY(-1);
  -moz-transform: scaleY(-1);
  -ms-transform: scaleY(-1);
  -o-transform: scaleY(-1);
  transform: scaleY(-1);
}

.cimeswidget .stack.stack-up .button_cmd, .cimeswidget .stack.stack-up .action-button::before {
  -webkit-transform: scaleY(-1);
  -moz-transform: scaleY(-1);
  -ms-transform: scaleY(-1);
  -o-transform: scaleY(-1);
  transform: scaleY(-1);
}

.cimeswidget .stack.pos-left .action-button::before {
  right: 120%;
}



.cimeswidget.widget-collapsed .stack {
  visibility: hidden;
}

.cimeswidget.widget-expanded .main-button, .cimeswidget.widget-expanded .pulse {
  visibility: hidden;
}

.cimeswidget.widget-expanded .stack .buttons_roller .action-button {
  margin: 0 0 10px;
  opacity: 1;
  -webkit-transition: margin-bottom 0.3s, opacity 0.2s linear;
  -moz-transition: margin-bottom 0.3s, opacity 0.2s linear;
  -ms-transition: margin-bottom 0.3s, opacity 0.2s linear;
  -o-transition: margin-bottom 0.3s, opacity 0.2s linear;
  transition: margin-bottom 0.3s, opacity 0.2s linear;
}
.button_cmd:hover{background-color: #172e8a}

@-webkit-keyframes pulse--animation {
  0% {
    width: 90%;
    height: 90%;
  }

  15% {
    opacity: .5;
  }

  60% {
    opacity: 0;
  }

  80%, 95% {
    opacity: 0;
    width: 250%;
    height: 250%;
  }

  100% {
    opacity: 0;
    width: 90%;
    height: 90%;
  }
}

@-moz-keyframes pulse--animation {
  0% {
    width: 90%;
    height: 90%;
  }

  15% {
    opacity: .5;
  }

  60% {
    opacity: 0;
  }

  80%, 95% {
    opacity: 0;
    width: 250%;
    height: 250%;
  }

  100% {
    opacity: 0;
    width: 90%;
    height: 90%;
  }
}

@-ms-keyframes pulse--animation {
  0% {
    width: 90%;
    height: 90%;
  }

  15% {
    opacity: .5;
  }

  60% {
    opacity: 0;
  }

  80%, 95% {
    opacity: 0;
    width: 250%;
    height: 250%;
  }

  100% {
    opacity: 0;
    width: 90%;
    height: 90%;
  }
}

@keyframes pulse--animation {
  0% {
    width: 90%;
    height: 90%;
  }

  15% {
    opacity: .5;
  }

  60% {
    opacity: 0;
  }

  80%, 95% {
    opacity: 0;
    width: 250%;
    height: 250%;
  }

  100% {
    opacity: 0;
    width: 90%;
    height: 90%;
  }
}

@media (max-width:991px){
.cimeswidget {right: 20px; bottom: 95px}


}
._number {font-size:18px; letter-spacing: 2px;color:#999; font-weight: 700; min-width: 50px}
.button-pulse{position:absolute;top:0;left:0;bottom:0;right:0;border:1px solid #00aeef;border-radius:50%;}
.button-pulse-animate{-webkit-animation:widgetPulse infinite 1.5s;animation:widgetPulse infinite 1.5s;}
.mywidget .widget-popup{left:-325px;bottom:-10px;}
.mywidget .widget-popup-triangle{bottom:25px;right:-6px;-webkit-transform:rotate(-45deg);transform:rotate(-45deg);}
.widget-popup-triangle{position:absolute;display:block;width:8px;height:8px;background:#fff;border-right:2px solid #2fc7f7;border-bottom:2px solid #2fc7f7;}
.mywidget .widget-popup-manager{margin:6px 10px 0 0;width:42px;text-align:center;}
.mywidget .widget-popup-manager img{display:inline-block;width:42px;height:42px;border-radius:100%;background-repeat:no-repeat;background-position:center;background-size:cover;}
.mywidget .widget-popup-content{width:222px}
.mywidget .widget-popup-name{font-size:12px;color:#000;}
.mywidget .widget-popup-description{font-size:11px;line-height:15px;color:#424956;}
.widget-popup{display:none;position:absolute;left:100px;padding:12px 20px 12px 14px;width:312px;border:2px solid #2fc7f7;background:#fff;border-radius:15px;box-sizing:border-box;z-index:1;cursor:pointer;}
.mywidget ul li a:hover,.mywidget ul li div:hover{-webkit-box-shadow:0 0 6px rgba(0, 0, 0, .16), 0 6px 12px rgba(0, 0, 0, .32);box-shadow:0 0 6px rgba(0, 0, 0, .16), 0 6px 12px rgba(0, 0, 0, .32);-webkit-transition:box-shadow .17s cubic-bezier(0, 0, .2, 1);transition:box-shadow .17s cubic-bezier(0, 0, .2, 1);border-radius:50%;}
.mywidget ul li.whatsapp a:hover,.mywidget ul li.telegram a:hover {box-shadow:none;-webkit-box-shadow:none}
.widget-tooltip{position:absolute;top:50%;left:-9000px;display:inline-block;padding:5px 10px;max-width:360px;border-radius:10px;font-size:12px;color:#000;background:#fff;text-align:center;text-overflow:ellipsis;white-space:nowrap;transform:translate(0, -50%);transition:opacity .6s linear;opacity:0;overflow:hidden;}
.mywidget ul li a:hover .widget-tooltip,.mywidget ul li div:hover .widget-tooltip{left:50px;-webkit-transform:translate(0, -50%);transform:translate(0, -50%);opacity:1;z-index:1;}
.b24-widget-button-close{display:none;}
.widget-popup-inner{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-flow:row wrap;flex-flow:row wrap;}
.widget-button-popup-btn-hide{position:absolute;top:4px;right:4px;display:inline-block;height:20px;width:20px;background-image:url(data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2210%22%20height%3D%2210%22%20viewBox%3D%220%200%2010%2010%22%3E%3Cpath%20fill%3D%22%23525C68%22%20fill-rule%3D%22evenodd%22%20d%3D%22M6.41%205.07l2.867-2.864-1.34-1.34L5.07%203.73%202.207.867l-1.34%201.34L3.73%205.07.867%207.938l1.34%201.34L5.07%206.41l2.867%202.867%201.34-1.34L6.41%205.07z%22/%3E%3C/svg%3E);background-repeat:no-repeat;background-position:center;opacity:.2;-webkit-transition:opacity .3s;transition:opacity .3s;cursor:pointer;}
.widget-button-popup-btn-hide:hover{opacity:1;}
.mywidget ul li a:hover .widget-tooltip,.mywidget ul li div:hover .widget-tooltip{left:-5px;-webkit-transform:translate(-100%, -50%);transform:translate(-100%, -50%);opacity:1;}
.widget-popup-show{display:block;-webkit-animation:show .4s linear forwards;animation:show .4s linear forwards;}
@-webkit-keyframes widgetPulse{50%{-webkit-transform:scale(1, 1);transform:scale(1, 1);opacity:1;}
100%{-webkit-transform:scale(2, 2);transform:scale(2, 2);opacity:0;}
}
@keyframes widgetPulse{50%{-webkit-transform:scale(1, 1);transform:scale(1, 1);opacity:1;}
100%{-webkit-transform:scale(2, 2);transform:scale(2, 2);opacity:0;}
}
:root{--maincolor:#24c;--blue:#007bff;--indigo:#6610f2;--purple:#6f42c1;--pink:#e83e8c;--red:#dc3545;--orange:#fd7e14;--yellow:#ffc107;--green:#28a745;--teal:#20c997;--cyan:#17a2b8;--white:#fff;--gray:#6c757d;--gray-dark:#343a40;--primary:#007bff;--secondary:#6c757d;--success:#28a745;--info:#17a2b8;--warning:#ffc107;--danger:#dc3545;--light:#f8f9fa;--dark:#343a40;--breakpoint-xs:0;--breakpoint-sm:576px;--breakpoint-md:768px;--breakpoint-lg:992px;--breakpoint-xl:1200px;--font-family-sans-serif:-apple-system, BlinkMacSystemFont,'Arian', "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";--font-family-monospace:SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
--tabs-top-margin-desktop: 3.75rem;
    --tabs-top-margin-mobile: 2.25rem;
    --tabs-bottom-margin-desktop: 3rem;
    --tabs-bottom-margin-mobile: 1.5rem;
    --tabs-vertical-padding-desktop: 8px;
    --tabs-vertical-padding-mobile: 6px;
    --tabs-horizontal-padding-desktop: 16px;
    --tabs-horizontal-padding-mobile: 12px;
    --g14-desktop: 5.5rem;
    --g14-mobile: 3.5rem;
}
*,
*::before,
*::after{box-sizing:border-box;}
html{font-family:sans-serif;line-height:1.15;-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:rgba(0, 0, 0, 0);overflow-x:hidden;overflow-y:auto;}
article, aside, figcaption, figure, footer, header, hgroup, main, nav, section{display:block;}
body{margin:0;font-family:-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";font-size:1rem;font-weight:400;line-height:1.5;color:#212529;text-align:left;background-color:#fff;}
[tabindex="-1"]:focus{outline:0 !important;}
hr{box-sizing:content-box;height:0;overflow:visible;}
h1, h2, h3, h4, h5, h6{margin-top:0;margin-bottom:0.5rem;}
p{margin-top:0;margin-bottom:1rem;}
abbr[title],
abbr[data-original-title]{text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:help;border-bottom:0;-webkit-text-decoration-skip-ink:none;text-decoration-skip-ink:none;}
address{margin-bottom:1rem;font-style:normal;line-height:inherit;}
ol,
ul,
dl{margin-top:0;margin-bottom:1rem;}
ol ol,
ul ul,
ol ul,
ul ol{margin-bottom:0;}
dt{font-weight:700;}
dd{margin-bottom:.5rem;margin-left:0;}
blockquote{margin:0 0 1rem;}
b,
strong{font-weight:bolder;}
small{font-size:80%;}
sub,
sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline;}
sub{bottom:-.25em;}
sup{top:-.5em;}
a{color:#007bff;text-decoration:none;background-color:transparent;}
a:hover{color:#0056b3;text-decoration:none;}
a:not([href]):not([tabindex]){color:inherit;text-decoration:none;}
a:not([href]):not([tabindex]):hover, a:not([href]):not([tabindex]):focus{color:inherit;text-decoration:none;}
a:not([href]):not([tabindex]):focus{outline:0;}
pre,
code,
kbd,
samp{font-family:SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;font-size:1em;}
pre{margin-top:0;margin-bottom:1rem;overflow:auto;}
figure{margin:0 0 1rem;}
img{border-style:none;}
svg{overflow:hidden}
table{border-collapse:collapse;}
caption{padding-top:0.75rem;padding-bottom:0.75rem;color:#6c757d;text-align:left;caption-side:bottom;}
th{text-align:inherit;}
label{display:inline-block;margin-bottom:0.5rem;}
button{border-radius:0;}
button:focus{outline:1px dotted;outline:5px auto -webkit-focus-ring-color;}
input,
button,
select,
optgroup,
textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit;}
button,
input{overflow:visible;}
button,
select{text-transform:none;}
select{word-wrap:normal;}
button,
[type="button"],
[type="reset"],
[type="submit"]{-webkit-appearance:button;}
button:not(:disabled),
[type="button"]:not(:disabled),
[type="reset"]:not(:disabled),
[type="submit"]:not(:disabled){cursor:pointer;}
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner{padding:0;border-style:none;}
input[type="radio"],
input[type="checkbox"]{box-sizing:border-box;padding:0;}
input[type="date"],
input[type="time"],
input[type="datetime-local"],
input[type="month"]{-webkit-appearance:listbox;}
textarea{overflow:auto;resize:vertical;}
fieldset{min-width:0;padding:0;margin:0;border:0;}
legend{display:block;width:100%;max-width:100%;padding:0;margin-bottom:.5rem;font-size:1.5rem;line-height:inherit;color:inherit;white-space:normal;}
progress{vertical-align:baseline;}
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button{height:auto;}
[type="search"]{outline-offset:-2px;-webkit-appearance:none;}
[type="search"]::-webkit-search-decoration{-webkit-appearance:none;}
::-webkit-file-upload-button{font:inherit;-webkit-appearance:button;}
output{display:inline-block;}
summary{display:list-item;cursor:pointer;}
template{display:none;}
[hidden]{display:none !important;}
h1, h2, h3, h4, h5, h6,
.th1, .th2, .th3, .th4, .th5, .th6{margin-bottom:20px;font-weight:500;line-height:1.2;}
h1, .th1{font-size:2.5rem;}
h2, .th2{font-size:2rem;}
h3, .th3{font-size:1.75rem;}
h4, .th4{font-size:1.5rem;}
h5, .th5{font-size:1.25rem;}
h6, .th6{font-size:1rem;}
.lead{font-size:1.25rem;font-weight:300;}
.display-1{font-size:6rem;font-weight:300;line-height:1.2;}
.display-2{font-size:5.5rem;font-weight:300;line-height:1.2;}
.display-3{font-size:4.5rem;font-weight:300;line-height:1.2;}
.display-4{font-size:3.5rem;font-weight:300;line-height:1.2;}
hr{margin-top:1rem;margin-bottom:1rem;border:0;border-top:1px solid rgba(0, 0, 0, 0.1);}
small,
.small{font-size:80%;font-weight:400;}
mark,
.mark{padding:0.2em;background-color:#faeead;}
.list-unstyled{padding-left:0;list-style:none;}
.list-inline{padding-left:0;list-style:none;}
.list-inline-item{display:inline-block;}
.list-inline-item:not(:last-child){margin-right:0.5rem;}
.initialism{font-size:90%;text-transform:uppercase;}
.blockquote{margin-top:1rem;margin-bottom:1rem;}
.blockquote-footer{display:block;font-size:80%;color:#6c757d;}
.blockquote-footer::before{content:"\2014\00A0";}
.img-fluid{max-width:100%;height:auto;}
.img-thumbnail{padding:0.25rem;background-color:#fff;border:1px solid #dee2e6;border-radius:0.25rem;max-width:100%;height:auto;}
.figure{display:inline-block;}
.figure-img{margin-bottom:0.5rem;line-height:1;}
.figure-caption{font-size:90%;color:#6c757d;}
code{font-size:87.5%;color:#e83e8c;word-break:break-word;}
a > code{color:inherit;}
kbd{padding:0.2rem 0.4rem;font-size:87.5%;color:#fff;background-color:#212529;border-radius:0.2rem;}
kbd kbd{padding:0;font-size:100%;font-weight:700;}
pre{display:block;font-size:87.5%;color:#212529;}
pre code{font-size:inherit;color:inherit;word-break:normal;}
.pre-scrollable{max-height:340px;overflow-y:scroll;}
.form-control{display:block;width:100%;height:calc(1.5em + 0.75rem + 2px);padding:0.375rem 0.75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#495057;background-color:#fff;background-clip:padding-box;border:1px solid #ced4da;border-radius:0.25rem;transition:border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;}
.form-control::-ms-expand{background-color:transparent;border:0;}
.form-control:focus{color:#495057;background-color:#fff;border-color:#80bdff;outline:0;}
.form-control::-webkit-input-placeholder{color:#6c757d;opacity:1;}
.form-control::-moz-placeholder{color:#6c757d;opacity:1;}
.form-control:-ms-input-placeholder{color:#6c757d;opacity:1;}
.form-control::-ms-input-placeholder{color:#6c757d;opacity:1;}
.form-control::placeholder{color:#6c757d;opacity:1;}
.form-control:disabled, .form-control[readonly]{background-color:#e9ecef;opacity:1;}
select.form-control:focus::-ms-value{color:#495057;background-color:#fff;}
.form-control-file,
.form-control-range{display:block;width:100%;}
.col-form-label{padding-top:calc(0.375rem + 1px);padding-bottom:calc(0.375rem + 1px);margin-bottom:0;font-size:inherit;line-height:1.5;}
.col-form-label-lg{padding-top:calc(0.5rem + 1px);padding-bottom:calc(0.5rem + 1px);font-size:1.25rem;line-height:1.5;}
.col-form-label-sm{padding-top:calc(0.25rem + 1px);padding-bottom:calc(0.25rem + 1px);font-size:0.875rem;line-height:1.5;}
.form-control-plaintext{display:block;width:100%;padding-top:0.375rem;padding-bottom:0.375rem;margin-bottom:0;line-height:1.5;color:#212529;background-color:transparent;border:solid transparent;border-width:1px 0;}
.form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg{padding-right:0;padding-left:0;}
.form-control-sm{height:calc(1.5em + 0.5rem + 2px);padding:0.25rem 0.5rem;font-size:0.875rem;line-height:1.5;border-radius:0.2rem;}
.form-control-lg{height:calc(1.5em + 1rem + 2px);padding:0.5rem 1rem;font-size:1.25rem;line-height:1.5;border-radius:0.3rem;}
select.form-control[size], select.form-control[multiple]{height:auto;}
textarea.form-control{height:auto;}
.form-group{margin-bottom:1rem;}
.form-text{display:block;margin-top:0.25rem;}
.form-row{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-right:-5px;margin-left:-5px;}
.form-row > .col,
.form-row > [class*="col-"]{padding-right:5px;padding-left:5px;}
.form-check{position:relative;display:block;padding-left:1.25rem;}
.form-check-input{position:absolute;margin-top:0.3rem;margin-left:-1.25rem;}
.form-check-input:disabled ~ .form-check-label{color:#6c757d;}
.form-check-label{margin-bottom:0;}
span.btn{cursor:pointer}
.btn{display:inline-block;font-weight:400;color:#212529;text-align:center;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-color:transparent;border:1px solid transparent;padding:0.375rem 0.75rem;font-size:1rem;line-height:1.5;border-radius:0.25rem;transition:color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;}
.btn:hover{color:#212529;text-decoration:none;}
.btn:focus, .btn.focus{outline:0;}
.btn.disabled, .btn:disabled{opacity:0.65;}
a.btn.disabled,
fieldset:disabled a.btn{pointer-events:none;}
.btn-primary{color:#fff;background-color:#007bff;border-color:#007bff;}
.btn-primary:hover{color:#fff;background-color:#0069d9;border-color:#0062cc;}
.btn-primary.disabled, .btn-primary:disabled{color:#fff;background-color:#007bff;border-color:#007bff;}
.btn-primary:not(:disabled):not(.disabled).active,
.show > .btn-primary.dropdown-toggle{color:#fff;background-color:#0062cc;border-color:#005cbf;}
.btn-secondary{color:#fff;background-color:#6c757d;border-color:#6c757d;}
.btn-secondary:hover{color:#fff;background-color:#5a6268;border-color:#545b62;}
.btn-secondary.disabled, .btn-secondary:disabled{color:#fff;background-color:#6c757d;border-color:#6c757d;}
.btn-secondary:not(:disabled):not(.disabled).active,
.show > .btn-secondary.dropdown-toggle{color:#fff;background-color:#545b62;border-color:#4e555b;}
.btn-success{color:#fff;background-color:#28a745;border-color:#28a745;}
.btn-success:hover{color:#fff;background-color:#218838;border-color:#1e7e34;}
.btn-success.disabled, .btn-success:disabled{color:#fff;background-color:#28a745;border-color:#28a745;}
.btn-success:not(:disabled):not(.disabled).active,
.show > .btn-success.dropdown-toggle{color:#fff;background-color:#1e7e34;border-color:#1c7430;}
.btn-info{color:#fff;background-color:#17a2b8;border-color:#17a2b8;}
.btn-info:hover{color:#fff;background-color:#138496;border-color:#117a8b;}
.btn-info.disabled, .btn-info:disabled{color:#fff;background-color:#17a2b8;border-color:#17a2b8;}
.btn-info:not(:disabled):not(.disabled).active,
.show > .btn-info.dropdown-toggle{color:#fff;background-color:#117a8b;border-color:#10707f;}
.btn-warning{color:#212529;background-color:#ffc107;border-color:#ffc107;}
.btn-warning:hover{color:#212529;background-color:#e0a800;border-color:#d39e00;}
.btn-warning.disabled, .btn-warning:disabled{color:#212529;background-color:#ffc107;border-color:#ffc107;}
.btn-warning:not(:disabled):not(.disabled).active,
.show > .btn-warning.dropdown-toggle{color:#212529;background-color:#d39e00;border-color:#c69500;}
.btn-danger{color:#fff;background-color:#dc3545;border-color:#dc3545;}
.btn-danger:hover{color:#fff;background-color:#c82333;border-color:#bd2130;}
.btn-danger.disabled, .btn-danger:disabled{color:#fff;background-color:#dc3545;border-color:#dc3545;}
.btn-danger:not(:disabled):not(.disabled).active,
.show > .btn-danger.dropdown-toggle{color:#fff;background-color:#bd2130;border-color:#b21f2d;}
.btn-light{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa;}
.btn-light:hover{color:#212529;background-color:#e2e6ea;border-color:#dae0e5;}
.btn-light.disabled, .btn-light:disabled{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa;}
.btn-light:not(:disabled):not(.disabled).active,
.show > .btn-light.dropdown-toggle{color:#212529;background-color:#dae0e5;border-color:#d3d9df;}
.btn-dark{color:#fff;background-color:#343a40;border-color:#343a40;}
.btn-dark:hover{color:#fff;background-color:#23272b;border-color:#1d2124;}
.btn-dark.disabled, .btn-dark:disabled{color:#fff;background-color:#343a40;border-color:#343a40;}
.btn-dark:not(:disabled):not(.disabled).active,
.show > .btn-dark.dropdown-toggle{color:#fff;background-color:#1d2124;border-color:#171a1d;}
.btn-outline-primary{color:#007bff;border-color:#007bff;}
.btn-outline-primary:hover{color:#fff;background-color:#007bff;border-color:#007bff;}
.btn-outline-primary.disabled, .btn-outline-primary:disabled{color:#007bff;background-color:transparent;}
.btn-outline-primary:not(:disabled):not(.disabled).active,
.show > .btn-outline-primary.dropdown-toggle{color:#fff;background-color:#007bff;border-color:#007bff;}
.btn-outline-secondary{color:#6c757d;border-color:#6c757d;}
.btn-outline-secondary:hover{color:#fff;background-color:#6c757d;border-color:#6c757d;}
.btn-outline-secondary.disabled, .btn-outline-secondary:disabled{color:#6c757d;background-color:transparent;}
.btn-outline-secondary:not(:disabled):not(.disabled).active,
.show > .btn-outline-secondary.dropdown-toggle{color:#fff;background-color:#6c757d;border-color:#6c757d;}
.btn-outline-success{color:#28a745;border-color:#28a745;}
.btn-outline-success:hover{color:#fff;background-color:#28a745;border-color:#28a745;}
.btn-outline-success.disabled, .btn-outline-success:disabled{color:#28a745;background-color:transparent;}
.btn-outline-success:not(:disabled):not(.disabled).active,
.show > .btn-outline-success.dropdown-toggle{color:#fff;background-color:#28a745;border-color:#28a745;}
.btn-outline-info{color:#17a2b8;border-color:#17a2b8;}
.btn-outline-info:hover{color:#fff;background-color:#17a2b8;border-color:#17a2b8;}
.btn-outline-info.disabled, .btn-outline-info:disabled{color:#17a2b8;background-color:transparent;}
.btn-outline-info:not(:disabled):not(.disabled).active,
.show > .btn-outline-info.dropdown-toggle{color:#fff;background-color:#17a2b8;border-color:#17a2b8;}
.btn-outline-warning{color:#ffc107;border-color:#ffc107;}
.btn-outline-warning:hover{color:#212529;background-color:#ffc107;border-color:#ffc107;}
.btn-outline-warning.disabled, .btn-outline-warning:disabled{color:#ffc107;background-color:transparent;}
.btn-outline-warning:not(:disabled):not(.disabled).active,
.show > .btn-outline-warning.dropdown-toggle{color:#212529;background-color:#ffc107;border-color:#ffc107;}
.btn-outline-danger{color:#dc3545;border-color:#dc3545;}
.btn-outline-danger:hover{color:#fff;background-color:#dc3545;border-color:#dc3545;}
.btn-outline-danger.disabled, .btn-outline-danger:disabled{color:#dc3545;background-color:transparent;}
.btn-outline-danger:not(:disabled):not(.disabled).active,
.show > .btn-outline-danger.dropdown-toggle{color:#fff;background-color:#dc3545;border-color:#dc3545;}
.btn-outline-light{color:#f8f9fa;border-color:#f8f9fa;}
.btn-outline-light:hover{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa;}
.btn-outline-light.disabled, .btn-outline-light:disabled{color:#f8f9fa;background-color:transparent;}
.btn-outline-light:not(:disabled):not(.disabled).active,
.show > .btn-outline-light.dropdown-toggle{color:#212529;background-color:#f8f9fa;border-color:#f8f9fa;}
.btn-outline-dark{color:#343a40;border-color:#343a40;}
.btn-outline-dark:hover{color:#fff;background-color:#343a40;border-color:#343a40;}
.btn-outline-dark.disabled, .btn-outline-dark:disabled{color:#343a40;background-color:transparent;}
.btn-outline-dark:not(:disabled):not(.disabled).active,
.show > .btn-outline-dark.dropdown-toggle{color:#fff;background-color:#343a40;border-color:#343a40;}
.btn-link{font-weight:400;color:#007bff;text-decoration:none;}
.btn-link:hover{color:#0056b3;text-decoration:underline;}
.btn-link:focus, .btn-link.focus{text-decoration:underline;}
.btn-link:disabled, .btn-link.disabled{color:#6c757d;pointer-events:none;}
.btn-block{display:block;width:100%;}
.btn-block + .btn-block{margin-top:0.5rem;}
input[type="submit"].btn-block,
input[type="reset"].btn-block,
input[type="button"].btn-block{width:100%;}
.fade{transition:opacity 0.15s linear;}
.fade:not(.show){opacity:0;}
.collapse:not(.show){display:none;}
.collapsing{position:relative;height:0;overflow:hidden;transition:height 0.35s ease;}
.custom-control{position:relative;display:block;min-height:1.5rem;padding-left:1.5rem;}
.custom-control-inline{display:-ms-inline-flexbox;display:inline-flex;margin-right:1rem;}
.custom-control-input{position:absolute;z-index:-1;opacity:0;}
.custom-control-input:checked ~ .custom-control-label::before{color:#fff;border-color:#007bff;background-color:#007bff;}
.custom-control-input:focus:not(:checked) ~ .custom-control-label::before{border-color:#80bdff;}
.custom-control-input:disabled ~ .custom-control-label{color:#6c757d;}
.custom-control-input:disabled ~ .custom-control-label::before{background-color:#e9ecef;}
.custom-control-label{position:relative;margin-bottom:0;vertical-align:top;}
.custom-control-label::before{position:absolute;top:0.25rem;left:-1.5rem;display:block;width:1rem;height:1rem;pointer-events:none;content:"";background-color:#fff;border:#adb5bd solid 1px;}
.custom-control-label::after{position:absolute;top:0.25rem;left:-1.5rem;display:block;width:1rem;height:1rem;content:"";background:no-repeat 50%/50% 50%;}
.custom-checkbox .custom-control-label::before{border-radius:0.25rem;}
.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after{background-image:url("data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e");}
.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before{border-color:#007bff;background-color:#007bff;}
.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after{background-image:url("data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3e%3cpath stroke='%23fff' d='M0 2h4'/%3e%3c/svg%3e");}
.custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before{background-color:rgba(0, 123, 255, 0.5);}
.custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before{background-color:rgba(0, 123, 255, 0.5);}
.custom-control-label::before,
.custom-file-label,
.custom-select{transition:background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;}
.nav{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;padding-left:0;margin-bottom:0;list-style:none;}
.nav-link{display:block;padding:0.5rem 1rem;}
.nav-link:hover, .nav-link:focus{text-decoration:none;}
.nav-link.disabled{color:#6c757d;pointer-events:none;cursor:default;}
.nav-tabs{border-bottom:1px solid #dee2e6;}
.nav-tabs .nav-item{margin-bottom:-1px;}
.nav-tabs .nav-link{border:1px solid transparent;border-top-left-radius:0.25rem;border-top-right-radius:0.25rem;}
.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus{border-color:#e9ecef #e9ecef #dee2e6;}
.nav-tabs .nav-link.disabled{color:#6c757d;background-color:transparent;border-color:transparent;}
.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link{color:#495057;background-color:#fff;border-color:#dee2e6 #dee2e6 #fff;}
.nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0;}
.nav-pills .nav-link{border-radius:0.25rem;}
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link{color:#fff;background-color:#007bff;}
.nav-fill .nav-item{-ms-flex:1 1 auto;flex:1 1 auto;text-align:center;}
.nav-justified .nav-item{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;text-align:center;}
.tab-content > .tab-pane{display:none;}
.tab-content > .active{display:block;}
.accordion > .card{overflow:hidden;}
.accordion > .card:not(:first-of-type) .card-header:first-child{border-radius:0;}
.accordion > .card:not(:first-of-type):not(:last-of-type){border-bottom:0;border-radius:0;}
.accordion > .card:first-of-type{border-bottom:0;border-bottom-right-radius:0;border-bottom-left-radius:0;}
.accordion > .card:last-of-type{border-top-left-radius:0;border-top-right-radius:0;}
.accordion > .card .card-header{margin-bottom:-1px;}
.breadcrumb{display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;padding:0.75rem 1rem;margin-bottom:1rem;list-style:none;background-color:#e9ecef;border-radius:0.25rem;}
.breadcrumb-item + .breadcrumb-item{padding-left:0.5rem;}
.breadcrumb-item + .breadcrumb-item::before{display:inline-block;padding-right:0.5rem;color:#6c757d;content:"/";}
.breadcrumb-item + .breadcrumb-item:hover::before{text-decoration:underline;}
.breadcrumb-item + .breadcrumb-item:hover::before{text-decoration:none;}
.breadcrumb-item.active{color:#6c757d;}
.pagination{display:-ms-flexbox;display:flex;padding-left:0;list-style:none;border-radius:0.25rem;}
.page-link{position:relative;display:block;padding:0.5rem 0.75rem;margin-left:-1px;line-height:1.25;color:#007bff;background-color:#fff;border:1px solid #dee2e6;}
.page-link:hover{z-index:2;color:#0056b3;text-decoration:none;background-color:#e9ecef;border-color:#dee2e6;}
.page-link:focus{z-index:2;outline:0;}
.page-item:first-child .page-link{margin-left:0;border-top-left-radius:0.25rem;border-bottom-left-radius:0.25rem;}
.page-item:last-child .page-link{border-top-right-radius:0.25rem;border-bottom-right-radius:0.25rem;}
.page-item.active .page-link{z-index:1;color:#fff;background-color:#007bff;border-color:#007bff;}
.page-item.disabled .page-link{color:#6c757d;pointer-events:none;cursor:auto;background-color:#fff;border-color:#dee2e6;}
.pagination-lg .page-link{padding:0.75rem 1.5rem;font-size:1.25rem;line-height:1.5;}
.pagination-lg .page-item:first-child .page-link{border-top-left-radius:0.3rem;border-bottom-left-radius:0.3rem;}
.pagination-lg .page-item:last-child .page-link{border-top-right-radius:0.3rem;border-bottom-right-radius:0.3rem;}
.pagination-sm .page-link{padding:0.25rem 0.5rem;font-size:0.875rem;line-height:1.5;}
.pagination-sm .page-item:first-child .page-link{border-top-left-radius:0.2rem;border-bottom-left-radius:0.2rem;}
.pagination-sm .page-item:last-child .page-link{border-top-right-radius:0.2rem;border-bottom-right-radius:0.2rem;}
.badge{display:inline-block;padding:0.25em 0.4em;font-size:75%;font-weight:700;line-height:1;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:0.25rem;transition:color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;}
a.badge:hover, a.badge:focus{text-decoration:none;}
.badge:empty{display:none;}
.btn .badge{position:relative;top:-1px;}
.badge-pill{padding-right:0.6em;padding-left:0.6em;border-radius:10rem;}
.badge-primary{color:#fff;background-color:#007bff;}
a.badge-primary:hover, a.badge-primary:focus{color:#fff;background-color:#0062cc;}
a.badge-primary:focus, a.badge-primary.focus{outline:0;}
.badge-secondary{color:#fff;background-color:#6c757d;}
a.badge-secondary:hover, a.badge-secondary:focus{color:#fff;background-color:#545b62;}
a.badge-secondary:focus, a.badge-secondary.focus{outline:0;}
.badge-success{color:#fff;background-color:#28a745;}
a.badge-success:hover, a.badge-success:focus{color:#fff;background-color:#1e7e34;}
a.badge-success:focus, a.badge-success.focus{outline:0;}
.badge-info{color:#fff;background-color:#17a2b8;}
a.badge-info:hover, a.badge-info:focus{color:#fff;background-color:#117a8b;}
a.badge-info:focus, a.badge-info.focus{outline:0;}
.badge-warning{color:#212529;background-color:#ffc107;}
a.badge-warning:hover, a.badge-warning:focus{color:#212529;background-color:#d39e00;}
a.badge-warning:focus, a.badge-warning.focus{outline:0;}
.badge-danger{color:#fff;background-color:#dc3545;}
a.badge-danger:hover, a.badge-danger:focus{color:#fff;background-color:#bd2130;}
a.badge-danger:focus, a.badge-danger.focus{outline:0;}
.badge-light{color:#212529;background-color:#f8f9fa;}
a.badge-light:hover, a.badge-light:focus{color:#212529;background-color:#dae0e5;}
a.badge-light:focus, a.badge-light.focus{outline:0;}
.badge-dark{color:#fff;background-color:#343a40;}
a.badge-dark:hover, a.badge-dark:focus{color:#fff;background-color:#1d2124;}
a.badge-dark:focus, a.badge-dark.focus{outline:0;}

button.close{padding:0;background-color:transparent;border:0;-webkit-appearance:none;-moz-appearance:none;appearance:none;}
a.close.disabled{pointer-events:none;}
.toast{max-width:350px;overflow:hidden;font-size:0.875rem;background-color:rgba(255, 255, 255, 0.85);background-clip:padding-box;border:1px solid rgba(0, 0, 0, 0.1);-webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px);opacity:0;border-radius:0.25rem;}
.toast:not(:last-child){margin-bottom:0.75rem;}
.toast.showing{opacity:1;}
.toast.show{display:block;opacity:1;}
.toast.hide{display:none;}
.toast-header{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;padding:0.25rem 0.75rem;color:#6c757d;background-color:rgba(255, 255, 255, 0.85);background-clip:padding-box;border-bottom:1px solid rgba(0, 0, 0, 0.05);}
.toast-body{padding:0.75rem;}
.modal-open{overflow:hidden;}
.modal-open .modal{overflow-x:hidden;overflow-y:auto;}
.modal{position:fixed;top:0;left:0;z-index:1050;display:none;width:100%;height:100%;overflow:hidden;outline:0;}
.modal-dialog{position:relative;width:auto;margin:0.5rem;pointer-events:none;}
.modal.fade .modal-dialog{transition:-webkit-transform 0.3s ease-out;transition:transform 0.3s ease-out;transition:transform 0.3s ease-out, -webkit-transform 0.3s ease-out;-webkit-transform:translate(0, -50px);transform:translate(0, -50px);}
.modal.show .modal-dialog{-webkit-transform:none;transform:none;}
.modal-dialog-scrollable{display:-ms-flexbox;display:flex;max-height:calc(100% - 1rem);}
.modal-dialog-scrollable .modal-content{max-height:calc(100vh - 1rem);overflow:hidden;}
.modal-dialog-scrollable .modal-header,
.modal-dialog-scrollable .modal-footer{-ms-flex-negative:0;flex-shrink:0;}
.modal-dialog-scrollable .modal-body{overflow-y:auto;}
.modal-dialog-centered{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;min-height:calc(100% - 1rem);}
.modal-dialog-centered::before{display:block;height:calc(100vh - 1rem);content:"";}
.modal-dialog-centered.modal-dialog-scrollable{-ms-flex-direction:column;flex-direction:column;-ms-flex-pack:center;justify-content:center;height:100%;}
.modal-dialog-centered.modal-dialog-scrollable .modal-content{max-height:none;}
.modal-dialog-centered.modal-dialog-scrollable::before{content:none;}
.modal-content{position:relative;display:-ms-flexbox;display:flex;-ms-flex-direction:column;flex-direction:column;width:100%;pointer-events:auto;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0, 0, 0, 0.2);border-radius:0.3rem;outline:0;}
.modal-backdrop{position:fixed;top:0;left:0;z-index:1040;width:100vw;height:100vh;background-color:#000;}
.modal-backdrop.fade{opacity:0;}
.modal-backdrop.show{opacity:0.5;}
.modal-header{display:-ms-flexbox;display:flex;-ms-flex-align:start;align-items:flex-start;-ms-flex-pack:justify;justify-content:space-between;padding:1rem 1rem;border-bottom:1px solid #dee2e6;border-top-left-radius:0.3rem;border-top-right-radius:0.3rem;}
.modal-header .close{padding:1rem 1rem;margin:-1rem -1rem -1rem auto;}
.modal-title{margin-bottom:0;line-height:1.5;}
.modal-body{position:relative;-ms-flex:1 1 auto;flex:1 1 auto;padding:1rem;}
.modal-footer{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:end;justify-content:flex-end;padding:1rem;border-top:1px solid #dee2e6;border-bottom-right-radius:0.3rem;border-bottom-left-radius:0.3rem;}
.modal-footer >:not(:first-child){margin-left:.25rem;}
.modal-footer >:not(:last-child){margin-right:.25rem;}
.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll;}
@media (min-width:576px){.modal-dialog{max-width:500px;margin:1.75rem auto;}
.modal-dialog-scrollable{max-height:calc(100% - 3.5rem);}
.modal-dialog-scrollable .modal-content{max-height:calc(100vh - 3.5rem);}
.modal-dialog-centered{min-height:calc(100% - 3.5rem);}
.modal-dialog-centered::before{height:calc(100vh - 3.5rem);}
.modal-sm{max-width:300px;}
}
@media (min-width:992px){.modal-lg,
.modal-xl{max-width:800px;}
}
@media (min-width:1200px){.modal-xl{max-width:1140px;}
}
.tooltip{position:absolute;z-index:1070;display:block;margin:0;font-family:-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:0.875rem;word-wrap:break-word;opacity:0;}
.tooltip.show{opacity:0.9;}
.tooltip .arrow{position:absolute;display:block;width:0.8rem;height:0.4rem;}
.tooltip .arrow::before{position:absolute;content:"";border-color:transparent;border-style:solid;}
.bs-tooltip-top, .bs-tooltip-auto[x-placement^="top"]{padding:0.4rem 0;}
.bs-tooltip-top .arrow, .bs-tooltip-auto[x-placement^="top"] .arrow{bottom:0;}
.bs-tooltip-top .arrow::before, .bs-tooltip-auto[x-placement^="top"] .arrow::before{top:0;border-width:0.4rem 0.4rem 0;border-top-color:#000;}
.bs-tooltip-right, .bs-tooltip-auto[x-placement^="right"]{padding:0 0.4rem;}
.bs-tooltip-right .arrow, .bs-tooltip-auto[x-placement^="right"] .arrow{left:0;width:0.4rem;height:0.8rem;}
.bs-tooltip-right .arrow::before, .bs-tooltip-auto[x-placement^="right"] .arrow::before{right:0;border-width:0.4rem 0.4rem 0.4rem 0;border-right-color:#000;}
.bs-tooltip-bottom, .bs-tooltip-auto[x-placement^="bottom"]{padding:0.4rem 0;}
.bs-tooltip-bottom .arrow, .bs-tooltip-auto[x-placement^="bottom"] .arrow{top:0;}
.bs-tooltip-bottom .arrow::before, .bs-tooltip-auto[x-placement^="bottom"] .arrow::before{bottom:0;border-width:0 0.4rem 0.4rem;border-bottom-color:#000;}
.bs-tooltip-left, .bs-tooltip-auto[x-placement^="left"]{padding:0 0.4rem;}
.bs-tooltip-left .arrow, .bs-tooltip-auto[x-placement^="left"] .arrow{right:0;width:0.4rem;height:0.8rem;}
.bs-tooltip-left .arrow::before, .bs-tooltip-auto[x-placement^="left"] .arrow::before{left:0;border-width:0.4rem 0 0.4rem 0.4rem;border-left-color:#000;}
.tooltip-inner{max-width:200px;padding:0.25rem 0.5rem;color:#fff;text-align:center;background-color:#000;border-radius:0.25rem;}
.popover{position:absolute;top:0;left:0;z-index:1060;display:block;max-width:276px;font-family:-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:0.875rem;word-wrap:break-word;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0, 0, 0, 0.2);border-radius:0.3rem;}
.popover .arrow{position:absolute;display:block;width:1rem;height:0.5rem;margin:0 0.3rem;}
.popover .arrow::before, .popover .arrow::after{position:absolute;display:block;content:"";border-color:transparent;border-style:solid;}
.bs-popover-top, .bs-popover-auto[x-placement^="top"]{margin-bottom:0.5rem;}
.bs-popover-top > .arrow, .bs-popover-auto[x-placement^="top"] > .arrow{bottom:calc((0.5rem + 1px) * -1);}
.bs-popover-top > .arrow::before, .bs-popover-auto[x-placement^="top"] > .arrow::before{bottom:0;border-width:0.5rem 0.5rem 0;border-top-color:rgba(0, 0, 0, 0.25);}
.bs-popover-top > .arrow::after, .bs-popover-auto[x-placement^="top"] > .arrow::after{bottom:1px;border-width:0.5rem 0.5rem 0;border-top-color:#fff;}
.bs-popover-right, .bs-popover-auto[x-placement^="right"]{margin-left:0.5rem;}
.bs-popover-right > .arrow, .bs-popover-auto[x-placement^="right"] > .arrow{left:calc((0.5rem + 1px) * -1);width:0.5rem;height:1rem;margin:0.3rem 0;}
.bs-popover-right > .arrow::before, .bs-popover-auto[x-placement^="right"] > .arrow::before{left:0;border-width:0.5rem 0.5rem 0.5rem 0;border-right-color:rgba(0, 0, 0, 0.25);}
.bs-popover-right > .arrow::after, .bs-popover-auto[x-placement^="right"] > .arrow::after{left:1px;border-width:0.5rem 0.5rem 0.5rem 0;border-right-color:#fff;}
.bs-popover-bottom, .bs-popover-auto[x-placement^="bottom"]{margin-top:0.5rem;}
.bs-popover-bottom > .arrow, .bs-popover-auto[x-placement^="bottom"] > .arrow{top:calc((0.5rem + 1px) * -1);}
.bs-popover-bottom > .arrow::before, .bs-popover-auto[x-placement^="bottom"] > .arrow::before{top:0;border-width:0 0.5rem 0.5rem 0.5rem;border-bottom-color:rgba(0, 0, 0, 0.25);}
.bs-popover-bottom > .arrow::after, .bs-popover-auto[x-placement^="bottom"] > .arrow::after{top:1px;border-width:0 0.5rem 0.5rem 0.5rem;border-bottom-color:#fff;}
.bs-popover-bottom .popover-header::before, .bs-popover-auto[x-placement^="bottom"] .popover-header::before{position:absolute;top:0;left:50%;display:block;width:1rem;margin-left:-0.5rem;content:"";border-bottom:1px solid #f7f7f7;}
.bs-popover-left, .bs-popover-auto[x-placement^="left"]{margin-right:0.5rem;}
.bs-popover-left > .arrow, .bs-popover-auto[x-placement^="left"] > .arrow{right:calc((0.5rem + 1px) * -1);width:0.5rem;height:1rem;margin:0.3rem 0;}
.bs-popover-left > .arrow::before, .bs-popover-auto[x-placement^="left"] > .arrow::before{right:0;border-width:0.5rem 0 0.5rem 0.5rem;border-left-color:rgba(0, 0, 0, 0.25);}
.bs-popover-left > .arrow::after, .bs-popover-auto[x-placement^="left"] > .arrow::after{right:1px;border-width:0.5rem 0 0.5rem 0.5rem;border-left-color:#fff;}
.popover-header{padding:0.5rem 0.75rem;margin-bottom:0;font-size:1rem;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-top-left-radius:calc(0.3rem - 1px);border-top-right-radius:calc(0.3rem - 1px);}
.popover-header:empty{display:none;}
.popover-body{padding:0.5rem 0.75rem;color:#212529;}
.carousel{position:relative;}
.carousel.pointer-event{-ms-touch-action:pan-y;touch-action:pan-y;}
.carousel-inner{position:relative;width:100%;overflow:hidden;}
.carousel-inner::after{display:block;clear:both;content:"";}
.carousel-item{position:relative;display:none;float:left;width:100%;margin-right:-100%;-webkit-backface-visibility:hidden;backface-visibility:hidden;transition:-webkit-transform 0.6s ease-in-out;transition:transform 0.6s ease-in-out;transition:transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;}
.carousel-item.active,
.carousel-item-next,
.carousel-item-prev{display:block;}
.carousel-item-next:not(.carousel-item-left),
.active.carousel-item-right{-webkit-transform:translateX(100%);transform:translateX(100%);}
.carousel-item-prev:not(.carousel-item-right),
.active.carousel-item-left{-webkit-transform:translateX(-100%);transform:translateX(-100%);}
.carousel-fade .carousel-item{opacity:0;transition-property:opacity;-webkit-transform:none;transform:none;}
.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-left,
.carousel-fade .carousel-item-prev.carousel-item-right{z-index:1;opacity:1;}
.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-right{z-index:0;opacity:0;transition:0s 0.6s opacity;}
.carousel-control-prev,
.carousel-control-next{position:absolute;top:0;bottom:0;z-index:1;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-pack:center;justify-content:center;width:15%;color:#fff;text-align:center;opacity:0.5;transition:opacity 0.15s ease;}
.carousel-control-prev:hover, .carousel-control-prev:focus,
.carousel-control-next:hover,
.carousel-control-next:focus{color:#fff;text-decoration:none;outline:0;opacity:0.9;}
.carousel-control-prev{left:0;}
.carousel-control-next{right:0;}
.carousel-control-prev-icon,
.carousel-control-next-icon{display:inline-block;width:20px;height:20px;background:no-repeat 50%/100% 100%;}
.carousel-control-prev-icon{background-image:url("data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3e%3c/svg%3e");}
.carousel-control-next-icon{background-image:url("data:image/svg+xml,%3csvg%20xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3e%3c/svg%3e");}
.carousel-indicators{position:absolute;right:0;bottom:0;left:0;z-index:15;display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center;padding-left:0;margin-right:15%;margin-left:15%;list-style:none;}
.carousel-indicators li{box-sizing:content-box;-ms-flex:0 1 auto;flex:0 1 auto;width:30px;height:3px;margin-right:3px;margin-left:3px;text-indent:-999px;cursor:pointer;background-color:#fff;background-clip:padding-box;border-top:10px solid transparent;border-bottom:10px solid transparent;opacity:.5;transition:opacity 0.6s ease;}
.carousel-indicators .active{opacity:1;}
.carousel-caption{position:absolute;right:15%;bottom:20px;left:15%;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center;}
@-webkit-keyframes spinner-border{to{-webkit-transform:rotate(360deg);transform:rotate(360deg);}
}
@keyframes spinner-border{to{-webkit-transform:rotate(360deg);transform:rotate(360deg);}
}
.spinner-border{display:inline-block;width:2rem;height:2rem;vertical-align:text-bottom;border:0.25em solid currentColor;border-right-color:transparent;border-radius:50%;-webkit-animation:spinner-border .75s linear infinite;animation:spinner-border .75s linear infinite;}
.spinner-border-sm{width:1rem;height:1rem;border-width:0.2em;}
@-webkit-keyframes spinner-grow{0%{-webkit-transform:scale(0);transform:scale(0);}
50%{opacity:1;}
}
@keyframes spinner-grow{0%{-webkit-transform:scale(0);transform:scale(0);}
50%{opacity:1;}
}
.spinner-grow{display:inline-block;width:2rem;height:2rem;vertical-align:text-bottom;background-color:currentColor;border-radius:50%;opacity:0;-webkit-animation:spinner-grow .75s linear infinite;animation:spinner-grow .75s linear infinite;}
.spinner-grow-sm{width:1rem;height:1rem;}
.align-baseline{vertical-align:baseline !important;}
.align-top{vertical-align:top !important;}
.align-middle{vertical-align:middle !important;}
.align-bottom{vertical-align:bottom !important;}
.align-text-bottom{vertical-align:text-bottom !important;}
.align-text-top{vertical-align:text-top !important;}
.bg-primary{background-color:#007bff !important;}
a.bg-primary:hover, a.bg-primary:focus,
button.bg-primary:hover,
button.bg-primary:focus{background-color:#0062cc !important;}
.bg-secondary{background-color:#6c757d !important;}
a.bg-secondary:hover, a.bg-secondary:focus,
button.bg-secondary:hover,
button.bg-secondary:focus{background-color:#545b62 !important;}
.bg-success{background-color:#28a745 !important;}
a.bg-success:hover, a.bg-success:focus,
button.bg-success:hover,
button.bg-success:focus{background-color:#1e7e34 !important;}
.bg-info{background-color:#17a2b8 !important;}
a.bg-info:hover, a.bg-info:focus,
button.bg-info:hover,
button.bg-info:focus{background-color:#117a8b !important;}
.bg-warning{background-color:#ffc107 !important;}
a.bg-warning:hover, a.bg-warning:focus,
button.bg-warning:hover,
button.bg-warning:focus{background-color:#d39e00 !important;}
.bg-danger{background-color:#dc3545 !important;}
a.bg-danger:hover, a.bg-danger:focus,
button.bg-danger:hover,
button.bg-danger:focus{background-color:#bd2130 !important;}
.bg-light{background-color:#f8f9fa !important;}
a.bg-light:hover, a.bg-light:focus,
button.bg-light:hover,
button.bg-light:focus{background-color:#dae0e5 !important;}
.bg-dark{background-color:#343a40 !important;}
a.bg-dark:hover, a.bg-dark:focus,
button.bg-dark:hover,
button.bg-dark:focus{background-color:#1d2124 !important;}
.bg-white{background-color:#fff !important;}
.bg-transparent{background-color:transparent !important;}
.border{border:1px solid #dee2e6 !important;}
.border-top{border-top:1px solid #dee2e6 !important;}
.border-right{border-right:1px solid #dee2e6 !important;}
.border-bottom{border-bottom:1px solid #dee2e6 !important;}
.border-left{border-left:1px solid #dee2e6 !important;}
.border-0{border:0 !important;}
.border-top-0{border-top:0 !important;}
.border-right-0{border-right:0 !important;}
.border-bottom-0{border-bottom:0 !important;}
.border-left-0{border-left:0 !important;}
.border-primary{border-color:#007bff !important;}
.border-secondary{border-color:#6c757d !important;}
.border-success{border-color:#28a745 !important;}
.border-info{border-color:#17a2b8 !important;}
.border-warning{border-color:#ffc107 !important;}
.border-danger{border-color:#dc3545 !important;}
.border-light{border-color:#f8f9fa !important;}
.border-dark{border-color:#343a40 !important;}
.border-white{border-color:#fff !important;}
.rounded-sm{border-radius:0.2rem !important;}
.rounded{border-radius:0.25rem !important;}
.rounded-top{border-top-left-radius:0.25rem !important;border-top-right-radius:0.25rem !important;}
.rounded-right{border-top-right-radius:0.25rem !important;border-bottom-right-radius:0.25rem !important;}
.rounded-bottom{border-bottom-right-radius:0.25rem !important;border-bottom-left-radius:0.25rem !important;}
.rounded-left{border-top-left-radius:0.25rem !important;border-bottom-left-radius:0.25rem !important;}
.rounded-lg{border-radius:0.3rem !important;}
.rounded-circle{border-radius:50% !important;}
.rounded-pill{border-radius:50rem !important;}
.rounded-0{border-radius:0 !important;}
.clearfix::after{display:block;clear:both;content:"";}
.float-left{float:left !important;}
.float-right{float:right !important;}
.float-none{float:none !important;}
@media (min-width:576px){.float-sm-left{float:left !important;}
.float-sm-right{float:right !important;}
.float-sm-none{float:none !important;}
}
@media (min-width:768px){.float-md-left{float:left !important;}
.float-md-right{float:right !important;}
.float-md-none{float:none !important;}
}
@media (min-width:992px){.float-lg-left{float:left !important;}
.float-lg-right{float:right !important;}
.float-lg-none{float:none !important;}
}
@media (min-width:1200px){.float-xl-left{float:left !important;}
.float-xl-right{float:right !important;}
.float-xl-none{float:none !important;}
}
.overflow-auto{overflow:auto !important;}
.overflow-hidden{overflow:hidden !important;}
.position-static{position:static !important;}
.position-relative{position:relative !important;}
.position-absolute{position:absolute !important;}
.position-fixed{position:fixed !important;}
.position-sticky{position:-webkit-sticky !important;position:sticky !important;}
.fixed-top{position:fixed;top:0;right:0;left:0;z-index:1030;}
.fixed-bottom{position:fixed;right:0;bottom:0;left:0;z-index:1030;}
@supports ((position:-webkit-sticky) or (position:sticky)){.sticky-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020;}
}
.sr-only{position:absolute;width:1px;height:1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;border:0;}
.shadow-none{box-shadow:none !important;}
.w-25{width:25% !important;}
.w-50{width:50% !important;}
.w-75{width:75% !important;}
.w-100{width:100% !important;}
.w-auto{width:auto !important;}
.h-25{height:25% !important;}
.h-50{height:50% !important;}
.h-75{height:75% !important;}
.h-100{height:100% !important;}
.h-auto{height:auto !important;}
.mw-100{max-width:100% !important;}
.mh-100{max-height:100% !important;}
.min-vw-100{min-width:100vw !important;}
.min-vh-100{min-height:100vh !important;}
.vw-100{width:100vw !important;}
.vh-100{height:100vh !important;}
.stretched-link::after{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;pointer-events:auto;content:"";background-color:rgba(0, 0, 0, 0);}
.text-justify{text-align:justify !important;}
.text-wrap{white-space:normal !important;}
.text-nowrap{white-space:nowrap !important;}
.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;}
.text-left{text-align:left !important;}
.text-right{text-align:right !important;}
.text-center{text-align:center !important;}
@media (min-width:576px){.text-sm-left{text-align:left !important;}
.text-sm-right{text-align:right !important;}
.text-sm-center{text-align:center !important;}
}
@media (min-width:768px){.text-md-left{text-align:left !important;}
.text-md-right{text-align:right !important;}
.text-md-center{text-align:center !important;}  
}
@media (min-width:992px){.text-lg-left{text-align:left !important;}
.text-lg-right{text-align:right !important;}
.text-lg-center{text-align:center !important;}
}
@media (min-width:1200px){.text-xl-left{text-align:left !important;}
.text-xl-right{text-align:right !important;}
.text-xl-center{text-align:center !important;}
}
.text-lowercase{text-transform:lowercase !important;}
.text-uppercase{text-transform:uppercase !important;}
.text-capitalize{text-transform:capitalize !important;}
.font-weight-light{font-weight:300 !important;}
.font-weight-lighter{font-weight:lighter !important;}
.font-weight-normal{font-weight:400 !important;}
.font-weight-bold{font-weight:700 !important;}
.font-weight-bolder{font-weight:bolder !important;}
.font-italic{font-style:italic !important;}
.text-white{color:#fff !important;}
.text-primary{color:#007bff !important;}
a.text-primary:hover, a.text-primary:focus{color:#0056b3 !important;}
.text-secondary{color:#6c757d !important;}
a.text-secondary:hover, a.text-secondary:focus{color:#494f54 !important;}
.text-success{color:#28a745 !important;}
a.text-success:hover, a.text-success:focus{color:#19692c !important;}
.text-info{color:#17a2b8 !important;}
a.text-info:hover, a.text-info:focus{color:#0f6674 !important;}
.text-warning{color:#ffc107 !important;}
a.text-warning:hover, a.text-warning:focus{color:#ba8b00 !important;}
.text-danger{color:#dc3545 !important;}
a.text-danger:hover, a.text-danger:focus{color:#a71d2a !important;}
.text-light{color:#f8f9fa !important;}
a.text-light:hover, a.text-light:focus{color:#cbd3da !important;}
.text-dark{color:#343a40 !important;}
a.text-dark:hover, a.text-dark:focus{color:#121416 !important;}
.text-body{color:#212529 !important;}
.text-muted{color:#6c757d !important;}
.text-black-50{color:rgba(0, 0, 0, 0.5) !important;}
.text-white-50{color:rgba(255, 255, 255, 0.5) !important;}
.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0;}
.text-decoration-none{text-decoration:none !important;}
.text-break{word-break:break-word !important;overflow-wrap:break-word !important;}
.text-reset{color:inherit !important;}
.visible{visibility:visible !important;}
.invisible{visibility:hidden !important;}
.scroll-wrapper{overflow:hidden !important;padding:0 !important;position:relative;}
.scroll-wrapper > .scroll-content{border:none !important;box-sizing:content-box !important;height:auto;left:0;margin:0;max-height:none;max-width:none !important;overflow:scroll !important;padding:0;position:relative !important;top:0;width:auto !important;}
.scroll-wrapper > .scroll-content::-webkit-scrollbar{height:0;width:0;}
.scroll-element{display:none;}
.scroll-element, .scroll-element div{box-sizing:content-box;}
.scroll-element.scroll-x.scroll-scrollx_visible,
.scroll-element.scroll-y.scroll-scrolly_visible{display:block;}
.scroll-element .scroll-bar,
.scroll-element .scroll-arrow{cursor:default;}
.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;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;}
.scrollbar-inner{max-height:100%;}
.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:4px;left:0;width:100%;}
.scrollbar-inner > .scroll-element.scroll-y{height:100%;right:2px;top:0;width:4px;}
.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;-moz-border-radius:8px;border-radius:8px;}
.scrollbar-inner > .scroll-element .scroll-bar{background-color:#E1E1E6;}
.scrollbar-inner > .scroll-element:hover .scroll-bar{background-color:#919191;}
.scrollbar-inner > .scroll-element.scroll-draggable .scroll-bar{background-color:#919191;}
.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;}

ul.map-level-0 a{font-weight:bold;color:#191928;}
ul.map-level-1 a, ul.map-level-2 a, ul.map-level-3 a{font-weight:normal;color:#24c;}
.right{float:right}
.upper{text-transform:uppercase}
.font-default{font-family:'Arian';line-height:24px;font-weight:400;letter-spacing:0}
.font-h1{font-size:40px;line-height:48px;font-weight:700;letter-spacing:0}
.font-h2{font-size:32px;line-height:40px;font-weight:700;letter-spacing:0}
.font-h3{font-size:24px;line-height:32px;font-weight:700;letter-spacing:0}
.font-h4{font-size:20px;line-height:28px;font-weight:700;letter-spacing:0}
.font-h5{font-size:18px;line-height:26px;font-weight:700;letter-spacing:0}
.font-h6{font-size:17px;line-height:26px;font-weight:700;letter-spacing:0}
.font-small{font-size:16px;line-height:22px;font-weight:400;letter-spacing:0}
.font-big{font-size:18px;line-height:26px;font-weight:400;letter-spacing:0}
.font-normal{font-size:17px;line-height:18px;font-weight:400;letter-spacing:0}
.font-text-button{line-height:20px;font-weight:700;letter-spacing:.08em;text-transform:uppercase;text-decoration:none}
.font-big-bold{font-size:18px;line-height:26px;font-weight:700;letter-spacing:0}
.font-p{font-size:18px;line-height:24px;font-weight:400;letter-spacing:0;text-decoration:none}
.font-bold-p{font-size:17px;line-height:22px;font-weight:700;letter-spacing:0;text-decoration:none}
.font-button-default{font-size:12px;line-height:20px;font-weight:500;letter-spacing:.08em}
.font-overline{font-size:22px;line-height:24px;font-weight:400;letter-spacing:.04em;text-transform:uppercase}
.font-element-title{font-size:24px;line-height:26px;font-weight:500;letter-spacing:0;text-decoration:none}
.font-list-small{font-size:17px;line-height:24px;font-weight:400;letter-spacing:0;text-decoration:none}
.font-element-title-small{font-size:18px;line-height:26px;font-weight:700;letter-spacing:0;text-decoration:none}
.font-element-title-big{font-size:26px;line-height:34px;font-weight:700;letter-spacing:0;text-decoration:none}
.font-element-title-bigs{font-size:32px;line-height:38px;font-weight:700;letter-spacing:0;text-decoration:none}
.font-tag{font-size:18px;line-height:26px;font-weight:700;letter-spacing:0em}
.font-tag2{font-size:24px;line-height:28px;font-weight:700;letter-spacing:0em}
.font-tag3{font-size:17px;line-height:24px;font-weight:700;letter-spacing:0em}
h1,.th0{font-size:40px;line-height:48px;font-weight:700;letter-spacing:0}
h1,.th1{font-size:78px;line-height:92px;font-weight:700;letter-spacing:0}
h2,.th2{font-size:32px;line-height:40px;font-weight:700;letter-spacing:0}
h3,.th3{font-size:24px;line-height:32px;font-weight:700;letter-spacing:0}
h4,.th4{font-size:20px;line-height:28px;font-weight:700;letter-spacing:0;}
h5,.th5{font-size:18px;line-height:26px;font-weight:700;letter-spacing:0}
h6,.th6{font-size:17px;line-height:26px;font-weight:700;letter-spacing:0}
.wrapper{position:relative}
.svg-color{fill:#24c !important}
.svg-black{fill:#000 !important}
.svg-white{fill:#fff !important}
.svg-red{fill:#ed1f24 !important}
.svg-dark{fill:#353545 !important}
.svg-light{fill:#9fafe7 !important}
.svg-color *{fill:#24c !important}
.tm4{top:-4px}
.left{float:left}
.qrcode{float:right;position:relative;margin-left:32px;margin-top:12px;width:212px;height:212px;}
svg g{clip-path:unset !important;display:block !important}
@keyframes rotate{from{transform:rotate(0deg)}
to{transform:rotate(360deg)}
}
@keyframes swing{15%{-webkit-transform:translateX(9px);transform:translateX(9px)}
30%{-webkit-transform:translateX(-9px);transform:translateX(-9px)}
40%{-webkit-transform:translateX(6px);transform:translateX(6px)}
50%{-webkit-transform:translateX(-6px);transform:translateX(-6px)}
65%{-webkit-transform:translateX(3px);transform:translateX(3px)}
100%{-webkit-transform:translateX(0);transform:translateX(0)}
}
.preloader-inline{display:flex;justify-content:center;align-items:center;width:100%;height:400px}
.preloader-inline svg{width:50px;height:50px;animation:rotate 2s infinite linear}
.preloader-inline svg circle{stroke:#24c}
.list-dash{margin:0;color:#4a4a4f;padding:0 0 0 32px;list-style:none}
.list-dash li{position:relative;margin:12px 0px}
.list-dash li:after{content:"";position:absolute;left:-30px;top:12px;width:16px;border-bottom:1px solid #4a4a4f}
.service-detail-content ul,
.item-text ul{margin:0;padding:0 0 0 32px;list-style:none}
.service-detail-content ul li,
.item-text ul li{position:relative;margin:12px 0px}
.item-text ul li:after{content:"";position:absolute;left:-30px;top:12px;width:16px;border-bottom:1px solid #4a4a4f}
ul{margin:0;padding:0 0 0 32px;list-style:none}
ul li{position:relative;margin:12px 0px}
ul li:after{content:"";position:absolute;left:-30px;top:12px;width:16px;border-bottom:1px solid #4a4a4f}
ol{margin:0;padding-left:20px}
ol li{padding-left:8px;margin-bottom:12px}
.reset-ul-list{margin:0;padding:0;list-style-type:none;}
.reset-ul-list > li{margin:0;padding:0}
.reset-ul-list > li:after{display:none}
.text-overflow{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:calc(100%)}
.text-wrapper:after{content:"";display:block;position:absolute;bottom:0;left:0;background:linear-gradient(180deg, rgba(255, 255, 255, 0) .88%, #fff 60%);width:100%;height:50%}
.buttonf{--primary:#24c;--primary-dark:#172e8a;--primary-darkest:#133FC0;--text:#FFFFFF;--text-opacity:1;--success:#2B3044;--success-scale:.2;--success-opacity:0;--border-radius:4;--overflow:hidden;--rotate:0;--plane-x:0;--plane-y:0;--plane-opacity:1;--left-wing-background:var(--primary);--left-wing-first-x:0;--left-wing-first-y:0;--left-wing-second-x:50;--left-wing-second-y:0;--left-wing-third-x:0;--left-wing-third-y:100;--left-body-background:var(--primary);--left-body-first-x:50;--left-body-first-y:0;--left-body-second-x:50;--left-body-second-y:100;--left-body-third-x:0;--left-body-third-y:100;--right-wing-background:var(--primary);--right-wing-first-x:50;--right-wing-first-y:0;--right-wing-second-x:100;--right-wing-second-y:0;--right-wing-third-x:100;--right-wing-third-y:100;--right-body-background:var(--primary);--right-body-first-x:50;--right-body-first-y:0;--right-body-second-x:50;--right-body-second-y:100;--right-body-third-x:100;--right-body-third-y:100;display:block;cursor:pointer;position:relative;border:0;padding:12px 24px;min-width:100px;text-align:center;text-transform:uppercase;margin:0;line-height:20px;font-family:inherit;font-weight:700;font-size:16px;background:none;outline:none;color:var(--text);transform:rotate(calc(var(--rotate) * 1deg)) translateZ(0);-webkit-appearance:none;-webkit-tap-highlight-color:transparent;}
.buttonf .left,
.buttonf .right{position:absolute;left:0;top:0;right:0;bottom:0;opacity:var(--plane-opacity);transform:translate(calc(var(--plane-x) * 1px), calc(var(--plane-y) * 1px)) translateZ(0);}
.buttonf .left:before, .buttonf .left:after,
.buttonf .right:before,
.buttonf .right:after{content:"";position:absolute;left:0;top:0;right:0;bottom:0;border-radius:calc(var(--border-radius) * 1px);transform:translate(var(--x, 0.4%), var(--y, 0)) translateZ(0);z-index:var(--z-index, 2);background:var(--background, var(--left-wing-background));-webkit-clip-path:polygon(calc(var(--first-x, var(--left-wing-first-x)) * 1%) calc(var(--first-y, var(--left-wing-first-y)) * 1%), calc(var(--second-x, var(--left-wing-second-x)) * 1%) calc(var(--second-y, var(--left-wing-second-y)) * 1%), calc(var(--third-x, var(--left-wing-third-x)) * 1%) calc(var(--third-y, var(--left-wing-third-y)) * 1%));clip-path:polygon(calc(var(--first-x, var(--left-wing-first-x)) * 1%) calc(var(--first-y, var(--left-wing-first-y)) * 1%), calc(var(--second-x, var(--left-wing-second-x)) * 1%) calc(var(--second-y, var(--left-wing-second-y)) * 1%), calc(var(--third-x, var(--left-wing-third-x)) * 1%) calc(var(--third-y, var(--left-wing-third-y)) * 1%));}
.buttonf .left:after{--x:0;--z-index:1;--background:var(--left-body-background);--first-x:var(--left-body-first-x);--first-y:var(--left-body-first-y);--second-x:var(--left-body-second-x);--second-y:var(--left-body-second-y);--third-x:var(--left-body-third-x);--third-y:var(--left-body-third-y);}
.buttonf .right:before{--x:-.4%;--z-index:2;--background:var(--right-wing-background);--first-x:var(--right-wing-first-x);--first-y:var(--right-wing-first-y);--second-x:var(--right-wing-second-x);--second-y:var(--right-wing-second-y);--third-x:var(--right-wing-third-x);--third-y:var(--right-wing-third-y);}
.buttonf .right:after{--x:0;--z-index:1;--background:var(--right-body-background);--first-x:var(--right-body-first-x);--first-y:var(--right-body-first-y);--second-x:var(--right-body-second-x);--second-y:var(--right-body-second-y);--third-x:var(--right-body-third-x);--third-y:var(--right-body-third-y);}
.buttonf b{display:block;position:relative;z-index:4;opacity:var(--text-opacity);}
.buttonf b.success{z-index:0;position:absolute;left:0;right:0;top:8px;transform:rotate(calc(var(--rotate) * -1deg)) scale(var(--success-scale)) translateZ(0);opacity:var(--success-opacity);color:var(--success);}
.btn{font-size:16px;line-height:20px;font-weight:700;letter-spacing:.08em;box-sizing:border-box;padding:12px 16px;border-radius:40px;text-transform:uppercase;border:none;display:inline-flex;align-items:center;transition:all .3s}
.btn:active,
.btn:focus,
.btn:active{outline:none !important}
.btn:not(.btn-icon) > .icon{margin-right:8px;text-align:center;font-size:18px}
.btn.btn-primary,
.btn.btn-primary:active{background-color:#24c;color:#fff;}
.btn.btn-primary:hover,
.btn.btn-primary:active:hover,
.btn.btn-primary:active,
.btn.btn-primary:active:active{background-color:#172e8a;}
.btn.btn-primary.disabled,
.btn.btn-primary:active.disabled,
.btn.btn-primary:disabled,
.btn.btn-primary:active:disabled{background-color:#e1e1e6}
.btn.btn-primary.disabled:hover,
.btn.btn-primary:active.disabled:hover,
.btn.btn-primary:disabled:hover,
.btn.btn-primary:active:disabled:hover,
.btn.btn-primary.disabled:active,
.btn.btn-primary:active.disabled:active,
.btn.btn-primary:disabled:active,
.btn.btn-primary:active:disabled:active{background-color:#e1e1e6}
.btn.btn-primary.loading:after,
.btn.btn-primary:active.loading:after{background-color:#24c}
.btn.btn-dark{background-color:#353545;color:#fff}
.btn.btn-dark:hover,
.btn.btn-dark:active{background-color:#565670;border:none}
.btn.btn-dark.disabled,
.btn.btn-dark:disabled{background-color:#e1e1e6}
.btn.btn-dark.disabled:hover,
.btn.btn-dark:disabled:hover,
.btn.btn-dark.disabled:active,
.btn.btn-dark:disabled:active{background-color:#e1e1e6}
.btn.btn-dark.loading:after{background-color:#353545}
.btn.btn-secondary{padding:10px 22px;background-color:#fff;color:#323237;border:2px solid #e1e1e6}
.btn.btn-secondary:hover,
.btn.btn-secondary:active{border-color:#24c;color:#24c}
.btn.btn-secondary.disabled,
.btn.btn-secondary:disabled{color:#e1e1e6}
.btn.btn-secondary.disabled:hover,
.btn.btn-secondary:disabled:hover,
.btn.btn-secondary.disabled:active,
.btn.btn-secondary:disabled:active{color:#e1e1e6}
.btn.btn-secondary.loading:after{background-color:#fff}
.btn.btn-secondary.noborder{border:none}
.btn.btn-outline-primary{color:#323237;box-shadow:inset 0px 0px 0px 2px #24c;font-weight:700}
.btn.btn-outline-primary:hover,
.btn.btn-outline-primary:active{background:#24c;color:#fff;box-shadow:none}
.btn.btn-outline-primary.disabled,
.btn.btn-outline-primary:disabled{box-shadow:inset 0px 0px 0px 2px #e1e1e6;color:#e1e1e6}
.btn.btn-outline-primary.disabled:hover,
.btn.btn-outline-primary:disabled:hover{box-shadow:inset 0px 0px 0px 2px #e1e1e6}
.btn.btn-outline-primary.loading:after{background-color:rgba(255, 255, 255, 0.7)}
.btn.btn-outline-secondary{color:#323237;box-shadow:inset 0px 0px 0px 2px #e1e1e6}
.btn.btn-outline-secondary:hover,
.btn.btn-outline-secondary:active{background:none;color:#24c;box-shadow:inset 0px 0px 0px 2px #24c}
.btn.btn-outline-secondary.disabled,
.btn.btn-outline-secondary:disabled{box-shadow:inset 0px 0px 0px 2px #e1e1e6;color:#e1e1e6}
.btn.btn-outline-secondary.disabled:hover,
.btn.btn-outline-secondary:disabled:hover,
.btn.btn-outline-secondary.disabled:active,
.btn.btn-outline-secondary:disabled:active{box-shadow:inset 0px 0px 0px 2px #e1e1e6}
.btn.btn-outline-secondary.loading:after{background-color:#fff;box-shadow:inset 0px 0px 0px 2px #e1e1e6}
.btn.btn-link{padding:12px 0;color:#6c6c71;text-decoration:none}
.btn.btn-link:hover,
.btn.btn-link:active{color:#24c;text-decoration:none}
.btn.btn-link2{padding: 6px 20px 6px 20px !important;margin-left: 12px}
.arrowup {margin-left: 1.0625rem;top: 2px;position: relative;}
.arrowdown {margin-left: 1.0625rem;top:-1px;position: relative;}
.arrowup .svg {width: 1rem;height: 1rem}
.arrowdown .svg {width: 19px;height:19px}
.arrowdown .svg {display: flex;flex-direction: column-reverse;color: inherit;overflow: hidden;}
.arrowup .arrow1{opacity: 1;transform: translate(0, 0)}
.arrowup .arrow2{opacity: 0;transform: translate(-100%, 0)}
.arrowdown .arrow1 {opacity: 1;transform: translate(0)}
.arrowdown .arrow2 {opacity: 0;transform: translate(0)}
.arrowup.reverse .arrow1{opacity: 0;transform: translate(-100%, 0);}
.arrowdown.reverse .arrow1{opacity: 0;transform: translate(0);}
.arbtn {user-select: none;display: inline-block;fill: currentColor;flex-shrink: 0;}
button:not(:hover) .svg, a:not(:hover) span.svg, .arr:not(:hover) span.svg {transition: transform 0.3s ease 0.2s, opacity 0.3s ease 0.2s;}
button:hover .svg .arrow1, a:hover span.svg .arrow1, .arr:hover span.svg .arrow1{opacity: 0;transform: translate(100%, -100%);transition: transform 0.5s, opacity 0.3s;}
button:hover .svg .arrow2, a:hover span.svg .arrow2, .arr:hover span.svg .arrow2{opacity: 1;transform: translate(0, -100%);transition: transform 0.4s ease 0.2s, opacity 0.4s ease 0.2s;}

a:hover .arrowdown span.svg .arrow1{opacity: 0;transform: translateY(100%);transition: transform 0.3s, opacity 0.3s;}
a:hover .arrowdown span.svg .arrow2{opacity: 1;transform: translateY(100%);transition: transform 0.3s ease 0.2s, opacity 0.3s ease 0.2s}

.btn.btn-lg{padding: 16px 52px;font-size: 18px;}
.btn.btn-m{padding:16px 32px}
.btn.btn-s{padding:12px 24px}
.btn.btn-with-icon i{font-size:18px;margin-right:8px}
.btn.btn-order{color:#fff;background:#24c}
.btn.btn-order.icon-cart:before{color:#fff;font-size:18px}
.btn.btn-order:hover,
.btn.btn-order:active{background-color:#172e8a}
.btn.btn-order.btn-order_pressed:hover,
.btn.btn-order.btn-order_pressed:active{background-color:#00aeef}
.btn.btn-order_pressed{color:#fff;background:#00aeef}
.btn.btn-order.disabled{background-color:#e1e1e6;color:#000}
.btn.btn-order.loading:after{background-color:#24c}
.btn.btn-fullscreen,
.btn.btn-download{padding:14px}
.btn.btn-light{background-color:#fff;color:#191928}
.btn.btn-light:hover,
.btn.btn-light:active{background-color:#24c;color:#fff}
.btn.btn-light.btn-icon:hover i:before,
.btn.btn-light.btn-icon:active i:before{color:#fff}
.btn.btn-icon{padding:0;width:44px;height:44px;display:flex;align-items:center;justify-content:center}
.btn.btn-block{text-align:center;justify-content:center}
.btn.btn-property{padding:5px 8px;background-color:transparent;color:#4a4a4f;border:2px solid #e1e1e6}
.btn.btn-property:hover,
.btn.btn-property:active{color:#fff;border-color:#24c;background:#24c}
.btn.btn-property:disabled{box-shadow:inset 0px 0px 0px 2px #e1e1e6;color:#e1e1e6}
.btn.btn-button-block{border:1px solid #e1e1e6;background-color:#fff;border-radius:0;color:#323237}
.btn.btn-button-block:hover,
.btn.btn-button-block:active{border-color:transparent;color:#fff;background-color:#24c}
*:hover{-webkit-transition:all 0.35s ease;-moz-transition:all 0.35s ease;-o-transition:all 0.35s ease;transition:all 0.35s ease;}
.top-description .text-block{letter-spacing:0;overflow:hidden;display:none;}
.dropdown-links{display:none;box-shadow:0px 4px 32px rgba(0, 0, 0, 0.1);position:absolute;background:#fff;max-width:206px;z-index:50}
.dropdown-links.open{display:block;animation:fadeIn .3s}
.dropdown-links .item{color: #4a4a4f;
    border-bottom: 1px solid #e1e1e6;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    padding: 12px 16px;}
.dropdown-links .item:last-child,
.dropdown-links .item.last{border-bottom:none}
.dropdown-links .item:hover{background:#f8f8fa;color:#24c}
.dropdown-links .btn{display:block;border:none;padding:12px 16px;white-space:nowrap;border-radius:0}
.dropdown-links .btn:hover{color:#fff}
.dropdown-links-light{position:relative}
.dropdown-links-light .dropdown-label{display:flex;align-items:center}
.dropdown-links-light .dropdown-label span{border-bottom:1px dotted #6c6c71}
.dropdown-links-light .dropdown-label:after{transition:transform .2s ease-in-out;font-size:20px;content:'\ea43';font-family:'remixicon' !important}
.dropdown-links-light .list{display:none;flex-direction:column}
.dropdown-links-light .list .item{white-space:nowrap;padding:8px 16px}
.dropdown-links-light .list .item.active{color:#24c}
.dropdown-links-light .list .item:hover{background-color:#f8f8fa}
.dropdown-links-light.open{box-shadow:0px 4px 32px rgba(0, 0, 0, 0.1);background:#fff;position:absolute;margin-left:-16px;margin-top:-8px;z-index:50}
.dropdown-links-light.open .dropdown-label{padding:8px 16px}
.dropdown-links-light.open .dropdown-label:after{transform:rotate(180deg)}
.dropdown-links-light.open .list{display:flex}
.dropdown-links .item .font-tiny-text {
    margin-top: 2px;
    color: #94999e;
    font-size: 14px;
    line-height: 16px;
}

.tabs__list {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(0.5rem, 2vw, 0.75rem);
}

.tabs__list .tabs__item {
    margin-bottom: 0;
    font-weight: 400;
    display: block;
}

.tabs__link {
    color: #222;
    transition: all .3s ease;
    display: inline-block;
    background-color: #F7F8F9;
    border-radius: 50px;
    padding: clamp(var(--tabs-vertical-padding-mobile), 2vw, var(--tabs-vertical-padding-desktop)) clamp(var(--tabs-horizontal-padding-mobile), 2vw, var(--tabs-horizontal-padding-desktop));
    line-height: 18px;
}

.tabs__item a:hover {
    color: #fff;
    background-color: #24c;
}

.tabs__link--active{background-color: #24c;color: #fff}
.tabs ul li:after{content: none;}

.form-group.light{position:relative;padding:18px 0 0}
.form-group.light.first-child{margin-top:-18px}
.form-group.light > .error-label{font-size:14px;line-height:22px;font-weight:400;letter-spacing:0;color:#f42;display:none;margin-top:3px}
.form-group.light.error{animation:swing .6s ease;animation-iteration-count:1}
.form-group.light.error > .error-label{display:block}
.form-group.light.error input[type=text].form-control,
.form-group.light.error input[type=email].form-control,
.form-group.light.error input[type=password].form-control,
.form-group.light.error textarea.form-control,
.form-group.light.error .form-select > button{border-bottom-color:#f42}
.form-group.light > label{font-size:14px;line-height:22px;font-weight:400;letter-spacing:0;height:36px;line-height:36px;display:block;color:#6c6c71;margin:0;padding:0;z-index:0;transition:transform .2s ease-in-out}
.form-group.light > label .danger-color{color:#f42}
.form-group.light .uploader-input{padding:10px 16px 10px 40px;background:#f5f5f7;border:1px solid #e1e1e6;border-radius:4px;cursor:pointer;position:relative}
.form-group.light .uploader-input input[type=file]{cursor:pointer;width:100%;height:100%;position:absolute;top:0;left:0;opacity:0}
.form-group.light .uploader-input .uploader-delete{display:none;position:absolute;width:44px;justify-content:center;align-items:center;height:100%;right:0;border-left:1px solid #e1e1e6;top:0}
.form-group.light .uploader-input .uploader-text{white-space:nowrap;overflow:hidden;display:block;width:100%}
.form-group.light .uploader-input.loaded input[type=file]{width:calc(100% - 44px)}
.form-group.light .uploader-input.loaded .uploader-delete{display:flex}
.form-group.light .uploader-input.loaded .uploader-text{width:calc(100% - 44px)}
.form-group.light .uploader-input .icon{cursor:pointer;position:absolute;left:0;margin-left:12px;top:12px;font-size:17px}
.form-group.light .uploader-input:hover{transition:color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s;background-color:#24c;color:#fff}
.form-group.light .uploader-input:hover .icon{transition:color .15s ease-in-out;color:#fff}
.form-group.light input[type=text].form-control + label,
.form-group.light input[type=email].form-control + label,
.form-group.light input[type=password].form-control + label,
.form-group.light textarea.form-control + label{position:absolute;top:18px}
.form-group.light .form-select + label{position:absolute;top:-5px;padding-bottom:0;height:25px}
.form-group.light input[type=text].form-control,
.form-group.light input[type=email].form-control,
.form-group.light input[type=password].form-control,
.form-group.light textarea.form-control{position:relative;z-index:1;height:36px;line-height:24px;background:none;border:none;border-bottom:2px solid #e1e1e6;border-radius:0;padding:6px 0;color:#4a4a4f}
.form-group.light input[type=text].form-control:focus + label,
.form-group.light input[type=email].form-control:focus + label,
.form-group.light input[type=password].form-control:focus + label,
.form-group.light textarea.form-control:focus + label,
.form-group.light input[type=text].form-control.filled + label,
.form-group.light input[type=email].form-control.filled + label,
.form-group.light input[type=password].form-control.filled + label,
.form-group.light textarea.form-control.filled + label{transform:translate(0, -24px)}
.form-group.light textarea.form-control{height:100px;resize:none}
.form-group.light .form-select{position:relative;width:100%;box-shadow:none}
.form-group.light .form-select > button{outline:none;background:none;border:none;height:36px;line-height:24px;padding:6px 0;border-radius:0;border-bottom:2px solid #e1e1e6}
.form-group.light .form-select > button:focus,
.form-group.light .form-select > button:active{outline:none !important;background:none !important;border-color:#e1e1e6}
.form-group.light .form-select > button:after{font-family:'remixicon';content:"\ea43";color:#191928;border:none;font-size:24px;transition:transform .1s ease-in-out}
.form-group.light .form-select > button .filter-option{font-family:'Arian';font-size:16px;line-height:24px;font-weight:400;letter-spacing:0;text-transform:none;color:#4a4a4f}
.form-group.light .form-select .dropdown-menu{border:none;background:#fff;border-radius:0;box-shadow:0px 4px 32px rgba(0, 0, 0, 0.1);margin:0;padding:0}
.form-group.light .form-select .dropdown-menu li a{padding:8px 16px;color:#4a4a4f}
.form-group.light .form-select .dropdown-menu li a.active{background:none;color:#24c}
.form-group.light .form-select .dropdown-menu li a:hover{color:#24c;background-color:#f8f8fa}
.form-group:not(.light) input:-webkit-autofill,
.form-group:not(.light) input:-webkit-autofill:hover,
.form-group:not(.light) input:-webkit-autofill:focus,
.form-group:not(.light) textarea:-webkit-autofill,
.form-group:not(.light) textarea:-webkit-autofill:hover,
.form-group:not(.light) textarea:-webkit-autofill:focus,
.form-group:not(.light) select:-webkit-autofill,
.form-group:not(.light) select:-webkit-autofill:hover,
.form-group:not(.light) select:-webkit-autofill:focus{-webkit-text-fill-color:#4a4a4f;-webkit-box-shadow:inset 0 0 0 50px #f8f8fa}
.form-group:not(.light) input::placeholder,
.form-group:not(.light) textarea::placeholder{color:#6c6c71}
.form-group:not(.light) input:-ms-input-placeholder,
.form-group:not(.light) textarea:-ms-input-placeholder{color:#6c6c71}
.form-group:not(.light) input::-ms-input-placeholder,
.form-group:not(.light) textarea::-ms-input-placeholder{color:#6c6c71}
.form-group:not(.light) > label{font-size:14px;line-height:22px;font-weight:400;letter-spacing:0;display:block;color:#6c6c71;margin-bottom:5px}
.form-group:not(.light) .form-control{font-family:'Arian';font-size:16px;line-height:24px;font-weight:400;letter-spacing:0;height:calc(22px + 22px + 2px);line-height:22px;color:#4a4a4f;background:#f8f8fa;border:1px solid #e1e1e6;border-radius:4px;padding:11px 12px}
.form-group:not(.light) .form-select{position:relative;width:100%}
.form-group:not(.light) .form-select > button{outline:none;background:#f8f8fa;height:calc(22px + 22px + 2px);line-height:calc(22px + 22px + 2px);border-radius:0;border:1px solid #e1e1e6;border-radius:4px;padding:0;display:flex;align-items:center}
.form-group:not(.light) .form-select > button:focus,
.form-group:not(.light) .form-select > button:active{outline:none !important;background:none !important;border-color:#e1e1e6}
.form-group:not(.light) .form-select > button:after{font-family:'remixicon';content:"\ea42";color:#191928;border:none;font-size:24px;height:28px;width:40px;line-height:28px;border-left:1px solid #e1e1e6;transition:transform .1s ease-in-out;text-align:center}
.form-group:not(.light) .form-select > button .filter-option{font-family:'Arian';font-size:16px;line-height:24px;font-weight:400;letter-spacing:0;text-transform:none;color:#4a4a4f;padding-left:12px}
.form-group:not(.light) .form-select > .dropdown-menu.show{box-shadow:0px 4px 32px rgba(0, 0, 0, 0.1);background:#fff;border-radius:0;border:none;margin-top:4px}
.form-group:not(.light) .form-select > .dropdown-menu.show ul{margin:0;padding:0}
.form-group:not(.light) .form-select > .dropdown-menu.show ul > li > a{display:block;padding:8px 16px;color:#4a4a4f}
.form-group:not(.light) .form-select > .dropdown-menu.show ul > li > a:hover,
.form-group:not(.light) .form-select > .dropdown-menu.show ul > li > a:active{background:#f8f8fa;color:#4a4a4f}
.form-group:not(.light) .form-select > .dropdown-menu.show ul > li > a.active{color:#24c;background:none;cursor:default}
.form-group.form-check{padding:0;margin:36px 0 24px}
.form-group.form-check .form-check-input{display:none}
.form-group.form-check .form-check-input + .form-check-label{font-family:'Arian';font-size:16px;line-height:24px;font-weight:400;letter-spacing:0;color:#4a4a4f;position:relative;display:block;padding-left:36px;user-select:none}
.form-group.form-check .form-check-input + .form-check-label:hover{cursor:pointer}
.form-group.form-check .form-check-input + .form-check-label:hover:before{border-color:#24c}
.form-group.form-check .form-check-input + .form-check-label:before{content:'';position:absolute;top:-1px;left:0;display:block;width:24px;height:24px;background:none;border-radius:2px;border:2px solid #8f8f9d;box-sizing:border-box;line-height:22px;text-align:center;font-size:21px}

.form-group.form-check .form-check-input[type="radio"]:checked + .form-check-label:before{background:none;content:"";background:#24c;left:6px;top:6px;margin:0;width:12px;height:12px;border-radius:50%}
.form-group.form-check .form-check-input[type="radio"] + .form-check-label:after{left:0;top:0}
.form-group.form-check.toogle-check .form-check-label{padding-left:56px}
.form-group.form-check.toogle-check .form-check-input + .form-check-label:before{content:"";display:block;height:16px;width:40px;border:2px solid #e1e1e6;border-radius:8px;background:#fff;transition:all .2s ease-in-out;top:3px}
.form-group.form-check.toogle-check .form-check-input + .form-check-label:after{content:"";display:block;position:absolute;width:24px;height:24px;background:#8f8f9d;border-radius:50%;top:-2px;left:0}
.form-group.form-check.toogle-check .form-check-input:checked + .form-check-label:before{background-color:#e1e1e6}
.form-group.form-check.toogle-check .form-check-input:checked + .form-check-label:after{background-color:#24c;transform:translate(16px, 0)}
.label{color:#fff;padding:3px 6px 2px;font-style:normal;font-weight:bold;font-size:10px;line-height:16px;letter-spacing:0.08em;text-transform:uppercase;border-radius:2px;margin-bottom:4px;transition:all .3s;margin-right: 4px}
.label.new{background-color:#2a3}
.label.promo{background-color:#ec0}
.label.hit{background-color:#E6351E}
.label.recommend{background-color:#53a}
.label.sale{background-color:#FCDE77;color:#000}
@keyframes slideInUp{from{transform:translate3d(0, 100%, 0)}
to{transform:translate3d(0, 0, 0)}
}
@keyframes slideInDown{from{transform:translate3d(0, 0, 0)}
to{transform:translate3d(0, 100%, 0)}
}
.nav-tabs{margin:0;padding:0;list-style-type:none;position:relative;margin-bottom:32px;overflow-x:auto;overflow-y:hidden;flex-wrap:nowrap;white-space:nowrap;border-bottom:1px solid #e1e1e6;z-index:1}
.nav-tabs > li{margin:0;padding:0}
.nav-tabs > li:after{display:none}
.nav-tabs .nav-item{margin-right:40px;margin-bottom:0}
.nav-tabs .nav-item:last-of-type{margin-right:0}
.nav-tabs .nav-link{display:inline-block;padding:0;padding-bottom:14px;color:#4a4a4f;text-decoration:none;border:none;border-bottom:2px solid transparent;border-top-left-radius:0;border-top-right-radius:0;transition:unset}
.nav-tabs .nav-link:hover{color:#323237;border-color:transparent}
.nav-tabs .nav-link:focus{border-color:transparent}
.nav-tabs .nav-link.active{color:#323237;border-color:transparent;border-bottom-color:#24c;background-color:transparent}
.tab-content .tab-pane{animation:fadeIn .5s}
.bg-boxed-red{background-image:url(/img/bg-boxed-red.jpg) !important;}
.bg-boxed-dark{background-image:url(/img/bg-boxed-dark.jpg) !important;}
.bg-boxed-blue{background-image:url(/img/bg-boxed-blue.jpg) !important;}
.small-tab{display:flex;justify-content:space-between;flex-direction:row;width:100%;margin-top:24px;padding:9px 0}
.small-tab .nav-item{padding:0 8px;cursor:pointer}
.small-tab .nav-item .nav-link{font-size:14px;line-height:22px;font-weight:400;letter-spacing:0;color:#323237;padding:0 4px}
.small-tab .nav-item .nav-link.active{border-bottom:2px solid #24c}
.pagination-nav{width:100%;padding:16px;border:1px solid #e1e1e6;}
.pagination-nav .pagination{margin:0;padding:0;list-style-type:none;margin-bottom:0}
.pagination-nav .pagination > li{margin:0;padding:0}
.pagination-nav .pagination > li:after{display:none}
.pagination-nav .pagination .page-item{margin-right:8px}
.pagination-nav .pagination .page-item:last-of-type{margin-right:0}
.pagination-nav .pagination .page-item.active .page-link{background-color:#24c;color:#fff}
.pagination-nav .pagination .page-item.disabled .icon:before{color:#e1e1e6}
.pagination-nav .pagination .page-link{padding:10px 15px 10px 16px;border:0;color:#4a4a4f;border-radius:2px}
.pagination-nav .pagination .page-link:hover{background-color:#f8f8fa}
.pagination-nav .pagination .buttons{margin:0;padding:0;list-style-type:none;display:flex}
.pagination-nav .pagination .buttons > li{margin:0;padding:0}
.pagination-nav .pagination .buttons > li:after{display:none}
.pagination-nav .pagination .buttons .page-item{margin-right:0}
.pagination-nav .pagination .buttons .page-link{padding:0}
.pagination-nav .pagination .buttons-wrap{margin-left:auto}
.pagination-nav .pagination .btn{border-radius:2px;font-size:24px}
.pagination-nav .pagination .btn.btn-icon{width:40px;height:40px}
.pagination-nav .pagination .btn .icon:before{color:#8f8f9d}
.pagination-lazy{display:flex;justify-content:center;margin-top:16px;margin-bottom:16px}
.pagination-lazy > .icon{margin-right:0;font-size:24px}
.fotorama__arr{display:flex;align-items:center;justify-content:center;margin-top:-22px;padding:0;width:44px;height:44px;background-color:#fff;border-radius:2px;box-shadow:0px 4px 32px rgba(0, 0, 0, 0.1)}
.fotorama__arr:hover{background-color:#24c;color:#fff}
.fotorama__arr--next:before,
.fotorama__arr--prev:before{font-family:'remixicon' !important;font-style:normal;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:24px;display:block}
.fotorama__arr--next{right:24px}
.fotorama__arr--next:before{content:'\ea5d'}
.fotorama__arr--prev{left:24px}
.fotorama__arr--prev:before{content:'\ea53'}
.fotorama__arr--disabled{opacity:1;background-color:#e1e1e6}
.fotorama__arr--disabled:before{color:#fff}
.fotorama__fullscreen-icon:hover,
.fotorama__arr:hover{transition-property:background-color !important}
.fotorama__fullscreen-icon{top:24px;right:24px;padding:0;width:44px;height:44px;display:flex;align-items:center;justify-content:center;background-color:#E63A26;border-radius:2px;box-shadow:0px 4px 32px rgba(0, 0, 0, 0.1);color:#fff}
.fotorama__fullscreen-icon:hover{background-color:#24c;color:#fff}
.fotorama__fullscreen-icon:before{content:'\ecee';display:block;font-family:'remixicon';font-size:22px}
.fotorama__nav__frame--thumb:not(.fotorama__active){opacity:0.5}
.fotorama__nav__shaft{top:8px}
.fotorama__thumb-border{display:none}
.fotorama__thumb{background-color:#fff}
.fotorama.fotorama--fullscreen .fotorama__fullscreen-icon:before{content:'\ecec'}
.shares-block{position:relative;display:flex;justify-content:center;align-items:center;width:48px;height:40px;margin-right:-13px;text-align:center;font-size:20px}
.shares-block:hover .share2{opacity:1;visibility:visible}
.shares-block .share2{opacity:0;visibility:hidden;transition:opacity .3s;position:absolute;top:100%;left:0;right:0}
.shares-block .icon{transition:unset}
.shares-block .icon:before{color:#24c}
.shares-block .ya-share2__list{margin:0;padding:0;list-style-type:none;width:48px}
.shares-block .ya-share2__list > li{margin:0;padding:0}
.shares-block .ya-share2__list > li:after{display:none}
.shares-block .ya-share2__link{width:48px;height:40px;transition:unset}
.shares-block .ya-share2__badge{display:flex;justify-content:center;align-items:center;height:100%;border-radius:0 !important}
.shares-block .ya-share2__container_size_m{overflow:hidden;box-shadow:0px 4px 32px rgba(0, 0, 0, 0.1);border-radius:4px}
.shares-block .ya-share2__item{position:relative}
.shares-block .ya-share2__item:before{content:'';position:absolute;top:0;left:0;width:100%;height:100%;background-color:#24c;z-index:1}
.shares-block .ya-share2__item:hover{opacity:1}
.shares-block .ya-share2__item:hover:before{transition:opacity .3s;opacity:0}
.shares-block .ya-share2__item .ya-share2__icon{z-index:2}
.block-overflow{overflow:hidden}
.buttons .to-cart{display:inline-flex;text-align:center;justify-content:center;width:100%}
.buttons .to-cart i{padding-right:10px;margin-left:-6px;font-size:18px}
.buttons .to-cart i:before{color:#fff}
.buttons .in-cart,
.buttons .in-basket{display:inline-flex;text-align:center;justify-content:center;background-color:#2a3;width:100%}
.buttons .in-cart:hover,
.buttons .in-basket:hover{background-color:#156a20}
.buttons .in-cart i,
.buttons .in-basket i{padding-right:10px;margin-left:-6px;font-size:18px}
.buttons .in-cart i:before,
.buttons .in-basket i:before{content:'\eb34'}
.loading{position:relative;justify-content:center}
.loading:before{content:'\eefa';position:absolute;font-family:'remixicon' !important;font-style:normal;-webkit-font-smoothing:antialiased;max-width:20px;width:100%;font-size:20px;animation:rotate 1s linear infinite;z-index:1}
.loading:after{content:'';position:absolute;height:100%;width:100%;left:0;border-radius:4px}
.alert{border:none;border-radius:4px;padding:16px 24px}
.alert.alert-danger{background:#FFF0EE;color:#f42}
.alert.alert-success{background:#EEF9EF;color:#2a3}
.alert.alert-warning{background:#FFF9EB;color:#FFAA00}
.alert.alert-primary{background:#EEF7FB;color:#8f8f9d}
.open-modal{overflow-x:hidden;height:100%;width:100%;overflow-y:hidden;touch-action:none}
.preloader{position:fixed;left:0;top:0;right:0;bottom:0;overflow:hidden;background:#f5f5f7;z-index:1001;display:flex;justify-content:center;align-items:center}
.preloader.hidden{display:none}
.preloader svg circle{stroke:#24c}
.preloader-image{width:100px;animation:rotate 1s linear}
.loaded_hiding .preloader{transition:.3s opacity;opacity:0}
.loaded .preloader{display:none}
@keyframes rotate{from{transform:rotate(0deg)}
to{transform:rotate(360deg)}
}
@keyframes wait-bar-grow{0%{transform:scaleX(0)}
25%{transform:scaleX(.5)}
50%{transform:scaleX(1)}
75%{transform:scaleX(.5)}
100%{transform:scaleX(0)}
}
@keyframes fadeIn{from{opacity:0}
to{opacity:1}
}
*{outline:none}
body{font-family:'Arian';font-size:18px;line-height:24px;font-weight:400;letter-spacing:0;color:#19191e;display:flex;flex-direction:column;height:100%;background-color:#fff}
body > *{-ms-overflow-style:none}
body .container{max-width:1360px}
body.width-1168 .container{max-width:1168px}
body.width-1168 .projects-element .project-img{max-width:576px;max-height:456px}
body.width-1168 .item-card .card-wrapper .product-img{max-width:576px;max-height:456px}
body.width-1648 .container{max-width:1648px}
.projects-element .head-info{width:40%;}
body .container{padding-left:16px;padding-right:16px;}
body.services .container .col.left-block-wrap{margin-bottom:56px}
body.overflow{overflow:hidden}
body.inner-page .wrapper-container .text-before-items{margin-bottom:40px}
body.inner-page .wrapper-container .text-before-items.empty-text{margin-bottom:0}
body.inner-page .wrapper-container .text-before-items p{line-height:24px;font-weight:400;letter-spacing:0;text-decoration:none;margin-bottom:24px;color:#4a4a4f}
body.inner-page .wrapper-container .text-before-items p:last-child{margin-bottom:0}
body.inner-page .wrapper-container .text-after-items{margin-top:56px}
body.inner-page .wrapper-container .text-after-items h3{font-size:24px;line-height:32px;font-weight:700;letter-spacing:0;margin-bottom:24px;margin-top:56px}
body.inner-page .wrapper-container .text-after-items p{line-height:24px;font-weight:400;letter-spacing:0;text-decoration:none;margin-bottom:24px;color:#4a4a4f}
body.inner-page .wrapper-container .text-after-items p:last-child{margin-bottom:0}
body > div[id*='wait_comp_']{position:fixed !important;z-index:9001 !important;top:0 !important;left:0 !important;width:100% !important;height:3px !important;border:none !important;padding:0 !important;text-indent:-9999px !important;background-image:none !important;background-color:#0c1849 !important}
body > div[id*='wait_comp_']:after,
body > div[id*='wait_comp_']:before{animation-name:wait-bar-grow;animation-duration:2000ms;animation-fill-mode:forwards;animation-iteration-count:infinite;animation-timing-function:ease-in, steps(1);bottom:0;content:'';position:absolute;top:0;transform:scaleX(0);width:50%;background-color:#4261df !important}
body > div[id*='wait_comp_']:after{right:0;transform-origin:left center}
body > div[id*='wait_comp_']:before{left:0;transform-origin:right center}
body.text-size-15px{font-size:15px}
body.text-size-15px .font-p,
body.text-size-15px .font-bold-p{font-size:15px}
body.titles-type-normal h1,
body.titles-type-normal h2,
body.titles-type-normal h3,
body.titles-type-normal h4,
body.titles-type-normal h5,
body.titles-type-normal h6,
body.titles-type-normal .th1,
body.titles-type-normal .th2,
body.titles-type-normal .th3,
body.titles-type-normal .th4,
body.titles-type-normal .th5,
body.titles-type-normal .th6,
body.titles-type-normal .font-element-title-small,
body.titles-type-normal .font-element-title-big,
body.titles-type-normal .font-element-title{font-weight:400}
body.btn-type-rounded .owl-next,
body.btn-type-rounded .owl-prev{border-radius:120px}
body.btn-type-rounded .btn{border-radius:120px}
body.btn-type-rounded .finded-container .btn{border-radius:0}
body.btn-type-rounded .loading:after{border-radius:120px}
body.open-modal #html-container{-webkit-filter:blur(2px);filter:blur(2px);}
a{color:#24c;transition:all .3s}
a.icon:hover{text-decoration:none}
.popup-window-titlebar{height:auto;padding:0}
.popup-window-titlebar .popup-window-titlebar-text{font-size:24px;line-height:32px;font-weight:700;letter-spacing:0;color:#19191e;margin-top:16px;padding:0}
.popup-window.popup-window-with-titlebar{padding:10px 30px 10px 30px}
.popup-window-with-titlebar .popup-window-content{padding:0}
button,
input{outline:none !important}
.menu-list-2 > a {font-weight: 700; font-size:20px}
.wrapper-section{padding:56px 0 72px 0;}
.wrapper-section.first{padding:0;border-top:none}
.wrapper-section.no-padding{padding:0}
.wrapper-section.grey{background-color:#f8f8fa;border-top:none}
.wrapper-section.grey + .wrapper-section.white{border-top:none}
.wrapper-section[data-code="projects"]{padding:0;border:none}
.wrapper-container > .row > .col{order:1}
.wrapper-container > .row > .sidebar-left{order:0}
.wrapper-container > .row > .sidebar-right{order:2}
.sidebar-left,
.sidebar-right{min-width:306px;max-width:306px;padding:0;margin-left:6px}
.sidebar-left > div:not(.filter-aside-container):last-child,
.sidebar-right > div:not(.filter-aside-container):last-child{position:sticky;top:0;margin-bottom:56px}
.sidebar-right{margin-left:32px;padding:0}
.sidebar-menu-catalog{margin-bottom:12px;background:#fff;}
.sidebar-menu-catalog .title{border:1px solid #e1e1e6}
.sidebar-menu-catalog .title .menu-title {width:100%;height:auto;display:flex;padding:24px 32px;color:#323237;text-decoration:none}
.sidebar-menu-catalog .title .menu-title i{margin-right:18px}
.sidebar-menu-catalog .title .menu-title .icon-add-line{margin-left:auto}
.finded-container{position:absolute;left:calc(100% + 1px);top:0;white-space:nowrap;z-index:23;display:none;background:#fff;box-shadow:0px 4px 32px rgba(0, 0, 0, 0.1)}
.finded-container .text{padding:12px 16px;background-color:#fff}
.finded-container.active{display:flex}
.finded-container .btn{border-radius:0;width:48px;min-width:48px;height:48px;display:flex;font-size:24px;justify-content:center}
.finded-container.zero-result .btn{display:none}
.sidebar-left{margin-right:22px}
.sidebar-left .sidebar-menu-catalog > .sidebar-menu,
.sidebar-right .sidebar-menu-catalog > .sidebar-menu{display:none;margin-top:-1px}
.sidebar-left .sidebar-menu-catalog.open > .sidebar-menu,
.sidebar-right .sidebar-menu-catalog.open > .sidebar-menu{display:block}
.sidebar-left .sidebar-menu-catalog.open .title,
.sidebar-right .sidebar-menu-catalog.open .title{box-shadow:0px 4px 32px rgba(0, 0, 0, 0.1)}
.sidebar-left .sidebar-menu-catalog.open .title .menu-title .icon-add-line:before,
.sidebar-right .sidebar-menu-catalog.open .title .menu-title .icon-add-line:before{content:"\f004"}
.sidebar-left .sidebar-menu-catalog .has-sub.open > span,
.sidebar-left .sidebar-menu-catalog .has-sub.open > a,
.sidebar-right .sidebar-menu-catalog .has-sub.open > a{color:#24c}
.sidebar-left .sidebar-menu-catalog .has-sub.open .sub .li:not(.has-sub) .active.open > a,
.sidebar-right .sidebar-menu-catalog .has-sub.open .sub .li:not(.has-sub) .active.open > a{color:#24c}
.sidebar-left .sidebar-menu,
.sidebar-right .sidebar-menu{border:1px solid #e1e1e6;margin-bottom:16px;}
.sidebar-left .sidebar-menu > ul > li:before,
.sidebar-right .sidebar-menu > ul > li:before{content:'';position:absolute;bottom:0;left:32px;display:block;width:calc(100% - 64px);background-color:#e1e1e6;height:1px}
.sidebar-left .sidebar-menu > ul > li:last-of-type:before,
.sidebar-right .sidebar-menu > ul > li:last-of-type:before{display:none}
.sidebar-left .sidebar-menu ul li,
.sidebar-right .sidebar-menu ul li{position:relative}
.sidebar-left .sidebar-menu ul li.active > a,
.sidebar-right .sidebar-menu ul li.active > a{color:#24c}
.sidebar-left .sidebar-menu ul li.active .active > a,
.sidebar-right .sidebar-menu ul li.active .active > a{color:#24c}
.sidebar-left .sidebar-menu ul li span,
.sidebar-left .sidebar-menu ul li a,
.sidebar-right .sidebar-menu ul li a{display:block;color:#323237;text-decoration:none;padding:24px 26px}
.sidebar-left .sidebar-menu ul li a:hover,
.sidebar-right .sidebar-menu ul li a:hover{color:#24c}
.sidebar-left .sidebar-menu ul li:last-of-type:after,
.sidebar-right .sidebar-menu ul li:last-of-type:after{display:none}
.sidebar-left .sidebar-menu ul li.has-sub.color > a,
.sidebar-right .sidebar-menu ul li.has-sub.color > a{color:#323237}
.sidebar-left .sidebar-menu ul li.has-sub > span,
.sidebar-left .sidebar-menu ul li.has-sub > a,
.sidebar-right .sidebar-menu ul li.has-sub > a{position:relative;padding-bottom:16px}
.sidebar-left .sidebar-menu ul li.has-sub > a:after,
.sidebar-right .sidebar-menu ul li.has-sub > a:after{display:block;position:absolute;width:24px;height:24px;text-align:center;line-height:24px;right:24px;font-size:24px;top:calc(50% - 12px);content:'\ea43';font-family:'remixicon' !important}
.sidebar-left .sidebar-menu ul li.has-sub > a .text,
.sidebar-right .sidebar-menu ul li.has-sub > a .text{max-width:88%}
.sidebar-left .sidebar-menu ul li.has-sub:hover,
.sidebar-right .sidebar-menu ul li.has-sub:hover{background:none}
.sidebar-left .sidebar-menu ul li.has-sub.open > a:after,
.sidebar-right .sidebar-menu ul li.has-sub.open > a:after{content:'\ea49';top:calc(50% - 8px)}
.sidebar-left .sidebar-menu ul li.has-sub.open .sub,
.sidebar-right .sidebar-menu ul li.has-sub.open .sub{margin-top:-8px;padding-bottom:8px;display:block}
.sidebar-left .sidebar-menu ul li.has-sub.open .sub .has-sub.open > a:after,
.sidebar-right .sidebar-menu ul li.has-sub.open .sub .has-sub.open > a:after{top:calc(50% - 12px)}
.sidebar-left .sidebar-menu ul li:not(.open) > a,
.sidebar-right .sidebar-menu ul li:not(.open) > a{padding-bottom:24px}
.sidebar-left .sidebar-menu ul li .sub,
.sidebar-right .sidebar-menu ul li .sub{display:none;padding:0 32px 24px 32px}
.sidebar-left .sidebar-menu ul li .sub li,
.sidebar-right .sidebar-menu ul li .sub li{padding:0;margin:0 -16px 0 -16px}
.sidebar-left .sidebar-menu ul li .sub li a,
.sidebar-right .sidebar-menu ul li .sub li a, .sidebar-left .sidebar-menu ul li .sub li span{display:block;padding:8px 16px 8px 16px;text-decoration:none;color:#4a4a4f}
.sidebar-left .sidebar-menu ul li .sub li span {font-weight: 700; color:#24c}
.sidebar-left .sidebar-menu ul li .sub li a:hover,
.sidebar-right .sidebar-menu ul li .sub li a:hover{background-color:#f8f8fa;color:initial}
.sidebar-left .sidebar-menu ul li .sub li:first-of-type,
.sidebar-right .sidebar-menu ul li .sub li:first-of-type{margin-top:8px}
.sidebar-left .sidebar-menu ul li .sub li:after,
.sidebar-right .sidebar-menu ul li .sub li:after{content:none}
.sidebar-left .sidebar-menu ul li .sub li:not(&.has-sub):hover,
.sidebar-right .sidebar-menu ul li .sub li:not(&.has-sub):hover{background-color:#f8f8fa}
.sidebar-left .sidebar-menu ul li .sub li.has-sub .sub,
.sidebar-right .sidebar-menu ul li .sub li.has-sub .sub{display:none}
.sidebar-left .sidebar-menu ul li .sub li.has-sub.open .sub,
.sidebar-right .sidebar-menu ul li .sub li.has-sub.open .sub{display:block}
.sidebar-left .sidebar-menu ul li .sub li.has-sub a:after,
.sidebar-right .sidebar-menu ul li .sub li.has-sub a:after{right:10px}
.socials-icons{display:flex}
.socials-icons .item{width:40px;height:40px;margin-right:6px;border-radius:12px;line-height:40px;text-align:center;font-size:18px;text-decoration:none}
.socials-icons .item:before{color:#fff}
.socials-icons .item:hover{opacity:0.8}
.socials-icons .item.icon-whatsapp{background-color:#4caf50;}
.socials-icons .item.icon-telegram{background-color:#039be5;}
.socials-icons .item.icon-instagram{background:linear-gradient(225deg, #6f3fbb 0%, #c53185 32.04%, #ea4951 66.3%, #fec763 100%)}
.socials-icons .item.icon-max{background:url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='20'%20height='20'%20viewBox='0%200%20100%20100'%20fill='%23fff'%3E%3Cpath%20fill-rule='evenodd'%20d='M50.7571%200.261719C78.2929%200.261719%2099.8857%2022.5974%2099.8857%2050.1474C99.8857%2077.6974%2077.6071%2099.4903%2051.0214%2099.4903C41.5857%2099.4903%2037.0143%2098.1617%2029.65%2092.9474C29.1429%2092.5903%2028.45%2092.6831%2028.0214%2093.1403C22.3571%2099.1831%207.85%20103.426%207.18571%2095.176C7.18571%2080.7903%200%2071.4474%200%2049.876C0%2021.5546%2023.2214%200.261719%2050.7571%200.261719ZM51.5286%2024.8117C38.4643%2024.126%2028.2643%2033.1974%2026.0143%2047.3831C24.15%2059.1332%2027.45%2073.4546%2030.2786%2074.176C31.4786%2074.4832%2034.3571%2072.276%2036.4571%2070.2974C36.85%2069.926%2037.45%2069.8617%2037.9071%2070.1474C41.1786%2072.1474%2044.8786%2073.6474%2048.9571%2073.8617C62.3714%2074.5617%2074.2571%2064.0617%2074.9643%2050.6474C75.6643%2037.2331%2064.9429%2025.5046%2051.5286%2024.8046V24.8117Z'/%3E%3C/svg%3E") no-repeat center,linear-gradient(135deg,#00C4FF 0%,#3C22FE 55%,#8114FF 100%)}
.icon-whatsapp{background:transparent;background-repeat:no-repeat;background-position:center;background-image:url('data:image/svg+xml;base64,CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB3aWR0aD0iMTgiIGhlaWdodD0iMTgiIHZpZXdCb3g9IjAgMCAzMDggMzA4Ij4KCgk8cGF0aCBpZD0iWE1MSURfNDY5XyIgZD0iTTIyNy45MDQsMTc2Ljk4MWMtMC42LTAuMjg4LTIzLjA1NC0xMS4zNDUtMjcuMDQ0LTEyLjc4MWMtMS42MjktMC41ODUtMy4zNzQtMS4xNTYtNS4yMy0xLjE1NiAgIGMtMy4wMzIsMC01LjU3OSwxLjUxMS03LjU2Myw0LjQ3OWMtMi4yNDMsMy4zMzQtOS4wMzMsMTEuMjcxLTExLjEzMSwxMy42NDJjLTAuMjc0LDAuMzEzLTAuNjQ4LDAuNjg3LTAuODcyLDAuNjg3ICAgYy0wLjIwMSwwLTMuNjc2LTEuNDMxLTQuNzI4LTEuODg4Yy0yNC4wODctMTAuNDYzLTQyLjM3LTM1LjYyNC00NC44NzctMzkuODY3Yy0wLjM1OC0wLjYxLTAuMzczLTAuODg3LTAuMzc2LTAuODg3ICAgYzAuMDg4LTAuMzIzLDAuODk4LTEuMTM1LDEuMzE2LTEuNTU0YzEuMjIzLTEuMjEsMi41NDgtMi44MDUsMy44My00LjM0OGMwLjYwNy0wLjczMSwxLjIxNS0xLjQ2MywxLjgxMi0yLjE1MyAgIGMxLjg2LTIuMTY0LDIuNjg4LTMuODQ0LDMuNjQ4LTUuNzlsMC41MDMtMS4wMTFjMi4zNDQtNC42NTcsMC4zNDItOC41ODctMC4zMDUtOS44NTZjLTAuNTMxLTEuMDYyLTEwLjAxMi0yMy45NDQtMTEuMDItMjYuMzQ4ICAgYy0yLjQyNC01LjgwMS01LjYyNy04LjUwMi0xMC4wNzgtOC41MDJjLTAuNDEzLDAsMCwwLTEuNzMyLDAuMDczYy0yLjEwOSwwLjA4OS0xMy41OTQsMS42MDEtMTguNjcyLDQuODAyICAgYy01LjM4NSwzLjM5NS0xNC40OTUsMTQuMjE3LTE0LjQ5NSwzMy4yNDljMCwxNy4xMjksMTAuODcsMzMuMzAyLDE1LjUzNywzOS40NTNjMC4xMTYsMC4xNTUsMC4zMjksMC40NywwLjYzOCwwLjkyMiAgIGMxNy44NzMsMjYuMTAyLDQwLjE1NCw0NS40NDYsNjIuNzQxLDU0LjQ2OWMyMS43NDUsOC42ODYsMzIuMDQyLDkuNjksMzcuODk2LDkuNjljMC4wMDEsMCwwLjAwMSwwLDAuMDAxLDAgICBjMi40NiwwLDQuNDI5LTAuMTkzLDYuMTY2LTAuMzY0bDEuMTAyLTAuMTA1YzcuNTEyLTAuNjY2LDI0LjAyLTkuMjIsMjcuNzc1LTE5LjY1NWMyLjk1OC04LjIxOSwzLjczOC0xNy4xOTksMS43Ny0yMC40NTggICBDMjMzLjE2OCwxNzkuNTA4LDIzMC44NDUsMTc4LjM5MywyMjcuOTA0LDE3Ni45ODF6IiBmaWxsPSIjZmZmZmZmIiAvPgoJPHBhdGggaWQ9IlhNTElEXzQ3MF8iIGQ9Ik0xNTYuNzM0LDBDNzMuMzE4LDAsNS40NTQsNjcuMzU0LDUuNDU0LDE1MC4xNDNjMCwyNi43NzcsNy4xNjYsNTIuOTg4LDIwLjc0MSw3NS45MjhMMC4yMTIsMzAyLjcxNiAgIGMtMC40ODQsMS40MjktMC4xMjQsMy4wMDksMC45MzMsNC4wODVDMS45MDgsMzA3LjU4LDIuOTQzLDMwOCw0LDMwOGMwLjQwNSwwLDAuODEzLTAuMDYxLDEuMjExLTAuMTg4bDc5LjkyLTI1LjM5NiAgIGMyMS44NywxMS42ODUsNDYuNTg4LDE3Ljg1Myw3MS42MDQsMTcuODUzQzI0MC4xNDMsMzAwLjI3LDMwOCwyMzIuOTIzLDMwOCwxNTAuMTQzQzMwOCw2Ny4zNTQsMjQwLjE0MywwLDE1Ni43MzQsMHogICAgTTE1Ni43MzQsMjY4Ljk5NGMtMjMuNTM5LDAtNDYuMzM4LTYuNzk3LTY1LjkzNi0xOS42NTdjLTAuNjU5LTAuNDMzLTEuNDI0LTAuNjU1LTIuMTk0LTAuNjU1Yy0wLjQwNywwLTAuODE1LDAuMDYyLTEuMjEyLDAuMTg4ICAgbC00MC4wMzUsMTIuNzI2bDEyLjkyNC0zOC4xMjljMC40MTgtMS4yMzQsMC4yMDktMi41OTUtMC41NjEtMy42NDdjLTE0LjkyNC0yMC4zOTItMjIuODEzLTQ0LjQ4NS0yMi44MTMtNjkuNjc3ICAgYzAtNjUuNTQzLDUzLjc1NC0xMTguODY3LDExOS44MjYtMTE4Ljg2N2M2Ni4wNjQsMCwxMTkuODEyLDUzLjMyNCwxMTkuODEyLDExOC44NjcgICBDMjc2LjU0NiwyMTUuNjc4LDIyMi43OTksMjY4Ljk5NCwxNTYuNzM0LDI2OC45OTR6IiBmaWxsPSIjZmZmZmZmIiAvPgoKPC9zdmc+Cg==')}
.icon-telegram{background:transparent;background-repeat:no-repeat;background-position:center;background-image:url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOCIgaGVpZ2h0PSIxOCIgdmlld0JveD0iMCAwIDI0IDI0Ij4KCiAgICAgICAgPHBhdGggZD0ibS40MTUgMTEuMTk2IDUuODY5IDIuOTI1Yy4yMjcuMTEyLjQ5NS4xMDQuNzEyLS4wMjNsNS4yMjQtMy4wMzctMy4xNjIgMi44MDJjLS4xNjEuMTQzLS4yNTMuMzQ3LS4yNTMuNTYydjYuODI1YzAgLjcyLjkxOSAxLjAyMyAxLjM1LjQ1MWwyLjUzNy0zLjM3MyA2LjI3NCAzLjU3M2MuNDQuMjUzIDEuMDA0LS4wMDEgMS4xMDYtLjUwNGwzLjkxMy0xOS41Yy4xMTctLjU4Ni0uNDY2LTEuMDY0LTEuMDA4LS44NDZsLTIyLjUgOC43NzVjLS42MDQuMjM2LS42NDMgMS4wODEtLjA2MiAxLjM3em0yMS44My04LjI0OS0zLjQzOSAxNy4xMzctNS45NDUtMy4zODZjLS4zMjQtLjE4NS0uNzQxLS4xMDMtLjk3MS4yMDFsLTEuNTg1IDIuMTA3di00LjI0NGw4LjU1MS03LjU3NmMuNjc3LS41OTktLjEwMS0xLjY2NC0uODc0LTEuMjFsLTExLjM5IDYuNjIyLTMuOTkyLTEuOTg5eiIgZmlsbD0iI2ZmZmZmZiIgIC8+Cgo8L3N2Zz4K')}
.icon-max{background:transparent;background-repeat:no-repeat;background-position:center;background-image:url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='20'%20height='20'%20viewBox='0%200%20100%20100'%20fill='%23fff'%3E%3Cpath%20fill-rule='evenodd'%20d='M50.7571%200.261719C78.2929%200.261719%2099.8857%2022.5974%2099.8857%2050.1474C99.8857%2077.6974%2077.6071%2099.4903%2051.0214%2099.4903C41.5857%2099.4903%2037.0143%2098.1617%2029.65%2092.9474C29.1429%2092.5903%2028.45%2092.6831%2028.0214%2093.1403C22.3571%2099.1831%207.85%20103.426%207.18571%2095.176C7.18571%2080.7903%200%2071.4474%200%2049.876C0%2021.5546%2023.2214%200.261719%2050.7571%200.261719ZM51.5286%2024.8117C38.4643%2024.126%2028.2643%2033.1974%2026.0143%2047.3831C24.15%2059.1332%2027.45%2073.4546%2030.2786%2074.176C31.4786%2074.4832%2034.3571%2072.276%2036.4571%2070.2974C36.85%2069.926%2037.45%2069.8617%2037.9071%2070.1474C41.1786%2072.1474%2044.8786%2073.6474%2048.9571%2073.8617C62.3714%2074.5617%2074.2571%2064.0617%2074.9643%2050.6474C75.6643%2037.2331%2064.9429%2025.5046%2051.5286%2024.8046V24.8117Z'/%3E%3C/svg%3E")}
.header{position:relative;z-index:23}
.header.open-header{opacity:1;position:fixed;top:0;left:0;right:0}
.header.type8 .main-header,
.header.type1-fixed .main-header{display:flex;background-color:#fff;border-bottom:1px solid #e1e1e6;height:72px;width:100%}
.header.type1-fixed .main-header .menu-list-0 li > a, .header.type1-fixed .main-header .menu-list-0 li > span {font-size:20px} 
.header.type8 .main-header .menu-btn,
.header.type1-fixed .main-header .menu-btn{width:72px;flex-shrink:0;justify-content:center;align-items:center;display:flex;border-right:1px solid #e1e1e6}
.header.type8 .main-header .menu-btn .icon,
.header.type1-fixed .main-header .menu-btn .icon{display:block;font-size:24px;width:100%;height:100%;text-align:center;line-height:72px;cursor: pointer}
.header.type8 .main-header .menu-btn .icon:before,
.header.type1-fixed .main-header .menu-btn .icon:before{color:#24c}
.header.type8 .main-header .menu-btn .icon:hover:before,
.header.type1-fixed .main-header .menu-btn .icon:hover:before{color:#1b35a0}
.header.type8 .main-header .logo a {line-height: 0}
.header.type8 .main-header .logo,
.header.type1-fixed .main-header .logo{padding:0 32px;padding-right:6px;display:flex;align-items:center;border-right:1px solid #e1e1e6}
.header.type8 .main-header .logo svg,
.header.type1-fixed .main-header .logo svg{max-width:170px;max-height:45px}
.header.type8 .main-header .logo .slogan,
.header.type1-fixed .main-header .logo .slogan{font-size:16px;line-height:22px;font-weight:400;letter-spacing:0;max-width:300px;min-width:163px;color:#6c6c71;overflow:hidden;margin-left:32px}
.header.type8 .main-header .contacts,
.header.type1-fixed .main-header .contacts{display:flex;align-items:center;padding:0 0 0 32px}
.header.type8 .main-header .contacts .icon-arrow-drop-down-fill,
.header.type1-fixed .main-header .contacts .icon-arrow-drop-down-fill{font-weight:normal;width:24px;height:24px;color:#191928;font-size:24px}
.header.type8 .main-header .contacts .phone,
.header.type1-fixed .main-header .contacts .phone {font-size:18px;line-height:26px;font-weight:700;letter-spacing:0;position:relative;display:flex;}
.header.type8 .main-header .contacts .phone .btn-link,.header.type8 .main-header .contacts .phone .btn-link2,
.header.type1-fixed .main-header .contacts .phone .btn-link, .header.type1-fixed .main-header .contacts .phone .btn-link2{font-size:16px;line-height:22px;font-weight:700;letter-spacing:0;padding:0 0 0 28px;text-transform:none;white-space:nowrap}
.header.type8 .main-header .contacts .phone .current,
.header.type1-fixed .main-header .contacts .phone .current{display:flex;align-items:center;top: 1px;position: relative;}
.header.type8 .main-header .contacts .phone .current .icon-phone-fill,
.header.type1-fixed .main-header .contacts .phone .current .icon-phone-fill{width:24px;height:24px;text-align:center;line-height:24px;font-size:18px;font-weight:normal;transform:rotate(45deg);-ms-transform:rotate(45deg);-moz-transform:rotate(45deg);-webkit-transform:rotate(45deg);-o-transform:rotate(45deg);}
.header.type8 .main-header .contacts .phone .current:hover,
.header.type1-fixed .main-header .contacts .phone .current:hover{text-decoration:none}
.header.type8 .main-header .contacts .phone .current:hover i,
.header.type1-fixed .main-header .contacts .phone .current:hover i{color:#24c}
.header.type8 .main-header .contacts .phone .current span,
.header.type1-fixed .main-header .contacts .phone .current span{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:calc(100%);font-size:18px;line-height:26px;font-weight:700;letter-spacing:0;color:#323237;flex-shrink:1}
.header.type8 .main-header .menu,
.header.type1-fixed .main-header .menu{overflow:hidden;width:70%}
.header.type8 .main-header .menu.calc,
.header.type1-fixed .main-header .menu.calc{overflow:visible}
.header.type8 .main-header .menu .sub,
.header.type1-fixed .main-header .menu .sub{position:absolute;z-index:100;opacity:0;visibility:hidden;transition-property:opacity, visibility;transition-duration:0.15s;transition-delay:0.15s;background:#fff;box-shadow:0px 4px 32px rgb(0 0 0/10%);}
.menu-delimiter{display:none;height:1px;background:#ccc;flex:1;margin-top:2px;margin-left:12px;margin-right:12px;}
.header.type8 .main-header .menu .full-sub,
.header.type1-fixed .main-header .menu .full-sub{width:100%;position:absolute;box-shadow:0px 4px 32px rgba(0, 0, 0, 0.1);padding:40px;box-sizing:border-box;background:#fff;z-index:100;flex-wrap:wrap;align-items:flex-start;left:0;display:flex;opacity:0;visibility:hidden;transition-property:opacity, visibility;transition-duration:0.2s;transition-delay:0.15s}
.header.type8 .main-header .menu .full-sub .item,
.header.type1-fixed .main-header .menu .full-sub .item{box-sizing:border-box;margin-bottom:16px;padding:16px;width:33.3%;display:flex}
.header.type8 .main-header .menu .full-sub .item a:hover,
.header.type1-fixed .main-header .menu .full-sub .item a:hover{color:#24c}
.header.type8 .main-header .menu .full-sub .item .img,
.header.type1-fixed .main-header .menu .full-sub .item .img{width:64px;min-width:64px;height:64px;margin-right:24px;flex-shrink:1;display:flex}
.header.type8 .main-header .menu .full-sub .item .img *,
.header.type1-fixed .main-header .menu .full-sub .item .img *{background-position:center center;background-size:contain;background-repeat:no-repeat}
.header.type8 .main-header .menu .full-sub .item .links,
.header.type1-fixed .main-header .menu .full-sub .item .links{display:flex;flex-direction:column;align-items:baseline}
.header.type8 .main-header .menu .full-sub .item .links > a,
.header.type1-fixed .main-header .menu .full-sub .item .links > a{color:#323237;white-space:normal}
.header.type8 .main-header .menu .full-sub .item .links > a:hover,
.header.type1-fixed .main-header .menu .full-sub .item .links > a:hover{color:#24c}
.header.type8 .main-header .menu .full-sub .item .links .full-sub-2,
.header.type1-fixed .main-header .menu .full-sub .item .links .full-sub-2{margin-top:12px}
.header.type8 .main-header .menu .full-sub .item .links .full-sub-2 > a,
.header.type1-fixed .main-header .menu .full-sub .item .links .full-sub-2 > a, .header.type1-fixed .main-header .menu .full-sub .item .links .full-sub-2 > span{display:block;font-size:16px;line-height:24px;font-weight:400;letter-spacing:0;text-decoration:none;color:#4a4a4f;margin-bottom:8px;white-space:normal}
.header.type1-fixed .main-header .menu .full-sub .item .links .full-sub-2 > span{font-weight: 700}
.header.type8 .main-header .menu .full-sub .item .links .full-sub-2 > a:hover,
.header.type1-fixed .main-header .menu .full-sub .item .links .full-sub-2 > a:hover{color:#24c}
.header.type8 .main-header .menu .full-sub .item.no-sub .links,
.header.type1-fixed .main-header .menu .full-sub .item.no-sub .links{justify-content:center}
.header.type8 .main-header .menu .menu-list-0,
.header.type1-fixed .main-header .menu .menu-list-0{margin:0;padding:0;list-style-type:none;display:flex;justify-content:flex-end;padding-right:32px;height:72px}
.header.type8 .main-header .menu .menu-list-0 > li,
.header.type1-fixed .main-header .menu .menu-list-0 > li{margin:0;padding:0}
.header.type8 .main-header .menu .menu-list-0 > li:after,
.header.type1-fixed .main-header .menu .menu-list-0 > li:after{display:none}
.header.type8 .main-header .menu .menu-list-0 a,
.header.type1-fixed .main-header .menu .menu-list-0 a,.header.type1-fixed .main-header .menu .menu-list-0 span{text-decoration:none;white-space:nowrap;color:#323237}
.header.type8 .main-header .menu .menu-list-0 > li,
.header.type1-fixed .main-header .menu .menu-list-0 > li{margin:0 44px 0 0;padding:0;position:relative}
.header.type8 .main-header .menu .menu-list-0 > li:last-child,
.header.type1-fixed .main-header .menu .menu-list-0 > li:last-child{margin-right:0}
.header.type8 .main-header .menu .menu-list-0 > li > a,
.header.type1-fixed .main-header .menu .menu-list-0 > li > a,.header.type1-fixed .main-header .menu .menu-list-0 > li > span{height:72px;display:flex;align-items:center;position:relative}
.header.type1-fixed .main-header .menu .menu-list-0 > li > span {font-weight: 700; color:#24c}
.header.type8 .main-header .menu .menu-list-0 > li > a:after,
.header.type1-fixed .main-header .menu .menu-list-0 > li > a:after{transition:width .2s ease-in-out;width:0%;content:'';display:block;position:absolute;background:#24c;height:2px;left:0;bottom:1px}
.header.type8 .main-header .menu .menu-list-0 > li.active a:after,
.header.type1-fixed .main-header .menu .menu-list-0 > li.active a:after,
.header.type8 .main-header .menu .menu-list-0 > li:hover a:after,
.header.type1-fixed .main-header .menu .menu-list-0 > li:hover a:after{width:100%}
.header.type8 .main-header .menu .menu-list-0 > li.has-sub > a.more,
.header.type1-fixed .main-header .menu .menu-list-0 > li.has-sub > a.more{width:24px;text-align:center}
.header.type8 .main-header .menu .menu-list-0 > li.has-sub > a.more:before,
.header.type1-fixed .main-header .menu .menu-list-0 > li.has-sub > a.more:before{font-family:'remixicon' !important;content:"\ee36";right:0;top:28px}
.header.type8 .main-header .menu .menu-list-0 > li.has-sub.open > .sub,
.header.type1-fixed .main-header .menu .menu-list-0 > li.has-sub.open > .sub{opacity:1;visibility:visible;top:72px;background:#fff}
.header.type8 .main-header .menu .menu-list-0 > li.has-sub.open > .full-sub,
.header.type1-fixed .main-header .menu .menu-list-0 > li.has-sub.open > .full-sub{opacity:1;visibility:visible}
.header.type8 .main-header .menu .menu-list-0 > li.sub-full-width,
.header.type1-fixed .main-header .menu .menu-list-0 > li.sub-full-width{position:initial}
.header.type8 .main-header .menu .menu-list-0 > li.offset-left .menu-list-1 > li > .sub,
.header.type1-fixed .main-header .menu .menu-list-0 > li.offset-left .menu-list-1 > li > .sub{left:-279px;border-right:1px solid #e1e1e6;border-left:none}
.header.type8 .main-header .menu .menu-list-0 > li.offset-right > .sub,
.header.type1-fixed .main-header .menu .menu-list-0 > li.offset-right > .sub{right:0}
.header.type8 .main-header .menu .menu-list-1,
.header.type1-fixed .main-header .menu .menu-list-1,.header.type1-fixed .main-header .menu .menu-list-2{margin:0;padding:0;list-style-type:none;display:block;width:286px;position:relative;z-index:100}
.header.type8 .main-header .menu .menu-list-1 > li,
.header.type1-fixed .main-header .menu .menu-list-1 > li,.header.type1-fixed .main-header .menu .menu-list-2 > li{margin:0;padding:0}
.header.type8 .main-header .menu .menu-list-1 > li:after,
.header.type1-fixed .main-header .menu .menu-list-1 > li:after{display:none}
.header.type8 .main-header .menu .menu-list-1 > li,
.header.type1-fixed .main-header .menu .menu-list-1 > li{position:initial;display:block}
.header.type8 .main-header .menu .menu-list-1 > li > a,
.header.type1-fixed .main-header .menu .menu-list-1 > li > a, .header.type1-fixed .main-header .menu .menu-list-1 > li > span,.header.type1-fixed .main-header .menu .menu-list-2 > li > a, .header.type1-fixed .main-header .menu .menu-list-2 > li > span{font-size:17px;line-height:24px;font-weight:400;letter-spacing:0;text-decoration:none;display:flex;color:#4a4a4f;padding:16px 16px 16px 24px;border-bottom:1px solid #e1e1e6;align-items:center;white-space:normal}
.header.type1-fixed .main-header .menu .menu-list-1 > li > span, .header.type1-fixed .main-header .menu .menu-list-2 > li > span {font-weight: 700; color:#24c}
.header.type8 .main-header .menu .menu-list-1 > li.has-sub > a:after,
.header.type1-fixed .main-header .menu .menu-list-1 > li.has-sub > a:after{content:"\ea5f";font-family:'remixicon';width:24px;text-align:center;color:#e1e1e6;margin-left:auto}
.header.type8 .main-header .menu .menu-list-1 > li.has-sub:hover > a:after,
.header.type1-fixed .main-header .menu .menu-list-1 > li.has-sub:hover > a:after{color:#24c}
.header.type8 .main-header .menu .menu-list-1 > li.has-sub.open > .sub,
.header.type1-fixed .main-header .menu .menu-list-1 > li.has-sub.open > .sub{opacity:1;visibility:visible}
.header.type8 .main-header .menu .menu-list-1 > li > .sub,
.header.type1-fixed .main-header .menu .menu-list-1 > li > .sub{left:280px;top:0;background:#fff;width:280px;border-left:1px solid #e1e1e6;opacity:0;visibility:hidden;transition-property:opacity, visibility;transition-duration:0.1s}
.header.type8 .main-header .menu .menu-list-1 > li:last-child > a,
.header.type1-fixed .main-header .menu .menu-list-1 > li:last-child > a{border-bottom:none}
.header.type8 .main-header .menu .menu-list-1 > li:hover > a,
.header.type1-fixed .main-header .menu .menu-list-1 > li:hover > a, .header.type1-fixed .main-header .menu .menu-list-2 > li:hover > a{background-color:#f5f5f7;color:#24c}
.header.type8 .main-header .icons,
.header.type1-fixed .main-header .icons{margin-left:auto;display:flex;position:relative}
.header.type8 .main-header .icons > *,
.header.type1-fixed .main-header .icons > *{width:72px;height:72px}
.header.type8 .main-header .icons .icon,
.header.type1-fixed .main-header .icons .icon{font-size:22px;width:72px;height:72px;text-align:center;line-height:72px;border-left:1px solid #e1e1e6;position:relative;cursor:pointer}
.header.type8 .main-header .icons .icon.icon-basket,
.header.type1-fixed .main-header .icons .icon.icon-basket{font-size:18px}
.header.type8 .main-header .icons .icon:before,
.header.type1-fixed .main-header .icons .icon:before{color:#24c}
.header.type8 .main-header .icons .icon:hover:before,
.header.type1-fixed .main-header .icons .icon:hover:before{color:#1b35a0}
.header.type8 .main-header .icons .icon.icon-shopping-cart-line.no-empty:after,
.header.type1-fixed .main-header .icons .icon.icon-shopping-cart-line.no-empty:after{content:"";width:8px;height:8px;border-radius:50%;position:absolute;right:22px;top:25px;background-color:#f42}
.header.type8 .main-header .basket-container-items,
.header.type1-fixed .main-header .basket-container-items{display:flex;justify-content:center}
.header.type1-fixed{border-bottom:1px solid #e1e1e6}
.header.type1-fixed .main-header{border-bottom:none}
.header.type1-fixed .main-header .logo{padding-left:10px;border-right:none}
.header.type1-fixed .main-header .menu-btn{width:25px;border-right:none}
.header.type1-fixed .main-header .menu .menu-list-0{padding-right:0}
.header.type1-fixed .main-header .menu .menu-list-0 > li:last-child{margin-right:18px}
.header.type1-fixed .main-header .icons > .icon{width:25px;margin-right:24px}
.header.type1-fixed .main-header .icons > .icon:first-of-type{margin-left:0}
.header.type1-fixed .main-header .icons .icon{border-left:none}
.header.type1-fixed .main-header .icons > *{width:25px}
.header.type1-fixed .main-header .basket-container-items .small-basket{top:72px}
.header.type8 .top-header-wrapper{background-color:#fff;border-bottom:1px solid #e1e1e6}
.header.type8 .top-header{padding:9px 0;border-bottom:none}
.header.type8 .main-header-wrapper{background-color:#fff}
.header.type8 .main-header{border-bottom:none}
.header.type8 .main-header .logo{padding-left:39px;border-right:none}
.header.type8 .main-header .menu-btn{width:25px;border-right:none}
.header.type8 .main-header .icons{margin-left:32px}
.header.type8 .main-header .icons > .icon{width:25px;margin-right:24px}
.header.type8 .main-header .icons > .icon:first-of-type{margin-left:0}
.header.type8 .main-header .icons .icon{border-left:none}
.header.type8 .main-header .icons > *{width:25px}
.header.type8 .main-header .contacts{margin-left:auto;padding:0 30px}
.header.type8 .main-header .contacts .phone{flex-direction:row}
.header.type8 .main-header .contacts .phone .whatsapp{margin-left:6px;top:4px;position:relative;}
.header.type1-fixed .main-header .contacts .phone .whatsapp{margin-left:6px;top:0;position:relative;}
.header.type8 .main-header .contacts .phone .telegram{margin-left:6px;top:4px;position:relative;}
.header.type1-fixed .main-header .contacts .phone .telegram{margin-left:6px;top:0;position:relative;}
.header.type8 .main-header .contacts .phone .max{margin-left:16px;top:4px;position:relative;}
.header.type1-fixed .main-header .contacts .phone .max{margin-left:16px;top:0;position:relative;}
.header.type8 .main-header .contacts .phone .whatsapp svg:hover use,
.header.type1-fixed .main-header .contacts .phone .whatsapp svg:hover use,
.header.type8 .main-header .contacts .phone .telegram svg:hover use,
.header.type1-fixed .main-header .contacts .phone .telegram svg:hover use,
.full-main-menu-popup .menu-contacts .phone a svg:hover use{animation:bounceIn 0.5s;}
.header.type8 .main-header .contacts .phone .max img:hover,
.header.type1-fixed .main-header .contacts .phone .max img:hover,
.full-main-menu-popup .menu-contacts .phone a.max img:hover{animation:bounceIn 0.5s;}
.header.type8 .main-header .contacts .phone .btn-link{padding-left:16px}
.header.type8 .bottom-header-wrapper{background-color:#0E1025}
.header.type8 .bottom-header .menu{overflow:hidden;width:100%}
.header.type8 .bottom-header .menu.calc{overflow:visible}
.header.type8 .bottom-header .menu .sub{position:absolute;z-index:100;opacity:0;visibility:hidden;transition-property:opacity, visibility;transition-duration:0.2s;transition-delay:0.15s;background:#fff;min-height:auto}
.header.type8 .bottom-header .menu .full-sub{width:100%;position:absolute;box-shadow:0px 4px 32px rgba(0, 0, 0, 0.1);padding:40px;box-sizing:border-box;z-index:100;flex-wrap:wrap;align-items:flex-start;left:0;display:flex;opacity:0;visibility:hidden;transition-property:opacity, visibility;transition-duration:0.2s;transition-delay:0.15s;background:#fff}
.menu .full-sub .container{flex-wrap:wrap;align-items:flex-start;display:flex;}
.header.type8 .bottom-header .menu .full-sub .item{box-sizing:border-box;margin-bottom:16px;padding:16px;width:33.3%;display:flex}
.header.type8 .bottom-header .menu .full-sub .item a:hover{color:#24c}
.header.type8 .bottom-header .menu .full-sub .item .img{width:64px;min-width:64px;height:64px;margin-right:24px;flex-shrink:1}
.header.type8 .bottom-header .menu .full-sub .item .img *{background-position:center center;background-size:contain;background-repeat:no-repeat}
.header.type8 .bottom-header .menu .full-sub .item .links{display:flex;flex-direction:column;align-items:baseline}
.header.type8 .bottom-header .menu .full-sub .item .links > a{color:#323237}
.header.type8 .bottom-header .menu .full-sub .item .links > a:hover{color:#24c}
.header.type8 .bottom-header .menu .full-sub .item .links .full-sub-2{margin-top:12px}
.header.type8 .bottom-header .menu .full-sub .item .links .full-sub-2 > a, .header.type8 .bottom-header .menu .full-sub .item .links .full-sub-2 > span{display:block;line-height:24px;font-weight:400;letter-spacing:0;text-decoration:none;color:#4a4a4f;margin-bottom:8px;white-space:normal}
.header.type8 .bottom-header .menu .full-sub .item .links .full-sub-2 > span {font-weight: 700}
.header.type8 .bottom-header .menu .full-sub .item .links .full-sub-2 > a:hover{color:#24c}
.header.type8 .bottom-header .menu .full-sub .item.no-sub .links{justify-content:center}
.header.type8 .bottom-header .menu .menu-list-0{margin:0;padding:0;list-style-type:none;display:flex;height:48px}
.header.type8 .bottom-header .menu .menu-list-0 > li{margin:0;padding:0}
.header.type8 .bottom-header .menu .menu-list-0 > li:after{display:none}
.header.type8 .bottom-header .menu .menu-list-0 a{text-decoration:none;display:block;color:#323237}
.header.type8 .bottom-header .menu .menu-list-0 a.font-element-title-small,.header.type8 .bottom-header .menu .menu-list-0 span.font-element-title-small{font-size:24px;line-height:32px}
.header.type8 .bottom-header .menu .menu-list-0 > li{padding:0;position:relative;border-right:1px solid rgba(255, 255, 255, 0.1);transition:0.2s}
.header.type8 .bottom-header .menu .menu-list-0 > li:last-child{border-right:none}
.header.type8 .bottom-header .menu .menu-list-0 > li > a, .header.type8 .bottom-header .menu .menu-list-0 > li > span{height:48px;display:flex;align-items:center;position:relative;padding:12px 50px;color:#fff;font-size:20px; cursor: pointer; font-weight: 700}
.header.type8 .bottom-header .menu .menu-list-0 > li.has-sub > a.more{width:24px;padding:12px 32px;text-align:center;justify-content:center}
.header.type8 .bottom-header .menu .menu-list-0 > li.has-sub > a.more:before{font-family:'remixicon' !important;content:"\ee36";right:0;top:28px}
.header.type8 .bottom-header .menu .menu-list-0 > li.has-sub.open > .sub{opacity:1;visibility:visible;top:48px;background:#fff}
.header.type8 .bottom-header .menu .menu-list-0 > li.has-sub.open > .full-sub{opacity:1;visibility:visible}
.header.type8 .bottom-header .menu .menu-list-0 > li.has-sub.sub-full-width{position:static}
.header.type8 .bottom-header .menu .menu-list-0 > li.active,
.header.type8 .bottom-header .menu .menu-list-0 > li:hover{background-color:#24c}
.header.type8 .bottom-header .menu .menu-list-0 > li.offset-left .menu-list-1 > li > .sub{left:-279px;border-right:1px solid #e1e1e6;border-left:none}
.header.type8 .bottom-header .menu .menu-list-0 > li.offset-right > .sub{right:0}
.header.type8 .bottom-header .menu .menu-list-1{margin:0;padding:0;list-style-type:none;display:block;width:286px;position:relative;z-index:100;box-shadow:0px 4px 32px rgb(0 0 0/10%);}
.header.type8 .bottom-header .menu .menu-list-1 > li{margin:0;padding:0}
.header.type8 .bottom-header .menu .menu-list-1 > li:after{display:none}
.header.type8 .bottom-header .menu .menu-list-1 > li{display:block;position:initial;}
.header.type8 .bottom-header .menu .menu-list-1 > li > a, .header.type8 .bottom-header .menu .menu-list-1 > li > span{line-height:24px;font-weight:400;letter-spacing:0;text-decoration:none;display:flex;color:#4a4a4f;padding:16px 16px 16px 24px;border-bottom:1px solid #e1e1e6;align-items:center;white-space:normal}
.header.type8 .bottom-header .menu .menu-list-1 > li.has-sub > a:after{content:"\ea5f";font-family:'remixicon';width:24px;text-align:center;color:#e1e1e6;margin-left:auto}
.header.type8 .bottom-header .menu .menu-list-1 > li.has-sub:hover > a:after{color:#24c}
.header.type8 .bottom-header .menu .menu-list-1 > li.has-sub.open > .sub{opacity:1;visibility:visible}
.header.type8 .bottom-header .menu .menu-list-1 > li > .sub{left:280px;top:0;background:#fff;width:280px;border-left:1px solid #e1e1e6;opacity:0;visibility:hidden;transition-property:opacity, visibility;transition-duration:0.2s;transition-delay:0.15s}
.header.type8 .bottom-header .menu .navsol .menu-list-1 > li:nth-last-child(-n+2) > a{border-bottom:none}
.header.type8 .bottom-header .menu .menu-list-1 > li:hover > a{background-color:#f5f5f7;color:#24c}
.header.type8 .bottom-header .menu .menu-list-1 > li.active > span {background-color:#f5f5f7;color:#24c; font-weight: 700}
.header.type8 .main-header .icons .icon.icon-shopping-cart-line.no-empty:after{right:0}
.indentation .header.type8 {margin-bottom: -161px;}
.header.type1-fixed{position:fixed;top:-100px;left:0;right:0;display:block;background-color:#fff;z-index:998;transition:top .3s linear;overflow:hidden;height:0}
.header.type1-fixed.open-header{top:0;height:auto;overflow:visible;box-shadow:9px 9px 9px 0 rgb(47 44 44/15%);}
.header.type1-fixed .main-header .menu{margin-left:auto}
.header.type1-fixed .main-header .icons{margin-left:20px}
.header.type1-fixed .main-header .icons .icon.icon-shopping-cart-line.no-empty:after{right:0}
.header.type8 .main-header .dropdown-links,
.header.type1-fixed .main-header .dropdown-links{top:48px;left:0}
.header-mobile .dropdown-links{top:60px;left:0}
.phone .dropdown-links .item{white-space:nowrap}
.search-header{position:absolute;width:100%;background:#fff;top:-250px;transition:top .4s}
.search-header.open{top:0; z-index: 100}
.search-header .search-line{border-bottom:1px solid #e1e1e6;padding:32px 0}
.search-header .search-line .search-form{display:flex;align-items:center}
.search-header .search-line .search-form .input{width:100%;padding-right:24px;padding-left:34px;position:relative}
.search-header .search-line .search-form .input:before{color:#8f8f9d;font-family:'remixicon';content:"\ef52";display:block;width:26px;height:26px;position:absolute;left:0;top:0;font-size:24px;text-align:center;line-height:26px}
.search-header .search-line .search-form .input input::placeholder,
.search-header .search-line .search-form .input textarea::placeholder{color:#6c6c71}
.search-header .search-line .search-form .input input:-ms-input-placeholder,
.search-header .search-line .search-form .input textarea:-ms-input-placeholder{color:#6c6c71}
.search-header .search-line .search-form .input input::-ms-input-placeholder,
.search-header .search-line .search-form .input textarea::-ms-input-placeholder{color:#6c6c71}
.search-header .search-line .search-form .input input{display:block;width:100%;height:26px;color:#4a4a4f;box-sizing:border-box;border:none;background:none}
.search-header .search-line .search-form input[type="search"]::-webkit-search-cancel-button{-webkit-appearance:none;width:18px;height:18px;background-image:url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='none' d='M0 0h24v24H0z'/%3E%3Cpath d='M12 10.586l4.95-4.95 1.414 1.414-4.95 4.95 4.95 4.95-1.414 1.414-4.95-4.95-4.95 4.95-1.414-1.414 4.95-4.95-4.95-4.95L7.05 5.636z' fill='%238F8F9D'/%3E%3C/svg%3E");background-position:center;background-repeat:no-repeat;background-size:contain}
.search-header .search-line .search-form .buttons{margin-left:auto;flex-shrink:1;display:flex;flex-wrap:nowrap;align-items:center}
.search-header .search-line .search-form .buttons .close{width:26px;height:26px;margin-left:96px;color:#8f8f9d;font-size:26px;cursor:pointer}
.search-header .search-line .search-form .buttons .close:hover{color:#24c}
.search-fast-result .items .item{display:block;border-bottom:1px solid #e1e1e6;color:#323237;text-decoration:none;padding:16px 24px;font-weight:400}
.search-fast-result .items .item:hover{background-color:#f8f8fa;color:#24c}
.search-fast-result .items .item .container{display:flex;align-items:center}
.search-fast-result .items .item img{max-width:64px;max-height:64px;margin-right:24px}
.parallax {background-attachment: fixed !important;background-position: top center  !important;background-repeat: no-repeat  !important;}
.black{background-color: #000  !important;}
.black_text{color: #000  !important;}
.footer{background:#f5f5f7; font-size:17px}
.footer.dark{background-color:#191928;color:#fff}
.footer.dark .logo svg.white,
.footer.dark .logo img.white{display:block}
.footer.dark .logo svg.black,
.footer.dark .logo img.black{display:none}
.footer.dark .footer-top{border-bottom-color:#353545;border-top-color:#353545}
.footer.dark .footer-top .center-col{border-left-color:#353545;border-right-color:#353545}
.footer.dark .footer-content{border-bottom-color:#353545}
.footer.dark .socials .icon{color:#fff}
.footer.dark .socials .icon.icon-ok{filter:invert(0)}
.footer.dark .btn-outline-primary{padding:12px 22px;color:#fff}
.footer.dark .footer-menu li a{color:#6c6c71}
.footer.dark .footer-menu li a:hover{color:#e1e1e6}
.footer.dark .footer-menu li a.font-element-title-small{color:#fff}
.footer.dark .footer-menu li a.font-element-title-small:hover{color:#8f8f9d}
.footer.dark .contact-row{color:#fff}
.footer.dark .contact-row a{color:#fff}
.footer.dark .contact-row a:hover{color:#8f8f9d}
.footer.dark .phone .current{color:#fff}
.footer.dark .phone .current .icon-arrow-drop-down-fill:before{color:#fff}
.footer.dark .footer-bottom a:hover{color:#e1e1e6}
.footer .logo{padding-right:32px}
.footer .logo img,
.footer .logo svg{max-width:150px;width:100%}
.footer .logo img .ico,
.footer .logo svg .ico{fill:#24c}
.footer .logo img.white,
.footer .logo svg.white{display:none}
.footer .socials{display:flex}
.footer .socials .icon{color:#353545;width:40px;height:40px;line-height:40px;text-align:center;font-size:18px}
.footer .socials .icon.icon-ok,
.footer .socials .icon.icon-whatsapp,
.footer .socials .icon.icon-max,
.footer .socials .icon.icon-telegram{filter:invert(.8)}
.footer .footer-top{border-top:1px solid #e1e1e6;border-bottom:1px solid #e1e1e6}
.footer .footer-top .column{padding-top:24px;padding-bottom:24px;display:flex;align-items:center}
.footer .footer-top .center-col{border-left:1px solid #e1e1e6;border-right:1px solid #e1e1e6}
.footer .footer-top .center-col .socials{margin-left:auto;margin-right:24px}
.footer .footer-top .subscribe{padding-left:32px}
.footer .footer-content{padding:40px 0;border-bottom:1px solid #e1e1e6;position:relative;}
.footer .footer-menu{margin:0;padding:0;list-style-type:none;margin-bottom:24px}
.footer .footer-menu > li{margin:0;padding:0}
.footer .footer-menu > li:after{display:none}
.footer .footer-menu li{margin-bottom:8px}
.footer .footer-menu li:first-child{margin-bottom:12px}
.footer .footer-menu li a{color:#4a4a4f;text-decoration:none}
.footer .footer-menu li span{font-weight: 700}
.footer .footer-menu li a:hover{color:#24c}
.footer .footer-menu li a.font-element-title-small{color:#191928}
.footer .footer-menu li a.font-element-title-small:hover{color:#24c}
.footer .contact-column{min-width:335px;position:relative}
.footer .contact-column .footer-menu{margin-bottom:32px}
.footer .contact-column .footer-menu li{margin-bottom:8px}
.footer .phone{margin-bottom:16px}
.footer .phone .current{display:flex;align-items:center;font-size:18px;line-height:26px;letter-spacing:0;color:#353545}
.footer .phone .current:hover{text-decoration:none}
.footer .phone .current .icon-phone-fill{color:#24c;width:24px;height:24px;margin-right:4px;font-size:20px;line-height:24px;font-weight:normal}
.footer .phone .current .icon-arrow-drop-down-fill{font-weight:normal;margin-left:2px;font-size:24px}
.footer .phone .current.open .icon-arrow-drop-down-fill{transform:rotate(180deg)}
.footer .contact-row{line-height:24px;font-weight:400;letter-spacing:0;text-decoration:none;color:#6c6c71;margin-bottom:16px;display:flex;align-items:center}
.footer .contact-row:last-of-type{margin-bottom:0}
.footer .contact-row a{color:#6c6c71;text-decoration:none}
.footer .contact-row a:hover{color:#24c}
.footer .contact-row .icon{width:24px;height:24px;font-size:20px;line-height:24px;text-align:center;margin-right:4px;color:#24c}
.footer .contact-row .icon:before{color:#24c}
.footer .footer-bottom{padding:16px 0;font-size:14px;line-height:22px;font-weight:400;letter-spacing:0;color:#4a4a4f}
.footer .footer-bottom a:not(.icon){color:#6c6c71;text-decoration:none}
.footer .footer-bottom a:not(.icon):hover{color:#24c}
.header-title{background:#f8f8fa;padding:22px 0}
.transparent {background: transparent !important}
.projects-page .header-title{margin-bottom:0;background:#fff}
.header-title.type-4{background-image:url(/img/promo-bg.jpg);background-size:cover;position:relative;height:620px;border-bottom:1px solid #e1e1e6;}
.header-title.type-3{background-image:url(/img/seoheader.png);background-size:cover;position:relative;height:620px;border-bottom:1px solid #e1e1e6;color:#e1e1e6}
.header-title.type-2{background-image:url(/img/bg.jpg);background-size:cover;position:relative;height:420px;border-bottom:1px solid #e1e1e6;color:#19191e}
.header-title.type-2 .img{position:absolute;right:0;bottom:0;}
.header-title.type-2 .inner{position:absolute;bottom:0;}
.header-title.type-2 .img img{position:static;max-width:100%;max-height:100%;}
.rocket{position:absolute;opacity:1;transform-origin:50% 50% 0px;transform:matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);bottom:-1px;right:0;z-index:1;}
.mainscreen{
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.mainscreen__body {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

@media (max-width: 767px) {
  .mainscreen__body {
    flex-direction: column;
  }
  
}
.mainscreen__info {
  max-width: 100%;
}
@media (max-width: 767px) {
  .mainscreen__info {
    max-width: none;
    text-align: center;
  }
}
.mainscreen__image {
  max-width: 600px;
  width: 100%;
  margin-left: auto;
}

.mainscreen__image img{
max-width: 100%;
}

@media (max-width: 767px) {
  .mainscreen__image{
    margin-left: 0;
          
  }
}
.pb-14 {padding-bottom: clamp(var(--g14-mobile), 10vw, var(--g14-desktop));}

.maxw1100{max-width:1100px;}
.right60{right:60px}
.header-title.type-3 .d-header{padding-top:30px}
.header-title.type-2 .d-header{padding-top:42px}
.d-header .e-text{font-size: 24px;line-height: 32px;padding-bottom:20px}
.layout{overflow:hidden;}
.col1{width:76px;float:left;}
.layout div div{overflow:auto;}
.list-numbered{list-style:none;margin-left:30px;counter-reset:line;}
.list-numbered > li{position:relative;margin-bottom:1.5em;}
.list-numbered > li:before{position:absolute;left:-2.25em;display:inline-block;width:38px;height:38px;background-color:#24c;-webkit-border-radius:23px;-moz-border-radius:23px;border-radius:23px;font-size:22px;color:#fff;text-align:center;line-height:1.25em;counter-increment:line;content:counter(line);font-weight:300 !important;line-height:38px;}
.list-numbered li > strong, ul li > strong, .list-numbered li > p{font-size:22px; line-height: 26px}


.list2{display: flex;flex-wrap: wrap}
.list2 li{display: flex;width: 45%}
.list2 li:nth-child(even) {margin-left: 10%}
.pbf-background{width:100%;height:100%;background-repeat:no-repeat;background-position:right;}
.pbf-background-wrap{position:absolute;top:250px;right:0px;bottom:0px;left:0px;overflow:hidden;z-index:-1;}
.reason{padding-top:10px;padding-bottom:0px;position:relative;display:table;}
.reason .title{margin-bottom:40px;position:relative;}
.reason .title p{font-weight:600;text-transform:uppercase;font-size:68px;margin-bottom:0;}
.reason .title p span{font-size:200px;color:#ED1F24;position:relative;top:96px;}
.reason .title .small{padding-left:132px;font-weight:400;text-transform:none;font-size:40px;position:relative;top:22px;line-height:46px}
.reason .col-lg-6 div{position:relative;display:table-cell;}
.reason .slides-number{font-size:104px;color:rgba(137, 137, 137, 0.3);position:relative;float:left;line-height:1;top:0px;left:0px;padding-right:20px;}
.break{flex-basis:100%;height:0;}
.header-title.type-3 .breadcrumbs{color:#e1e1e6}
.header-title.type-3 .breadcrumbs a,
.header-title.type-3 .breadcrumbs span{color:#e1e1e6}
.header-title.type-3 .breadcrumbs a:after{color:#fff}
.header-title .breadcrumbs a:after{content:"\2014";margin:0;padding:0 11px;vertical-align:middle;color:#000;display:inline-block;position:static;background:0 0;width:auto;height:auto;margin-top:-3px;}
.header-title.type-3 .breadcrumbs a:hover,
.header-title.type-3 .breadcrumbs span:hover{color:#fff}
.header-title.type-3 h1,
.header-title.type-3 h2{color:#fff}
.header-title .breadcrumbs{color:#6c6c71;font-size:16px;line-height:22px;font-weight:400;letter-spacing:0;margin-bottom:16px}
.header-title .breadcrumbs a ~ span{display:inline-block;color:#24c;margin:0 8px}
.header-title .breadcrumbs a{color:#4a4a4f;text-decoration:none}
.header-title .breadcrumbs.white a, .header-title .breadcrumbs.white, .header-title .breadcrumbs.white a:after{color:#fff;}
.header-title .breadcrumbs a:hover{color:#24c}
.header-title.custom{position:relative;padding-top:160px;padding-bottom:160px;text-align:center}
.header-title.custom.white,.header-title.white{color:#fff}
.header-title.custom .background{background-position:center center;background-size:cover;position:absolute;width:100%;height:100%;left:0;top:0;overflow:hidden}
.header-title.custom .background video{top:0;left:0;width:100%;height:100%;object-fit:cover;position:absolute;min-width:100%;min-height:100%}
.header-title.custom > .container{position:relative;z-index:1}
.header-title.custom .description{max-width:80%;margin:24px auto 0 auto}
.full-main-menu-popup{position:fixed !important;width:100% !important;height:100% !important;left:0 !important;top:0 !important;margin:0 !important}
.full-main-menu-popup .full-main-menu-container{position:absolute;width:100%;height:100%;left:0;top:0;padding:80px 0;background:#fff}
#full-screen-menu li.has-sub.open > .menu-delimiter{display:block}
.full-main-menu-popup .full-main-menu-container > .close{display:flex;position:absolute;align-items:center;right:40px;top:40px;color:#8f8f9d;z-index:10}
.full-main-menu-popup .full-main-menu-container > .close:hover{text-decoration:none;opacity:0.8}
.full-main-menu-popup .full-main-menu-container > .close .icon{margin-left:16px;font-size:24px}
.full-main-menu-popup .full-main-menu-container > .close .icon:before{color:#8f8f9d}
.full-main-menu-popup .inner{position:relative;box-sizing:border-box;height:100%}
.full-main-menu-popup .inner .logo{width:320px}
.full-main-menu-popup .inner .logo svg,
.full-main-menu-popup .inner .logo img{max-width:150px;max-height:60px}
.full-main-menu-popup .inner .logo svg .ico,
.full-main-menu-popup .inner .logo img .ico{fill:#24c}
.full-main-menu-popup .inner .logo svg.white,
.full-main-menu-popup .inner .logo img.white{display:none}
.full-main-menu-popup .inner .logo svg.black,
.full-main-menu-popup .inner .logo img.black{display:block}
.full-main-menu-popup .inner .search-line{position:relative;padding-right:72px}
.full-main-menu-popup .inner .search-line .container{padding:0}
.full-main-menu-popup .inner .search-line .search-form{display:flex;align-items:center;border:1px solid #e1e1e6;background:#f8f8fa;border-radius:4px;padding:9px 12px}
.full-main-menu-popup .inner .search-line .search-form input::placeholder,
.full-main-menu-popup .inner .search-line .search-form textarea::placeholder{font-size:14px;line-height:22px;font-weight:400;letter-spacing:0;color:#6c6c71}
.full-main-menu-popup .inner .search-line .search-form input:-ms-input-placeholder,
.full-main-menu-popup .inner .search-line .search-form textarea:-ms-input-placeholder{font-size:14px;line-height:22px;font-weight:400;letter-spacing:0;color:#6c6c71}
.full-main-menu-popup .inner .search-line .search-form input::-ms-input-placeholder,
.full-main-menu-popup .inner .search-line .search-form textarea::-ms-input-placeholder{font-size:14px;line-height:22px;font-weight:400;letter-spacing:0;color:#6c6c71}
.full-main-menu-popup .inner .search-line .search-form input{width:100%;border:none;background:none;margin-right:16px;height:100%;min-height:20px}
.full-main-menu-popup .inner .search-line .search-form input[type="search"]::-webkit-search-cancel-button{-webkit-appearance:none;width:18px;height:18px;background-image:url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='24' height='24'%3E%3Cpath fill='none' d='M0 0h24v24H0z'/%3E%3Cpath d='M12 10.586l4.95-4.95 1.414 1.414-4.95 4.95 4.95 4.95-1.414 1.414-4.95-4.95-4.95 4.95-1.414-1.414 4.95-4.95-4.95-4.95L7.05 5.636z' fill='%238F8F9D'/%3E%3C/svg%3E");background-position:center;background-repeat:no-repeat;background-size:contain}
.full-main-menu-popup .inner .search-line .search-form .input{width:100%}
.full-main-menu-popup .inner .search-line .search-form .buttons{flex-shrink:1;display:flex;align-items:center}
.full-main-menu-popup .inner .search-line .search-form .buttons .close{display:none}
.full-main-menu-popup .inner .search-line .search-form .buttons button{background:none;border:none;width:22px;height:22px;text-align:center;line-height:22px;font-size:22px;padding:0;margin:0;overflow:hidden}
.full-main-menu-popup .inner .search-line .search-form .buttons button:before{display:block;color:#8f8f9d;content:"\ef52";width:22px;height:22px;font-family:'remixicon'}
.full-main-menu-popup .inner .search-fast-result{position:absolute;width:calc(100% - 88px);background:#fff;z-index:10;box-shadow:0px 4px 32px rgba(0, 0, 0, 0.1)}
.full-main-menu-popup .inner .main-menu-content{margin-top:35px}
.full-main-menu-popup .inner .menu-contacts .phone{font-size:18px;line-height:26px;font-weight:700;letter-spacing:0;margin-bottom:16px}
.full-main-menu-popup .inner .menu-contacts .phone .current{color:#323237;text-decoration:none;display:inline-flex;align-items:center}
.full-main-menu-popup .menu-contacts .phone a{display:inline-flex;}
.full-main-menu-popup .menu-contacts .phone .btn-secondary{margin-top:12px}
.full-main-menu-popup .inner .menu-contacts .phone .current .icon-phone-fill{color:#24c;font-size:18px;margin-right:4px;transform:rotate(45deg);-ms-transform:rotate(45deg);-moz-transform:rotate(45deg);-webkit-transform:rotate(45deg);-o-transform:rotate(45deg);}
.full-main-menu-popup .inner .menu-contacts .phone .current .icon-triangle-down{font-size:24px}
.full-main-menu-popup .inner .menu-contacts .phone .btn-link{display:none}
.full-main-menu-popup .inner .menu-contacts .contact-row{display:flex;align-items:center;margin-bottom:16px}
.full-main-menu-popup .inner .menu-contacts .contact-row a{color:#323237}
.full-main-menu-popup .inner .menu-contacts .contact-row a:hover{color:#24c;text-decoration:none}
.full-main-menu-popup .inner .menu-contacts .contact-row .icon{font-size:24px;margin-right:4px}
.full-main-menu-popup .inner .menu-contacts .contact-row .icon:before{color:#24c}
.full-main-menu-popup .inner .menu-contacts .socials-icons{margin-top:40px}
.full-main-menu-popup .type1 .full-screen-menu-0{margin: 0;padding: 0;list-style-type: none;position: relative;display: flex;flex-wrap: wrap}
.full-main-menu-popup .type1 .full-screen-menu-0 > li{margin:0;padding:0}
.full-main-menu-popup .type1 .full-screen-menu-0 > li:after{display:none}
.full-main-menu-popup .type1 .full-screen-menu-0 > li{display: block;box-sizing: border-box;width: 30%;margin-right: 24px; margin-bottom: 24px}
.full-main-menu-popup .type1 .full-screen-menu-0 > li > a{font-size:24px;line-height:18px;font-weight:700;letter-spacing:0;padding:8px 0;display:block;text-decoration:none;color:#323237}
.full-main-menu-popup .type1 .full-screen-menu-0 > li:hover > a,
.full-main-menu-popup .type1 .full-screen-menu-0 > li.open > a,
.full-main-menu-popup .type1 .full-screen-menu-0 > li:hover > a:hover,
.full-main-menu-popup .type1 .full-screen-menu-0 > li.open > a:hover{color:#24c}
.full-main-menu-popup .type1 .full-screen-menu-1,
.full-main-menu-popup .type1 .full-screen-menu-2{margin:0;padding:0;list-style-type:none}
.full-main-menu-popup .type1 .full-screen-menu-1 > li,
.full-main-menu-popup .type1 .full-screen-menu-2 > li{margin:0;padding:0}
.full-main-menu-popup .type1 .full-screen-menu-1 > li:after,
.full-main-menu-popup .type1 .full-screen-menu-2 > li:after{display:none}
.full-main-menu-popup .type1 .full-screen-menu-1 > li,
.full-main-menu-popup .type1 .full-screen-menu-2 > li{position:initial;box-sizing:border-box;width:320px;padding-right:32px;display:block;align-items:center}
.full-main-menu-popup .type1 .full-screen-menu-1 > li > a,
.full-main-menu-popup .type1 .full-screen-menu-2 > li > a{display:block;padding:2px 0;color:#323237;font-size:18px;line-height:26px;letter-spacing:0}
.full-main-menu-popup .type1 .full-screen-menu-1 > li:hover > a,
.full-main-menu-popup .type1 .full-screen-menu-2 > li:hover > a,
.full-main-menu-popup .type1 .full-screen-menu-1 > li.open > a,
.full-main-menu-popup .type1 .full-screen-menu-2 > li.open > a,
.full-main-menu-popup .type1 .full-screen-menu-1 > li:hover > a:hover,
.full-main-menu-popup .type1 .full-screen-menu-2 > li:hover > a:hover,
.full-main-menu-popup .type1 .full-screen-menu-1 > li.open > a:hover,
.full-main-menu-popup .type1 .full-screen-menu-2 > li.open > a:hover{text-decoration:none;color:#24c}
.full-main-menu-popup .type1 .full-screen-menu-2 > li > a{font-family:'Arian';line-height:24px;font-weight:400;letter-spacing:0;color:#4a4a4f}
.locations-list-popup{background:#fff;position:absolute;margin-top:-10px;box-sizing:border-box;width:100%;max-width:670px;padding:32px 40px;box-shadow:0px 4px 32px rgba(0, 0, 0, 0.1);z-index:50;display:none}
.locations-list-popup.open{display:block}
.locations-list-popup .title{display:flex;align-items:center}
.locations-list-popup .title .count{font-size:14px;line-height:22px;font-weight:400;letter-spacing:0;color:#6c6c71;margin-left:24px}
.locations-list-popup .title .close{margin-left:auto;color:#8f8f9d}
.locations-list-popup .search{border:1px solid #e1e1e6;background:#f8f8fa;padding:11px 12px;border-radius:4px;display:flex;align-items:center;margin-top:34px}
.locations-list-popup .search input{font-size:14px;line-height:22px;font-weight:400;letter-spacing:0;color:#4a4a4f;background:none;border:none;height:auto;width:100%}
.locations-list-popup .search input::placeholder{color:#6c6c71}
.locations-list-popup .search input:-ms-input-placeholder{color:#6c6c71}
.locations-list-popup .search input::-ms-input-placeholder{color:#6c6c71}
.locations-list-popup .search button{flex-shrink:1;width:24px;height:24px;text-align:center;line-height:24px;border:none;background:none;font-size:22px;padding:0;margin:0 0 0 10px;outline:none}
.locations-list-popup .search button:before{color:#8f8f9d}
.locations-list-popup .search button:hover:before{color:#191928}
.locations-list-popup .items-container{margin-top:24px;position:relative;min-height:100px}
.locations-list-popup .items-container .search-result{display:none;position:absolute;width:100%;height:100%;background:#fff}
.locations-list-popup .items-container .search-result .items{flex-direction:column}
.locations-list-popup .items-container .search-result.open{display:block}
.locations-list-popup .items-container .search-result .item{display:block}
.locations-list-popup .items-container .items{display:flex;flex-wrap:wrap}
.locations-list-popup .items-container .items .item{font-size:14px;line-height:22px;font-weight:400;letter-spacing:0;width:33.3333%;box-sizing:border-box;color:#4a4a4f;text-decoration:none;margin-bottom:8px}
.locations-list-popup .items-container .items .item:hover{color:#24c}
.support-sites {margin-top: 20px;margin-bottom: 20px;}
.support-sites .item-wrap{margin-bottom: 20px;}
.support-sites svg{margin-bottom: 20px;}
.support-sites.item-1 .items .item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 34px 20px;
    background-color: #fff;
    box-shadow: 3px 2px 12px rgb(0 0 0 / 10%);
    border-radius: 8px;
    text-align: center;}
.support-sites.item-1 .items .item .num {
    margin-right: 0.8rem;
    background: #353545;
    border-radius: 50%;
    color: white;
    width: 3rem;
    height: 3rem;
    padding-top: 0.8rem;
    text-align: center;
    display: inline-block;
    box-sizing: border-box;
    font-size: 20px;
    margin-bottom: 20px}
.height-fill{height: 100%;}
.header_banner_wrap{max-width:100%;margin:0 auto;overflow:hidden;}
.block-title {
    justify-content: center;
    text-align: left !important;
    margin: auto 0;
    position: relative;
    padding-left: 60px
}
.height-fill .col-flex-rw {
    background-size: 0;
    display: flex;
    place-items: flex-end;
}
.separator{position:relative;height:15px;width:100px;margin-bottom:20px !important;text-align:center;display:block}
span.separator{margin-top:12px}
.separator:before{position:absolute;content:'';left:0px;top:6px;width:20px;height:1px;background-color:#E63A26;}
.separator:after{position:absolute;content:'';right:0px;top:6px;width:20px;height:1px;background-color:#E63A26;}
.separator.white:before{background-color:#fff;}
.separator.black:before{background-color:#19191e;}
.separator.center{margin:0 auto;}
.separator1{position:relative;height:2px;width:200px;margin-bottom:20px !important;text-align:center;background-color:#E63A26;}
.separator1.center{margin:0 auto;}
.footer .separator:after{display:none}
.footer .separator{margin-bottom:12px !important;}
.separator.white:after{background-color:#fff;}
.separator.black:after{background-color:#19191e;}
.separator .dott{position:relative;width:6px;height:6px;top:-9px;border-radius:50%;display:inline-block;background-color:#E63A26;}
.separator.white .dott{background-color:#fff;}
.separator.black .dott{background-color:#19191e;}
.catalog .item-card .item-text p>img, .catalog .item-card .item-text div>img, .catalog .item-card .item-text b>img{max-width:800px;width:100%;height:auto;}
.jqmOverlay{background-color:rgba(0, 0, 0, 0.5);-webkit-transition-duration:.3s;-o-transition-duration:.3s;transition-duration:.3s;-webkit-transition-property:opacity;-o-transition-property:opacity;transition-property:opacity;}
.popup-loading{position:fixed;top:0;left:0;display:flex;justify-content:center;align-items:center;width:100%;height:100%;z-index:-1}
.popup-loading svg{width:80px;height:80px;animation:rotate 2s infinite linear}
.popup-loading svg circle{stroke:#fff}
.popup{position:absolute;z-index:99999;left:0;width:100%;margin-left:0 !important;animation:fadeIn .5s;}
.popup > div > div{margin:auto}
.popup .popup-content{position:relative;width:100%;max-width:480px;min-width:320px;background:#fff;box-sizing:border-box;padding:32px 40px;box-shadow:0px 4px 32px rgba(0, 0, 0, 0.7);margin-left:auto;margin-right:auto}
.popup .popup-content.w-480{min-width:480px}
.popup .popup-content.w-600{min-width:600px}
.popup .popup-content.no-padding{padding:0}
.popup .popup-content .popup-title{display:flex;align-items:center;margin-bottom:32px}
.popup .popup-content .popup-title .close{position:absolute;top:16px;right:16px;margin-left:auto;width:24px;height:24px;color:#8f8f9d;font-size:24px}
.popup .popup-content .popup-title .close:hover{color:#24c}
.popup .popup-content .popup-success{padding:64px 0;text-align:center}
.popup .popup-content .popup-success .title{color:#19191e;margin-bottom:8px}
.popup .popup-content .popup-success .text{color:#4a4a4f;margin-bottom:40px}
.popup .popup-footer{margin-top:24px}
.consultation-tizer,
.wrapper-section.white{background:#fff;}
#wmap{position:relative;}
#wmap .title{color:#E63A26;font-size:50px;line-height:148px;padding-left:72px;font-weight:700;}
#wmap .map-point{background:url(/img/placeholder.svg) 0 0 no-repeat;color:#000;font-size:14px;height:25px;line-height:25px;padding-left:26px;position:absolute;z-index:100}
#wmap .map-point-right{background:none;color:#000;font-size:14px;height:25px;line-height:16px;padding-right:30px;position:absolute;z-index:100}
#wmap .map-point.big{background:url(/img/placeholder.svg) 0 0 no-repeat;width:50px;height:46px;line-height:40px;padding-left:45px;}
#wmap a{color:#000}
#wmap a:hover{color:#E63A26;font-weight:700;font-size:15px}
#wmap .map-point.point00{left:2%;top:58%;}
#wmap .map-point.point001{left:-0.5%;top:56%;}
#wmap .map-point.point002{left:0%;top:60%;}
#wmap .map-point.point003{left:1%;top:62.5%;}
#wmap .map-point.point01{left:2%;top:65%;}
#wmap .map-point.point02{left:4%;top:53%;}
#wmap .map-point.point03{left:11%;top:51.5%;}
#wmap .map-point.point04{left:8.6%;top:59%;}
#wmap .map-point.point06{left:9%;top:42%;}
#wmap .map-point.point07{left:13.7%;top:25.5%;}
#wmap .map-point.point08{left:15.7%;top:42%;}
#wmap .map-point.point09{left:20%;top:52%;}
#wmap .map-point.point10{left:18%;top:49%;}
#wmap .map-point.point11{left:18.6%;top:63%;}
#wmap .map-point.point12{left:20.9%;top:56%;}
#wmap .map-point.point13{left:22.7%;top:30.8%;}
#wmap .map-point.point14{left:23.1%;top:47.2%;}
#wmap .map-point.point15{left:25.5%;top:51.5%;}
#wmap .map-point.point16{left:25.4%;top:62%;}
#wmap .map-point.point17{left:34.4%;top:68.7%;}
#wmap .map-point.point18{left:39%;top:70.9%;}
#wmap .map-point.point19{left:45%;top:72.8%;}
#wmap .map-point.point20{left:44.8%;top:65%;}
#wmap .map-point.point21{left:49.7%;top:68%;}
#wmap .map-point.point22{left:56.8%;top:81.2%;}
#wmap .map-point.point23{left:64.8%;top:79%;}
#wmap .map-point.point24{left:87.6%;top:43.3%;}
#wmap .map-point.point25{left:84.7%;top:75%;}
#wmap .map-point.point26{left:86%;top:87.2%;}
#wmap .map-point.point27{left:84.4%;top:48.5%;}
@-webkit-keyframes mapPoint{0%{opacity:0;-webkit-transform:scale(2) translateX(-20px);}
100%{opacity:1;-webkit-transform:scale(1) translateX(0);}
}
@keyframes mapPoint{0%{opacity:0;transform:scale(2) translateX(-20px);}
100%{opacity:1;transform:scale(1) translateX(0);}
}
.animated.map .map-point{-webkit-animation-name:mapPoint;animation-name:mapPoint;}
.animated.map .map-point{-webkit-animation-duration:0.5s;animation-duration:0.5s;}
.animated.map .map-point{-webkit-animation-fill-mode:both;animation-fill-mode:both;}
.animated.map .map-point.point01{-webkit-animation-delay:0.1s;animation-delay:0.1s;}
.animated.map .map-point.point02{-webkit-animation-delay:0.2s;animation-delay:0.2s;}
.animated.map .map-point.point03{-webkit-animation-delay:0.3s;animation-delay:0.3s;}
.animated.map .map-point.point04{-webkit-animation-delay:0.4s;animation-delay:0.4s;}
.animated.map .map-point.point05{-webkit-animation-delay:0.5s;animation-delay:0.5s;}
.animated.map .map-point.point06{-webkit-animation-delay:0.6s;animation-delay:0.6s;}
.animated.map .map-point.point07{-webkit-animation-delay:0.7s;animation-delay:0.7s;}
.animated.map .map-point.point08{-webkit-animation-delay:0.8s;animation-delay:0.8s;}
.animated.map .map-point.point09{-webkit-animation-delay:0.9s;animation-delay:0.9s;}
.animated.map .map-point.point10{-webkit-animation-delay:1s;animation-delay:1s;}
.animated.map .map-point.point11{-webkit-animation-delay:1.1s;animation-delay:1.1s;}
.animated.map .map-point.point12{-webkit-animation-delay:1.2s;animation-delay:1.2s;}
.animated.map .map-point.point13{-webkit-animation-delay:1.3s;animation-delay:1.3s;}
.animated.map .map-point.point14{-webkit-animation-delay:1.4s;animation-delay:1.4s;}
.animated.map .map-point.point15{-webkit-animation-delay:1.5s;animation-delay:1.5s;}
.animated.map .map-point.point16{-webkit-animation-delay:1.6s;animation-delay:1.6s;}
.animated.map .map-point.point17{-webkit-animation-delay:1.7s;animation-delay:1.7s;}
.animated.map .map-point.point18{-webkit-animation-delay:1.8s;animation-delay:1.8s;}
.animated.map .map-point.point19{-webkit-animation-delay:1.9s;animation-delay:1.9s;}
.animated.map .map-point.point20{-webkit-animation-delay:2s;animation-delay:2s;}
.animated.map .map-point.point21{-webkit-animation-delay:2.1s;animation-delay:2.1s;}
.animated.map .map-point.point22{-webkit-animation-delay:2.2s;animation-delay:2.2s;}
.animated.map .map-point.point23{-webkit-animation-delay:2.3s;animation-delay:2.3s;}
.animated.map .map-point.point24{-webkit-animation-delay:2.4s;animation-delay:2.4s;}
.animated.map .map-point.point25{-webkit-animation-delay:2.5s;animation-delay:2.5s;}
.animated.map .map-point.point26{-webkit-animation-delay:2.6s;animation-delay:2.6s;}
.animated.map .map-point.point27{-webkit-animation-delay:2.7s;animation-delay:2.7s;}
.search .info{margin-right:12px}
.solution-page-banner{height:auto;padding:190px 0 244px;color:#fff;display:flex;align-items:center;margin-bottom:-80px;background-repeat:no-repeat;background-size:cover;background-position: center;}
.solution-page-banner .title{margin-bottom:24px;font-weight:900;font-size:48px;line-height:64px;text-align:center}
.solution-page-banner .title.black {color:#333}
.solution-page-banner .sub-title{text-align:center}
.solution-page-banner .text{text-align:center}
.solution-page-banner .text.black {color:#333}
.solution-card{padding:40px 34px;border:1px solid #e1e1e6;height:100%;display:flex;flex-direction:column}
.solution-card.hit{border:3px solid #2a3}
.solution-card .row{display:block}
.solution-card .labels{top:16px;left:24px;position:absolute}
.solution-card > .row + .row{border-top:1px solid #e1e1e6;padding:16px 0}
.solution-card > .row:last-of-type{padding-top:40px;height:100%}
.solution-card > .row:last-of-type > .col{margin-top:auto}
.solution-card .img{width:44px;height:44px;margin:0 auto 18px auto}
.solution-card .card-title{margin-bottom:24px;text-align:center;min-height:100px}
.solution-card .title{margin:0 0 8px 0}
.solution-card .total{margin-bottom:16px;text-align:center}
.solution-card .total .price{margin-bottom:16px}
.solution-card .total .saving-price + .price{margin-top:16px;color:#2a3;text-align:center}
.solution-card .buttons{max-width:256px;margin:auto}
.solution-card .list-item{display:flex;justify-content:space-between;background-image:url('/img/background-line.svg');background-repeat:repeat-x;background-position:0px 11px;color:#4a4a4f;position:relative;margin-left:20px}
.solution-card .list-item:not(:last-of-type){margin-bottom:12px}
.solution-card .list-item:before{content:'';display:block;width:4px;height:4px;background-color:#4a4a4f;border-radius:100%;position:absolute;left:-14px;top:calc(0.5em + 2px)}
.solution-card .list-item .text{padding-right:8px;background-color:#fff}
.solution-card .list-item .value{padding-left:8px;background-color:#fff;white-space:nowrap}
.solution-card .list-item .old-price{color:#2a3}
.solution-page .item-card .card-wrapper{margin-bottom:24px}
.solution-page .item-card .card-wrapper .item-information .price-container{display:flex;align-items:center;margin-bottom:0}
.solution-page .catalog{margin-bottom:120px}
.solution-page .item-type{color:#6c6c71}
.solution-page .gifts{border:none;margin-bottom:24px}
.solution-page .gifts:hover{cursor:unset;box-shadow:none}
.solution-page .gifts .accordeon-body{border:none;box-shadow:none;padding:50px 0 0 0}
.accordeon-body .row{--bs-gutter-x:0}
.solution-page .gifts .accordeon-header{color:#fff}
.solution-page .gifts .accordeon-header:hover{cursor:pointer}
.solution-page .gifts .accordeon-header .title{margin-bottom:12px}
.solution-page .gifts .accordeon-header .icon-2{background-color:#fff;color:#191928}
.solution-page .gifts .accordeon-header .icon-2:hover{color:#191928}
.solution-page .catalog{background-color:#fff}
.solution-page .catalog .item-type{margin-bottom:16px}
.solution-page .item-card .item-text .wrap .image{width:100%;margin-bottom:16px;}
.solution-page .item-card .item-text .wrap .image img{width:100%}
.solution-page .rate-information-list{min-height:78px}
.solution-page .catalog .item-information > .row{border-top:1px solid #e1e1e6;padding-top:24px}
.solution-page .catalog .item-information > .row .title{margin-bottom:12px;color:#19191e}
.solution-page .catalog .item-information > .row:not(:first-of-type){margin-top:24px}
.solution-page .catalog .item-information > .row:first-of-type{border:none;padding-top:0}
.solution-page .catalog .item-information > .row:first-of-type + .row{margin-top:18px}
.solution-page .catalog .item-information .footer-button ~ .row{border:none;margin-top:0}
.solution-page .catalog .item-information .sum-block{margin-top:24px}
.solution-page .catalog .item-information .sum-block .title{margin-bottom:4px;color:#6c6c71}
.solution-page .catalog .item-information .sum-block .sum{margin-right:8px}
.solution-page .catalog .item-information .btn-instalments{color:#4a4a4f;width:100%;justify-content:center}
.solution-page .catalog .item-information .btn-instalments .icon{margin-right:8px;margin-left:12px;font-size:18px}
.solution-page .catalog .item-information .btn-instalments .instalments{border-bottom:1px dotted #000}
.solution-page .catalog .item-information .custom-checkbox{margin-bottom:13px}
.solution-page .catalog .item-information .custom-checkbox:last-of-type{margin-bottom:0}
.solution-page .catalog .item-information .custom-checkbox .custom-control-label{display:flex;margin-right:0}
.solution-page .catalog .item-information .custom-checkbox .custom-control-label .label-title{display:block;margin-right:12px;min-width:93%}
.solution-page .catalog .item-information .custom-checkbox .custom-control-label .price{display:block;white-space:nowrap}
.solution-page .catalog .item-information .footer-button{margin:24px 0 11px 0;max-width:100%}
.solution-page .catalog .item-information .footer-button .to-cart{width:auto}
.solution-page .catalog .item-information .footer-button .buttons{display:flex;flex-wrap:nowrap}
.solution-page .catalog .item-information .footer-button .buttons .button{width:100%}
.solution-page .catalog .item-information .footer-button .buttons .button:not(:last-of-type){margin-right:8px}
.solution-page .catalog .item-information .footer-button .btn{width:100%;justify-content:center}
.solution-page .catalog .item-information .solution-information:not(:last-of-type){margin-bottom:24px}
.solution-page .catalog .item-information .solution-information .info-list{margin-bottom:0;color:#4a4a4f;padding-left:32px}
.solution-page .catalog .item-information .solution-information .info-list .list-element ~ .list-element{margin-top:8px}
.solution-page .catalog .item-information .solution-information .info-list .list-element a{text-decoration:none}
.solution-page .catalog .item-information .solution-information .info-list .list-element a:hover{color:#407406}
.solution-page .catalog .item-information .extension{margin-top:32px;padding-top:24px;border-top:1px solid #e1e1e6}
.solution-page .catalog .item-information .extension .title{margin-bottom:12px;font-size:14px;line-height:20px;letter-spacing:0.08em;text-transform:uppercase;color:#555}
.solution-page .catalog .item-information .extension .text{font-size:14px;line-height:22px;color:#4a4a4f}
.solution-page .catalog .item-information .extension .text a{text-decoration:none}
.solution-page .catalog .item-information .extension .text a:hover{color:#407406}
.solution-page .solution-card-wrapper{margin-bottom:16px}
.solution-page .advantages-section.type2{margin-bottom:-80px}
.solution-tag{padding:12px;border-radius:16px;box-shadow:-8px 12px 32px rgba(0, 0, 0, 0.16);display:inline-flex;align-items:center;background-color:#fff}
.solution-tag .image{width:56px;min-width:56px;height:56px;margin-right:8px;border-radius:8px;background-size:contain;background-position:center}
.solution-tag .text{white-space:nowrap;margin:0 8px}
.services-section .row>* {padding-left:0; padding-right: 0}
.services-section .section-name{display:flex;align-items:baseline;margin-bottom:8px}
.services-section .section-name .title{color:#19191e}
.services-section .section-name .all{font-size:12px;line-height:20px;font-weight:700;letter-spacing:.08em;text-transform:uppercase;text-decoration:none;margin-left:24px;color:#555}
.services-section .section-name .all:hover{color:#24c}
.services-section .description{line-height:24px;font-weight:400;letter-spacing:0;text-decoration:none;margin-bottom:40px;color:#4a4a4f}
.services-section .item{background-color:#fff}
.services-section .item .name{text-decoration:none}
.services-section.type2 .item-wrap {position: relative}
.services-section.type2 .items{margin:0}
.services-section.type2 .items .item{box-shadow:1px 0 0 0 #e1e1e6, 0 1px 0 0 #e1e1e6, 1px 1px 0 0 #e1e1e6, 1px 0 0 0 #e1e1e6 inset, 0 1px 0 0 #e1e1e6 inset;padding:31px 32px 26px 32px;height:100%}
.services-section.type2 .items .item::before, .services-section.type2 .items .item::after{content:'';position:absolute;top:0;left:0;width:100%;background:#323237;height:8px;box-shadow:0 0 0 0 #e1e1e6, 0 0 0 0 #e1e1e6, 0 0 0 0 #e1e1e6, 1px 0 0 0 #e1e1e6 inset, 0 1px 0 0 #e1e1e6 inset;}
.services-section.type2 .items .item::before{width:0;opacity:0;transition:opacity 0 ease, width 0 ease;transition-delay:0.5s;}
.services-section.type2 .items .item::after{width:100%;background:white;transition:width 0.5s ease;}
.services-section.type2 .items .item:hover::before{width:100%;opacity:1;transition:opacity 0.5s ease, width 0.5s ease;transition-delay:0;}
.services-section.type2 .items .item:hover::after{width:0;opacity:0;transition:width 0 ease;}
.services-section.type2 .items .item .previewtext{margin-bottom:20px}
.services-section.type2 .items .item .image{display:flex;align-items:center;margin-bottom:26px;justify-content:center;width:64px;height:64px}
.services-section.type2 .items .item .image img,
.services-section.type2 .items .item .image svg{max-width:100%;max-height:100%}
.services-section.type2 .items .item .name{display:inline-block;margin:0 0 16px 0;color:#323237}
.services-section.type2 .items .item .name:hover{color:#24c}
.services-section.type2 .items .item .subcategories{margin-top:-4px}
.services-section.type2 .items .item .subcategories .subcategory{font-size:18px;line-height:24px;font-weight:400;letter-spacing:0;text-decoration:none;display:inline-block;margin-top:10px;margin-right:16px;color:#4a4a4f}
.services-section.type2 .items .item .subcategories .subcategory img{width:28px;margin-right:12px;}
.services-section.type2 .items .item .subcategories .subcategory:hover{color:#24c}
.rates-section .section-name{display:flex;margin-bottom:16px;align-items:baseline}
.rates-section .section-name .title{margin:0 24px 16px 0}
.rates-section .section-name .all{color:#8f8f9d;text-transform:uppercase;font-weight:bold}
.rates-section .section-name .all:hover{color:#24c;text-decoration:none}
.rates-section .show-all{margin-left:26px;color:#8f8f9d;font-weight:bold;text-transform:uppercase}
.rates-section .items:not(.owl-loaded){display:flex}
.rates-section .items:not(.owl-loaded) .item:hover{box-shadow:0px 4px 32px rgba(0, 0, 0, 0.1)}
.rates-section .description{color:#4a4a4f;margin-bottom:32px}
.rates-section .owl-stage-outer{margin:-16px -16px -56px -16px;padding:16px 16px 56px 16px}
.rates-section .owl-stage{display:flex}
.rates-section .owl-stage .item{height:100%;width:auto;min-width:310px}
.rates-section .owl-nav{position:absolute;left:-16px;top:calc(50% - 44px);display:flex;justify-content:space-between;width:calc(100% + 32px)}
.rates-section .saving-price{text-align:center}
.rates-section .items:not(.owl-loaded) .item{margin-bottom:-1px}
.rates-section .items:not(.owl-loaded) .rate-card:hover{box-shadow:0px 4px 32px rgba(0, 0, 0, 0.1)}
.rates-section .high-z-index{z-index:4 !important}
.form-check-input[type="radio"]{margin:0;visibility:hidden}
.form-check-input[type="radio"] + label:hover{cursor:pointer}
.form-check-input[type="radio"] + label:hover:after{border:2px solid #24c}
.form-check-input[type="radio"]:checked + label:before{opacity:1}
.form-check-input[type="radio"]:checked + label:after{border:2px solid #24c}
.form-check-input[type="radio"] + label:after{content:"";border:2px solid #8f8f9d;border-radius:100%;width:24px;height:24px;visibility:visible;position:absolute;top:16px;left:-20px}
.form-check-input[type="radio"] + label:before{content:"";opacity:0;background-color:#24c;border-radius:100%;width:12px;margin:6px;height:12px;visibility:visible;position:absolute;top:16px;left:-20px}
.filter-block .form-check{margin-bottom:16px}
.filter-block .form-check .form-check-input[type="radio"]{top:0}
.filter-horizontal-btn.active .icon-2:before{content:"\ea67"}
.rate-card{display:flex;padding:36px 40px}
.rate-card.horizontal .image{min-width:80px;background-size:contain;background-repeat:no-repeat;border-radius:0}
.rate-card.horizontal .title-info{max-width:200px;width:100%;margin-top:-4px}
.rate-card.horizontal .title-info .plan-name{margin:0}
.rate-card.horizontal .plan{margin-bottom:4px;color:#6c6c71}
.rate-card.horizontal .labels{align-items:flex-start}
.rate-card.horizontal .buttons{justify-content:left}
.rate-card.horizontal .price-block{width:200px;margin-right:0}
.rate-card.horizontal .price-block .price{margin-top:-4px;white-space:nowrap}
.rate-card.horizontal .rate-information-list{margin:0 48px 0 40px}
.rate-card .title-info,
.rate-card .rate-information-list,
.rate-card .price-block{display:flex;flex-direction:column}
.rate-card .img{display:flex;justify-content:center;margin:4px auto 0;overflow:hidden}
.rate-card .img img{width:auto;height:100%}
.rate-card .saving-price .ssl{color:#6c6c71}
.rate-card .image{height:80px;background-size:cover;margin-right:40px}
.rate-card.type-1 .image{min-width:44px;height:44px}
.rate-card .title-info{width:147px}
.rate-card .title-info .plan-name{position:relative;margin-top:4px}
.rate-card .title-info .labels{display:inline-flex;flex-direction:column;position:relative;margin-top:16px}
.rate-card .title-info .label{margin-bottom:8px;z-index:2;font-size:11px;line-height:16px}
.rate-card .rate-information-list{margin:0 48px 0 64px;width:100%}
.rate-card .rate-information-list .list-wrapper{position:relative;margin-bottom:8px}
.rate-card .rate-information-list .list-wrapper:last-of-type{margin-bottom:0}
.rate-card .rate-information-list .list-wrapper:before{content:'';position:absolute;top:8px;left:-15px;width:4px;height:4px;background-color:#4a4a4f;border-radius:50%}
.rate-card .rate-information-list .list-item{display:flex;justify-content:space-between;background-image:url('/img/background-line.svg');background-repeat:repeat-x;background-position:0px 11px;color:#6c6c71}
.rate-card .rate-information-list .text{padding-right:8px;background-color:#fff}
.rate-card .rate-information-list .value{padding-left:8px;background-color:#fff}
.rate-card .price-block{margin-left:auto;margin-right:36px;color:#323237}
.rate-card .price-block .price{margin-top:8px;margin-bottom:24px}
.rate-card .price-block .old-price{margin-top:-8px;margin-bottom:24px}
.rate-card .price-block .old-price ~ .saving-price{margin-top:-16px}
.rate-card .price-block .saving-price{margin-top:-8px;margin-bottom:24px}
.rate-card .buttons{width:100%}
.advantages-section{color:#24c}
.advantages-section.type2{background:#fff;color:#323237}
.advantages-section a{color:#fff}
.advantages-section .item:hover .svg-color{fill:#ED1F24 !important}
.advantages-section.type1 .svg-color *{fill:#24c}
.advantages-section .item:hover svg{overflow:visible;}
.advantages-section .item:hover .svg-color{animation:.8s rotateIn;}
.width-1168 .company-section .wrap{width:1168px}
.width-1648 .company-section .wrap{width:1648px}
.company-section{margin:0;padding:0;display:flex;background-repeat:no-repeat;background-size:cover}
.company-section .reset-ul-list a{color:#4a4a4f}
.company-section .wrap{display:flex;width:1344px;padding:0 6px 56px;margin-left:auto;margin-right:auto}
.company-section .text{flex:1;margin-top:38px;margin-left:0px;padding-bottom:30px}
.company-section .text .caption{margin-bottom:8px;color:#6c6c71}
.company-section .text .title{width:90%;color:#19191e;margin-bottom:24px}
.company-section .text .main-text{margin-bottom:32px;width:93%}
.company-section .text .buttons{display:flex}
.company-section .text .btn-primary{margin-right:8px}
.company-section .list{flex-wrap:wrap;align-items:flex-start;display:flex;flex:1;margin-top:30px}
.company-section .list .item{width:44%;margin-left:10px;position:relative;margin-bottom:40px}
.company-section .list .item .item-heading{position:relative}
.company-section .list .item .icon{background-color:#24c;width:56px;height:56px;margin-bottom:16px;justify-content:center;align-items:center;display:flex;box-shadow:8px -8px 0px rgba(34, 68, 204, 0.44)}
.company-section .list .item .icon .svg-color{fill:#fff !important}
.company-section .list .item .icon .svg-color *{fill:#fff !important}
.company-section .list .item .item-text{margin-top:6px;padding-top: 12px;}
.company-section .list .item:nth-child(odd){margin-right:32px;margin-left:13px}
.company-section.type4{margin:-2px 0}
.company-section.type4 .text{text-shadow:none;margin-top:22px;padding-bottom:16px;margin-right:-8px}
.company-section.type4 .text .title{margin:0 0 20px 0}
.company-section.type4 .text .main-text{margin:0 0 31px 0;width:89%}
.company-section.type4 .text .caption{margin:0 0 8px 0}
.company-section.type4 .text .buttons{margin-left:-2px}
.title-phone,
.title-email{margin-top:16px;color:#6c6c71}
.item-text-info{margin-top:4px;color:#323237}
.advantages-section .list{flex-wrap:wrap;display:flex;margin-left:-2px;width:calc(100% + 20px)}
.advantages-section .list .item{position:relative;padding-right:38px;margin-bottom:48px;display:flex}
.advantages-section .list .item .item-heading{position:relative;margin-bottom:8px}
.advantages-section .list .item .number ~ .item-heading{margin-top:24px}
.advantages-section .list .item .number ~ .item-text{margin-top:6px}
.advantages-section .list .item .icon{background-color:#fff;width:55px;height:56px;justify-content:center;align-items:center;display:flex;box-shadow:8px -8px 0px rgba(255, 255, 255, 0.25);margin-bottom:32px}
.advantages-section .list .item .number{margin-bottom:24px;font-size:64px;line-height:48px}
.advantages-section .nums{padding-top:75px;padding-bottom:55px}
.advantages-section.type1{margin:-1px 0}
.advantages-section.type1 .item-heading{color:#fff}
.advantages-section.type1 .item-text{color:#e1e1e6;padding-top: 12px;}
.advantages-section.type1 .wrap{display:flex;background-color:#0E1025;align-items:center;padding-top:80px;padding-bottom:24px;flex-direction:column;color:#fff;background-image:url(/img/seoheader.png);background-size:cover;padding-left:16px}
.left-block-wrap{width:calc(100% - 336px)}
.item-card .consultation-tizer{position:sticky;top:0;min-width:296px;margin-left:40px;margin-top:58px}
.item-card h2{margin:56px 0 32px}
.item-card .nav{margin-bottom:0;margin-left:40px}
.item-card .tab-content.desc{border:1px solid #e1e1e6;margin-top:-1px;padding:40px}
.item-card .projects.carousel{margin-bottom:56px;max-width:100%}
.item-card .projects.carousel .projects-items.block .items{margin:0}
.item-card .projects.carousel .projects-items.block .items .owl-item .item{margin-right:16px;width:488px;height:326px}
.item-card .card-wrapper{display:flex;flex-wrap:wrap;padding:55px;position:relative;border:1px solid #e1e1e6;margin-bottom:26px}
.item-card .card-wrapper .card-wrap{display:flex;width:100%}
.item-card .card-wrapper .product-img{max-width:768px;width:100%;max-height:584px;height:100%}
.item-card .card-wrapper .product-img .labels{position:absolute;display:flex;flex-direction:column;align-items:flex-start;z-index:2;font-size:10px;line-height:16px}
.item-card .card-wrapper .item-information{position:relative;margin-left:40px;width:408px}
.item-card .card-wrapper .item-information .brand-img{margin-bottom:8px;top:0;right:0}
.item-card .card-wrapper .item-information .brand-img img{max-width:96px}
.item-card .card-wrapper .item-information .footer-button{margin:24px 0 8px 0}
.item-card .card-wrapper .item-information .footer-button .button-container.buy-block{display:flex}
.item-card .card-wrapper .item-information .footer-button .button-container.buy-block .buttons{display:flex;flex-wrap:nowrap;}
.item-card .card-wrapper .item-information .footer-button .button-container.buy-block .to-cart{display:inline-flex;text-align:center;justify-content:center;width:100%;z-index:2;}
.item-card .card-wrapper .item-information .footer-button .button-container.buy-block .to-cart .icon-shopping-cart-line{padding-right:10px;margin-left:-6px;font-size:18px}
.item-card .card-wrapper .item-information .footer-button .button-container.buy-block .to-cart .icon-shopping-cart-line:before{color:#fff}
.item-card .card-wrapper .item-information .footer-button .button-container.buy-block .in-cart{display:inline-flex;text-align:center;justify-content:center;width:100%}
.item-card .card-wrapper .item-information .footer-button .button-container.buy-block .in-cart .icon-check-line{padding-right:7px;margin-left:-6px;font-size:22px}
.item-card .card-wrapper .item-information .footer-button .button-container.buy-block .in-cart .icon-check-line:before{color:#fff}
.item-card .card-wrapper .item-information .price-container{margin-bottom:8px}
.item-card .card-wrapper .item-information .price-container .price{margin-bottom:4px}
.item-card .card-wrapper .item-information .price-container .old-price{margin-left:8px;text-decoration-line:line-through;color:#6c6c71}
.item-card .card-wrapper .item-information .articles{margin-bottom:16px;color:#6c6c71}
.item-card .card-wrapper .item-information .stock .outstock{color:#f42;margin-bottom:20px}
.item-card .card-wrapper .item-information .stock .instock{color:#2a3;margin-bottom:20px}
.item-card .card-wrapper .item-information .logo{position:absolute;right:56px;width:96px;top:72px}
.item-card .card-wrapper .item-information .sku-props-container .sku-prop{margin-bottom:6px}
.item-card .card-wrapper .item-information .sku-props-container .sku-prop:last-of-type{margin-bottom:19px}
.item-card .card-wrapper .item-information .active{background-color:#24c;border-color:#24c;color:#fff}
.item-card .card-wrapper .item-information .buy-block{display:flex}
.item-card .card-wrapper .item-information .buy-block .counter{margin-right:8px}
.item-card .card-wrapper .item-information .more{line-height:24px;font-weight:400;letter-spacing:0;text-decoration:none;padding:0;text-transform:none;color:#24c}
.item-card .card-wrapper .item-information .more i{width:24px;height:24px}
.item-card .card-wrapper .item-information .btn-ask-question{color:#4a4a4f;width:100%;padding:10px;justify-content:center;margin-bottom:0}
.item-card .card-wrapper .item-information .information{color:#6c6c71;margin-bottom:32px;display:flex;margin-left:6px}
.item-card .card-wrapper .item-information .information i{font-size:18px;margin-right:12px}
.item-card .card-wrapper .item-information .short-description{color:#4a4a4f;margin:16px 0 24px}
.item-card .staff{margin-bottom:56px}
.item-card .item-card-content h2,
.item-card .item-card-content h3{margin-top:0;margin-bottom:24px}
.item-card .item-card-content p + h2,
.item-card .item-card-content p + .h2,
.item-card .item-card-content p + h3,
.item-card .item-card-content p + .h3,
.item-card .item-card-content ul + h2,
.item-card .item-card-content ul + .h2,
.item-card .item-card-content ul + h3,
.item-card .item-card-content ul + .h3{margin-top:32px}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button{-webkit-appearance:none;margin:0}
input[type=number]{-moz-appearance:textfield}
.card-wrapper .item-information .footer-button.has-counter .input-container .count,
.card-wrapper .item-information .footer-button.has-counter .counter-wrapper .count,
.card-wrapper .item-information .footer-button.has-counter .input-container .numbers,
.card-wrapper .item-information .footer-button.has-counter .counter-wrapper .numbers{max-width:200px}
.input-container,
.counter-wrapper{position:relative}
.input-container .count,
.counter-wrapper .count,
.input-container .numbers,
.counter-wrapper .numbers{padding:10px 0px 10px 10px;background:#f8f8fa;border:1px solid #e1e1e6;box-sizing:border-box;min-width:100%;border-radius:4px}
.input-container .count::-webkit-outer-spin-button,
.counter-wrapper .count::-webkit-outer-spin-button,
.input-container .numbers::-webkit-outer-spin-button,
.counter-wrapper .numbers::-webkit-outer-spin-button{-webkit-appearance:none;margin:0}
.input-container .spinner-arrows-container,
.counter-wrapper .spinner-arrows-container{position:absolute;display:flex;right:2px;top:0;flex-direction:column;border-left:1px solid #e1e1e6;text-align:center}
.input-container .spinner-arrows-container .arrow-up,
.counter-wrapper .spinner-arrows-container .arrow-up,
.input-container .spinner-arrows-container .arrow-down,
.counter-wrapper .spinner-arrows-container .arrow-down{width:24px;height:23px;font-size:24px;color:#191928;text-decoration:none}
.input-container .spinner-arrows-container .arrow-up:hover,
.counter-wrapper .spinner-arrows-container .arrow-up:hover,
.input-container .spinner-arrows-container .arrow-down:hover,
.counter-wrapper .spinner-arrows-container .arrow-down:hover{cursor:pointer}
.input-container .spinner-arrows-container .arrow-down,
.counter-wrapper .spinner-arrows-container .arrow-down{border-top:1px solid #e1e1e6}
.ask-a-question-block,
.subscribe-block{display:flex;text-align:center;flex-direction:column;padding:40px 32px;max-width:306px;align-items:center;border:1px solid #e1e1e6}
.ask-a-question-block .envelope,
.subscribe-block .envelope{width:64px;height:64px;background-repeat:no-repeat;background-position:center}
.ask-a-question-block .title,
.subscribe-block .title{margin-top:24px;width:100%}
.ask-a-question-block .text,
.subscribe-block .text{margin:8px 0 24px;width:100%}
.got-questions{display:flex;flex-direction:row;justify-content:center}
.got-questions .image{padding-top:40px}
.got-questions .text-block{display:flex;margin-left:64px;margin-top:26px;flex-direction:column}
.got-questions .text-block .text{margin-top:8px}
.got-questions .text-block .buttons{margin-top:22px}
.got-questions .text-block .buttons .btn-primary{margin-right:8px}
.got-questions .text-block .buttons .btn{margin-bottom:16px}
.question{border-top:1px solid #e1e1e6;}
.question_dark{color:#fff;background-image:url(/img/seoheader.png);background-size:cover;}
.question_dark a{color:#fff}
#lightbox{position:absolute;margin:auto;z-index:1100;background-color:#fff;width:100%}
#lightbox .lb-caption{color:#4a4a4f}
#lightbox .lb-close{background:none;font-size:24px;float:none;margin-top:30px;color:#323237}
#lightbox .lb-close:hover{cursor:pointer}
#lightbox .lb-close:hover:before{color:#24c}
#lightbox .lb-image{opacity:1 !important}
#lightboxOverlay{top:0;opacity:1;z-index:1000;width:100% !important;height:100% !important;position:fixed !important;background-color:#fff}
.lb-outerContainer{margin:auto}
.lb-outerContainer .lb-dataContainer{opacity:1 !important}
.lb-closeContainer{display:block;position:absolute;top:0;right:0;width:100px;height:100px}
.cart-section .price-block{margin-left:auto}
.cart-section .delete{margin-left:54px;font-size:18px;width:24px;height:24px;text-decoration:none;color:#191928}
.cart-section .delete:hover{text-decoration:none}
.cart-section .result-row{padding:32px 16px 32px 0;border-bottom:1px solid #e1e1e6}
.cart-section .result-row .buttons .btn{color:#8f8f9d}
.cart-section .buttons-row{padding:40px 0 0 0}
.cart-section .buttons-row .buttons{display:flex;width:100%}
.cart-section .buttons-row .buttons .btn{justify-content:center}
.cart-section .buttons .btn{font-size:18px;text-decoration:none}
.cart-section .buttons .btn:hover{text-decoration:none}
.cart-section .buttons .btn i{margin-right:8px}
.cart-section .buttons-row .buttons .btn-wrap{width:250px;margin-right:24px}
.cart-section .buttons-row .buttons .btn-order{margin:0 0 0 auto;width:auto}
.cart-section .buttons-row .buttons .btn{width:250px;margin-bottom:16px}
.cart-section .buttons-row .buttons .button-caption{color:#6c6c71}
.cart-section table{margin-bottom:0}
.cart-section table th{line-height:24px;font-weight:400;letter-spacing:0;text-decoration:none;color:#6c6c71;border-top:none}
.cart-section table td{vertical-align:middle;padding:16px}
.cart-section table tr:last-of-type{border-bottom:1px solid #e1e1e6}
.cart-section table th{padding-left:16px}
.cart-section table .item-pic{width:80px;height:80px}
.cart-section table .item-title .text{margin-bottom:8px}
.cart-section table .item-title .code{color:#6c6c71}
.cart-section table .price-wrap{display:flex}
.cart-section table .price-wrap .price{margin-right:8px}
.cart-section table .input-spinner{width:10%}
.cart-section table .input-spinner .numbers{width:100%;max-width:100%}
.cart-section table .delete-column{text-align:right}
.numeric-list{list-style-type:decimal;margin:0 0 24px 0;padding-left:30px;display:block}
.numeric-list li{margin:12px 0px}
.numeric-list + .text{margin-bottom:24px}
.content-text p{margin:24px 0;color:#4a4a4f}
.content-text h5{margin:8px 0;color:#323237}
.list-circle{margin:0;color:#4a4a4f;padding:0 0 0 22px}
.list-circle li::before{content:none}
.list-circle li{position:static;list-style-type:circle;margin-bottom:12px;padding-left:12px}
.list-circle li:last-of-type{margin-bottom:0}
.dash{margin:0;color:#4a4a4f;padding:0 0 0 32px;list-style:none}
.dash li{position:relative;margin:12px 0px}
.dash li:after{content:"";position:absolute;left:-30px;top:12px;width:16px;border-bottom:1px solid #4a4a4f}
.dash h5{margin:32px 0 24px}
.width-1168 .partners .list .item{width:calc(50% - 16px)}
.width-1168 .partners .list .item .partner{width:100%;max-width:100%}
ul.fancy-list{list-style-type:none;list-style-position:outside;padding:0;}
ul.fancy-list li:after{display:none;}
ul.fancy-list li{display:block;position:relative;padding-left:40px;padding-bottom:30px;}
.fancy-list li:before{position:absolute;top:1px;left:0px;}
.fancy-list.check li:before{content:'';width:28px;height:28px;background-image:url(/img/check.svg);display:block}
.why .title{color:#000;--bs-gutter-x:0}
.why .container{padding-top:120px;padding-bottom:90px;}
.why-list{margin-top:75px;}
.why-item{padding-left:300px;box-sizing:border-box;position:relative;margin-top:80px;min-height:300px;height:100%;}
.vcenter{position:absolute;top:45%;}
.why-item:first-child{margin-top:60px;}
.why-item > img{position:absolute;left:0;bottom:0;width:300px;border-top-left-radius:10px;border-top-right-radius:10px;}
.why-item-second > img{left:inherit;right:0;}
.why-item .why-item-content{position:absolute;bottom:0;height:100%;}
.why-item .why-item-contentn{padding-right:300px;position:absolute;width:100%;box-sizing:border-box;bottom:0;left:0;padding-left:0px;height:100%;}
.why-item-list{background:#fafafa;height:100%;width:100%;box-sizing:border-box;border-right:1px solid #24c;padding-left:45px;padding-top:20px;padding-right:25px;}
.why-item-second .why-item-list{border-right:none;border-left:1px solid #24c;}
.why-item-second .why-item-list p{padding-right:20px;}
.why-item-content-wrap{height:100%;width:100%;padding-top:95px;position:relative;}
.why-item-header{font-size:38px;padding-top:5px;position:absolute;width:100%;height:95px;color:#444444;top:0;left:0;padding-left:50px;line-height:40px;}
.why-item-icon{position:absolute;width:54px;height:54px;background:#24c;line-height:54px;text-align:center;bottom:-10px;left:0;font-size:0;z-index:3;}
.why-item-second .why-item-icon{left:inherit;right:0;}
.why-item-icon img{display:inline-block;vertical-align:middle;line-height:normal;}
.why-item:last-child{margin-bottom:80px;}
.partners p{margin:24px 0;color:#4a4a4f}
.partners h5{margin:8px 0;color:#323237}
.partners p:first-of-type{margin-top:0}
.partners .list{margin:32px 0;width:calc(100% + 16px);list-style:none;padding:0;display:flex;flex-wrap:wrap}
.partners .list .item{margin:0 16px 0 0;display:flex;width:calc(33.333% - 16px)}
.partners .list .item .partner{width:100%;max-width:100%}
.partners.type2 .partner .title{text-align:center}
.partner{max-width:320px;padding:32px;display:block;margin-bottom:16px;border:1px solid #e1e1e6;transition:box-shadow .2s}
.partner .img{width:256px;margin:auto;height:168px;background-repeat:no-repeat;background-position:center}
.partner .title{margin:24px 0 8px;color:#323237}
.partner .text{color:#4a4a4f}
.partner:hover{text-decoration:none;box-shadow:0px 4px 32px rgba(0, 0, 0, 0.1);border:1px solid transparent}
.projects.carousel{position:relative}
.projects.carousel .projects-items.block .items{margin:0}
.projects.carousel .projects-items.block .items .owl-item .item{margin-right:0;width:auto;min-width:288px;height:326px}
.projects.carousel .owl-nav{top:calc(50% - 22px);width:calc(100% + 44px);margin-left:-22px}
.services-element .services-element-pic{margin-bottom:36px}
.services-element .services-element-pic .main-image{height:380px;background-size:cover;background-position:center}
.services-element .services-element-pic .service-card{flex-wrap:nowrap;padding:39px;align-items:center;border:1px solid #e1e1e6;margin-top:-1px;background:#fff;}
.services-element .services-element-pic .service-card .image{display:flex;justify-content:center;align-items:center;margin-left:2px;height:64px;width:64px}
.services-element .services-element-pic .service-card .card-text{margin-left:22px;max-width:450px;font-size:22px;}
.services-element .services-element-pic .service-card .price-container{display:flex;flex-wrap:wrap;align-items:baseline;max-width:220px;margin-left:40px}
.services-element .services-element-pic .service-card .price{margin-right:8px;margin-bottom:6px;color:#323237}
.services-element .services-element-pic .service-card .buttons{margin-left:auto;margin-bottom:4px}
.services-element .services-element-pic .service-card .buttons .btn-primary{padding:12px 17px}
.services-element .tabs{padding:32px 40px 0 40px}
.services-element .tabs .nav-tabs{margin-bottom:0}
.services-element h2{margin:56px 0 24px}
.services-element .tab-content{border:1px solid #e1e1e6;margin-top:-1px;padding:40px}
.services-element .tab-content h3{margin:32px 0px 24px}
.services-element .tab-content p:first-of-type{margin-top:0}
.services-element .tab-content .table-prices{color:#4a4a4f;line-height:24px;font-weight:400;letter-spacing:0;text-decoration:none}
.services-element .tab-content .table-prices th:first-child,
.services-element .tab-content .table-prices td:first-child{padding-right:58px}
.services-element .tab-content .table-prices th:nth-last-child(1),
.services-element .tab-content .table-prices td:nth-last-child(1){text-align:right;padding-right:18px}
.services-element .tab-content .table-prices td{padding:11px}
.services-element .tab-content .table-prices tr:first-of-type{border-bottom:2px solid #e1e1e6}
.services-element .tab-content .table-prices th{white-space:nowrap}
.services-element .tab-content .table-prices caption{margin-top:8px}
.services-element .projects.carousel{max-width:none}
.services-element .projects.carousel .projects-items.block .items .owl-item .item{margin-right:0;width:488px;height:326px}
.load-documents.documents h4{margin-bottom:32px}
.load-documents.documents .wrap{margin-bottom:0}
.load-documents.documents .wrap .document{padding:0;width:282px;margin-right:32px;border:none}
.load-documents.documents .wrap .document:last-of-type{margin-right:0}
.load-documents.documents .wrap .document:hover{box-shadow:none}
.requisites{padding:40px;border:1px solid #e1e1e6}
.requisites p{margin-bottom:32px}
.requisites table{color:#4a4a4f;margin-bottom:40px}
.requisites table th,
.requisites table td{margin-left:16px}
.requisites table tr,
.requisites table th{border-bottom:1px solid #e1e1e6}
.owl-nav-mobile{display:none}
.nav-mobile{display:none}
.full-main-menu-popup .inner .search-fast-result{height:-moz-fit-content}
.full-main-menu-popup .inner .search-fast-result .scrollbar-inner:empty{height:0 !important}
.custom-checkbox{padding:0}
.custom-checkbox .custom-control-input:checked ~ .custom-control-label:before,
.custom-checkbox .custom-control-input:checked ~ .custom-control-label:after{border:2px solid #24c;background-color:#24c}
.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after{background-image:none;content:"\eb34";display:flex;justify-content:center;align-items:center;color:white;font-weight:800;font-size:18px;font-family:remixicon}
.custom-checkbox .custom-control-label{display:block;margin-right:11px;padding-right:40px}
.custom-checkbox .custom-control-label:before,
.custom-checkbox .custom-control-label:after{right:0;left:auto;top:0;border:2px solid #8f8f9d;border-radius:2px;width:24px;height:24px}
.custom-checkbox:not(:last-of-type){margin-bottom:16px}
.form-check-input{border-color:#8f8f9d;width:24px;margin:0;right:0;height:24px;border-radius:2px}
.form-check-input:hover:before{border-color:#24c}
.custom-checkbox.reversed .custom-control-label{padding-left:36px;padding-right:0}
.custom-checkbox.reversed .custom-control-label:before,
.custom-checkbox.reversed .custom-control-label:after{right:auto;left:0}
.form-check{line-height:24px;font-weight:400;letter-spacing:0;text-decoration:none;display:flex;flex-direction:column}
.form-check:last-of-type{margin-bottom:0}
@media all and (-ms-high-contrast:none){
.product-wrapper .product-card .footer-button.has-counter .button-container.buy-block .to-cart{padding:12px 23px}
.product-wrapper .product-card .footer-button .button-container.buy-block .counter-wrapper .count{padding:12px 0px 12px 11px !important}
.full-main-menu-popup .inner .search-line .search-form .buttons button{color:transparent}
.header.type8 .main-header .menu .menu-list-0 > li.sub-full-width,
.header.type1-fixed .main-header .menu .menu-list-0 > li.sub-full-width{position:static;left:0}
.header .search-header .search-line .search-form .buttons button{display:block}
.header.type8 .main-header .menu .full-sub .item .links > a{align-self:flex-start}
.header.type2-fixed .main-header .menu .full-sub .item .links > a{align-self:flex-start}
.header.type2-fixed .main-header .search-header{top:0;width:50%}
.item-views.block-2 .items .item-wrap-block .item-wrap{flex-basis:auto !important}
}
@media not all and (min-resolution:.001dpcm){@supports (-webkit-appearance:none){th:last-of-type,
td:last-of-type{position:static !important}
.table{width:100% !important;overflow-y:hidden}
.table-wrap{overflow-y:hidden}
.table-wrap:after{content:none !important}
}
}
@-moz-document url-prefix(){.left-block-wrap{width:calc(100% - 336px)}
.content-wrapper .row > .col.left-block-wrap{max-width:calc(100% - 336px)}
.content-wrapper .item-card > .row > .col.left-block-wrap{max-width:calc(100% - 336px)}
.bootstrap-select .dropdown-toggle .filter-option{display:flex;align-items:center}
}
.rating-wrapper{min-width:116px}
.rating-wrapper .rating .stars-current:before{content:'\efe6';font-family:'remixicon' !important;font-style:normal;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;color:#ec0}
.rating-wrapper .current-0_5 .stars-current:nth-of-type(-n+1):before{content:'\efe2'}
.rating-wrapper .current-1 .stars-current:nth-of-type(-n+1):before{content:'\efe1'}
.rating-wrapper .current-1_5 .stars-current:nth-of-type(-n+1):before{content:'\efe1'}
.rating-wrapper .current-1_5 .stars-current:nth-of-type(2):before{content:'\efe2'}
.rating-wrapper .current-2 .stars-current:nth-of-type(-n+2):before{content:'\efe1'}
.rating-wrapper .current-2_5 .stars-current:nth-of-type(-n+2):before{content:'\efe1'}
.rating-wrapper .current-2_5 .stars-current:nth-of-type(3):before{content:'\efe2'}
.rating-wrapper .current-3 .stars-current:nth-of-type(-n+3):before{content:'\efe1'}
.rating-wrapper .current-3_5 .stars-current:nth-of-type(-n+3):before{content:'\efe1'}
.rating-wrapper .current-3_5 .stars-current:nth-of-type(4):before{content:'\efe2'}
.rating-wrapper .current-4 .stars-current:nth-of-type(-n+4):before{content:'\efe1'}
.rating-wrapper .current-4_5 .stars-current:nth-of-type(-n+4):before{content:'\efe1'}
.rating-wrapper .current-4_5 .stars-current:nth-of-type(5):before{content:'\efe2'}
.rating-wrapper .current-5 .stars-current:before{content:'\efe1'}
.width-1648 .reviews-section .item{min-width:575px}
.left-block-wrap .reviews-section .item{min-width:350px}
.reviews-section .section-name{display:flex;align-items:baseline;justify-content:flex-start;margin-bottom:16px}
.reviews-section .section-name .title{color:#19191e;margin:0}
.reviews-section .section-name .all{text-decoration:none;margin-left:24px;color:#8f8f9d}
.reviews-section .section-name .all:hover{color:#24c}
.reviews-section .description{margin-bottom:40px;color:#4a4a4f}
.reviews-section .post{color:#6c6c71}
.reviews-section .title{color:#323237}
.reviews-section .owl-stage-outer{margin:0 -2px;padding:0 3px}
.reviews-section .owl-stage{display:flex}
.reviews-section .owl-nav{top:calc(50% - 87px);padding:0 12px}
.reviews-section .owl-prev{margin-left:-27px}
.reviews-section .owl-next{margin-right:-27px}
.reviews-section .items:not(.owl-loaded){display:flex}
.reviews-section .items:not(.owl-loaded) .item{width:656px;margin:0 16px 16px 0}
.reviews-section .item{width:100%;padding-right:1px;min-width:450px;height:100%}
.reviews-section .item .top-block{display:flex;flex-direction:column;min-height:276px;height:calc(100% - 8em);padding:24px 32px 31px;margin-bottom:24px;background-color:#fff;box-shadow:1px 0 0 0 #e1e1e6, 0 1px 0 0 #e1e1e6, 1px 1px 0 0 #e1e1e6, 1px 0 0 0 #e1e1e6 inset, 0 1px 0 0 #e1e1e6 inset}
.reviews-section .item .top-block .text{margin-bottom:24px;color:#4a4a4f;overflow:hidden}
.reviews-section .item .top-block .rating-wrapper{margin-bottom:5px}
.reviews-section .item .top-block .stars-current{margin-right:3.5px}
.reviews-section .item .top-block .button{margin-top:0}
.reviews-section .item .top-block .button .btn-s{padding:10px 22px}
.reviews-section .item .icon-star-fill:before{color:#ec0}
.reviews-section .item .icon-star-line1:after{color:#ec0}
.reviews-section .item .bottom-block{display:flex;min-height:7em}
.reviews-section .item .bottom-block .image-wrapper{position:relative;height:64px;margin-right:32px;margin-left:16px}
.reviews-section .item .bottom-block .image-wrapper .photo{width:64px;height:64px;border-radius:100%;overflow:hidden;height:100%;background-position:top;background-repeat:no-repeat;background-size:contain}
.reviews-section .item .bottom-block .image-wrapper:before{content:url('/img/quotes.svg');position:absolute;left:0;top:0;width:23px;height:23px;background-color:#fff;border-radius:100%}
.reviews-section .item .bottom-block .image-wrapper img{border-radius:100%;overflow:hidden}
.reviews-section .item .bottom-block .image-wrapper .image{width:auto;max-width:196px;height:64px}
.reviews-section .item .bottom-block .body-info .post{margin:8px 0 4px}
.reviews-section .item.wlogo .image-wrapper{min-width:188px;max-width:188px}
.reviews-section .item.wlogo .image-wrapper:before{display:none}
.reviews-section .item.wlogo .image-wrapper .image{background-size:contain;border-radius:0}
.reviews-items .item{margin-bottom:16px;padding:40px 44px 34px 40px;background-color:#fff;}
.reviews-items .item:last-of-type{margin-bottom:0}
.reviews-items .item .post{color:#6c6c71}
.reviews-items .item .title{color:#323237}
.reviews-items .item .date{color:#6c6c71}
.reviews-items .item .stars-current{font-size:20px}
.reviews-items .item .icon-star-fill:before{color:#ec0}
.reviews-items .item .icon-star-line1:after{color:#ec0}
.reviews-items .item .image-wrapper{position:relative;min-width:120px;height:120px;margin-right:32px}
.reviews-items .item .image-wrapper:before{content:url('/img/quotes.svg');position:absolute;left:0;bottom:0;width:24px;height:24px;background-color:#fff;border-radius:100%}
.reviews-items .item .image-wrapper .image{border-radius:100%;overflow:hidden;height:100%;background-position:center;background-repeat:no-repeat;background-size:cover}
.reviews-items .item .image-wrapper .photo{border-radius:100%;overflow:hidden;height:100%;background-position:center;background-repeat:no-repeat;background-size:cover}
.reviews-items .item .body-info p:last-child{margin-bottom:0}
.reviews-items .item .docs-block{margin-top:24px}
.reviews-items .item .blocks{display:block}
.reviews-items .item .blocks .inner-wrapper{position:relative;display:flex;min-height:48px}
.reviews-items .item .blocks .inner-wrapper .file-name{padding-left:16px}
.reviews-items .item .blocks .inner-wrapper .link-text{overflow:hidden;text-overflow:ellipsis;color:#323237;text-decoration:none}
.reviews-items .item .blocks .inner-wrapper .link-text:hover{color:#24c}
.reviews-items .item .blocks .inner-wrapper .filesize{color:#6c6c71}
.reviews-items .item.wlogo .image-wrapper{min-width:188px;max-width:188px}
.reviews-items .item.wlogo .image-wrapper:before{display:none}
.reviews-items .item.wlogo .image-wrapper .image{background-size:contain;border-radius:0}
.project-main .reviews-items.type-1{border:1px solid #e1e1e6}
.reviews-items.type-1 .item .top-block{display:flex;margin-bottom:24px}
.reviews-items.type-1 .item .top-info{display:flex;flex-direction:column}
.reviews-items.type-1 .item .top-info .post{margin-bottom:4px}
.reviews-items.type-1 .item .top-info .title{margin-bottom:8px}
.reviews-items.type-1 .item .rating-wrapper{margin-left:auto}
.reviews-items.type-2 .item{display:flex}
.reviews-items.type-2 .item .image-wrapper{width:80px;margin-bottom:24px}
.reviews-items.type-2 .item .left-block{display:flex;flex-direction:column;flex-basis:25%;max-width:188px;margin-right:40px}
.reviews-items.type-2 .item .top-block{display:flex;margin-bottom:24px}
.reviews-items.type-2 .item .left-info{display:flex;flex-direction:column}
.reviews-items.type-2 .item .left-info .post{margin-bottom:4px}
.reviews-items.type-2 .item .right-block{flex-basis:75%}
.reviews-items.type-2 .item .right-block .rating-wrapper{margin-right:36px}
.reviews-items.type-popup .item{position:relative;max-width:600px;padding:24px 32px 32px;border:none;box-shadow:0px 4px 32px rgba(0, 0, 0, 0.1)}
.reviews-items.type-popup .item .rating-wrapper{margin-bottom:6px}
.reviews-items.type-popup .item .stars-current{margin-right:4px}
.reviews-items.type-popup .item .close{position:absolute;right:15px;top:17px;font-size:24px;color:#8f8f9d}
.reviews-items.type-popup .item .close:hover{color:#24c}
.reviews-items.type-popup .item .bottom-block{display:flex;margin-top:24px}
.reviews-items.type-popup .item .post{margin-bottom:3px}
.reviews-items.type-popup .item .title{margin-bottom:9px}
.old-price{line-height:22px;font-weight:400;letter-spacing:0;color:#6c6c71;text-decoration:line-through}
.saving-price{font-size:14px;line-height:22px;font-weight:400;letter-spacing:0;color:#2a3}
.product-wrapper .data-entity-item{height:100%}
.product-wrapper .product-card{position:relative;width:100%;height:100%;background-color:#fff;transition:box-shadow .2s ease;z-index:20}
.product-wrapper .product-card .img{position:relative;display:flex;justify-content:center;align-items:center;width:100%;height:100%}
.product-wrapper .product-card .img .image-product-link{display:flex;justify-content:center;align-items:center;width:100%;height:100%;flex-shrink:0}
.product-wrapper .product-card .img img{max-width:100%;width:auto;max-height:100%;position:absolute;top:50%;left:50%;transform:translateX(-50%) translateY(-50%)}
.product-wrapper .product-card .img .imac{max-width:100%;width:auto;max-height:100%;position:absolute;top:50%;left:50%;transform:translateX(-50%) translateY(-50%)}
.product-wrapper .product-card .img .solution{max-width:70%;width:auto;max-height:100%;position:absolute;top:36%;left:50%;transform:translateX(-50%) translateY(-50%);border-radius:4px;}
.product-wrapper .product-card .labels{position:absolute;display:flex;flex-direction:column;align-items:flex-start;z-index:2;font-size:10px;line-height:16px}
.product-wrapper .product-card .name{color:#323237;text-decoration:none}
.product-wrapper .product-card .name:hover{color:#24c}
.product-wrapper .product-card .articles{color:#6c6c71}
.product-wrapper .product-card .stock .instock{margin-top:4px;color:#2a3;opacity:0.8}
.product-wrapper .product-card .stock .outstock{margin-top:4px;color:#f42;opacity:0.8}
.product-wrapper .product-card .price{color:#323237}
.product-wrapper .product-card .price-container{margin-top:auto;text-align:center;}
.product-wrapper .product-card .old-price{margin-left:8px;color:#6c6c71;text-decoration:line-through}
.product-wrapper .product-card .footer-button .button-container.buy-block{display:flex;flex-wrap:wrap}
.product-wrapper .product-card .footer-button .button-container.buy-block .counter{margin-bottom:8px}
.product-wrapper .product-card .footer-button .button-container.buy-block .buttons{width:100%;flex:1}
.product-wrapper .product-card .footer-button .button-container.buy-block .to-cart{white-space:nowrap;display:inline-flex;text-align:center;justify-content:center;width:100%;z-index:1;position:relative;}
.product-wrapper .product-card .footer-button .button-container.buy-block .to-cart .icon-shopping-cart-line{padding-right:10px;margin-left:-6px;font-size:18px}
.product-wrapper .product-card .footer-button .button-container.buy-block .to-cart .icon-shopping-cart-line:before{color:#fff}
.product-wrapper .product-card .footer-button .button-container.buy-block .in-cart{white-space:nowrap;display:inline-flex;text-align:center;justify-content:center;width:100%}
.product-wrapper .product-card .footer-button .button-container.buy-block .in-cart .icon-check-line{padding-right:7px;margin-left:-6px;font-size:22px}
.product-wrapper .product-card .footer-button .button-container.buy-block .in-cart .icon-check-line:before{color:#fff}
.product-wrapper.block{position:relative;width:100%;height:100%;width:auto;transition:box-shadow .2s}
.product-wrapper.block .product-card{padding:31px;z-index:20;box-shadow:1px 0 0 0 #e1e1e6, 0 1px 0 0 #e1e1e6, 1px 1px 0 0 #e1e1e6, 1px 0 0 0 #e1e1e6 inset, 0 1px 0 0 #e1e1e6 inset}
.product-wrapper.block .product-card .name-wrapper{height:110px}
.product-wrapper.block .product-card .static{display:flex;flex-direction:column}
.product-wrapper.block .product-card .labels{top:31px;left:31px}
.product-wrapper.block .product-card .img{height:256px;margin-bottom:24px}
.product-wrapper.block .product-card .name{display:block;margin-bottom:8px;max-height:78px;overflow:hidden}
.product-wrapper.block .product-card .price{display:block;margin-top:24px}
.product-wrapper.block .product-card .hover-content{display:none;margin-top:24px}
.product-wrapper.block .product-card .hover-content .buy-block{display:none}
.product-wrapper.block .product-card .hover-content .detail{display:inline-flex;text-align:center;justify-content:center;width:100%;padding:10px 85px}
.product-wrapper.block .product-card .information{display:flex;margin-top:16px;color:#6c6c71}
.product-wrapper.block .product-card .information .icon{margin-right:8px;font-size:24px}
.product-wrapper.block .product-card .information .icon:before{color:#8f8f9d}
.product-wrapper.block .product-card .footer-button .button-container.buy-block{display:flex}
.product-wrapper.block .product-card .footer-button .button-container.buy-block .counter-wrapper{position:relative;margin-right:8px}
.product-wrapper.block .product-card .footer-button .button-container.buy-block .counter-wrapper .count{padding:9px 0px 9px 11px;max-width:102px}
.product-wrapper.block .product-card .footer-button .button-container.buy-block .counter-wrapper .spinner-arrows-container{height:44px;right:2px;top:0}
.product-wrapper.block .product-card .footer-button .button-container.buy-block .counter-wrapper .spinner-arrows-container .arrow-up{height:50%}
.product-wrapper.block .product-card .footer-button .button-container.buy-block .counter-wrapper .spinner-arrows-container .arrow-down{height:50%}
.product-wrapper.block .product-card.has-properties .scrollbar-inner > .scroll-element.scroll-y{right:0px;top:7px}
.product-wrapper.block .product-card.has-properties .scrollbar-inner > .scroll-element .scroll-element_track{background-color:#e1e1e6}
.product-wrapper.block .product-card.has-properties .scrollbar-inner > .scroll-element .scroll-bar{background-color:#8f8f9d}
.product-wrapper.list .product-card{display:flex;padding:34px 38px 34px 40px;border:1px solid #e1e1e6}
.product-wrapper.list .product-card > .row{width:100%}
.product-wrapper.list .product-card .image-wrapper{min-width:160px;height:160px;margin-right:40px;margin-top:6px}
.product-wrapper.list .product-card .image-wrapper.sol{min-width:265px;}
.product-wrapper.list .product-card .labels{top:40px;left:40px}
.product-wrapper.list .product-card .info{margin-right:40px}
.product-wrapper.list .product-card .name{display:block;margin-bottom:16px}
.product-wrapper.list .product-card .preview-text{color:#4a4a4f;margin-bottom:17px}
.product-wrapper.list .product-card .btn-link{display:inline-flex;color:#24c;text-transform:none;text-decoration:none}
.product-wrapper.list .product-card .btn-link:hover{color:#172e8a}
.product-wrapper.list .product-card .btn-link .icon{font-size:22px}
.product-wrapper.list .product-card .btn-link.opened .icon{transform:rotate(180deg)}
.product-wrapper.list .product-card .right-block{width:242px;margin-top:2px}
.product-wrapper.list .product-card .stock{margin-bottom:24px}
.product-wrapper.list .product-card .detail{width:100%;justify-content:center;padding:10px 24px}
.product-wrapper.list .product-card .footer-button{margin-top:24px}
.product-wrapper.list .product-card .footer-button .button-container.buy-block .counter-wrapper{position:relative;margin-right:8px}
.product-wrapper.list .product-card .footer-button .button-container.buy-block .counter-wrapper .count{padding:9px 0px 9px 11px;max-width:88px}
.product-wrapper.list .product-card .footer-button .button-container.buy-block .counter-wrapper .spinner-arrows-container{height:44px;right:2px;top:0}
.product-wrapper.list .product-card .footer-button .button-container.buy-block .counter-wrapper .spinner-arrows-container .arrow-up{height:50%}
.product-wrapper.list .product-card .footer-button .button-container.buy-block .counter-wrapper .spinner-arrows-container .arrow-down{height:50%}
.product-wrapper.list .product-card .information{display:flex;align-items:center;margin-top:16px;color:#6c6c71}
.product-wrapper.list .product-card .information .icon{margin-right:8px;font-size:24px}
.product-wrapper.list .product-card .information .icon:before{color:#8f8f9d}
.product-wrapper.sheets .product-card{display:flex;padding:25px 22px 24px 24px;border:1px solid #e1e1e6}
.product-wrapper.sheets .product-card > .row{width:100%}
.product-wrapper.sheets .product-card .image-wrapper{min-width:64px;height:64px;margin-right:24px}
.product-wrapper.sheets .product-card .name{display:block;margin-bottom:5px}
.product-wrapper.sheets .product-card .price-container{width:160px;margin:0 32px 0 0;align-items:normal}
.product-wrapper.sheets .product-card .price-container .price{margin-bottom:5px}
.product-wrapper.sheets .product-card .right-block{margin-top:-4px;width:242px}
.product-wrapper.sheets .product-card .detail{width:100%;justify-content:center;padding:10px 24px}
.product-wrapper.sheets .product-card .footer-button .button-container.buy-block .counter-wrapper{position:relative;margin-right:8px}
.product-wrapper.sheets .product-card .footer-button .button-container.buy-block .counter-wrapper .count{padding:9px 0px 9px 11px;max-width:88px}
.product-wrapper.sheets .product-card .footer-button .button-container.buy-block .counter-wrapper .spinner-arrows-container{height:44px;right:2px;top:0}
.product-wrapper.sheets .product-card .footer-button .button-container.buy-block .counter-wrapper .spinner-arrows-container .arrow-up{height:50%}
.product-wrapper.sheets .product-card .footer-button .button-container.buy-block .counter-wrapper .spinner-arrows-container .arrow-down{height:50%}
.product-items.blocks .item-wrap{min-height:unset}
.product-wrapper.block .product-card:not(.has-properties) .name-wrapper{height:110px}
.hover-content-properties{opacity:0;pointer-events:none;position:absolute;left:0;top:0;height:auto;padding:32px;width:calc(100% + 1px);background-color:#fff;box-shadow:0px 4px 32px rgba(0, 0, 0, 0.1)}
.product-items.blocks{margin-top:16px}
.product-items.blocks .items{margin:0 -8px}
.product-items.blocks .item-wrap{min-height:454px;margin-bottom:16px;padding:0 8px}
.product-items .accordeon-head{margin-top:-1px}
.product-items .accordeon-head.open .item-description > .buttons .btn-item i::before{content:"\ea67"}
.product-items .accordeon-head .item-description .wrap{display:flex;width:100%}
.item-views{position:relative}
.item-views .item .img{display:flex;justify-content:center;align-items:center;position:relative}
.services .item-views .item .img{justify-content:left;align-items:left;}
.item-views .item .img .image{position:relative;width:100%;height:100%;background-size:cover;background-repeat:no-repeat;background-position:center}
.item-views .item .img a{position:absolute;top:0;left:0;right:0;bottom:0}
.item-views .item .category{color:#6c6c71}
.item-views .item .name a{color:#323237;text-decoration:none}
.item-views .item .name a:hover{color:#24c}
.item-views .item .preview-text{color:#4a4a4f}
.item-views .item .date{margin-top:auto;color:#6c6c71}
.item-views.block .items .item-wrap{margin-bottom:16px}
.item-views.block .items .item{position:relative;width:100%;height:100%;transition:box-shadow .2s}
.item-views.block .items .item:hover{box-shadow:0px 4px 32px rgba(0, 0, 0, 0.1)}
.item-views.block .items .item:not(:hover){box-shadow:1px 0 0 0 #e1e1e6, 0 1px 0 0 #e1e1e6, 1px 1px 0 0 #e1e1e6, 1px 0 0 0 #e1e1e6 inset, 0 1px 0 0 #e1e1e6 inset}
.item-views.block .items .item .img{display:flex;justify-content:center;align-items:center;position:relative;height:200px}
.item-views.block .items .item .img .image{position:relative;width:100%;height:100%;background-size:cover;background-repeat:no-repeat;background-position:center}
.item-views.block .items .item .img a{position:absolute;top:0;left:0;right:0;bottom:0}
.item-views.block .items .item .info{display:flex;flex-direction:column;height:calc(100% - 200px);padding:26px 32px 24px}
.item-views.block .items .item .info .category{margin-bottom:4px;color:#6c6c71}
.item-views.block .items .item .info .name{margin-bottom:25px}
.item-views.block .items .item .info .name a{display:block;color:#323237;text-decoration:none}
.item-views.block .items .item .info .name a:hover{color:#24c}
.item-views.block .items .item .info .date{margin-top:auto;color:#6c6c71}
.item-views.block-2 .items .item-wrap-block{display:flex;flex-direction:column}
.item-views.block-2 .items .item-wrap-block .item-wrap{flex-basis:50%}
.item-views.block-2 .items .item .img{height:161px}
.item-views.block-2 .items .item .info{height:calc(100% - 161px)}
.item-views.block-2 .items .item .preview-text{margin-bottom:32px}
.item-views.block-2 .items .item.item-big .img{height:404px}
.item-views.block-2 .items .item.item-big .info{height:calc(100% - 404px)}
.item-views.block-2 .items .item.item-big .name{margin-bottom:16px}
.item-views.list .item{box-shadow:1px 0 0 0 #e1e1e6, 0 1px 0 0 #e1e1e6, 1px 1px 0 0 #e1e1e6, 1px 0 0 0 #e1e1e6 inset, 0 1px 0 0 #e1e1e6 inset;padding:31px 32px 26px 32px;height:100%;transition:box-shadow .2s}
.item-views.list .item:hover{box-shadow:0px 4px 32px rgba(0, 0, 0, 0.1);border-color:transparent}
.item-views.list .item .img{min-width:240px;height:160px;margin-right:40px;margin-top:4px}
.services .item-views.list .item .img{min-width:auto;height:auto;margin-right:40px;margin-top:4px}
.item-views.list .item .info .name{margin-top:8px}
.item-views.list .item .info .preview-text{margin-top:16px}
.item-views.service-items.list .item .info .preview-text{margin-top:16px;margin-bottom:20px;}
.item-views.list .item .info .date{margin-top:25px}
.services .item-views.list .item{padding:33px 40px 32px;position: relative}
.services .item-views.list .info .name{margin-top:0}
.services .item-views.list .info .deadline{margin-top:16px;color:#6c6c71}
.services .item-views.list .info .price{margin-top:16px;color:#323237}
.services .item-views.list .info .price-container{margin-top:8px;margin-bottom:0}
.services .item-views.list .info .price-container .old-price{margin-left:4px;text-decoration-line:line-through;color:#6c6c71}
.content-wrapper .h2,
.content-wrapper h2,
.content-wrapper .h3,
.content-wrapper h3{margin-top:32px;margin-bottom:24px}
.content-wrapper .h4,
.content-wrapper h5,
.content-wrapper .h5,
.content-wrapper h6,
.content-wrapper .h6{margin:24px 0 16px}
.content-wrapper .category{color:#6c6c71}
.content-wrapper .name a{color:#323237;text-decoration:none}
.content-wrapper .name a:hover{color:#24c}
.content-wrapper .preview-text{color:#4a4a4f}
.content-wrapper .date{color:#6c6c71}
.content-wrapper .img{display:flex;justify-content:center;align-items:center;position:relative}
.content-wrapper .img .image{position:relative;width:100%;height:100%;background-size:cover;background-repeat:no-repeat;background-position:center}
.content-wrapper .nav-tabs .nav-link{padding-top:16px}
.blog-element .services{margin-bottom:72px}
.blog-element .img{height:380px}
.blog-element .fotorama{padding:40px}
.blog-element .fotorama .fotorama__fullscreen-icon{right:8px !important;top:8px !important;box-shadow:0px 4px 12px rgba(0, 0, 0, 0.1)}
.blog-element .content{display:flex;flex-direction:column;margin-bottom:40px;padding:34px 40px 38px;border:1px solid #e1e1e6}
.blog-element .ready-sites .content{border:none;padding:0;margin:0}
.break{flex-basis:100%;height:0;}
.break-column{flex-basis:100%;width:0;}
.blog-element .content-footer{display:flex;justify-content:space-between;padding-top:15px;margin-top:25px;border-top:1px solid #e1e1e6}
.blog-element .content-bottom p{margin-bottom:24px;color:#4a4a4f}
.blog-element .content-bottom p:first-of-type{font-size:18px;line-height:26px;font-weight:700;letter-spacing:0;font-weight:400}
.blog-element .content-bottom p:last-of-type{margin-bottom:0}
.blog-element .sidebar-right{margin-left:40px}
.projects .text-before-items{margin-bottom:40px;color:#4a4a4f}
.projects .text-after-items{margin-top:56px}
.projects .text-after-items .text{margin-top:24px;color:#4a4a4f}
.projects .text-after-items p{color:#4a4a4f}
.projects .text-after-items p:last-of-type{margin-bottom:0}
.projects .projects-items.block-1 .items{margin:0 -8px}
.projects .projects-items.block-1 .items .item-wrap{margin-bottom:16px;padding:0 8px}
.projects .projects-items.block-1 .items .item-wrap a:hover{text-decoration:none}
.projects .projects-items.block-1 .items .item{position:relative;height:100%;transition:box-shadow .3s}
.projects .projects-items.block-1 .items .item:before{position:absolute;content:'';width:100%;height:100%;left:0;bottom:0;border-bottom:3px solid #24c;z-index:-1;opacity:0;transform:scaleX(0);}
.projects .projects-items.block-1 .items .item:hover:before{opacity:1;transform:scaleX(1);}
.projects .projects-items.block-1 .items .item:hover .image{-webkit-transform:rotateY(180deg);-moz-transform:rotateY(180deg);transform:rotateY(180deg);filter:FlipH;-ms-filter:"FlipH";}
.projects .projects-items.block-1 .items .item .image{-webkit-transition:0.7s;-webkit-transform-style:preserve-3d;-moz-transition:0.7s;-moz-transform-style:preserve-3d;transition:0.7s;transform-style:preserve-3d;position:relative;}
.projects .projects-items.block-1 .items .item .image{position:relative;}
.projects .projects-items.block-1 .items .item .image .backs{position:absolute;top:0;left:0px;width:100%}
.front, .backs{-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;backface-visibility:hidden;}
.front{position:relative;z-index:2;}

.backs{-webkit-transform:rotateY(180deg);-moz-transform:rotateY(180deg);transform:rotateY(180deg);z-index:1;position:relative;}


.projects .projects-items.block-1 .items .item:hover .backs {-webkit-backface-visibility:visible;-moz-backface-visibility:visible;backface-visibility:visible;z-index:10}

.projects .projects-items.block-1 .items .item:hover{opacity:1;transform:scale(1);}
.projects .projects-items.block-1 .items .item:hover:after{opacity:1;transform:scaleY(1);}
.projects .projects-items.block-1 .items .item:hover:before{opacity:1;transform:scaleX(1);}
.projects .projects-items.block-1 .items .item:hover{opacity:1;transform:scale(1);}

.projects .projects-items.block-1 .items .item:hover .image{box-shadow:0px 4px 32px rgba(0, 0, 0, 0.1);border-radius: 26px;}
.projects .projects-items.list .items .item:hover .image{box-shadow:0px 4px 32px rgba(0, 0, 0, 0.1);border-color:transparent;z-index:1}

.projects .projects-items.block-1 .items .item .img{display:flex;justify-content:center;align-items:center;position:relative;}
.projects .projects-items.block-1 .items .item .img img{width:100%; border-radius: 26px;border: 0.125rem solid #E1E1E3;}
.projects .projects-items.block-1 .items .item .img .image{position:relative;width:100%;height:100%;background-size:cover;background-repeat:no-repeat;background-position-x:center}
.projects .projects-items.block-1 .items .item:hover .img img {border-color: transparent}
.projects .projects-items.block-1 .items .item .info{display:flex;flex-direction:column;height:calc(100% - 210px);padding:26px 12px 24px}
.projects .projects-items.block-1 .items .item .info .category{margin-bottom:4px;margin-top:10px;color:#6c6c71;font-size:14px;line-height:18px;font-weight:400;letter-spacing:.09em;}
.projects .projects-items.block-1 .items .item .info .name a{color:#323237;text-decoration:none}
.projects .projects-items.block-1 .items .item .info .name a:hover{color:#24c}
.projects .projects-items.list .items .item{position:relative;display:flex;margin-bottom:-1px;padding:35px 40px 39px;border:1px solid #e1e1e6;transition:box-shadow .3s}
.projects .projects-items.list .items .item .img{min-width:240px;height:160px;margin-right:40px;margin-top:3px}
.projects .projects-items.list .items .item .img .image{position:relative;width:100%;height:100%;background-size:cover;background-repeat:no-repeat;background-position:center}
.projects .projects-items.list .items .item .img a{position:absolute;top:0;left:0;right:0;bottom:0}
.projects .projects-items.list .items .item .info .category{margin-bottom:4px}
.projects .projects-items.list .items .item .info .name{margin-bottom:16px}
.projects .projects-items.list .items .item .info .preview-text p:last-of-type{margin-bottom:0}
.projects .projects-items.block{margin-bottom:56px}
.projects .projects-items.block .items{margin:0 -8px}
.projects .projects-items.block .items .item-wrap{margin-bottom:16px;padding:0 8px}
.projects .projects-items.block .items .item{position:relative}
.projects .projects-items.block .items .item:before{content:"";position:absolute;left:0;right:0;top:0;bottom:0;background:linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);transition:opacity .3s;z-index:1}
.projects .projects-items.block .items .item:after{content:"";position:absolute;top:0;left:0;right:0;bottom:0;background:linear-gradient(0deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));transition:opacity .3s;opacity:0;z-index:2}
.projects .projects-items.block .items .item:hover:before{opacity:0}
.projects .projects-items.block .items .item:hover:after{opacity:1}
.projects .projects-items.block .items .item .img{width:100%;height:100%}
.projects .projects-items.block .items .item .img .image{position:relative;width:100%;height:100%;background-size:cover;background-repeat:no-repeat;background-position:center}
.projects .projects-items.block .items .item .info{position:absolute;left:0;bottom:0;padding:36px 32px;z-index:3}
.projects .projects-items.block .items .item .info .category{color:#e1e1e6}
.projects .projects-items.block .items .item .info .name{color:#fff}
.projects .projects-items.block .items .item .link{position:absolute;top:0;left:0;right:0;bottom:0;z-index:4}
.projects .projects-items.block.type-2 .items .item{height:326px}
.projects .projects-items.block.block-section_1 .items .item{height:438px}
.projects .projects-items.block.block-section_2 .items .item{height:300px}
.projects-element .sidebar-right{margin-left:40px}
.projects-element .head-block{display:flex;position:relative;border:1px solid #e1e1e6}
.projects-page .project-head .head-block{border:none;}
.projects-page .project-main{margin-bottom:32px}
.projects-element .head-info{width:408px;margin-left:40px}
.projects-element .head-info .buttons{display:flex;margin-top:24px;padding-top:24px;border-top:1px solid #e1e1e6}
.projects-element .head-info .buttons .button{width:100%}
.projects-element .head-info .buttons .button:first-of-type{margin-right:8px}
.projects-element .head-info .buttons .btn{width:100%;justify-content:center}
.projects-element .head-info .buttons .btn-secondary{padding:10px 22px}
.projects-element .project-img{width:60%;height:100%}
.projects-element .btn-link{display:inline-flex;margin-top:24px;color:#24c;text-transform:none;text-decoration:none}
.projects-element .btn-link:hover{color:#172e8a}
.projects-element .btn-link .icon{font-size:24px}
.projects-element .property{margin-bottom:16px}
.projects-element .property:last-of-type{margin-bottom:0}
.projects-element .property .title-prop{color:#000;margin-bottom:8px}
.projects-element .property .value{color:#4a4a4f}
.projects-element .property .value ul{list-style:none;color:#4a4a4f;margin-bottom:24px;padding-left:32px;display:block}
.projects-element .property .value ul li{position:relative;margin:12px 0px}
.projects-element .property .value ul li:before{content:"";position:absolute;left:-30px;top:12px;width:16px;border-bottom:1px solid #4a4a4f}
.projects-element .nav-tabs{margin-bottom:0;margin-left:40px;border-bottom:none}
.projects-element .nav-tabs:before{display:none}
.projects-element .tab-content{padding:40px;border:1px solid #e1e1e6}
.projects-element .body-info{line-height:24px;font-weight:400;letter-spacing:0;text-decoration:none;color:#4a4a4f}
.projects-element .body-info p{margin-bottom:24px}
.projects-element .body-info p:last-child{margin-bottom:0}
.projects-element .body-info ul{list-style:none;color:#4a4a4f;margin-bottom:24px;padding-left:32px;display:block}
.projects-element .body-info ul li{position:relative;margin:12px 0px}
.projects-element .body-info ul li:before{content:"";position:absolute;left:-30px;top:12px;width:16px;border-bottom:1px solid #4a4a4f}
.projects-element .consultation-tizer{position:sticky;top:0;min-width:296px;margin-top:58px}
.projects-page .project-head{border-top:1px solid #e1e1e6;border-bottom:1px solid #e1e1e6;background:#f8f8fa;margin-bottom:56px;padding-top:55px}
.categories{margin-bottom:56px}
.categories .item-wrap{margin:0 -1px -1px 0}
.categories .item-link{position:relative;display:block;width:100%;height:100%}
.categories .item{position:relative;display:flex;width:100%;height:100%;background-color:#fff;transition:box-shadow .3s;border:1px solid #e1e1e6}
.categories .img{position:relative;display:flex;justify-content:center;align-items:center;width:100%;height:100%}
.categories .img .image-product-link{display:flex;justify-content:center;align-items:center;width:100%;height:100%;flex-shrink:0}
.categories .img img{max-width:100%;max-height:100%;position:absolute;top:50%;left:50%;transform:translateX(-50%) translateY(-50%)}
.categories .info{z-index:1}
.categories .name{display:block;width:100%;height:100%;color:#323237;text-decoration:none}
.categories .link{position:absolute;top:0;left:0;right:-1px;bottom:-1px}
.categories.type-1 .item{align-items:center;width:100%;padding:23px}
.categories.type-1 .image-wrapper{min-width:72px;height:72px;margin-right:24px}
.categories.type-2 .item{flex-direction:column;align-items:center;text-align:center;width:100%;padding:23px 31px 27px}
.categories.type-2 .image-wrapper{width:160px;height:160px;margin-bottom:24px}
.categories.type-3 .item-wrap{margin:0}
.categories.type-3 .item{position:relative;width:100%;height:240px;border:0}
.categories.type-3 .item:before{content:"";position:absolute;left:0;right:0;top:0;bottom:0;background:linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);transition:opacity .3s;z-index:1}
.categories.type-3 .item:after{content:"";position:absolute;top:0;left:0;right:0;bottom:0;background:linear-gradient(0deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));transition:opacity .3s;opacity:0;z-index:2}
.categories.type-3 .item:hover{box-shadow:0}
.categories.type-3 .item:hover:before{opacity:0}
.categories.type-3 .item:hover:after{opacity:1}
.categories.type-3 .item .img .image{position:relative;width:100%;height:100%;background-size:cover;background-repeat:no-repeat;background-position:center}
.categories.type-3 .item .info{position:absolute;left:0;bottom:0;width:100%;padding:26px 32px;z-index:3}
.categories.type-3 .item .info .name{color:#fff}
.categories.type-3 .item .link{right:0;bottom:0;z-index:4}
.categories.blocks .items{margin:0 -8px}
.categories.blocks .item-wrap{margin-bottom:16px;padding:0 8px}
.categories.type-4:not(.subcategories) .item-wrap{padding:0}
.categories.type-4:not(.subcategories) .item{padding:24px;border-radius:0}
.categories.type-4 .items{margin:0 -4px}
.categories.type-4 .item-wrap{margin-bottom:8px;padding:0 4px}
.categories.type-4 .item{width:auto;padding:7px 15px;border-radius:4px;transition:0.2s}
.categories.type-4 .item:hover{background-color:#24c}
.categories.type-4 .item:hover .name,
.categories.type-4 .item:hover .count{color:#fff}
.categories.type-4 .count{color:#8f8f9d;padding-left:4px}
.categories.type-5 .item{align-items:center;width:100%;padding:23px}
.categories.type-5 .image-wrapper{min-width:72px;height:72px;margin-right:24px}
.catalog .text-before-items{margin-bottom:40px;color:#4a4a4f}
.catalog .text-after-items .title{margin:56px 0 24px}
.catalog .text-after-items .text{margin-top:24px;color:#4a4a4f}
.catalog .text-after-items .text p{margin-bottom:24px}
.catalog .text-after-items .text p:last-of-type{margin-bottom:0}
.empty-lists .image-wrapper{margin-bottom:24px;text-align:center}
.empty-lists .image-wrapper .img{display:flex;justify-content:center;align-items:center;position:relative}
.empty-lists .info{color:#8f8f9d;text-align:center}
.empty-lists .info a{text-decoration:none}
.empty-lists .info a:hover{color:#172e8a}
body:not(.inner-page) .page404{padding:0 0 80px 0}
.page404{max-width:640px;margin:0 auto;text-align:center}
.page404 .image{margin-bottom:40px}
.page404 .image img{max-width:100%}
.page404 .not-found{margin-bottom:24px}
.page404 .text{margin-bottom:40px;color:#4a4a4f}
#svg{display:inline-block;vertical-align:middle;fill:#0057B8;}
#svg path:nth-child(1){-webkit-animation:pweek 1.8s linear infinite;animation:pweek 1.8s linear infinite;-webkit-animation-delay:0.1s;animation-delay:0.1s;}
#svg path:nth-child(1):hover{-webkit-animation-play-state:paused;animation-play-state:paused;}
#svg path:nth-child(2){-webkit-animation:pweek 1.8s linear infinite;animation:pweek 1.8s linear infinite;-webkit-animation-delay:0.2s;animation-delay:0.2s;}
#svg path:nth-child(2):hover{-webkit-animation-play-state:paused;animation-play-state:paused;}
#svg path:nth-child(3){-webkit-animation:pweek 1.8s linear infinite;animation:pweek 1.8s linear infinite;-webkit-animation-delay:0.3s;animation-delay:0.3s;}
#svg path:nth-child(3):hover{-webkit-animation-play-state:paused;animation-play-state:paused;}
#svg path:nth-child(4){-webkit-animation:pweek 1.8s linear infinite;animation:pweek 1.8s linear infinite;-webkit-animation-delay:0.4s;animation-delay:0.4s;}
#svg path:nth-child(4):hover{-webkit-animation-play-state:paused;animation-play-state:paused;}
#svg path:nth-child(5){-webkit-animation:pweek 1.8s linear infinite;animation:pweek 1.8s linear infinite;-webkit-animation-delay:0.5s;animation-delay:0.5s;}
#svg path:nth-child(5):hover{-webkit-animation-play-state:paused;animation-play-state:paused;}
#svg path:nth-child(6){-webkit-animation:pweek 1.8s linear infinite;animation:pweek 1.8s linear infinite;-webkit-animation-delay:0.6s;animation-delay:0.6s;}
#svg path:nth-child(6):hover{-webkit-animation-play-state:paused;animation-play-state:paused;}
#svg path:nth-child(7){-webkit-animation:pweek 1.8s linear infinite;animation:pweek 1.8s linear infinite;-webkit-animation-delay:0.7s;animation-delay:0.7s;}
#svg path:nth-child(7):hover{-webkit-animation-play-state:paused;animation-play-state:paused;}
#svg path:nth-child(8){-webkit-animation:pweek 1.8s linear infinite;animation:pweek 1.8s linear infinite;-webkit-animation-delay:0.8s;animation-delay:0.8s;}
#svg path:nth-child(8):hover{-webkit-animation-play-state:paused;animation-play-state:paused;}
#svg path:nth-child(9){-webkit-animation:pweek 1.8s linear infinite;animation:pweek 1.8s linear infinite;-webkit-animation-delay:0.9s;animation-delay:0.9s;}
#svg path:nth-child(9):hover{-webkit-animation-play-state:paused;animation-play-state:paused;}
#svg path:nth-child(10){-webkit-animation:pweek 1.8s linear infinite;animation:pweek 1.8s linear infinite;-webkit-animation-delay:1s;animation-delay:1s;}
#svg path:nth-child(10):hover{-webkit-animation-play-state:paused;animation-play-state:paused;}
#svg path:nth-child(11){-webkit-animation:pweek 1.8s linear infinite;animation:pweek 1.8s linear infinite;-webkit-animation-delay:1.1s;animation-delay:1.1s;}
#svg path:nth-child(11):hover{-webkit-animation-play-state:paused;animation-play-state:paused;}
#svg path:nth-child(12){-webkit-animation:pweek 1.8s linear infinite;animation:pweek 1.8s linear infinite;-webkit-animation-delay:1.2s;animation-delay:1.2s;}
#svg path:nth-child(12):hover{-webkit-animation-play-state:paused;animation-play-state:paused;}
#svg path:nth-child(13){-webkit-animation:pweek 1.8s linear infinite;animation:pweek 1.8s linear infinite;-webkit-animation-delay:1.3s;animation-delay:1.3s;}
#svg path:nth-child(13):hover{-webkit-animation-play-state:paused;animation-play-state:paused;}
#svg path:nth-child(14){-webkit-animation:pweek 1.8s linear infinite;animation:pweek 1.8s linear infinite;-webkit-animation-delay:1.4s;animation-delay:1.4s;}
#svg path:nth-child(14):hover{-webkit-animation-play-state:paused;animation-play-state:paused;}
#svg path:nth-child(15){-webkit-animation:pweek 1.8s linear infinite;animation:pweek 1.8s linear infinite;-webkit-animation-delay:1.5s;animation-delay:1.5s;}
#svg path:nth-child(15):hover{-webkit-animation-play-state:paused;animation-play-state:paused;}
#svg path:nth-child(16){-webkit-animation:pweek 1.8s linear infinite;animation:pweek 1.8s linear infinite;-webkit-animation-delay:1.6s;animation-delay:1.6s;}
#svg path:nth-child(16):hover{-webkit-animation-play-state:paused;animation-play-state:paused;}
#svg path:nth-child(17){-webkit-animation:pweek 1.8s linear infinite;animation:pweek 1.8s linear infinite;-webkit-animation-delay:1.7s;animation-delay:1.7s;}
#svg path:nth-child(17):hover{-webkit-animation-play-state:paused;animation-play-state:paused;}
#svg path:nth-child(18){-webkit-animation:pweek 1.8s linear infinite;animation:pweek 1.8s linear infinite;-webkit-animation-delay:1.8s;animation-delay:1.8s;}
#svg path:nth-child(18):hover{-webkit-animation-play-state:paused;animation-play-state:paused;}
@-webkit-keyframes pweek{0%{fill:#0057B8;}
20%{fill:#F11E4A;}
40%{fill:#F8A527;}
60%{fill:#266D7F;}
80%{fill:#82A;}
100%{fill:#0057B8;}
}
@keyframes pweek{0%{fill:#0057B8;}
20%{fill:#F11E4A;}
40%{fill:#F8A527;}
60%{fill:#266D7F;}
80%{fill:#82A;}
100%{fill:#0057B8;}
}
.products-sub .products-sub-item{display:none;position:absolute;top:0;left:280px;width:404px;padding:24px;background:#fff;}
.products-sub .top-block{display:flex;margin-bottom:16px;padding-bottom:16px;border-bottom:1px solid #e1e1e6}
.products-sub .top-block .image{width:61px;min-width:61px;height:61px;margin-right:16px}
.products-sub .top-block .image img{width:100%}
.products-sub .top-block .labels{display:flex;flex-wrap:wrap;margin-bottom:4px}
.products-sub .top-block .label{display:inline-flex;margin-right:4px}
.products-sub .top-block .category{margin-bottom:2px;color:#8f8f9d;font-size:11px;line-height:18px;font-weight:bold;letter-spacing:0.04em;text-transform:uppercase}
.products-sub .top-block .name{color:#323237;margin-bottom:8px;white-space:normal !important}
.products-sub .top-block .price-container{display:flex;align-items:center}
.products-sub .top-block .old-price{margin-left:8px}
.products-sub .description{color:#6c6c71}
.products-sub .description p{margin-bottom:12px}
.products-sub .buttons{display:flex;margin-top:28px}
.products-sub .buttons .btn{justify-content:center;flex-basis:49%;color:#fff !important}
.products-sub .buttons .btn:first-of-type{margin-right:8px}
.products-sub .menu-list-1{position:relative;border-right:1px solid #e1e1e6}
.products-sub .menu-list-1 > li.has-sub a:after{display:none}
.products-sub .menu-list-1 > li.has-sub.show .products-sub-item{display:block}
.products-sub .menu-list-1 .extension{position:absolute !important;top:100%;width:684px;padding:20px 24px 24px !important;background:#F8F8FA;border-top:1px solid #e1e1e6; box-shadow: 0px 4px 32px rgb(0 0 0 / 10%);}
.products-sub .menu-list-1 .extension .title{margin-bottom:8px;font-weight:500}
.products-sub .menu-list-1 .extension .title a{display:inline-flex !important;color:#24c !important}

.products-sub .menu-list-1 .extension .text{font-size:14px;line-height:22px;color:#4a4a4f}
.products-sub .menu-list-1>li.has-sub.show>a {background-color: #f5f5f7 !important; font-weight: bold !important;color:#4a4a4f!important;}

.rowz{width:100%;display:flex;justify-content:center;flex-direction:column;position:relative;z-index:1;}
.svg-separator{display:block;background:0 0;position:absolute;left:0;right:0;top:0;z-index:9;-webkit-transform:translateY(-100%) translateY(2px);transform:translateY(-100%) translateY(2px);width:100%;}
.svg-separator.bottom{top:auto;bottom:0;}
.sep7{transform:translateY(-100%) translateY(2px) scale(1,1);transform-origin:top;}
.light-grey2{background-color:#ecf0f1;}
.contacts .contacts-item{padding:56px;background-color:#fff;box-shadow:0px 4px 32px rgba(0, 0, 0, 0.1)}
.contacts .property.phone a{font-size:22px;font-weight:700}
.contacts .contacts-item .left-block .properties .property .value a:hover{color:#E63A26}
.contacts .contacts-item .right-block{width:368px;flex-shrink:1}
.contacts .contacts-item .left-block{padding-right:56px}
.contacts .contacts-item .left-block .heading{margin-bottom:24px}
.contacts .contacts-item .left-block .properties .property-wrap:last-of-type{margin-right:0}
.contacts .contacts-item .left-block .properties .property .title{margin-bottom:4px;color:#6c6c71}
.contacts .contacts-item .left-block .properties .property .value{color:#323237}
.contacts .contacts-item .left-block .properties .property .value a{color:#323237;text-decoration:none}
.contacts .contacts-item .left-block .description{color:#4a4a4f}
.contacts .contacts-item .left-block .description p:last-of-type{margin-bottom:0}
.contacts .contacts-item .left-block .socials-icons a:hover{text-decoration:none}
.contacts .bx-yandex-view-layout{background:#fff;width:100%;overflow:hidden}
.contacts .contacts-page{margin-top:-60px}
.contacts .contacts-page.type-1{padding-top:160px;position:relative;z-index:2;}
.contacts .contacts-page.type-1 .contacts-item{position:relative;margin-top:-290px;left:0;z-index:1;width:100%}
.russia_map{position:relative;top:-80px;z-index:1}
.contact-page .header-title{padding-bottom:160px}
.content-wrapper.contacts{}
.contacts .contacts-page.type-1 .contacts-item .left-block .properties{margin-bottom:40px}
.contacts .contacts-page.type-1 .contacts-item .left-block .socials-icons{margin-bottom:40px}
.contacts .contacts-page.type-1 .contacts-item .left-block .heading{margin-top:0}
.contacts .contacts-page.type-1 .contacts-item .right-block .form-heading{margin-bottom:50px}
.contacts .contacts-page.type-1 .contacts-item .right-block .form-group{margin-bottom:24px}
.contacts .contacts-page.type-1 .contacts-item .right-block .form-group.light textarea.form-control{height:38px}
.contacts .contacts-page.type-1 .contacts-item .right-block .form-group.form-check{margin:24px 0 18px}
.contacts .contacts-page.type-1 .contacts-item .right-block .form-group.form-check.toogle-check .form-check-label{padding-left:53px}
.contacts .contacts-page.type-1 .contacts-item .right-block .form-group.form-check .form-check-input + .form-check-label{font-size:14px}
.contacts .contacts-page.type-1 .bx-yandex-view-layout{height:620px}
.through-banners{position:relative;background:#f8f8fa;z-index:25}
.through-banners .banner-item{display:block;width:100%;background-size:cover;background-position:center center;background-repeat:no-repeat;overflow:hidden}
.through-banners .banner-image{width:100%;height:100%;background-size:cover;background-position:center center;background-repeat:no-repeat}
.through-banners.before_header .banner-item{height:80px}
.through-banners.before_footer{margin-top:80px}
.through-banners.before_footer .banner-item{height:160px}
.through-banners.before_content{margin-bottom:40px}
.through-banners.before_content .banner-item{height:280px}
.through-banners.after_content{margin-top:40px}
.through-banners.after_content .banner-item{height:280px}
.through-banners.sidebar{margin-top:16px}
.through-banners.sidebar .banner-item{height:400px}
.through-banners + .footer{margin-top:0}
.auth-popup-container{position:absolute;right:calc(100% - 145px);top:72px;pointer-events:none}
.auth-popup-container .auth-popup{pointer-events:all}
.auth-popup{width:380px;background:#fff !important;padding:0 32px;box-shadow:0px 4px 32px rgba(0, 0, 0, 0.1);overflow:hidden;height:0;right:0;display:none;position:absolute}
.auth-popup.open{padding-top:24px;padding-bottom:32px;height:auto;animation:fadeIn .3s;display:block}
.auth-popup .auth-actions{margin-top:24px}
.auth-popup .auth-actions .form-check{margin:0}
.auth-popup .auth-actions .form-check-label{margin-bottom:0}
.auth-popup .auth-actions .btn-primary{min-width:120px}
.auth-popup .reg-text{margin-top:32px}
.auth-popup .authorized-text{margin-bottom:24px}
.rate-card{border:none;background-color:#fff;box-shadow:1px 0 0 0 #e1e1e6, 0 1px 0 0 #e1e1e6, 1px 1px 0 0 #e1e1e6, 1px 0 0 0 #e1e1e6 inset, 0 1px 0 0 #e1e1e6 inset;z-index:1}
.rates-section .items:not(.owl-loaded) .item{margin-bottom:0}
.owl-carousel .owl-item:not(.active){opacity:0}
.services-section-list .text-before-items{margin-bottom:40px}
.services-section-list .text-before-items.empty-text{margin-bottom:0}
.services-section-list h2,
.services-section-list .h2,
.services-section-list h3,
.services-section-list .h3{margin-bottom:24px;margin-top:56px}
.services-section-list p{line-height:24px;font-weight:400;letter-spacing:0;text-decoration:none;margin-bottom:24px;color:#4a4a4f}
.services-section-list p:last-child{margin-bottom:0}
.services-section-subcategories .text-before-items{margin-bottom:40px}
.services-section-subcategories h2,
.services-section-subcategories .h2,
.services-section-subcategories h3,
.services-section-subcategories .h3{margin-bottom:24px;margin-top:56px}
.services-section-subcategories p{line-height:24px;font-weight:400;letter-spacing:0;text-decoration:none;margin-bottom:24px;color:#4a4a4f}
.services-section-subcategories p:last-child{margin-bottom:0}
.services-items .item{background-color:#fff}
.services-items.block .item{box-shadow:1px 0 0 0 #e1e1e6, 0 1px 0 0 #e1e1e6, 1px 1px 0 0 #e1e1e6, 1px 0 0 0 #e1e1e6 inset, 0 1px 0 0 #e1e1e6 inset;display:flex;flex-direction:column;transition:box-shadow .2s; border-radius: 10px}
.services-items.block .item .image .svg-color{color:#24c}
.services-items.block .item .image .img{position:relative;width:100%;height:100%;background-size:cover;background-repeat:no-repeat;background-position:center}
.services-items.block .item .name{color:#323237;text-decoration:none}
.services-items.block .item .name:hover{color:#24c}
.services-items.block .item .subcategories{display:flex;flex-wrap:wrap}
.services-items.block .item .subcategories .subcategory{color:#4a4a4f;text-decoration:none;margin:0 16px 4px 0}
.services-items.block .item .subcategories .subcategory:last-of-type{margin-right:0}
.services-items.block .item .subcategories .subcategory:hover{color:#24c}
.services-items.block .item .property-value{margin-bottom:8px;color:#6c6c71}
.services-items.block .item .price-container{margin-top:auto}
.services-items.block .item .price{color:#323237}
.services-items.block .item .old-price{margin-left:8px}
.services-items.block.type1 .item{width:100%;height:100%;padding:32px}
.services-items.block.type1 .item .image{display:flex;justify-content:center;align-items:center;width:64px;height:64px;margin-bottom:26px}
.services-items.block.type1 .item .image img{width:100%}
.services-items.block.type1 .item .name{margin-bottom:16px}
.services-items.block.type2 .items{margin:0 -8px}
.services-items.block.type2 .item-wrap{margin-bottom:16px;padding:0 8px}
.services-items.block.type2 .item{position:relative;width:100%;height:100%}
.services-items.block.type2 .item .image{display:flex;justify-content:center;align-items:center;position:relative;height:210px}
.services-items.block.type2 .item .image .img{position:relative;width:100%;height:100%;background-size:cover;background-repeat:no-repeat;background-position:center}
.services-items.block.type2 .item .info{padding:26px 32px}
.services-items.block.type2 .item .text_wrapper{position:absolute;top:0;left:0;background-color:#fff;height:100%;width:100%;opacity:0}
.services-items.block.type2 .item .text_wrapper:before{content:"";position:absolute;top:0;left:0;right:0;display:block;width:100%;height:26px;background-color:#fff;z-index:1}
.services-items.block.type2 .item .text_wrapper:after{content:"";display:block;position:absolute;bottom:0;left:0;background:linear-gradient(180deg, rgba(255, 255, 255, 0) .88%, #fff 60%);width:100%;height:20%}
.services-items.block.type2 .item .text_wrapper .text{position:relative;top:0;left:0;right:0;display:block;margin:26px 12px 0 32px;padding-right:24px;padding-bottom:15px;font-style:normal;color:#4a4a4f;overflow-y:auto;max-height:80%;background-color:#fff}
.services-items.block.type2 .item .text_wrapper .text .name{display:block;color:#323237;margin-bottom:16px;font-style:normal}
.services-items.block.type2 .item .text_wrapper .text .text-inner{display:block;font-style:normal;color:#6c6c71}
.services-items.block.type2 .item .item-link{text-decoration:none}
.services-items.block.type2.block-subcategory .item .name{margin-bottom:8px}
.services-items.block.type2.block-subcategory .item .text_wrapper .text .name{margin-bottom:8px}
.services-items.block.type2.block-subcategory .item .text_wrapper .text .price-container{margin-bottom:24px}
.services-items.block.type2.block-subcategory .item .text_wrapper .text .text-inner{margin-top:16px}
.services-items.block.type3 .items{margin:0 -8px}
.services-items.block.type3 .item-wrap{margin-bottom:16px;padding:0 8px}
.services-items.block.type3 .item{position:relative;width:100%;height:100%}
.services-items.block.type3 .item .image{display:flex;justify-content:center;align-items:center;position:relative;height:210px}
.services-items.block.type3 .item .image.big{height:260px;}
.services-items.block.type3 .item .image.big .img {border-top-left-radius: 10px;border-top-right-radius: 10px;margin-top: 1px;margin-left: 1px;}
.services-items.block.type3 .item .image .img{position:relative;width:100%;height:100%;background-size:cover;background-repeat:no-repeat;background-position:center}
.services-items.block.type3 .item .image .img-link{position:absolute;top:0;left:0;width:100%;height:100%}
.services-items.block.type3 .item .info{padding:26px 32px}
.services-items.block.type3 .item .name{display:block;margin-bottom:16px}
.services-items.block.type3 .item .text{color:#4a4a4f}
.services-items.block.type3.block-subcategory .item .text{margin-bottom:16px}
.services-items.list .item{box-shadow:1px 0 0 0 #e1e1e6, 0 1px 0 0 #e1e1e6, 1px 1px 0 0 #e1e1e6, 1px 0 0 0 #e1e1e6 inset, 0 1px 0 0 #e1e1e6 inset;display:flex;transition:box-shadow .2s}
.services-items.list .item .image{position:relative;margin-top:4px}
.services-items.list .item .image .img{position:relative;width:100%;height:100%;background-size:cover;background-repeat:no-repeat;background-position:center}
.services-items.list .item .image .img-link{position:absolute;top:0;left:0;width:100%;height:100%}
.services-items.list .item .name{display:block;color:#323237;margin-bottom:16px;text-decoration:none}
.services-items.list .item .name:hover{color:#24c}
.services-items.list .item .preview-text{margin-bottom:16px;color:#4a4a4f}
.services-items.list .item .subcategories{display:flex;flex-wrap:wrap}
.services-items.list .item .subcategories .subcategory{color:#24c;text-decoration:none;margin:0 24px 4px 0}
.services-items.list .item .subcategories .subcategory:last-of-type{margin-right:0}
.services-items.list .item .subcategories .subcategory:hover{color:#323237}
.services-items.list .item .property-value{margin-bottom:8px;color:#6c6c71}
.services-items.list .item .price{color:#323237}
.services-items.list .item .old-price{margin-left:8px}
.services-items.list.type1 .item{padding:40px}
.services-items.list.type1 .item .image{min-width:400px;height:268px;margin-right:40px}
.services-items.list.type1 .item .image img{min-width:400px;height:268px;margin-left:40px}
.services-items.list.type2 .item{padding:56px}
.services-items.list.type2 .item .image{min-width:400px;height:268px;margin-left:56px}
.services-items.list.type2 .item .subcategories{flex-direction:column}
.services-items.list.type2 .item .subcategories .subcategory{position:relative;padding-left:32px}
.services-items.list.type2 .item .subcategories .subcategory:before{content:'';position:absolute;top:12px;left:0;width:16px;height:1px;background-color:#4a4a4f}
.services-items.list.type3 .item{padding:34px 40px}
.services-items.list.type3 .item .image{display:flex;justify-content:center;align-items:center;min-width:64px;max-width:64px;height:64px;margin-right:40px}
.services-items.list.type3 .item .image img{width:100%}
.services-items .scrollbar-inner{max-height:calc(100% - 32px)}
.services-items .scrollbar-inner > .scroll-element.scroll-y{margin-top:32px;height:90%;right:12px;top:0;width:1px}
.services-items .scrollbar-inner > .scroll-element .scroll-element_outer{box-shadow:inset 0 0 4px rgba(0, 0, 0, 0.11)}
.services-items .scrollbar-inner > .scroll-element .scroll-bar{height:40px !important;background-color:#24c}
.blockquote{background:#eee url(/img/quote.png) no-repeat 17px 21px;font-style:italic;padding:20px 20px 20px 55px;}
.blockquote p, .blockquote2 p{margin-top:4px;margin-bottom:8px}
.blockquote2{background:url(/img/quote.png) no-repeat 17px 21px;font-style:italic;padding:20px 20px 20px 55px; background-color:rgb(255,255,255,0.3)}
.garanty{display: -webkit-box;display: -webkit-flex;display: -ms-flexbox;display: flex;-webkit-box-flex-wrap: wrap;-webkit-flex-wrap: wrap;-ms-flex-wrap: wrap;flex-wrap: wrap;gap: 1rem;}
.garanty-icon {
    height: 1.2rem;
    width: 1.2rem;
    color: #E63A26;
    flex-shrink:0
}
.garanty-item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 0.625rem;
    column-gap: 0.625rem;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 6px 16px;
    border-radius: 40px;
    -webkit-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: start;
    border: 0.125rem solid #aaa;
    font-size:18px;
    color: #eee;
    white-space: nowrap;
}

.lead{padding:0 0 0 19px;margin-bottom:0;position:relative;color:#323237}
.lead::before{content:"";display:block;height:100%;width:4px;background-color:#24c;position:absolute;left:0}
ol.list-counter{margin:0;padding:0;padding-left:8px;counter-reset:list1}
ol.list-counter li{list-style-type:none;margin-bottom:12px}
ol.list-counter li::before{counter-increment:list1;content:counter(list1) ". ";margin-right:4px}
ol.list-counter li:last-of-type{margin-bottom:0}
ol.list-counter ol{margin-top:12px;counter-reset:list2;padding-left:22px}
ol.list-counter ol li:before{counter-increment:list2;content:counter(list1) "."counter(list2) ". "}
ul.unstyled,
ol.unstyled{margin:0;padding:0;list-style-type:none}
ul.unstyled li,
ol.unstyled li{margin-bottom:12px}
ul.unstyled ul.list-circle,
ol.unstyled ul.list-circle{padding-left:54px}
.table .thead-light th{line-height:24px;font-weight:400;letter-spacing:0;text-decoration:none;color:#6c6c71;background-color:#fff}
.list.icons li{display:flex;color:#4a4a4f}
.list.icons i{color:#24c;font-size:24px;margin-right:12px}
a{text-decoration:none;color:#24c;}
.tooltip-inner{font-size:14px;line-height:22px;font-weight:400;letter-spacing:0;background-color:#fff;color:#4a4a4f;box-shadow:0px 4px 32px rgba(0, 0, 0, 0.1)}
.bs-tooltip-top .arrow:before{border-top-color:#fff}
a[data-toggle="tooltip"]{text-decoration:none}
a[data-toggle="tooltip"]:hover{color:#24c}
.form-success{display:flex;flex-direction:column;align-items:center;justify-content:center}
.form-success .title{margin-bottom:8px}
.form-success .title:before{font-family:'remixicon' !important;content:"\eb34";border:4px solid #24c;width:132px;height:132px;border-radius:50%;line-height:132px;text-align:center;color:#24c;font-size:52px;display:block;margin:0 auto 24px auto}
.form-success .text{margin-bottom:40px;text-align:center}
.bx-ie .basket-items-list-header-filter-item,
.basket-items-list-header-filter-item.active,
.bx-ie .basket-items-list-header-filter-item:hover,
.input-group .form-control:focus,
.bx-ie .basket-coupon-alert .close-link,
.basket-coupon-alert .close-link{color:#24c}
.basket-items-list-header-filter-item.active{border-bottom:2px solid #24c}
.order-form .bx-soa .bx-soa-section .bx-soa-section-title-container .bx-soa-section-title:before,
.order-form .bx-soa .bx-soa-basket .bx-soa-item-table .bx-soa-item-tr .bx-soa-item-td .bx-soa-item-block .bx-soa-item-title a:hover,
.order-form .bx-soa .bx-soa-section .bx-soa-section-content .bx-soa-coupon .bx-soa-coupon-input:after,
.order-form .bx-soa .bx-soa-section .bx-soa-section-title-container .text-right a:hover{color:#24c}
.order-form .bx-soa .bx-soa-region .bx_soa_location .form-group .radio-inline label input[type="radio"]:checked + span::before,
.order-form.simple .bx-soa .bx-soa-pp-company-line.bx-selected .bx-soa-pp-company-graf-container:before{border-color:#24c;color:#24c}
.order-form .bx-soa .bx-soa-region .bx_soa_location .form-group .radio-inline:hover label span::before,
.order-form.simple .bx-soa .bx-soa-pp-company-line .bx-soa-pp-company-graf-container:hover:before{border-color:#24c}
.order-form .bx-soa .bx-soa-delivery .bx-soa-pp .bx-pagination .bx-pagination-container ul li.bx-active a,
.order-form.simple .bx-soa .bx-soa-pp-company-line.bx-selected .bx-soa-pp-company-graf-container:after,
.order-form .bx-soa .bx-soa-region .bx_soa_location .form-group .radio-inline label input[type="radio"] + span::after{background-color:#24c}
.order-form .bx-soa .bx-soa-orderSave .btn{color:#fff;background-color:#24c}
.order-form .bx-soa .bx-soa-orderSave .btn:hover{background-color:#172e8a}
.partner-element .img{justify-content:flex-start;position:relative;margin-bottom:24px}
.partner-element .img .image{width:auto}
.draw{transition:all 600ms cubic-bezier(.77, 0, .175, 1);position:relative;color:#fff}
.draw:before,
.draw:after{content:'';position:absolute;transition:inherit;z-index:1}
.draw:hover{color:#323237 !important;transition-delay:.6s;background-color:transparent;z-index:1}
.draw:hover:before,
.draw:hover:after{z-index:-1;transition:all 600ms cubic-bezier(.77, 0, .175, 1)}
.draw:hover:before{transition-delay:0s}
.draw:hover:after{background:#fff;transition-delay:.4s}
.from-left:before,
.from-left:after{top:0;width:0;height:100%;z-index:1}
.from-left:before{right:0;border:1px solid #fff;border-left:0;border-right:0}
.from-left:after{left:0}
.from-left:hover:before,
.from-left:hover:after{width:100%}
.videos-list .video iframe{width:100%;border:0}iframe{border:0}
.categories-block{padding:24px 32px;width:306px;margin-bottom:16px;border:1px solid #e1e1e6}
.categories-block .title{padding-bottom:16px;border-bottom:1px solid #e1e1e6;margin-bottom:20px}
.categories-block .category-list-element{display:flex}
.categories-block .category-list-element:not(:last-of-type){margin-bottom:16px}
.categories-block .category-list-element .category{margin-right:auto;padding-right:24px;color:#323237}
.categories-block .category-list-element .category:hover{color:#24c;text-decoration:none}
.categories-block .category-list-element .number-of-elems{align-self:flex-end;color:#6c6c71}
.ready-sites .nav-tabs{margin-bottom:40px}
.ready-sites .ready{margin-bottom:108px}
.ready-sites .ready .item-card{box-shadow:1px 0 0 0 #e1e1e6, 0 1px 0 0 #e1e1e6, 1px 1px 0 0 #e1e1e6, 1px 0 0 0 #e1e1e6 inset, 0 1px 0 0 #e1e1e6 inset;padding:64px 64px 54px 64px;position:relative;background:#fff}
.ready-sites .ready .item{display:flex;}
.ready-sites .ready .item .content{width:100%}
.ready-sites .ready .item .content .labels{display:flex;margin-bottom:12px;margin-top:-24px}
.ready-sites .ready .item .content .labels .label{margin-right:4px}
.ready-sites .ready .item .content .title{margin:0 0 16px}
.ready-sites .ready .item .content .title a{color:#19191e;text-decoration:none}
.ready-sites .ready .item .content .title a:hover{color:#24c}
.ready-sites .ready .item .content .description{margin-bottom:12px;color:#4a4a4f}
.ready-sites .ready .item .content .release{margin-bottom:32px;color:#4a4a4f}
.ready-sites .ready .item .content .props{display:flex;flex-wrap:wrap;margin-bottom:24px}
.ready-sites .ready .item .content .props .prop{display:flex;justify-content:space-between;max-width:312px;width:100%;margin-bottom:8px;margin-right:32px;background-image:url('/img/background-line.svg');background-repeat:repeat-x;background-position:0px 13px}
.ready-sites .ready .item .content .props .prop:nth-of-type(2n){margin-right:0}
.ready-sites .ready .item .content .props .prop .icon{width:32px;height:24px;font-size:24px;color:#5ba508;background-color:#fff;padding-left:8px}
.ready-sites .ready .item .content .props .prop .prop-name{max-width:70%;padding-right:8px;background-color:#fff;color:#6c6c71}
.ready-sites .ready .item-card .actions{display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;padding-top:16px;border-top:1px solid #e1e1e6}
.ready-sites .ready .item-card .actions .price-block{display:flex;align-items:center}
.ready-sites .ready .item-card .actions .price-block .price{color:#323237;font-size:32px}
.ready-sites .ready .item-card .actions .price-block .old-price{line-height:24px;font-weight:400;letter-spacing:0;text-decoration:none;margin-left:16px;color:#6c6c71;text-decoration:line-through}
.ready-sites .ready .item-card .actions .buttons{display:flex}
.ready-sites .ready .item-card .actions .buttons .btn{justify-content:center}
.ready-sites .ready .item-card .actions .buttons .btn:first-of-type{margin-right:8px}
.ready-sites .ready .item .image{max-width:480px;margin-left:64px;min-height:380px}
.ready-sites .ready .item img{max-width:480px;position:relative;}
.ready-sites .ready .item img.imac{position:absolute;top:30px;}
.ready-sites .ready .item img.solution{position:relative;top:-25px;left:8px;border-radius:4px}
.ready-sites .banner-small{margin:40px 0}
.ready-sites .advantages-section.type2{margin-bottom:72px}
.ready-sites .advantages-section.type2:last-of-type{margin-bottom:0}
.solution-page .content {max-width: unset !important;}
.solutions-section .section-name{display:flex;align-items:baseline;justify-content:flex-start;margin-bottom:16px}
.solutions-section .section-name .title{color:#19191e;margin:0}
.solutions-section .section-name .all{text-decoration:none;margin-left:24px;color:#8f8f9d}
.solutions-section .section-name .all:hover{color:#24c}
.solutions-section .owl-dots{display:flex;justify-content:center;position:absolute;width:100%;bottom:40px}
.solutions-section .owl-dots .owl-dot:not(.active){background:black}
.solutions-section .owl-dots button{padding:0;margin:0 4px;display:inline-block;background:#fff;opacity:0.5;border:none;outline:none;height:4px;width:20px}
.solutions-section .owl-dots button.active{width:30px;background:#24c;opacity:1}
.solutions-section .description{margin-bottom:32px}
.solutions-section .ready-sites .ready .item{margin:1px;padding:64px 63px 113px 63px}
.solutions-section .owl-nav{top:calc(50% - 22px);}
.empty-img{max-height:584px;display:flex;justify-content:center}
.empty-img img{width:100%}
.success-popup .popup-content{justify-content:center;display:flex;flex-direction:column;padding:64px 40px;max-width:420px;text-align:center}
.success-popup .popup-content .popup-title{margin-bottom:0}
.success-popup .icon{margin-bottom:24px}
.success-popup .title{color:#19191e;margin-bottom:8px}
.success-popup .text{color:#4a4a4f;margin-bottom:40px}
.success-popup .popup-footer{margin:0 auto}
.nt_aaccess_btn{display:none !important}
.img-lazy-spinner{animation:rotate-lazy-spinner 2s linear infinite;width:50px;height:50px;}
.img-lazy-spinner .path{stroke:#efefef;stroke-linecap:round;animation:dash-lazy-spinner 1.5s ease-in-out infinite;}
.img-lazy-background{display:flex;align-items:center;justify-content:center;}
.ajax-block{min-height:300px;opacity:0;transition:opacity 1s ease-in-out;}
.ajax-block.loaded{opacity:1;}
@-webkit-keyframes wow{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}
30%{-webkit-transform:scale(.7);transform:scale(.7);opacity:.9}
to{-webkit-transform:scale(1);transform:scale(1);opacity:1}
}
@keyframes wow{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}
30%{-webkit-transform:scale(.7);transform:scale(.7);opacity:.9}
to{-webkit-transform:scale(1);transform:scale(1);opacity:1}
}
@keyframes rotate-lazy-spinner{100%{transform:rotate(360deg);}
}
@keyframes dash-lazy-spinner{0%{stroke-dasharray:1, 150;stroke-dashoffset:0;}
50%{stroke-dasharray:90, 150;stroke-dashoffset:-35;}
100%{stroke-dasharray:90, 150;stroke-dashoffset:-124;}
}
.more_btn{position:absolute;bottom:12px;left:32px;font-size:13px;font-weight:700;text-transform:uppercase}
.inv{display:none}
.bold{font-weight:700}
.text-white{color:#fff !important}
.arrow-all{position:absolute;right:20px;top:20px;z-index:1;width:34px;height:8px;}
.svg{display:inline-block;position:relative;background-repeat:no-repeat;background-position:center center;}
.svg svg{display:block;}
svg:not(:root){overflow:hidden;}
.arrow-all__item-arrow{position:absolute;right:0px;top:0px;}
.arrow-all__item-line{background:#eaeaea;height:2px;position:absolute;right:1px;top:3px;left:calc(100% - 18px);transition:left ease .5s;}
.services-section-list .item-wrap:hover .arrow-all__item-line,.services-section .item-wrap:hover .arrow-all__item-line{left:calc(100% - 34px);transition-delay:.1s;}
.services-section-list .item-wrap:hover .stroke-theme-target *,.services-section .item-wrap:hover .stroke-theme-target *{stroke:#9e9e9e;stroke:#24c;}
.services-section-list .item-wrap:hover .stroke-theme-target .arrow-all__item-line,.services-section .item-wrap:hover .stroke-theme-target .arrow-all__item-line{background-color:#24c;}
.arrow-all.bottom{position:absolute;right:30px;top:auto;bottom:30px;z-index:1;width:34px;height:8px;}
.services-section-list .labels {display: flex;margin-bottom:6px;margin-top:-12px;}
.services-section-list .item .text {margin-bottom: 40px}
.services-section-list .price-container {position:absolute;left:30px;bottom:20px;}

.sales {
    background-color: #FCDE77;
    color: #000 !important;
    padding: 5px 8px 2px;
    font-style: normal;
    font-weight: bold;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 8px;
    margin-bottom: 4px;
    transition: all .3s;
    margin-right: 4px;
}

.btn_icon{border-color:#000;flex:0 0 auto;transition:.35s}
.btn_text{margin-right:10px}
.btn_icon{width:14px;height:14px;border:3px solid #fff;border-radius:50%}
.btn-secondary .btn_icon{border:3px solid #24c;}
.btn:hover .btn_icon{transform:scale(1.2)}
.btn:hover .btn_icon{border-color:#fcd005}
.btn:hover.btn-secondary .btn_icon{border-color:#000}
.add .add-to-cart{-webkit-animation:0.3s btn-add normal forwards ease;animation:0.3s btn-add normal forwards ease;}
.add .btn-text{opacity:0;transition:all 0.2s ease-in-out;}
.add .circle{-webkit-animation-delay:0.2s;animation-delay:0.2s;-webkit-animation-name:circle-check-loader;animation-name:circle-check-loader;}
.add .check{-webkit-animation-delay:0.85s;animation-delay:0.85s;-webkit-animation-name:check;animation-name:check;}
@-webkit-keyframes btn-add{80%{opacity:1;}
95%{width:50px;border-radius:100px;background-color:transparent;}
100%{opacity:0;}
}
@keyframes btn-add{80%{opacity:1;}
95%{width:50px;border-radius:100px;background-color:transparent;}
100%{opacity:0;}
}
.product-wrapper .product-card .footer-button .button-container.buy-block .icon-loader-check{top:42%;display:none}
#fly-to-basket{z-index:999}
.btn-wrapper{position:relative}
.icon-loader-check{width:54px;height:54px;position:absolute;top:50%;left:50%;transform:translate(-50%, -50%) rotate(90deg);display:none}
.circle{stroke-dashArray:1666, 1650;stroke-dashoffset:2000;-webkit-animation-timing-function:ease;animation-timing-function:ease;-webkit-animation-fill-mode:forwards;animation-fill-mode:forwards;-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-delay:0s;animation-delay:0s;}
.check{stroke-dashArray:340;stroke-dashoffset:340;-webkit-animation-timing-function:ease;animation-timing-function:ease;-webkit-animation-fill-mode:forwards;animation-fill-mode:forwards;-webkit-animation-duration:0.6s;animation-duration:0.6s;-webkit-animation-delay:1s;animation-delay:1s;}
@-webkit-keyframes circle-check-loader{0%{stroke-dashArray:1666, 1650;stroke-dashoffset:2000;}
100%{stroke-dashOffset:3320;}
}
@keyframes circle-check-loader{0%{stroke-dashArray:1666, 1650;stroke-dashoffset:2000;}
100%{stroke-dashOffset:3320;}
}
@-webkit-keyframes check{0%{stroke-dashArray:340;stroke-dashoffset:340;opacity:0;}
40%{opacity:1;}
100%{stroke-dashOffset:94;opacity:1;}
}
@keyframes check{0%{stroke-dashArray:340;stroke-dashoffset:340;opacity:0;}
40%{opacity:1;}
100%{stroke-dashOffset:94;opacity:1;}
}

.subcategories a {position: relative}

span.labels {
    background-color: #60c339;
    width: auto;
    display: inline-block;
    color: #fff;
    padding: 2px 9px;
    border-radius: 999px;
    font-size: 12px;
    line-height: 14px;
    font-weight: 700;
    vertical-align: middle;
}
span.labels.hit{background-color:#60c339}
span.labels.hot{background-color:#E6351E}
/* NEW стал оранжевым, красный ушёл к HOT. Текст тут тёмный, а не белый:
   на оранжевом #f8a527 белый даёт контраст 2:1 и на 12px не читается,
   тёмно-коричневый — 7,4:1. Оранжевый взят из палитры темы. */
span.labels.new{background-color:#f8a527;color:#3a2200}
span.labels.sale{background-color:#2244cc}
/* Стикер идет в потоке текста ссылки, а не поверх соседних пунктов */
.subcategories span.labels,
.sidebar-left .sidebar-menu ul li .sub li a span.labels,
.sidebar-right .sidebar-menu ul li .sub li a span.labels,
.header.type1-fixed .main-header .menu .menu-list-0 span.labels,
.header.type8 .bottom-header .menu .menu-list-0 span.labels{display:inline-block;position:static;right:auto;top:auto;padding:2px 9px;margin:0 0 0 4px;color:#fff;line-height:14px;white-space:nowrap}
/* У пунктов со стикером .fly переехал на текст - подчеркивание не должно залезать на пилюлю */
.header.type1-fixed .main-header .menu .menu-list-0 a span.fly,
.header.type8 .bottom-header .menu .menu-list-0 a span.fly{color:inherit}

.work-section {
  position: relative;
 }
.work-section .icon-dotted-map-2 {
  right: 0;
  margin: 0 auto;
  top: 170px;
}
.work-section .icon-plane-1 {
  top: 150px;
  left: 100%;
  margin-left: 130px;
}

.work-block {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 50px;
}
.work-block:last-child .icon-box:after {
  display: none;
}
.work-block .inner-box {
  position: relative;
}
.work-block .inner-box .icon-box {
  background-color: #e63a26;
}

.work-block .inner-box:hover .icon-box {
  background-color: #fff;
}


.work-section h2 {font-size: 26px;line-height: 30px;    font-weight: 400; margin-top: 40px;  margin-bottom: 60px}

.work-block .inner-box:hover .icon-box svg {
-webkit-transform: rotate(180deg) scale(-1);
transform: rotate(180deg) scale(-1);
fill: #24c;
  
}
.work-block .icon-box {
  position: relative;
  height: 190px;
  width: 190px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-shadow: 0 10px 60px rgba(0, 0, 0, 0.07);
          box-shadow: 0 10px 60px rgba(0, 0, 0, 0.07);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  border-radius: 50%;
  margin: 0 auto 30px;
  background-color: #ffffff;
}



.work-block .icon-box svg {
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
      width: 100px;
    fill: #fff;
}
.work-block .title {
  position: relative;
  font-size: 30px;
 line-height: 34px;
  font-weight: 700;
  padding-top: 25px;
}
.work-block .title:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  height: 7px;
  width: 185px;
  content: "";
  background-color: #e63a26;
}

.work-block .title:after {display:none}

.hide_desk {
  display: none;
}

@media (max-width: 1024px) {
  .top-description {display:none}
    .contacts-page .col {flex: auto}
    .contacts .contacts-item .left-block {padding-right:0}
    .contacts-page .col-auto, .contacts .contacts-item .right-block{width: 100%}
}



@media (max-width: 900px) {
  .hide_desk {
    display: block;
  }
    
    .mwidth100 {width: 100%}
}

.themepage_dark-blocks {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;

}

.themepage-dark {
  
   
  
    padding: 40px 50px 28px 40px;
    color: var(--white);
    border-radius: 26px;
    background: #23252f;
    background-image: url(/img/dark3.jpg);
    background-attachment: fixed;
    background-position: top center;
    background-repeat: no-repeat;
    margin-bottom: 24px;
}

.folio {
  
   
  
    padding: 40px 100px 28px 40px;
    color: var(--white);
    border-radius: 10px;
    background: #23252f;
    background-size: cover;
   
    background-position: top center;
    background-repeat: no-repeat;
    margin-bottom: 24px;

}

.themepage-dark_name {
    margin: 0;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: .6px;
}

.themepage-dark_text {
    margin: 0;
    font-size: 18px;
    line-height: 1.4;
    letter-spacing: .36px;
}


.fs26{font-size:26px}
.fs36{font-size:36px; line-height: 46px}
.fs68{font-size:68px; line-height: 76px}
.fs78{font-size:78px; line-height: 88px}
.fs88{font-size:88px; line-height: 98px}
.fs120{font-size:120px; line-height: 122px}
.red {color:#ff0000 !important; font-weight: bold}
.whites {color:#fff !important;}
.yellow {color:#f4be42 !important; font-weight: bold}
.wauto {width: auto !important}
.hide {display: none}
.width70 {width: 70%;margin: 0 auto}
.topm2{top:-2px}
.mr8{margin-right:8px}
.mr12{margin-right:12px}
.ml20{margin-left:20px}
.mr20{margin-right:20px}
.w100{width:100%}
.w60{width:60%}
.mb12{margin-bottom:12px !important}
.mb16{margin-bottom:16px !important}
.mb18{margin-bottom:18px !important}
.mb20{margin-bottom:20px !important}
.mb26{margin-bottom:26px !important}
.mb56{margin-bottom:56px !important}
.mb80{margin-bottom:80px !important}
.mb100{margin-bottom:100px !important}
.mt26{margin-top:26px !important}
.mt30{margin-top:30px !important}
.mt45{margin-top:45px !important}
.mt56{margin-top:56px !important}
.mt80{margin-top:80px !important}
.mt100{margin-top:100px !important}
.mt_110{margin-top:-166px !important}
.mt0{margin-top:0 !important}
.pt10{padding-top:10px}
.pt20{padding-top:20px}
.pt30{padding-top:30px}
.pt40{padding-top:40px}
.pb2{padding-bottom:2px !important}
.pb26{padding-bottom:26px !important}
.st0{fill:#24c;}
.st1{fill:#ed1f24;}
.st2{fill:#353545;}
.svggrid{position:absolute;z-index:1;width:64px;height:64px}
.svgrel{position:relative;z-index:2;}
.mb0{margin-bottom:0 !important}
.sshadow{margin-bottom:20px;line-height:1;text-shadow:0 1px 0 #c9cfce, 0 2px 0 #bcc2c2, 0 3px 0 #afb6b6, 0 4px 0 #a4adac, 0 5px 0 #9fa8a7, 0 0 5px rgb(0 0 0/5%), 0 1px 3px rgb(0 0 0/20%), 0 3px 5px rgb(0 0 0/20%), 0 5px 10px rgb(0 0 0/20%), 0 10px 10px rgb(0 0 0/20%), 0 20px 20px rgb(0 0 0/30%);color:#2f2c2c !important;}
body{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-smooth:always;-webkit-text-rendering:geometricPrecision;-moz-text-rendering:geometricPrecision;-ms-text-rendering:geometricPrecision;-o-text-rendering:geometricPrecision;text-rendering:geometricPrecision;}
a.fit{width:fit-content}span.fly{cursor: pointer}
a.fly,span.fly{-webkit-transition:0.2s ease-in-out;-moz-transition:0.2s ease-in-out;-ms-transition:0.2s ease-in-out;-o-transition:0.2s ease-in-out;transition:0.2s ease-in-out;position:relative;cursor:pointer;line-height:1.5;text-decoration:none;}
a.fly:hover::before, a.fly:focus::before,span.fly:hover::before, span.fly:focus::before{right:0%;background:#24c;}
a.fly::before,span.fly::before{-webkit-transition:0.2s linear;-moz-transition:0.2s linear;-ms-transition:0.2s linear;-o-transition:0.2s linear;transition:0.2s linear;content:'';display:block;height:.04em;position:absolute;left:0;right:100%;bottom:0;background:#24c;}
.arrow-button{display:inline-block;color:#000000;}
.arrow-button .arrow-button__name{display:inline-block;position:relative;}
.arrow-button .arrow-button__name::before{-webkit-transition:0.2s ease-in-out;-moz-transition:0.2s ease-in-out;-ms-transition:0.2s ease-in-out;-o-transition:0.2s ease-in-out;transition:0.2s ease-in-out;content:'';display:block;height:.04em;position:absolute;left:0;right:100%;bottom:-10px;background:#000000;}
.arrow-button .arrow-button__arrow{display:inline-block;width:35px;height:24px;vertical-align:middle;fill:none;shape-rendering:geometricPrecision;stroke:#000000;stroke-width:2;stroke-miterlimit:10;opacity:0 !important;-webkit-transition:opacity 1s ease-in-out;-moz-transition:opacity 1s ease-in-out;-ms-transition:opacity 1s ease-in-out;-o-transition:opacity 1s ease-in-out;transition:opacity 1s ease-in-out;}
.arrow-button:hover .arrow-button__arrow, .arrow-button:focus .arrow-button__arrow{opacity:1 !important;}
.arrow-button[data-type=left] .arrow-button__arrow{margin-right:16px;}
.arrow-button[data-type=right] .arrow-button__arrow{margin-left:16px;}
.arrow-button:hover,
.arrow-button:focus{color:#000000;}
.arrow-button:hover .arrow-button__name::before,
.arrow-button:focus .arrow-button__name::before{right:0;background:#000000;}
.arrow-button:active{color:#000000;}
.arrow-button:active .arrow-button__name::before{background:#000000;}
.arrow-button.white .arrow-button__arrow{stroke:#fff;}
.arrow-button.white{color:#fff;}
.arrow-button.white .arrow-button__name::before{background:#fff;}
@media all and (max-width:640px){.arrow-button[data-type=left] .arrow-button__arrow{margin-right:10px;}
.arrow-button[data-type=right] .arrow-button__arrow{margin-left:10px;}
}
@supports (transition:initial){.projects .projects-items.block-1 .items .item:before{transition:all 2s;}
}
@media (-webkit-transition){.projects .projects-items.block-1 .items .item:before{transition:none;}
}
#przv_future__center_post_footer, .przv_future_popup_copy{display:none !important}
.lazyloaded .img-lazy-spinner {display: none}
@media (min-width:1200px){body.width-1648 .col-40{flex:0 0 25%;max-width:25%}
body.width-1648 .col-30{flex:0 0 33.333333%;max-width:33.333333%}
body.width-1168 .col-20{flex:0 0 33.333333%;max-width:33.333333%}
}
@media (max-width:1664px){.width-1648 .company-section .wrap{padding-left:36px}
}
@media (max-width:1600px){
.header.type1-fixed .main-header .menu .full-sub .item{width:33.3%}
.header.type8 .bottom-header .menu .full-sub .item{width:33.3%}
}
@media (max-width:1440px) {
.header.type8 .main-header .menu .menu-list-0 > li, .header.type1-fixed .main-header .menu .menu-list-0 > li{margin: 0 18px 0 0;}
.qrcode{width:180px;height:180px}
}
@media (max-width:1380px){.qrcode{width:160px;height:160px}
.header.type8 .bottom-header .menu .menu-list-0 > li > a{padding:12px 48px;font-size: 16px}
.contacts .property.phone a{font-size: 20px}
}
@media (max-width:1366px) {
.services-section.type2 .items .item .previewtext {font-size: 16px;line-height: 22px}
.font-element-title-big{font-size:24px;line-height:28px;}
.header.type1-fixed .main-header .menu-list-0 li > a, .header.type1-fixed .main-header .menu-list-0 li > span {font-size: 17px;} 
.header.type8 .main-header .menu .menu-list-0 > li, .header.type1-fixed .main-header .menu .menu-list-0 > li{margin: 0 20px 0 0;}
.solution-page .catalog .item-information .custom-checkbox .custom-control-label .label-title {min-width: 86%;}
}
@media (max-width:1365px){.ready-sites .ready .item .content .props .prop{max-width:unset;margin-right:0}
.header.type18 .main-header .contacts .phone{flex-direction:column}
.header.type18 .main-header .contacts .phone .btn-link{padding-left:30px}
.advantages-section .wrap{padding:0;flex-direction:column}
.sidebar-left,
.sidebar-right{display:none}
.action-block .filter-mobile-btn{display:flex}
.partners .list{justify-content:flex-start}
.width-1360 .company-section .wrap{padding-left:16px}
.item-card .card-wrapper .item-information{max-width:100%}
.item-card .card-wrapper .item-information .footer-button .button-container.buy-block .buttons{min-width:auto}
.item-card .card-wrapper .item-information .footer-button.has-counter .counter-wrapper .count{min-width:auto;width:100%}
.projects-element .head-info{max-width:100%}
}
@media (max-width:1280px) {
.fs120 {font-size: 100px;line-height: 102px;}
.fs68{font-size:48px; line-height: 46px}
.fs78{font-size:58px; line-height: 58px}
.fs88{font-size:68px; line-height: 68px}
.header.type8 .bottom-header .menu .menu-list-0 > li > a{padding:12px 56px;}
.contacts .property.phone a{font-size: 18px}
.ready-sites .ready .item .content .props .prop{max-width:unset;margin-right:0}
.ready-sites .ready .item .content .actions{flex-direction:column;align-items:flex-start}
.ready-sites .ready .item .content .actions .price-block{margin-bottom:16px}
.header.type1 .main-header .contacts .location .current span{max-width:130px}
.rate-card:hover{border-color:#e1e1e6;box-shadow:1px 0 0 0 #e1e1e6, 0 1px 0 0 #e1e1e6, 1px 1px 0 0 #e1e1e6, 1px 0 0 0 #e1e1e6 inset, 0 1px 0 0 #e1e1e6 inset}
.header.type15 .main-header .contacts .phone{flex-direction:column}
.header.type15 .main-header .contacts .phone .btn-link{padding-left:30px}
.item-card .consultation-tizer{display:none}
.item-card .card-wrapper{flex-direction:column}
.item-card .card-wrapper .card-wrap{flex-direction:column}
.item-card .card-wrapper .product-img{margin:0 auto 32px}
.item-card .card-wrapper .item-information{width:100%;margin-left:0}
.item-card .card-wrapper .item-information .sku-props-container{display:flex;margin-bottom:24px}
.item-card .card-wrapper .item-information .sku-props-container .sku-prop:not(:last-of-type){margin-right:12px;padding-right:12px;border-right:1px solid #e1e1e6}
.item-card .card-wrapper .item-information .logo{right:24px;top:24px}
.item-card .card-wrapper .item-information .footer-button{max-width:408px;width:100%}
.item-card .card-wrapper .item-information .footer-button .button-container.buy-block .buttons{min-width:200px}
.item-card .card-wrapper .item-information .footer-button.has-counter .counter-wrapper .count{min-width:100%;width:auto}
.item-card .card-wrapper .item-information .btn-ask-question{max-width:408px;width:100%}
.item-card .card-wrapper .item-information .left-info{flex:0 0 100%;max-width:100%;order:1}
.item-card .card-wrapper .item-information .right-info{flex:0 0 100%;max-width:100%;text-align:left !important}
.item-card .card-wrapper .item-information .brand-img{margin-bottom:24px}
.nav-mobile{display:flex}
.width-1168 .company-section .wrap{padding-left:16px}
.contacts .contacts-item .left-block .property-wrap{margin:0 0 16px 0}
.projects-element .head-block{flex-direction:column}
.projects-element .project-img{margin:0 auto 24px;width:100%;}
.projects-element .head-info{width:100%;margin-left:0}
.projects-element .head-info .buttons{max-width:408px}    
.header.type8 .bottom-header .menu .menu-list-0 > li > a{padding:12px 42px;}
.header.type8 .main-header .menu .menu-list-0 > li, .header.type1-fixed .main-header .menu .menu-list-0 > li{margin: 0 15px 0 0;}
.header.type1-fixed .main-header .menu-list-0 li > a, .header.type1-fixed .main-header .menu-list-0 li > span {font-size: 16px;}
}
@media (max-width:1169px){
  .fs120 {font-size: 82px;line-height: 84px;}
  .fs88 {font-size: 62px;line-height: 64px;}
  .fs68{font-size:42px; line-height: 42px}
  .fs78{font-size:52px; line-height: 52px}

  .reason .title p {font-size:58px;}
  .reason .title .small {font-size: 28px;line-height: 34px;}
  .reason .title p span {top: 78px}
.header.type8 .bottom-header .menu .menu-list-0 > li > a{padding:12px 40px;}
.full-main-menu-popup .type1 .full-screen-menu-1 > li > a, .full-main-menu-popup .type1 .full-screen-menu-2 > li > a{font-size: 16px;}
}
@media (max-width:1024px){
  .w60{width:90%}
.header.type8 .bottom-header .menu .menu-list-0 > li > a{padding:12px 25px;}
.header.type8 .bottom-header .menu .menu-list-0 a.font-element-title-small{font-size: 18px;line-height: 22px}
.bitrix img{width:100%}
.font-element-title-big{font-size:18px;line-height:24px} 
.font-element-title{font-size:22px}
.header.type8 .main-header .logo .slogan {display: none}
.box_item {padding: 16px;}
 .garanty {display: -webkit-box;display: -webkit-flex;display: -ms-flexbox;display: flex;overflow-x: scroll;-webkit-box-pack: start;-ms-flex-pack: start;-webkit-justify-content: flex-start;justify-content: flex-start;-webkit-box-flex-wrap: nowrap;-webkit-flex-wrap: nowrap;-ms-flex-wrap: nowrap;flex-wrap: nowrap;cursor: pointer;}
.parallax {background-position: top right !important;}

}

@media (max-width:992px){
.reason .title p span {font-size: 100px}
.fs120 {font-size: 46px;line-height: 48px;}
.fs88 {font-size: 42px;line-height: 44px;}
.fs68{font-size:36px; line-height: 38px}
.fs78{font-size:38px; line-height: 40px}
.fs36 {font-size: 26px;line-height: 28px;}
.fs26 {font-size: 22px;line-height: 24px;}
}

@media (min-width:992px){@-moz-document url-prefix(){.product-wrapper.block .product-card.has-properties:hover .hover-content-properties{transition-timing-function:ease-in;transition:0.1s}
}


.ready-sites .ready .item-card{transition:box-shadow .3s}
.ready-sites .ready .item-card:hover{box-shadow:0px 4px 32px rgba(0, 0, 0, 0.1);z-index:1}
.solutions-section .owl-nav{width:calc(100% + 44px);left:-22px}
.product-wrapper .product-card{transition:box-shadow .3s}
.product-wrapper .product-card:hover{box-shadow:0px 4px 32px rgba(0, 0, 0, 0.1);z-index:21}
.product-wrapper .product-card:hover .label{opacity:1;cursor:default}
.product-wrapper.block .product-card:hover{top:0;left:0;width:100%;height:auto;z-index:21;box-shadow:0px 4px 16px rgba(0, 0, 0, 0.1)}
.product-wrapper.block .product-card:hover .hover-content{display:block;position:absolute;width:100%;padding:32px;padding-top:0;left:0;box-shadow:0px 14px 13px rgba(0, 0, 0, 0.1);background-color:#fff;z-index:21}
.product-wrapper.block .product-card:hover .name{max-height:none}
.product-wrapper.block .product-card:hover .name-wrapper{height:auto}
.product-wrapper.block .product-card.has-properties:hover{position:relative;box-shadow:none}
.product-wrapper.block .product-card.has-properties:hover .img{display:block}
.product-wrapper.block .product-card.has-properties:hover .name-wrapper{height:110px}
.product-wrapper.block .product-card.has-properties:hover .labels{display:none}
.product-wrapper.block .product-card.has-properties:hover .hover-content{display:none}
.product-wrapper.block .product-card.has-properties:hover .hover-content-properties{opacity:1;pointer-events:auto;box-shadow:0px 4px 32px rgba(0, 0, 0, 0.1);animation:fadeIn .2s}
.product-wrapper.block .product-card.has-properties:hover .hover-content-properties .hover-content{display:block}
.product-wrapper.block .product-card.has-properties:hover .hover-content-properties .name-wrapper{height:auto}
.product-wrapper.list .product-card:hover{border-color:transparent}
.product-wrapper.sheets .product-card:hover{border-color:transparent}
.services-items.block .item{transition:box-shadow .3s}
.services-items.block .item:hover{box-shadow:0px 4px 32px rgba(0, 0, 0, 0.1);z-index:1}
.services-items.block.type1 .item-wrap{transition:box-shadow .3s}
.services-items.block.type1 .item-wrap:hover{box-shadow:0px 4px 32px rgba(0, 0, 0, 0.1);z-index:1}
.services-items.block.type1 .item-wrap:hover .item{box-shadow:unset}
.services-items.block.type2 .item:hover .text_wrapper{opacity:1;animation:fadeIn .3s}
.services-items.list .item-wrap{transition:box-shadow .3s}
.services-items.list .item-wrap:hover{box-shadow:0px 4px 32px rgba(0, 0, 0, 0.1);z-index:1}
.services-items.list .item-wrap:hover .item{box-shadow:unset}
.services-section.type2 .item-wrap{transition:box-shadow .3s;}
.services-section.type2 .item-wrap:hover{box-shadow:0px 4px 32px rgba(0, 0, 0, 0.1);z-index:1}
.services-section.type2 .item-wrap:hover svg{-webkit-animation-name:wow;animation-name:wow;-webkit-animation-duration:.4s;animation-duration:.4s;}
.services-section.type2 .item-wrap:hover .item{box-shadow:unset}

.services-element .services-element-pic .service-card .price-container{margin-left:24px}
.categories .item:hover{box-shadow:0px 4px 32px rgba(0, 0, 0, 0.1);border-color:transparent;z-index:21}
.categories .item:hover .name{color:#24c}

}
@media (prefers-reduced-motion:reduce){.custom-switch .custom-control-label::after{transition:none;}
.form-control{transition:none;}.btn{transition:none;}.collapsing{transition:none;}.fade{transition:none;}
.custom-control-label::before,.custom-file-label,.custom-select{transition:none;}
.progress-bar-animated{-webkit-animation:none;animation:none;}.progress-bar{transition:none;}.badge{transition:none;}
.carousel-indicators li{transition:none;}.carousel-control-prev,
.carousel-control-next{transition:none;}.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-right{transition:none;}.carousel-item{transition:none;}.modal.fade .modal-dialog{transition:none;}
}

@media (max-width: 767px) {

 .cookie-agreement.type5 {
        width: calc(100% - 32px);
        left: 0;
        bottom: 80px;
        margin: 0 12px
    }

    .cookie-agreement.type5 .inner {
        padding: 12px
    }

 
  
}

@media (max-width: 599px) {
  .hidden-xl{display:none !important}
    :root {
    --maxwidth-gap: 20px;
}
.tabs__body .tabs__list {
    flex-wrap: nowrap;
    overflow: auto;
    margin-right: calc(-1 * var(--maxwidth-gap));
    margin-left: calc(-1 * var(--maxwidth-gap));
    padding-left: var(--maxwidth-gap);
    padding-right: var(--maxwidth-gap);
    padding-bottom: 14px;
    margin-bottom: 0.875rem;
}
    
.tabs__list .tabs__item {
    order: 2;
    flex-shrink: 0;
}
    
    
}
.blue {color:#24c !important}

@media (max-width: 360px) {
.fs120 {font-size: 42px;line-height: 44px;}
.fs88 {font-size: 36px;line-height: 38px;}
.fs68{font-size:28px; line-height: 30px}
.fs78{font-size:28px; line-height: 30px}
.fs36 {font-size: 20px;line-height: 22px;}
}