@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap");
:root {
  --bg-main: #F0F0F2;
  --base-white: #FFF;
  --base-orange: #DB6534;
  --base-grafit: #182D5C;
  --grey-text-footer: #A1A5B9;
  --bg-social-media: #474A5D;
  --tourism: #9B51E0;
  --green: #6AAD49;
  --base-lightgrey: #ABABB9;
  --base-dark-grey: #818698;
  --stroke-light: #E5E4EB;
  --base-light-grey: #ABABB9;
  --base-red: #ff4646;
  --property: #2F80ED;
  --light-bg: #F4F6F9;
  --orange: #DB6534;
  --blue: #182D5C;
  --blue-text: #2C467F;
  --light-blue-bg: #EBF2FB;
  --container-w: 1300px;
  --header-padding: 20px;
  --fz-big: 56px;
  --fz-h1: 42px;
  --fz-h2: 44px;
  --fz-h3: 38px;
  --fz-h4: 24px;
  --fz-h5: 22px;
  --fz-p: 18px;
  --fz-p-min: 16px;
  --padding-section: 120px;
  --padding-gap: 60px;
}
@media screen and (max-width: 1350px) {
  :root {
    --container-w: 1200px;
    --fz-big: 46px;
    --fz-h1: 38px;
    --fz-h2: 36px;
    --fz-h3: 32px;
    --fz-h4: 22px;
    --fz-h5: 18px;
    --fz-p: 17px;
    --fz-p-min: 15px;
    --padding-section: 80px;
    --padding-gap: 60px;
  }
}
@media screen and (max-width: 1200px) {
  :root {
    --container-w: 1100px;
    --fz-big: 40px;
    --fz-h1: 36px;
    --fz-h2: 28px;
    --fz-h3: 30px;
    --fz-h4: 22px;
    --fz-h5: 18px;
    --fz-p: 17px;
    --fz-p-min: 15px;
    --padding-section: 60px;
    --padding-gap: 40px;
  }
}
@media screen and (max-width: 1024px) {
  :root {
    --fz-big: 34px;
    --fz-h1: 30px;
    --fz-h2: 22px;
    --fz-h3: 24px;
    --fz-h4: 20px;
    --fz-h5: 18px;
    --fz-p: 16px;
    --fz-p-min: 14px;
    --padding-section: 40px;
    --padding-gap: 30px;
  }
}
@media screen and (max-width: 768px) {
  :root {
    --fz-big: 34px;
    --fz-h1: 30px;
    --fz-h2: 22px;
    --fz-h3: 24px;
    --fz-h4: 20px;
    --fz-h5: 18px;
    --fz-p: 16px;
    --fz-p-min: 14px;
    --padding-section: 40px;
    --padding-gap: 16px;
  }
}

/*
// <uniquifier>: Use a unique and descriptive class name
// <weight>: Use a value from 200 to 800

.manrope-<uniquifier> {
  font-family: "Manrope", serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}
 */
/* width */
::-webkit-scrollbar {
  width: 10px;
}
@media screen and (max-width: 768px) {
  ::-webkit-scrollbar {
    width: 5px;
    height: 3px;
  }
}

/* Track */
::-webkit-scrollbar-track {
  background: #F7F8FA;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--base-orange);
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: var(--base-grafit);
}

body {
  font-family: "Manrope", serif;
  background: #fff;
  font-feature-settings: "pnum" on, "lnum" on;
  line-height: normal;
  font-size: var(--fz-p);
}
@media screen and (max-width: 768px) {
  body.menu_opened {
    overflow: hidden;
  }
}
body.path-kalkulyator, body.page-node-type-kalkulyator, body.path-podbor, body.page-node-type-podbor {
  background: var(--light-bg);
}

* {
  box-sizing: border-box;
}

a, button {
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

a {
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

.container {
  width: var(--container-w);
  max-width: calc(100% - 40px);
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .container {
    max-width: calc(100% - 30px);
  }
}
@media screen and (max-width: 768px) {
  .container {
    max-width: 100%;
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }
}
.container__flex {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .container__flex {
    flex-flow: column;
    justify-content: flex-start;
  }
}
.container__flex .layout-sidebar-first {
  width: calc(25% - 20px);
  padding-bottom: var(--padding-top);
}
@media screen and (max-width: 1024px) {
  .container__flex .layout-sidebar-first {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .container__flex .layout-sidebar-first {
    width: 100%;
    display: none;
  }
}
.container__flex .layout-content {
  width: calc(75% - 20px);
  padding-bottom: var(--padding-top);
}
@media screen and (max-width: 1024px) {
  .container__flex .layout-content {
    width: 100%;
  }
}
.container__fluid {
  width: 100%;
  padding-left: var(--padding-gap);
  padding-right: var(--padding-gap);
}

.layout-container {
  position: relative;
}
.section__grey, .section__white, .section__darkgrey {
  padding-top: var(--padding-section);
  padding-bottom: var(--padding-section);
}
.section__podbor {
  padding-bottom: var(--padding-section);
}
.section__sm {
  padding-top: 60px;
  padding-bottom: 60px;
}
.section__grey {
  background-color: var(--bg-main);
}
.section__grey + .section__grey {
  padding-top: 0;
}
.section__white + .section__white {
  padding-top: 0;
}
.node--id-4 .section__white {
  padding-bottom: calc(var(--padding-section) / 2);
}
.section__darkgrey {
  background-color: var(--base-grafit);
}
.section__darkgrey + .section__darkgrey {
  padding-top: 0;
}
.section__lightblue {
  background-color: var(--light-blue-bg, #EBF2FB);
  border-radius: 20px 20px 0 0;
  padding-top: var(--padding-section);
  padding-bottom: var(--padding-section);
  margin-top: -20px;
}
.section__lightblue + .section__lightblue {
  padding-top: 0;
}
.section__light {
  background-color: var(--light-bg);
  padding-top: var(--padding-section);
  padding-bottom: var(--padding-section);
}
.section__light + .section__light {
  padding-top: 0;
}
.section__prodtop {
  background-color: #F4F6F9;
  padding-top: var(--padding-gap);
  padding-bottom: var(--padding-gap);
}
.section__prodtop + .section__prodtop {
  padding-top: 0;
}
.section__prodbot {
  background-color: #fff;
  padding-top: var(--padding-gap);
  padding-bottom: var(--padding-section);
}
.section__prodbot + .section__prodbot {
  padding-top: 0;
}
.section__blue {
  background-color: var(--blue-text);
  border-radius: 20px 20px 0 0;
  padding-top: var(--padding-section);
  padding-bottom: var(--padding-section);
  margin-top: -20px;
}
.section__blue + .section__blue {
  padding-top: 0;
}
.section__fwswiper {
  overflow: hidden;
}
.section__title {
  color: var(--blue-text, #2C467F);
  font-size: var(--fz-h5);
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  margin-bottom: calc(var(--padding-section) / 2);
  display: inline-flex;
  align-items: center;
}
.section__blue .section__title {
  color: #fff;
}
.section__title:before {
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background-color: var(--orange);
  margin-right: 8px;
  content: "";
  display: block;
}
.section__title__flexcol {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.section__title__flexcol:before {
  display: none;
}
.section__title__flexcol .section__title__val {
  color: var(--blue-text, #2C467F);
  font-size: var(--fz-h5);
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
}
.section__title__flexcol .section__title__val:before {
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background-color: var(--orange);
  margin-right: 8px;
  content: "";
  display: block;
}
.section__title__img {
  border-radius: 20px;
  aspect-ratio: 8/7;
  display: block;
  background-image: url(../images/about_l.jpg);
  background-position: center;
  background-size: cover;
  width: 100%;
  max-width: 400px;
}
.section__title__classik {
  color: var(--blue-text, #2C467F);
  font-size: 44px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  margin-bottom: calc(var(--padding-section) / 2);
}
@media screen and (max-width: 1200px) {
  .section__title__classik {
    font-size: 36px;
  }
}
@media screen and (max-width: 1024px) {
  .section__title__classik {
    font-size: 32px;
  }
}
@media screen and (max-width: 768px) {
  .section__title__classik {
    font-size: 24px;
  }
}
.section__btns {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .section__btns {
    margin-top: 20px;
  }
  .section__btns .btn {
    width: 100%;
  }
}
.section__desc {
  color: var(--blue-text, #2C467F);
  font-size: var(--fz-h2);
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
}
.section__blue .section__desc {
  color: #fff;
}
.section__desc strong, .section__desc b {
  font-weight: 400;
  color: var(--orange);
}
.section__desc p:first-child {
  margin-top: 0;
}
.section__desc p:last-child {
  margin-bottom: 0;
}
.section__head {
  display: flex;
  flex-flow: row wrap;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: var(--padding-gap);
}
.section__head:last-child {
  margin-bottom: 0;
}
.section__head .section__title {
  margin-bottom: 0;
  width: calc(33.33333% - 10px);
}
@media screen and (max-width: 1024px) {
  .section__head .section__title {
    width: 100%;
  }
}
.section__head .section__content,
.section__head .section__desc {
  width: calc(66.666666% - 10px);
}
@media screen and (max-width: 1024px) {
  .section__head .section__content,
  .section__head .section__desc {
    width: 100%;
  }
}

.button,
.btn {
  border: 1px solid transparent;
  border-radius: 10px;
  background: var(--base-orange);
  color: var(--base-white);
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 70px;
  padding: 10px 40px;
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  .button,
  .btn {
    height: 50px;
    font-size: 14px;
  }
}
.button:hover,
.btn:hover {
  text-decoration: none;
  background: var(--base-orange);
  color: var(--base-white);
  opacity: 0.9;
}
.button__bordered,
.btn__bordered {
  background: transparent;
  color: var(--base-orange);
  border-color: #565A6F;
}
.button__bordered:hover,
.btn__bordered:hover {
  color: var(--base-grafit);
  background: var(--base-orange);
  border-color: var(--base-orange);
}
.button__transparent,
.btn__transparent {
  border-color: transparent;
  background: transparent;
  color: #fff;
}
.button__transparent:hover,
.btn__transparent:hover {
  border-color: transparent;
  background: transparent;
  color: #fff;
  opacity: 0.9;
}

lite-youtube:before {
  display: none;
}
lite-youtube > .lty-playbtn {
  width: 60px;
  height: 60px;
  background-repeat: no-repeat;
  background-size: 99% 99%;
  background-position: center;
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  transition: all 0.2s ease-in-out;
}
lite-youtube:hover > .lty-playbtn {
  opacity: 0.8;
}

.messages__wrapper .placeholder {
  background: transparent;
}

.domain-by .firstdom__by {
  order: -1;
}

.domain-kz .firstdom__kz {
  order: -1;
}

.domain-uz .firstdom__uz {
  order: -1;
}

.text_content {
  color: var(--blue-text, #2C467F);
  font-size: 30px;
}
@media screen and (max-width: 1200px) {
  .text_content {
    font-size: var(--fz-h2);
  }
}
@media screen and (max-width: 1024px) {
  .text_content {
    font-size: var(--fz-h2);
  }
}
.text_content a:not(.btn) {
  color: var(--orange);
}
.text_content a:not(.btn):hover {
  text-decoration: none;
  color: var(--orange);
}
.text_content h2 {
  margin-top: 60px;
  color: var(--blue-text, #2C467F);
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .text_content h2 {
    font-size: var(--fz-h2);
  }
}
.text_content h3 {
  margin-top: 40px;
  color: var(--blue-text, #2C467F);
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .text_content h3 {
    font-size: var(--fz-h3);
  }
}
.text_content h4 {
  margin-top: 30px;
  color: var(--blue-text, #2C467F);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .text_content h4 {
    font-size: var(--fz-h4);
  }
}
.text_content h2, .text_content h3, .text_content h4, .text_content h5, .text_content h6, .text_content p, .text_content ul {
  max-width: 100%;
}
.text_content h2:first-child, .text_content h3:first-child, .text_content h4:first-child, .text_content h5:first-child, .text_content h6:first-child, .text_content p:first-child, .text_content ul:first-child {
  margin-top: 0;
}
.text_content h2:last-child, .text_content h3:last-child, .text_content h4:last-child, .text_content h5:last-child, .text_content h6:last-child, .text_content p:last-child, .text_content ul:last-child {
  margin-top: 0;
}
.text_content blockquote {
  border-radius: 17px;
  background: #F3F1EC;
  padding: 40px 15% 40px 30px;
  border: none;
  color: #74716A;
  font-size: 16px;
  margin: 40px 0;
}
.text_content blockquote:before {
  width: 24px;
  height: 24px;
  margin-bottom: 10px;
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
}
.text_content a.text__tglink {
  color: #3DA8D6;
}
.text_content a.text__tglink:hover {
  color: #3DA8D6;
  text-decoration: none;
  opacity: 0.9;
}
.text_content a.text__viberlink {
  color: #7F40BD;
}
.text_content a.text__viberlink:hover {
  color: #7F40BD;
  text-decoration: none;
  opacity: 0.9;
}

.quote {
  border-radius: 20px;
  background: var(--base-white, #FFF);
  border-top: 3px solid var(--orange);
  padding: 40px 30px;
  max-width: 910px;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .quote {
    padding: 30px 16px;
  }
}

.text_content ul {
  display: flex;
  width: 100%;
  flex-direction: column;
  list-style: none;
  padding: 0;
  gap: 10px;
}
.text_content ul li {
  position: relative;
  padding-left: 20px;
}
.text_content ul li:before {
  box-sizing: border-box;
  display: block;
  position: absolute;
  left: 0;
  top: 6px;
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 100%;
  border: 2px solid var(--orange);
}

ul.tabs {
  margin-bottom: 30px;
}
ul.tabs > li {
  display: inline-block;
  margin-right: 0.3em;
}
ul.tabs a {
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 30px;
  background: var(--base-grafit);
  color: var(--base-white);
  border: 1px solid transparent;
  padding: 5px 20px;
  max-width: 100%;
  cursor: pointer;
}
ul.tabs a.is-active, ul.tabs a:focus, ul.tabs a:hover {
  background: var(--base-orange);
  color: var(--base-white);
  text-decoration: none;
}

#block-yoshitake-primary-local-tasks {
  padding-left: 20px;
  padding-right: 20px;
}

.breadcrumb {
  padding: 12px 0;
  color: #FFF;
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .breadcrumb {
    color: var(--blue-text, #2C467F);
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 110%;
  }
}
@media screen and (min-width: 768px) {
  .region-breadcrumb .breadcrumb {
    padding: 0;
  }
}
.breadcrumb ol {
  margin: 0;
  padding: 0;
}
.breadcrumb li {
  display: inline;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.breadcrumb li::before {
  content: " / ";
}
.breadcrumb li:first-child::before {
  content: none;
}
.breadcrumb li a {
  color: var(--base-grafit);
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .region-breadcrumb .breadcrumb li a {
    color: rgba(255, 255, 255, 0.6);
  }
}
@media screen and (max-width: 768px) {
  .breadcrumb li a {
    opacity: 0.6;
  }
}
.breadcrumb li a:hover {
  opacity: 0.8;
  text-decoration: none;
}
.region-breadcrumb .breadcrumb li a:hover {
  opacity: 0.6;
}
@media screen and (max-width: 768px) {
  .region-breadcrumb .breadcrumb li a:hover {
    opacity: 1;
  }
}

.pager__items {
  padding-left: 0;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.pager__item, .js-pager__items .pager__item {
  padding: 3px;
}
.pager__item a:not(.button), .js-pager__items .pager__item a:not(.button) {
  width: 40px;
  height: 40px;
  background: var(--base-white);
  border: 1px solid var(--stroke-light, #E5E4EB);
  border-radius: 100%;
  display: inline-flex;
  font-weight: 600;
  font-size: 18px;
  align-items: center;
  justify-content: center;
  color: var(--base-grafit);
  text-decoration: none;
  text-align: center;
}
.pager__item a:not(.button):hover, .js-pager__items .pager__item a:not(.button):hover {
  border-color: var(--base-orange);
  background: var(--base-orange);
  color: #fff;
}
.pager__item.is-active a, .js-pager__items .pager__item.is-active a {
  border-color: var(--base-orange);
  background: var(--base-orange);
  color: #fff;
}

.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 99; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0, 0, 0); /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
}
.modal__closer {
  position: fixed;
  top: 0;
  bottom: 0;
  display: block;
}
@media screen and (max-width: 768px) {
  .modal__closer {
    display: none;
  }
}
.modal_content {
  background-color: #fefefe;
  margin: 0 0 0 auto;
  border: none;
  width: 50%;
  height: 100%;
  transition: left 0.6s ease-in-out;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .modal_content {
    width: 100%;
  }
}
.modal__content {
  max-height: 100%;
  overflow: auto;
  padding: 70px 11%;
  margin-top: auto;
  margin-bottom: auto;
}
@media screen and (max-width: 768px) {
  .modal__content {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.modal.opened {
  display: block;
  opacity: 1;
}
.modal.opened .modal_content {
  left: 50%;
}
@media screen and (max-width: 768px) {
  .modal.opened .modal_content {
    left: 0;
  }
}
.modal.opened .modal__closer {
  width: 50%;
  left: 0;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .modal.opened .modal__closer {
    display: none;
  }
}
.modal {
  /* The Close Button */
}
.modal .close {
  top: 20px;
  left: calc(50% + 20px);
  position: absolute;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .modal .close {
    left: 10px;
    top: 10px;
  }
}
.modal .close svg {
  transition: all 0.2s ease-in-out;
}
@media screen and (max-width: 768px) {
  .modal .close svg {
    width: 20px;
    height: auto;
  }
}
.modal .close:hover, .modal .close:focus {
  color: var(--base-orange);
}
.modal .close:hover svg, .modal .close:focus svg {
  fill: var(--base-orange);
}
.modal__title {
  margin-bottom: 28px;
  font-weight: 800;
  font-size: 40px;
}
@media screen and (max-width: 768px) {
  .modal__title {
    margin-bottom: 16px;
    font-size: 24px;
  }
}
.modal__text {
  font-size: 20px;
  line-height: 140%;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .modal__text {
    font-size: 14px;
    margin-bottom: 16px;
  }
}
.modal__form__input {
  margin-bottom: 30px;
}
.modal__form__input label {
  display: block;
  font-weight: 400;
  font-size: 18px;
  color: #848797;
  margin-bottom: 5px;
}
.modal__form__input input[type=text] {
  border: none;
  padding: 3px 0;
  border-bottom: 1px solid #C6D4DE;
  width: 100%;
  font-size: 18px;
}
.modal__form__input input[type=text]:focus {
  border-color: var(--base-orange);
  outline: none;
}
.modal__form__input input[type=text].error {
  border-color: var(--base-red);
}
.modal__form__input textarea {
  border: 1px solid #C6D4DE;
  border-radius: 14px;
  min-height: 150px;
  width: 100%;
  padding: 10px 20px;
}
.modal__form__input textarea:focus {
  border-color: var(--base-orange);
  outline: none;
}
.modal__form__input textarea.error {
  border-color: var(--base-red);
}
.modal__form__footer {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}
.modal__form__footer .btn {
  width: calc(50% - 10px);
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .modal__form__footer .btn {
    margin-right: 0;
    width: 100%;
    margin-bottom: 10px;
  }
}
.modal__form__footer .pd_text {
  margin-left: auto;
  width: calc(50% - 10px);
}
@media screen and (max-width: 768px) {
  .modal__form__footer .pd_text {
    margin-left: 0;
    width: 100%;
  }
}
.modal .section {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.topfront {
  padding: 20px;
}
@media screen and (max-width: 768px) {
  .topfront {
    padding: 16px;
  }
}
.topfront__content {
  border-radius: 20px;
  padding: var(--padding-gap);
  background-image: url("../images/topfront_bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  min-height: 800px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
@media screen and (max-width: 1350px) {
  .topfront__content {
    min-height: 580px;
  }
}
@media screen and (max-width: 1200px) {
  .topfront__content {
    min-height: 400px;
  }
}
@media screen and (max-width: 1024px) {
  .topfront__content {
    min-height: 350px;
  }
}
@media screen and (max-width: 768px) {
  .topfront__content {
    min-height: 550px;
  }
}
.topfront__title {
  color: #FFF;
  text-align: center;
  font-size: 80px;
  font-style: normal;
  font-weight: 800;
  line-height: 110%;
  letter-spacing: -2.4px;
  margin-top: 0;
  margin-bottom: var(--padding-gap);
}
@media screen and (max-width: 1350px) {
  .topfront__title {
    font-size: 64px;
  }
}
@media screen and (max-width: 1200px) {
  .topfront__title {
    font-size: 60px;
  }
}
@media screen and (max-width: 1024px) {
  .topfront__title {
    font-size: 40px;
    letter-spacing: -0.96px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 768px) {
  .topfront__title {
    font-size: 32px;
    letter-spacing: -0.96px;
    margin-bottom: 40px;
  }
}
.topfront .field--name-field-ssylki {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .topfront .field--name-field-ssylki {
    max-width: 320px;
    margin: 0 auto;
    flex-wrap: wrap;
  }
}
.topfront .field--name-field-ssylki a {
  display: inline-flex;
  border-radius: 14px;
  width: min(350px, 100%);
  max-width: 100%;
  min-height: 140px;
  color: var(--blue);
  background: #fff;
  font-size: var(--fz-h4);
  padding: 20px 50% 20px 20px;
  transition: all 0.2s ease-in-out;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .topfront .field--name-field-ssylki a {
    padding: 16px 40% 16px 16px;
    font-size: var(--fz-h5);
    min-height: 120px;
  }
}
@media screen and (max-width: 1024px) {
  .topfront .field--name-field-ssylki a {
    min-height: 100px;
    width: min(250px, 100%);
    padding: 10px 50% 10px 20px;
  }
}
@media screen and (max-width: 768px) {
  .topfront .field--name-field-ssylki a {
    width: 100%;
    min-height: 100px;
    line-height: 100%;
  }
}
.topfront .field--name-field-ssylki a svg {
  color: var(--orange);
}
.topfront .field--name-field-ssylki a:after {
  height: 34px;
  right: 20px;
  bottom: 20px;
  width: 34px;
  display: inline-block;
  position: absolute;
  background-position: center;
  background-size: contain;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzUiIGhlaWdodD0iMzQiIHZpZXdCb3g9IjAgMCAzNSAzNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgaWQ9InRkZXNpZ246YXJyb3ctdXAiPgo8cGF0aCBpZD0iVmVjdG9yIiBkPSJNOC43Nzg0NCAyMy40MjUzTDIwLjM4NDUgMTEuODE5MkwxMS4zNjg5IDExLjgxOTJMMTEuMzY4OSA4Ljk4NjNMMjUuMjIwOSA4Ljk4NjNMMjUuMjIwOSAyMi44MzgzTDIyLjM4OCAyMi44MzgzTDIyLjM4OCAxMy44MjI3TDEwLjc4MTkgMjUuNDI4OEw4Ljc3ODQ0IDIzLjQyNTNaIiBmaWxsPSIjREI2NTM0Ii8+CjwvZz4KPC9zdmc+Cg==");
  background-repeat: no-repeat;
  content: "" !important;
  transition: all 0.2s;
}
.topfront .field--name-field-ssylki a:hover {
  text-decoration: none;
  opacity: 0.8;
}
.topfront .field--name-field-ssylki a:first-child {
  background: var(--orange);
  color: #fff;
}
.topfront .field--name-field-ssylki a:first-child:after {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzUiIGhlaWdodD0iMzQiIHZpZXdCb3g9IjAgMCAzNSAzNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgaWQ9InRkZXNpZ246YXJyb3ctdXAiPgo8cGF0aCBpZD0iVmVjdG9yIiBkPSJNOC43Nzg0NCAyMy40MjUzTDIwLjM4NDUgMTEuODE5MkwxMS4zNjg5IDExLjgxOTJMMTEuMzY4OSA4Ljk4NjNMMjUuMjIwOSA4Ljk4NjNMMjUuMjIwOSAyMi44MzgzTDIyLjM4OCAyMi44MzgzTDIyLjM4OCAxMy44MjI3TDEwLjc4MTkgMjUuNDI4OEw4Ljc3ODQ0IDIzLjQyNTNaIiBmaWxsPSJ3aGl0ZSIvPgo8L2c+Cjwvc3ZnPgo=");
}
.topfront .field--name-field-ssylki a:first-child svg {
  color: #fff;
}

.paragraph--type--produkciya .field--name-field-kategorii {
  display: flex;
  flex-flow: row wrap;
  gap: 20px;
}
@media screen and (max-width: 1024px) {
  .paragraph--type--produkciya .field--name-field-kategorii {
    gap: 8px;
  }
}
.paragraph--type--produkciya .wengi_logo {
  margin-top: 50px;
  width: 300px;
  display: block;
  height: auto;
  max-width: 100%;
}

.paragraph--type--item-produkciya {
  width: calc(16.6666666667% - 17px);
  border-radius: 20px;
  background: #F4F6F9;
  display: flex;
  padding: 20px;
  color: var(--blue-text, #2C467F);
  font-size: 20px;
  font-style: normal;
  font-weight: 800;
  line-height: 120%;
  letter-spacing: -0.4px;
  flex-direction: column;
}
@media screen and (max-width: 1550px) {
  .paragraph--type--item-produkciya {
    width: calc(25% - 15px);
    font-size: 18px;
  }
}
@media screen and (max-width: 1024px) {
  .paragraph--type--item-produkciya {
    width: calc(50% - 4px);
    text-align: center;
    align-items: center;
    font-size: 15px;
  }
}
.paragraph--type--item-produkciya .field--name-field-izobrazhenie {
  margin-bottom: 30px;
}
.paragraph--type--item-produkciya .field--name-field-izobrazhenie img {
  height: 90px;
  width: auto;
  display: block;
}
.paragraph--type--item-produkciya .icon_more {
  width: 40px;
  aspect-ratio: 1/1;
  border-radius: 100%;
  background: var(--base-white, #FFF);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  margin-top: auto;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .paragraph--type--item-produkciya .icon_more {
    display: none;
  }
}
.paragraph--type--item-produkciya .icon_more svg {
  width: 24px;
  height: auto;
  display: block;
}
.paragraph--type--item-produkciya:hover {
  text-decoration: none;
  background: var(--blue);
  color: var(--base-white);
}
.paragraph--type--item-produkciya.width__spec, .paragraph--type--item-produkciya.width__tret {
  width: calc(33.3333333333% - 14px);
  flex-direction: row;
  position: relative;
  align-items: center;
}
@media screen and (max-width: 1550px) {
  .paragraph--type--item-produkciya.width__spec, .paragraph--type--item-produkciya.width__tret {
    width: calc(50% - 10px);
  }
}
@media screen and (max-width: 1024px) {
  .paragraph--type--item-produkciya.width__spec, .paragraph--type--item-produkciya.width__tret {
    width: calc(50% - 4px);
    flex-direction: column;
  }
}
.paragraph--type--item-produkciya.width__spec .field--name-field-izobrazhenie, .paragraph--type--item-produkciya.width__tret .field--name-field-izobrazhenie {
  width: 40%;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .paragraph--type--item-produkciya.width__spec .field--name-field-izobrazhenie, .paragraph--type--item-produkciya.width__tret .field--name-field-izobrazhenie {
    width: 100%;
    height: 140px;
  }
}
.paragraph--type--item-produkciya.width__spec .field--name-field-izobrazhenie img, .paragraph--type--item-produkciya.width__tret .field--name-field-izobrazhenie img {
  height: 200px;
  max-width: 100%;
  width: auto;
  display: block;
}
@media screen and (max-width: 1550px) {
  .paragraph--type--item-produkciya.width__spec .field--name-field-izobrazhenie img, .paragraph--type--item-produkciya.width__tret .field--name-field-izobrazhenie img {
    width: 100%;
    height: auto;
  }
}
@media screen and (max-width: 768px) {
  .paragraph--type--item-produkciya.width__spec .field--name-field-izobrazhenie img, .paragraph--type--item-produkciya.width__tret .field--name-field-izobrazhenie img {
    height: auto;
    max-width: 100%;
    max-height: 100%;
  }
}
.paragraph--type--item-produkciya.width__spec .icon_more, .paragraph--type--item-produkciya.width__tret .icon_more {
  position: absolute;
  bottom: 20px;
  right: 20px;
}
.paragraph--type--item-produkciya.width__spec {
  min-height: 200px;
  border-radius: 20px;
  background: var(--orange, #DB6534);
  color: var(--base-white, #FFF);
  font-size: 34px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%; /* 34px */
  letter-spacing: -0.68px;
  justify-content: flex-start;
  align-items: flex-start;
}
@media screen and (max-width: 1550px) {
  .paragraph--type--item-produkciya.width__spec {
    width: calc(50% - 10px);
  }
}
@media screen and (max-width: 1024px) {
  .paragraph--type--item-produkciya.width__spec {
    width: 100%;
    font-size: 20px;
    min-height: 100px;
  }
  .paragraph--type--item-produkciya.width__spec .icon_more {
    display: inline-flex;
  }
}
.paragraph--type--item-produkciya.width__spec:hover {
  text-decoration: none;
  background: var(--blue);
  color: var(--base-white);
}

.paragraph--type--tekst .field--name-field-tekst img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
}
.paragraph--type--tekst .field--name-field-tekst table {
  text-align: left;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  color: var(--blue-text, #2C467F);
  font-size: var(--fz-p);
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .paragraph--type--tekst .field--name-field-tekst table, .paragraph--type--tekst .field--name-field-tekst table tbody {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .paragraph--type--tekst .field--name-field-tekst table tr {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
}
.paragraph--type--tekst .field--name-field-tekst table tr th, .paragraph--type--tekst .field--name-field-tekst table tr td {
  padding: 30px 30px 30px 0;
  border-bottom: 1px solid #E5EAEF;
}
.paragraph--type--tekst .field--name-field-tekst table tr th {
  color: var(--orange, #DB6534);
  font-size: 26px;
}
@media screen and (max-width: 768px) {
  .paragraph--type--tekst .field--name-field-tekst table tr th {
    font-size: 22px;
    padding: 23px 0 3px;
    border-color: transparent;
  }
}
@media screen and (max-width: 768px) {
  .paragraph--type--tekst .field--name-field-tekst table tr td {
    padding: 0 0 23px;
  }
}

.section__blue .paragraph--type--item-trigger {
  border-left: 1px solid #4562A3;
  color: #fff;
  padding-left: 30px;
}
@media screen and (max-width: 1200px) {
  .section__blue .paragraph--type--item-trigger {
    padding-left: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .section__blue .paragraph--type--item-trigger {
    border-left: none;
    padding-left: 0;
  }
}
@media screen and (max-width: 768px) {
  .section__blue .paragraph--type--item-trigger {
    padding-left: 0;
    border-left: none;
    padding-bottom: 30px;
    border-bottom: 1px solid #4562A3;
  }
}
.section__blue .paragraph--type--item-trigger .field--name-field-ikonka {
  margin-bottom: 90px;
}
@media screen and (max-width: 1200px) {
  .section__blue .paragraph--type--item-trigger .field--name-field-ikonka {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 1024px) {
  .section__blue .paragraph--type--item-trigger .field--name-field-ikonka {
    margin-bottom: 30px;
  }
  .section__blue .paragraph--type--item-trigger .field--name-field-ikonka img {
    width: 40px;
    height: auto;
  }
}
@media screen and (max-width: 768px) {
  .section__blue .paragraph--type--item-trigger .field--name-field-ikonka {
    margin-bottom: 20px;
  }
}
.section__blue .paragraph--type--item-trigger .field--name-field-zagolovok,
.section__blue .paragraph--type--item-trigger .field--name-field-description {
  max-width: 85%;
}
@media screen and (max-width: 768px) {
  .section__blue .paragraph--type--item-trigger .field--name-field-zagolovok,
  .section__blue .paragraph--type--item-trigger .field--name-field-description {
    max-width: 100%;
  }
}
.section__blue .paragraph--type--item-trigger .field--name-field-zagolovok {
  font-size: 30px;
}
@media screen and (max-width: 1200px) {
  .section__blue .paragraph--type--item-trigger .field--name-field-zagolovok {
    font-size: 24px;
  }
}
@media screen and (max-width: 1024px) {
  .section__blue .paragraph--type--item-trigger .field--name-field-zagolovok {
    font-size: 22px;
  }
}
@media screen and (max-width: 768px) {
  .section__blue .paragraph--type--item-trigger .field--name-field-zagolovok {
    font-size: var(--fz-h3);
  }
}
.section__blue .paragraph--type--item-trigger .field--name-field-description {
  color: #839CD5;
  font-size: 20px;
  margin-top: 30px;
}
@media screen and (max-width: 1200px) {
  .section__blue .paragraph--type--item-trigger .field--name-field-description {
    margin-top: 20px;
    font-size: 18px;
  }
}
@media screen and (max-width: 1024px) {
  .section__blue .paragraph--type--item-trigger .field--name-field-description {
    font-size: 18px;
    margin-top: 20px;
  }
}
@media screen and (max-width: 768px) {
  .section__blue .paragraph--type--item-trigger .field--name-field-description {
    margin-top: 10px;
    font-size: var(--fz-h5);
  }
}

.section__white .paragraph--type--item-trigger {
  color: var(--blue-text);
  border-radius: 20px;
  border: 1px solid #E5EAEF;
  padding: 20px;
}
.section__white .paragraph--type--item-trigger .field--name-field-ikonka {
  margin-bottom: 70px;
}
@media screen and (max-width: 1200px) {
  .section__white .paragraph--type--item-trigger .field--name-field-ikonka {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 768px) {
  .section__white .paragraph--type--item-trigger .field--name-field-ikonka {
    margin-bottom: 30px;
  }
}
.section__white .paragraph--type--item-trigger .field--name-field-ikonka img {
  width: 32px;
  height: auto;
}
.section__white .paragraph--type--item-trigger .field--name-field-zagolovok {
  font-size: 18px;
  font-weight: 600;
}

.section__blue .field--name-field-triggery {
  display: flex;
  flex-flow: row wrap;
  gap: 40px 20px;
}
@media screen and (max-width: 768px) {
  .section__blue .field--name-field-triggery {
    gap: 30px;
  }
}
.section__blue .field--name-field-triggery > .field__item {
  width: calc(33.33% - 14px);
}
@media screen and (max-width: 768px) {
  .section__blue .field--name-field-triggery > .field__item {
    width: 100%;
  }
}
.section__blue .field--name-field-triggery > .field__item .paragraph--type--item-trigger {
  height: 100%;
}

.section__white .field--name-field-triggery {
  display: flex;
  flex-flow: row wrap;
  gap: 20px;
}
.section__white .field--name-field-triggery > .field__item {
  width: calc(25% - 15px);
}
@media screen and (max-width: 768px) {
  .section__white .field--name-field-triggery > .field__item {
    width: 100%;
  }
}
.section__white .field--name-field-triggery > .field__item .paragraph--type--item-trigger {
  height: 100%;
}

.paragraph--type--obratnaya-svyaz .section__head .section__title {
  width: 30%;
}
@media screen and (max-width: 768px) {
  .paragraph--type--obratnaya-svyaz .section__head .section__title {
    width: 100%;
  }
}
.paragraph--type--obratnaya-svyaz .section__head .section__content {
  width: 40%;
}
@media screen and (max-width: 1200px) {
  .paragraph--type--obratnaya-svyaz .section__head .section__content {
    width: 50%;
  }
}
@media screen and (max-width: 1024px) {
  .paragraph--type--obratnaya-svyaz .section__head .section__content {
    width: calc(70% - 20px);
  }
}
@media screen and (max-width: 768px) {
  .paragraph--type--obratnaya-svyaz .section__head .section__content {
    width: 100%;
  }
}
.paragraph--type--obratnaya-svyaz .field--name-field-opisanie {
  color: #2C467F;
  font-size: var(--fz-h3);
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
}
.paragraph--type--obratnaya-svyaz .field--name-field-opisanie p {
  margin: 0;
}
.paragraph--type--obratnaya-svyaz .webform-submission-obratnaya-svyaz-form {
  padding-top: var(--padding-gap);
}

.field--name-field-kontakty {
  display: flex;
  flex-flow: row wrap;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .field--name-field-kontakty {
    gap: 8px;
  }
}
.field--name-field-kontakty > .paragraph--type--item-kontakt,
.field--name-field-kontakty > .field__item {
  width: calc(33.33% - 14px);
}
@media screen and (max-width: 768px) {
  .field--name-field-kontakty > .paragraph--type--item-kontakt,
  .field--name-field-kontakty > .field__item {
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .field--name-field-kontakty > .paragraph--type--item-kontakt .paragraph--type--item-kontakt,
  .field--name-field-kontakty > .field__item .paragraph--type--item-kontakt {
    height: 100%;
  }
}

.paragraph--type--item-kontakt {
  border-radius: 20px;
  border: 1px solid #DEE5EC;
  padding: 35px 20px 20px 20px;
  color: var(--blue-text, #2C467F);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  display: flex;
  flex-direction: column;
}
.paragraph--type--item-kontakt .field--name-field-zagolovok {
  color: var(--orange, #DB6534);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  text-transform: uppercase;
  margin-bottom: 25px;
}
.paragraph--type--item-kontakt .item_kontakt__val,
.paragraph--type--item-kontakt .field--name-field-opisanie {
  margin-bottom: 20px;
}
.paragraph--type--item-kontakt .item_kontakt__val p,
.paragraph--type--item-kontakt .field--name-field-opisanie p {
  margin: 0;
}
.paragraph--type--item-kontakt .item_kontakt__links {
  display: flex;
  gap: 4px;
}
.paragraph--type--item-kontakt .item_kontakt__links a {
  border-radius: 100%;
}
.paragraph--type--item-kontakt .item_kontakt__links a svg {
  width: 30px;
  height: auto;
  display: block;
}
.paragraph--type--item-kontakt .item_kontakt__links a:hover {
  text-decoration: none;
  opacity: 0.8;
}
.paragraph--type--item-kontakt .field--name-field-ikonka {
  display: flex;
  justify-content: flex-end;
  margin-top: auto;
}
.domain-kz .paragraph--type--item-kontakt .field--name-field-opisanie, .domain-uz .paragraph--type--item-kontakt .field--name-field-opisanie {
  display: none;
}

.textphot {
  display: flex;
  flex-flow: row wrap;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .textphot {
    gap: 16px;
  }
}
.textphot .field--name-field-opisanie,
.textphot .field--name-field-izobrazhenie {
  width: calc(50% - 10px);
}
@media screen and (max-width: 768px) {
  .textphot .field--name-field-opisanie,
  .textphot .field--name-field-izobrazhenie {
    width: 100%;
  }
}
.textphot .field--name-field-opisanie {
  border-radius: 20px;
  background: var(--light-blue-bg, #EBF2FB);
  padding: 35px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--blue-text);
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
}
@media screen and (max-width: 768px) {
  .textphot .field--name-field-opisanie {
    padding: 30px 16px;
    font-size: 20px;
  }
}
.textphot .field--name-field-opisanie ul {
  list-style-type: none;
  padding-left: 0;
  margin: 0;
}
.textphot .field--name-field-opisanie ul li {
  position: relative;
  padding-left: 36px;
  margin-bottom: 10px;
  color: var(--blue-text);
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
}
@media screen and (max-width: 768px) {
  .textphot .field--name-field-opisanie ul li {
    font-size: 20px;
  }
}
.textphot .field--name-field-opisanie ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-image: url("../images/li_check.svg");
  background-repeat: no-repeat;
  background-position: center;
}
.textphot .field--name-field-opisanie ul li:last-child {
  margin-bottom: 0;
}
.textphot .field--name-field-izobrazhenie img {
  width: 100%;
  display: block;
  height: auto;
  border-radius: 20px;
}

.domain-kz .paragraph--type--kontakty .firstdom__by,
.domain-uz .paragraph--type--kontakty .firstdom__by {
  order: 2;
}

.wrapper_nf {
  display: grid;
  grid-template-columns: 1fr;
  justify-content: center;
  align-items: center;
  height: 60dvh;
  min-height: 500px;
  overflow: hidden;
  background: var(--bg-main);
}
.wrapper_nf .container {
  margin: 0 auto;
  transition: all 0.4s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 100%;
}
.wrapper_nf .container .scene {
  position: absolute;
  width: 100%;
  height: 100%;
  vertical-align: middle;
}
.wrapper_nf .container .one,
.wrapper_nf .container .two,
.wrapper_nf .container .three,
.wrapper_nf .container .circle,
.wrapper_nf .container .p404 {
  width: 100%;
  height: 60%;
  top: 20% !important;
  left: 0 !important;
}
.wrapper_nf .container .one .content,
.wrapper_nf .container .two .content,
.wrapper_nf .container .three .content,
.wrapper_nf .container .circle .content,
.wrapper_nf .container .p404 .content {
  width: 100%;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: content 0.8s cubic-bezier(1, 0.06, 0.25, 1) backwards;
}
@keyframes content {
  0% {
    width: 0;
  }
}
.wrapper_nf .container .one .content .piece,
.wrapper_nf .container .two .content .piece,
.wrapper_nf .container .three .content .piece,
.wrapper_nf .container .circle .content .piece,
.wrapper_nf .container .p404 .content .piece {
  width: 200px;
  height: 80px;
  display: flex;
  position: absolute;
  border-radius: 80px;
  z-index: 1;
  animation: pieceLeft 8s cubic-bezier(1, 0.06, 0.25, 1) infinite both;
}
@keyframes pieceLeft {
  50% {
    left: 80%;
    width: 10%;
  }
}
@keyframes pieceRight {
  50% {
    right: 80%;
    width: 10%;
  }
}
@media screen and (max-width: 1024px) {
  .wrapper_nf .container .one,
  .wrapper_nf .container .two,
  .wrapper_nf .container .three,
  .wrapper_nf .container .circle,
  .wrapper_nf .container .p404 {
    width: 90%;
    height: 90%;
    top: 5% !important;
    left: 5% !important;
    min-width: 280px;
    min-height: 280px;
  }
}
@media screen and (max-height: 660px) {
  .wrapper_nf .container .one,
  .wrapper_nf .container .two,
  .wrapper_nf .container .three,
  .wrapper_nf .container .circle,
  .wrapper_nf .container .p404 {
    min-width: 280px;
    min-height: 280px;
    width: 60%;
    height: 60%;
    top: 20% !important;
    left: 20% !important;
  }
}
.wrapper_nf .container .text {
  width: 60%;
  height: 40%;
  min-width: 400px;
  min-height: 500px;
  position: absolute;
  margin: 40px 0;
  animation: text 0.6s 1.8s ease backwards;
}
@keyframes text {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
}
@media screen and (max-width: 1024px) {
  .wrapper_nf .container .text {
    min-height: 400px;
    height: 80%;
  }
}
.wrapper_nf .container .text article {
  width: 400px;
  position: absolute;
  bottom: 0;
  z-index: 4;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 1024px) {
  .wrapper_nf .container .text article {
    width: 100%;
  }
}
.wrapper_nf .container .text article p {
  color: var(--base-grafit);
  font-size: 18px;
  letter-spacing: 0.6px;
  margin-bottom: 40px;
}
.wrapper_nf .container .p404 {
  font-size: 200px;
  font-weight: 800;
  letter-spacing: 4px;
  color: var(--base-grafit);
  display: flex !important;
  justify-content: center;
  align-items: flex-start;
  position: absolute;
  z-index: 2;
  animation: anime404 0.6s cubic-bezier(0.3, 0.8, 1, 1.05) both;
  animation-delay: 1.2s;
}
@media screen and (max-width: 1024px) {
  .wrapper_nf .container .p404 {
    align-items: center;
    font-size: 100px;
  }
}
@keyframes anime404 {
  0% {
    opacity: 0;
    transform: scale(10) skew(20deg, 20deg);
  }
}
.wrapper_nf .container .p404:nth-of-type(2) {
  color: #3C3F51;
  z-index: 1;
  animation-delay: 1s;
  opacity: 0.8;
}
.wrapper_nf .container .one .content .piece {
  background: linear-gradient(90deg, #2F80ED 13.7%, #1260c8 94.65%);
}
.wrapper_nf .container .one .content .piece:nth-child(1) {
  right: 15%;
  top: 18%;
  height: 30px;
  width: 120px;
  animation-delay: 0.5s;
  animation-name: pieceRight;
}
.wrapper_nf .container .one .content .piece:nth-child(2) {
  left: 15%;
  top: 45%;
  width: 150px;
  height: 50px;
  animation-delay: 1s;
  animation-name: pieceLeft;
}
.wrapper_nf .container .one .content .piece:nth-child(3) {
  left: 10%;
  top: 75%;
  height: 20px;
  width: 70px;
  animation-delay: 1.5s;
  animation-name: pieceLeft;
}
.wrapper_nf .container .two .content .piece {
  background: linear-gradient(90deg, #FFB800 0%, #876400 100%);
}
.wrapper_nf .container .two .content .piece:nth-child(1) {
  left: 0;
  top: 25%;
  height: 40px;
  width: 120px;
  animation-delay: 2s;
  animation-name: pieceLeft;
}
.wrapper_nf .container .two .content .piece:nth-child(2) {
  right: 15%;
  top: 35%;
  width: 180px;
  height: 50px;
  animation-delay: 2.5s;
  animation-name: pieceRight;
}
.wrapper_nf .container .two .content .piece:nth-child(3) {
  right: 10%;
  top: 80%;
  height: 20px;
  width: 160px;
  animation-delay: 3s;
  animation-name: pieceRight;
}
.wrapper_nf .container .three .content .piece {
  background: #FFB800;
}
.wrapper_nf .container .three .content .piece:nth-child(1) {
  left: 25%;
  top: 35%;
  height: 20px;
  width: 80px;
  animation-name: pieceLeft;
  animation-delay: 3.5s;
}
.wrapper_nf .container .three .content .piece:nth-child(2) {
  right: 10%;
  top: 55%;
  width: 140px;
  height: 40px;
  animation-name: pieceRight;
  animation-delay: 4s;
}
.wrapper_nf .container .three .content .piece:nth-child(3) {
  left: 40%;
  top: 68%;
  height: 20px;
  width: 80px;
  animation-name: pieceLeft;
  animation-delay: 4.5s;
}

.footer {
  border-radius: 20px 20px 0 0;
  background-color: #fff;
  position: relative;
  margin-top: -20px;
}
.footer__logo {
  margin-bottom: 40px;
  display: flex;
  flex-flow: row wrap;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .footer__logo {
    margin-bottom: 20px;
  }
}
.footer__logo img {
  width: 200px;
  height: auto;
  display: block;
}
@media screen and (max-width: 768px) {
  .footer__logo img {
    margin: 0 auto;
  }
}
.footer__logo > a img {
  width: auto;
  height: 30px;
}
.footer__logo > a:hover {
  opacity: 0.7;
}
.footer__copy {
  padding: 30px 0;
  border-top: 1px solid #E5EAEF;
  text-align: center;
  color: #8893AC;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
}
.footer__top {
  padding-top: var(--padding-section);
  padding-bottom: var(--padding-gap);
  border-bottom: 1px solid #E5EAEF;
  display: flex;
  flex-flow: row wrap;
  gap: 20px;
}
.footer__top__l {
  margin-right: auto;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .footer__top__l {
    width: 100%;
  }
}
.footer__social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  height: 100px;
  border-radius: 14px;
  border: 1px solid #E5EAEF;
  background-color: #fff;
  gap: 10px;
  color: var(--blue-text, #2C467F);
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
}
@media screen and (max-width: 768px) {
  .footer__social {
    width: calc(50% - 4px);
    padding: 10px 0;
    height: 80px;
    gap: 8px;
  }
}
.footer__social__icon {
  border-radius: 100%;
  background: #EBF2FB;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-text, #2C467F);
}
.footer__social__icon svg {
  width: 18px;
  height: auto;
  display: block;
}
.footer__social__arrow {
  transition: all 0.2s ease-in-out;
  color: var(--orange, #DB6534);
}
.footer__social__arrow svg {
  width: 24px;
  height: auto;
  display: block;
}
.footer__social:hover {
  text-decoration: none;
  background-color: var(--blue-text, #2C467F);
  color: #fff;
}
.footer__social:hover .footer__social__arrow {
  color: #fff;
}
.footer__socials {
  display: flex;
  flex-flow: row nowrap;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .footer__socials {
    gap: 8px;
  }
}

.region-footer {
  margin-left: auto;
  flex-shrink: 0;
  max-width: 100%;
}
@media screen and (max-width: 768px) {
  .region-footer {
    margin-bottom: 30px;
  }
}
.region-footer .block-menu > ul.menu {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-flow: row wrap;
  gap: 120px;
}
@media screen and (max-width: 768px) {
  .region-footer .block-menu > ul.menu {
    gap: 40px;
    flex-direction: column;
  }
}
.region-footer .block-menu > ul.menu > li {
  list-style-type: none;
  list-style-image: none;
  list-style: none;
}
.region-footer .block-menu > ul.menu > li > span,
.region-footer .block-menu > ul.menu > li > a {
  display: block;
  color: var(--blue-text, #2C467F);
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .region-footer .block-menu > ul.menu > li > span,
  .region-footer .block-menu > ul.menu > li > a {
    margin-bottom: 20px;
    font-size: 18px;
  }
}
.region-footer .block-menu > ul.menu > li > span:hover,
.region-footer .block-menu > ul.menu > li > a:hover {
  color: var(--orange);
  text-decoration: none;
}
.region-footer .block-menu > ul.menu > li ul.menu {
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .region-footer .block-menu > ul.menu > li ul.menu {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
}
.region-footer .block-menu > ul.menu > li ul.menu li a {
  color: #8893AC;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
}
.region-footer .block-menu > ul.menu > li ul.menu li a:hover {
  color: var(--blue);
  text-decoration: none;
}

.header {
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 98;
  box-shadow: 0 4px 36.9px 0 rgba(44, 70, 127, 0.14);
}
@media screen and (min-width: 768px) {
  .header {
    border-bottom: 1px solid #DEE5EC;
  }
}
.gin--horizontal-toolbar .header {
  top: 50px;
}
.header__content {
  display: flex;
  flex-flow: row wrap;
  padding: 20px 0;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .header__content {
    padding: 10px 0;
  }
}
@media screen and (max-width: 768px) {
  .header__content {
    padding: 14px 0;
    flex-direction: column;
  }
}
.header__content .region-header {
  display: flex;
  gap: 23px;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .header__content .region-header {
    flex-wrap: wrap;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .header__content .region-header {
    gap: 16px;
  }
}
@media screen and (max-width: 768px) {
  .header__content .region-header {
    margin-right: 0;
    justify-content: space-between;
    align-items: center;
    gap: 0;
  }
}
@media screen and (max-width: 768px) {
  .header .region-primary-menu {
    display: none;
  }
}
.header__bottom {
  border-top: 1px solid #DEE5EC;
}
@media screen and (max-width: 1320px) {
  .header .container__fluid {
    padding-left: 20px;
    padding-right: 20px;
  }
}

#block-yoshitake-strany {
  border-left: 1px solid #DEE5EC;
  padding-left: 23px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1500px) {
  #block-yoshitake-strany {
    padding-left: 16px;
  }
}
@media screen and (max-width: 1200px) {
  #block-yoshitake-strany {
    padding-left: 16px;
  }
}
@media screen and (max-width: 768px) {
  #block-yoshitake-strany {
    padding-left: 0;
    border-left: none;
    width: 100%;
    justify-content: center;
  }
}
#block-yoshitake-strany .field--name-body ul {
  display: flex;
  flex-flow: row wrap;
  list-style: none;
  align-items: center;
  gap: 8px;
  padding: 0;
  margin: 0;
  color: #8893AC;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
}
@media screen and (max-width: 1350px) {
  #block-yoshitake-strany .field--name-body ul {
    gap: 6px;
    font-size: 14px;
  }
}
#block-yoshitake-strany .field--name-body ul li:not(:first-child) {
  display: inline-flex;
  align-items: center;
}
#block-yoshitake-strany .field--name-body ul li:not(:first-child):before {
  width: 4px;
  height: 4px;
  border-radius: 100%;
  background: var(--orange, #DB6534);
  margin-right: 8px;
  content: "";
}
.yoshitake-kz-test #block-yoshitake-strany .field--name-body ul li:not(:first-child):before, .test-yoshitake-kz #block-yoshitake-strany .field--name-body ul li:not(:first-child):before {
  display: none;
}
#block-yoshitake-strany .field--name-body ul li:first-child {
  display: inline-flex;
  align-items: center;
}
.yoshitake-kz-test #block-yoshitake-strany .field--name-body ul li:first-child:before, .test-yoshitake-kz #block-yoshitake-strany .field--name-body ul li:first-child:before {
  width: 4px;
  height: 4px;
  border-radius: 100%;
  background: var(--orange, #DB6534);
  margin-right: 8px;
  content: "";
}
#block-yoshitake-strany .field--name-body ul a {
  color: #8893AC;
}
#block-yoshitake-strany .field--name-body ul a:hover {
  text-decoration: none;
  color: var(--blue);
}

.block-system-branding-block {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .block-system-branding-block {
    width: 40%;
  }
}
.block-system-branding-block .site-logo {
  width: 240px;
  display: block;
}
@media screen and (max-width: 1500px) {
  .block-system-branding-block .site-logo {
    width: 190px;
  }
}
@media screen and (max-width: 1200px) {
  .block-system-branding-block .site-logo {
    width: 180px;
  }
}
@media screen and (max-width: 1024px) {
  .block-system-branding-block .site-logo {
    width: 200px;
  }
}
@media screen and (max-width: 768px) {
  .block-system-branding-block .site-logo {
    width: 100%;
  }
}
.block-system-branding-block .site-logo img {
  width: 100%;
  height: auto;
  display: block;
}

.region-breadcrumb {
  padding: 20px;
}
@media screen and (max-width: 768px) {
  .region-breadcrumb {
    padding: 0;
  }
}
@media screen and (min-width: 768px) {
  .region-breadcrumb__content {
    background-image: url("../images/toptitle_bg.jpg");
    background-size: cover;
    background-position: center;
    color: #fff;
    border-radius: 20px;
    padding-top: var(--padding-gap);
    padding-bottom: 10px;
  }
  .region-breadcrumb__content .page-title {
    margin-bottom: 50px;
    margin-top: 0;
    font-size: var(--fz-h1);
    font-weight: 800;
  }
}
@media screen and (max-width: 768px) {
  .region-breadcrumb__content .page-title {
    background-image: url("../images/toptitle_bg_m.jpg");
    background-size: cover;
    background-position: center;
    color: #fff;
    border-radius: 20px;
    padding: 20px;
    min-height: 140px;
    display: flex;
    align-items: center;
    margin: 0;
    font-size: 26px;
    font-style: normal;
    font-weight: 800;
    line-height: 110%;
  }
}

.region-primary-menu {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  gap: 60px;
}
@media screen and (max-width: 1350px) {
  .region-primary-menu {
    gap: 40px;
  }
}
@media screen and (max-width: 1200px) {
  .region-primary-menu {
    gap: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .region-primary-menu {
    gap: 20px;
  }
}
@media screen and (max-width: 768px) {
  .region-primary-menu {
    gap: 40px;
    flex-direction: column;
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    padding: 30px;
    align-items: flex-start;
    height: calc(100dvh - 139px);
    flex-wrap: nowrap;
    overflow: auto;
  }
}
.region-primary-menu .block-menu.contextual-region {
  position: unset;
}
.region-primary-menu .block-menu > .menu {
  margin: 0;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  gap: 40px;
  line-height: 1;
}
@media screen and (max-width: 1350px) {
  .region-primary-menu .block-menu > .menu {
    gap: 30px;
  }
}
@media screen and (max-width: 1200px) {
  .region-primary-menu .block-menu > .menu {
    gap: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .region-primary-menu .block-menu > .menu {
    gap: 20px;
  }
}
@media screen and (max-width: 768px) {
  .region-primary-menu .block-menu > .menu {
    flex-direction: column;
    gap: 0;
    align-items: stretch;
  }
}
.region-primary-menu .block-menu > .menu > .menu-item {
  padding: 25px 0;
  list-style: none;
}
@media screen and (max-width: 1024px) {
  .region-primary-menu .block-menu > .menu > .menu-item {
    padding: 15px 0;
  }
}
@media screen and (max-width: 768px) {
  .region-primary-menu .block-menu > .menu > .menu-item {
    padding: 0;
  }
}
.region-primary-menu .block-menu > .menu > .menu-item.menu_icon_catalog > a {
  display: flex;
  gap: 10px;
}
.region-primary-menu .block-menu > .menu > .menu-item.menu_icon_catalog > a:before {
  width: 18px;
  height: auto;
  aspect-ratio: 1/1;
  background-image: url("../images/menu_icon.svg");
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
}
.region-primary-menu .block-menu > .menu > .menu-item > span,
.region-primary-menu .block-menu > .menu > .menu-item > a {
  color: var(--blue-text, #2C467F);
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: -0.36px;
  text-decoration: none;
}
@media screen and (max-width: 1200px) {
  .region-primary-menu .block-menu > .menu > .menu-item > span,
  .region-primary-menu .block-menu > .menu > .menu-item > a {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .region-primary-menu .block-menu > .menu > .menu-item > span,
  .region-primary-menu .block-menu > .menu > .menu-item > a {
    display: block;
    width: 100%;
    border-bottom: 1px solid #DEE5EC;
    padding: 20px 0;
    font-size: 20px;
  }
}
@media screen and (min-width: 768px) {
  .region-primary-menu .block-menu > .menu > .menu-item > span:hover,
  .region-primary-menu .block-menu > .menu > .menu-item > a:hover {
    color: var(--orange, #DB6534);
    text-decoration: none;
  }
}
@media screen and (min-width: 768px) {
  .region-primary-menu .block-menu > .menu > .menu-item .submenu {
    position: absolute;
    border-bottom: 1px solid #DEE5EC;
    border-top: 1px solid #DEE5EC;
    left: 0;
    top: calc(100% - 1px);
    right: 0;
    width: 100%;
    background: #fff;
    padding: 0;
    margin: 0;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease-in-out;
  }
  .region-primary-menu .block-menu > .menu > .menu-item .submenu .container > .menu {
    padding: 40px 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .region-primary-menu .block-menu > .menu > .menu-item .submenu .container > .menu > li {
    list-style: none;
    padding: 5px 0;
  }
  .region-primary-menu .block-menu > .menu > .menu-item .submenu .container > .menu > li > a {
    text-decoration: none;
    color: var(--blue-text);
    font-size: 17px;
    font-style: normal;
    font-weight: 500;
    line-height: 110%;
  }
  .region-primary-menu .block-menu > .menu > .menu-item .submenu .container > .menu > li > a:hover {
    text-decoration: none;
    color: var(--orange);
  }
}
@media screen and (max-width: 768px) {
  .region-primary-menu .block-menu > .menu > .menu-item .submenu {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: max-height 0.2s ease-in-out;
  }
  .region-primary-menu .block-menu > .menu > .menu-item .submenu .container {
    padding: 0;
  }
  .region-primary-menu .block-menu > .menu > .menu-item .submenu .container .menu {
    margin: 0;
    display: flex;
    flex-direction: column;
  }
  .region-primary-menu .block-menu > .menu > .menu-item .submenu .container .menu .menu-item a {
    padding: 10px 0;
    border-bottom: 1px solid #DEE5EC;
    color: var(--blue-text, #2C467F);
    font-size: 17px;
    font-style: normal;
    font-weight: 500;
    line-height: 110%;
    display: block;
  }
  .region-primary-menu .block-menu > .menu > .menu-item .submenu a {
    text-decoration: none;
  }
  .region-primary-menu .block-menu > .menu > .menu-item.is-expanded .submenu {
    max-height: 200dvh;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}
@media screen and (min-width: 768px) {
  .region-primary-menu .block-menu > .menu > .menu-item:hover > a {
    color: var(--orange);
  }
  .region-primary-menu .block-menu > .menu > .menu-item:hover .submenu {
    pointer-events: auto;
    opacity: 1;
    visibility: visible;
  }
}
.region-primary-menu .block-menu > .menu.menu__level_opened > .menu-item:not(.is-expanded) {
  display: none;
}
@media screen and (max-width: 768px) {
  .region-primary-menu .block-gtranslate {
    order: 2;
    margin: 0 auto;
  }
  .menu_opened .region-primary-menu {
    display: flex;
  }
  .region-primary-menu .menu--main {
    width: 100%;
  }
}

.burger {
  display: none;
}
@media screen and (max-width: 768px) {
  .burger {
    display: inline-flex;
    margin-left: auto;
    padding: 14px 12px;
    justify-content: center;
    align-items: flex-end;
    border-radius: 8px;
    background: #E8ECF1;
    border-color: transparent;
    flex-direction: column;
    gap: 5px;
    position: relative;
    width: 48px;
    height: 48px;
  }
  .burger > span {
    width: 20px;
    height: 2px;
    display: block;
    background: var(--orange);
  }
  .menu_opened .burger > span {
    transform: rotate(45deg);
    position: absolute;
  }
  .menu_opened .burger > span:nth-child(2) {
    transform: rotate(-45deg);
  }
  .burger > span:last-child {
    width: 8px;
  }
  .menu_opened .burger > span:last-child {
    opacity: 0;
  }
}

.top_contact_block {
  display: flex;
  align-items: center;
  gap: 7px;
}
@media screen and (max-width: 768px) {
  .top_contact_block {
    flex-wrap: wrap;
  }
}
.top_contact_block__mail, .top_contact_block__phone {
  color: #2C467F;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  display: flex;
  gap: 10px;
}
@media screen and (max-width: 1500px) {
  .top_contact_block__mail, .top_contact_block__phone {
    font-size: 16px;
  }
}
@media screen and (max-width: 1200px) {
  .top_contact_block__mail, .top_contact_block__phone {
    white-space: nowrap;
  }
}
.top_contact_block__mail svg, .top_contact_block__phone svg {
  color: var(--orange);
}
@media screen and (max-width: 1500px) {
  .top_contact_block__mail svg, .top_contact_block__phone svg {
    width: 16px;
    height: 16px;
  }
}
@media screen and (max-width: 1240px) {
  .top_contact_block__mail svg, .top_contact_block__phone svg {
    display: none;
  }
}
.top_contact_block__mail:hover, .top_contact_block__phone:hover {
  text-decoration: none;
  opacity: 0.9;
}
.top_contact_block__mail {
  margin-left: 30px;
}
@media screen and (max-width: 1500px) {
  .top_contact_block__mail {
    margin-left: 16px;
  }
}
@media screen and (max-width: 768px) {
  .top_contact_block__mail {
    margin-left: 0;
  }
}
.top_contact_block__link {
  border-radius: 100%;
  border: 1px solid #DEE5EC;
  display: flex;
  width: 40px;
  height: 40px;
  padding: 11px;
  justify-content: center;
  align-items: center;
  background: #fff;
}
.top_contact_block__link:hover {
  background: #DEE5EC;
}

.region-primary-menu .views-exposed-form {
  width: 620px;
}
@media screen and (max-width: 1500px) {
  .region-primary-menu .views-exposed-form {
    width: 560px;
  }
}
@media screen and (max-width: 1024px) {
  .region-primary-menu .views-exposed-form {
    width: 320px;
  }
}
@media screen and (max-width: 768px) {
  .region-primary-menu .views-exposed-form {
    padding: 0;
    margin: 0;
    margin-top: auto;
    order: 10;
    width: 100%;
  }
}

.block-views-exposed-filter-blockpoisk-page-1 {
  margin-left: auto;
  width: 25%;
}
@media screen and (max-width: 768px) {
  .block-views-exposed-filter-blockpoisk-page-1 {
    display: none;
  }
}
.block-views-exposed-filter-blockpoisk-page-1 .form--inline {
  position: relative;
  display: flex;
  padding: 8px 0;
}
.block-views-exposed-filter-blockpoisk-page-1 .form--inline .form-item {
  margin: 0;
  width: 100%;
}
.block-views-exposed-filter-blockpoisk-page-1 .form--inline label.control-label {
  display: none;
}
.block-views-exposed-filter-blockpoisk-page-1 .form--inline .form-text {
  width: 100%;
  height: 50px;
  border-color: transparent;
  box-shadow: none;
  padding: 5px 20px;
  border-radius: 12px;
  background: var(--light-blue-bg, #EBF2FB);
  border: 1px solid var(--light-blue-bg, #EBF2FB);
  outline: none;
  transition: all 0.2s ease-in-out;
}
.block-views-exposed-filter-blockpoisk-page-1 .form--inline .form-text:focus {
  outline: none;
  border-color: var(--blue);
}
.block-views-exposed-filter-blockpoisk-page-1 .form--inline .button {
  height: unset;
  width: unset;
}
.block-views-exposed-filter-blockpoisk-page-1 .form--inline .form-actions {
  margin: 0;
  position: unset;
}
.block-views-exposed-filter-blockpoisk-page-1 .form--inline .form-submit.button {
  color: var(--orange);
  background-color: transparent;
  padding: 0;
  display: inline-block;
  font-weight: normal;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  border: none;
  font-size: 0;
  line-height: 1;
  border-radius: 0;
  margin: 0;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  height: 100%;
  width: 64px;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21 21L15.8033 15.8033M15.8033 15.8033C17.1605 14.4461 18 12.5711 18 10.5C18 6.35786 14.6421 3 10.5 3C6.35786 3 3 6.35786 3 10.5C3 14.6421 6.35786 18 10.5 18C12.5711 18 14.4461 17.1605 15.8033 15.8033Z' stroke='%23DB6534' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  background-position: center;
  background-repeat: no-repeat;
}

.header .gt_container--hich1m {
  font-weight: 700;
  color: #8893AC;
  position: relative;
}
.header .gt_container--hich1m a.glink {
  text-decoration: none;
  font-weight: 700;
  color: #8893AC;
}
.header .gt_container--hich1m a.glink img {
  /*
          vertical-align: middle;
          display: inline;
          border: 0;
          padding: 0;
          margin: 0;
          opacity: 0.8; */
}
.header .gt_container--hich1m a.glink:hover img {
  opacity: 1;
}
.header .gt_container--hich1m a.glink span {
  margin-right: 7px;
  font-size: 20px;
  vertical-align: middle;
}
.header .gt_container--hich1m .gt_switcher {
  font-size: 16px;
  text-align: left;
  cursor: pointer;
  overflow: hidden;
  width: 115px;
  line-height: 1;
  border-radius: 9px;
  border: 1px solid #DEE5EC;
}
.header .gt_container--hich1m .gt_switcher a {
  text-decoration: none;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  font-weight: 700;
  color: #8893AC;
  height: 40px;
}
.header .gt_container--hich1m .gt_switcher a img {
  display: block;
  height: 28px;
  border-radius: 8px;
  width: auto;
  margin-right: 10px;
  border: 1px solid #DEE5EC;
}
.header .gt_container--hich1m .gt_switcher a:hover img {
  opacity: 1;
}
.header .gt_container--hich1m .gt_switcher .gt_selected {
  background: #fff;
  position: relative;
  z-index: 9999;
}
.header .gt_container--hich1m .gt_switcher .gt_selected a {
  padding: 8px 6px 8px 13px;
  width: 115px;
  border: none;
  font-weight: 700;
  color: #8893AC;
  font-size: 16px;
}
.header .gt_container--hich1m .gt_switcher .gt_selected a img {
  display: block;
  height: 28px;
  border-radius: 8px;
  width: auto;
  margin-right: 10px;
  border: 1px solid #DEE5EC;
}
.header .gt_container--hich1m .gt_switcher .gt_selected a:after {
  height: 32px;
  display: inline-block;
  position: absolute;
  right: 10px;
  width: 15px;
  background-position: 50%;
  background-size: 12px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 285 285'><path d='M282 76.5l-14.2-14.3a9 9 0 0 0-13.1 0L142.5 174.4 30.3 62.2a9 9 0 0 0-13.2 0L3 76.5a9 9 0 0 0 0 13.1l133 133a9 9 0 0 0 13.1 0l133-133a9 9 0 0 0 0-13z' style='fill:%23DB6534'/></svg>");
  background-repeat: no-repeat;
  content: "" !important;
  transition: all 0.2s;
}
.header .gt_container--hich1m .gt_switcher .gt_selected a.open:after {
  transform: rotate(-180deg);
}
.header .gt_container--hich1m .gt_switcher .gt_selected a:hover {
  background: #fff;
}
.header .gt_container--hich1m .gt_switcher .gt_current {
  display: none;
}
.header .gt_container--hich1m .gt_switcher .gt_option {
  z-index: 9998;
  display: none;
  max-height: 198px;
  height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  transition: height 0.2s ease-in-out;
  top: 100%;
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  background-color: #fff;
  border: 1px solid #DEE5EC;
  border-radius: 9px;
}
.header .gt_container--hich1m .gt_switcher .gt_option a {
  color: #8893AC;
  padding: 3px 13px;
  font-size: 16px;
}
.header .gt_container--hich1m .gt_switcher .gt_option a:hover {
  background: #fff;
  color: var(--blue-text);
}
.header .gt_container--hich1m .gt_switcher .gt_option::-webkit-scrollbar-track {
  background-color: #f5f5f5;
}
.header .gt_container--hich1m .gt_switcher .gt_option::-webkit-scrollbar {
  width: 5px;
}
.header .gt_container--hich1m .gt_switcher .gt_option::-webkit-scrollbar-thumb {
  background-color: #888;
}

div.skiptranslate,
#google_translate_element2 {
  display: none !important;
}

body {
  top: 0 !important;
}

@media screen and (min-width: 768px) {
  .block-gtranslate-block {
    margin-right: auto;
  }
}
.webform-submission-zayavka-form,
.webform-submission-obratnaya-svyaz-form {
  display: flex;
  flex-direction: column;
}
.webform-submission-zayavka-form .form-type-textarea > label,
.webform-submission-zayavka-form .form-type-email > label,
.webform-submission-zayavka-form .form-type-textfield > label,
.webform-submission-obratnaya-svyaz-form .form-type-textarea > label,
.webform-submission-obratnaya-svyaz-form .form-type-email > label,
.webform-submission-obratnaya-svyaz-form .form-type-textfield > label {
  display: none;
}
.webform-submission-zayavka-form .form-type-textarea input, .webform-submission-zayavka-form .form-type-textarea textarea,
.webform-submission-zayavka-form .form-type-email input,
.webform-submission-zayavka-form .form-type-email textarea,
.webform-submission-zayavka-form .form-type-textfield input,
.webform-submission-zayavka-form .form-type-textfield textarea,
.webform-submission-obratnaya-svyaz-form .form-type-textarea input,
.webform-submission-obratnaya-svyaz-form .form-type-textarea textarea,
.webform-submission-obratnaya-svyaz-form .form-type-email input,
.webform-submission-obratnaya-svyaz-form .form-type-email textarea,
.webform-submission-obratnaya-svyaz-form .form-type-textfield input,
.webform-submission-obratnaya-svyaz-form .form-type-textfield textarea {
  width: 100%;
  height: 80px;
  padding: 0;
  border: none;
  background: transparent;
  border-bottom: 1px solid #CBD7E5;
  color: var(--blue-text, #2C467F);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}
.webform-submission-zayavka-form .webform-telephone--wrapper > legend,
.webform-submission-obratnaya-svyaz-form .webform-telephone--wrapper > legend {
  display: none;
}
.webform-submission-zayavka-form .webform-telephone--wrapper .form-item-telefon-phone,
.webform-submission-obratnaya-svyaz-form .webform-telephone--wrapper .form-item-telefon-phone {
  margin: 0;
  width: 100%;
}
.webform-submission-zayavka-form .webform-telephone--wrapper .iti,
.webform-submission-obratnaya-svyaz-form .webform-telephone--wrapper .iti {
  width: 100%;
}
.webform-submission-zayavka-form .webform-telephone--wrapper .iti--allow-dropdown input, .webform-submission-zayavka-form .webform-telephone--wrapper .iti--allow-dropdown input[type=tel], .webform-submission-zayavka-form .webform-telephone--wrapper .iti--allow-dropdown input[type=text], .webform-submission-zayavka-form .webform-telephone--wrapper .iti--separate-dial-code input, .webform-submission-zayavka-form .webform-telephone--wrapper .iti--separate-dial-code input[type=tel], .webform-submission-zayavka-form .webform-telephone--wrapper .iti--separate-dial-code input[type=text],
.webform-submission-obratnaya-svyaz-form .webform-telephone--wrapper .iti--allow-dropdown input,
.webform-submission-obratnaya-svyaz-form .webform-telephone--wrapper .iti--allow-dropdown input[type=tel],
.webform-submission-obratnaya-svyaz-form .webform-telephone--wrapper .iti--allow-dropdown input[type=text],
.webform-submission-obratnaya-svyaz-form .webform-telephone--wrapper .iti--separate-dial-code input,
.webform-submission-obratnaya-svyaz-form .webform-telephone--wrapper .iti--separate-dial-code input[type=tel],
.webform-submission-obratnaya-svyaz-form .webform-telephone--wrapper .iti--separate-dial-code input[type=text] {
  width: 100%;
  height: 80px;
  border: none;
  background: transparent;
  border-bottom: 1px solid #CBD7E5;
  color: var(--blue-text, #2C467F);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}
.webform-submission-zayavka-form .btn,
.webform-submission-obratnaya-svyaz-form .btn {
  width: 100%;
}
.webform-submission-zayavka-form .form-item, .webform-submission-zayavka-form .form-actions,
.webform-submission-obratnaya-svyaz-form .form-item,
.webform-submission-obratnaya-svyaz-form .form-actions {
  margin: 0;
}
.webform-submission-zayavka-form .form-actions,
.webform-submission-obratnaya-svyaz-form .form-actions {
  margin-top: 30px;
}

.webform-submission-zayavka-form {
  gap: 10px;
}

.webform-confirmation__message {
  padding: var(--padding-gap) 0;
  color: var(--blue-text, #2C467F);
}

.view-pohozhie-tovary > .view-content,
.view-produkciya > .view-content {
  display: flex;
  flex-flow: row wrap;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .view-pohozhie-tovary > .view-content,
  .view-produkciya > .view-content {
    gap: 8px;
  }
}
.view-pohozhie-tovary > .view-content .views-row,
.view-produkciya > .view-content .views-row {
  width: calc(25% - 15px);
}
@media screen and (max-width: 768px) {
  .view-pohozhie-tovary > .view-content .views-row,
  .view-produkciya > .view-content .views-row {
    width: calc(50% - 4px);
  }
}
.view-pohozhie-tovary > .view-content .views-row .term,
.view-produkciya > .view-content .views-row .term {
  height: 100%;
}

.term.teaser {
  border-radius: 20px;
  background: #F4F6F9;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .term.teaser {
    padding: 16px;
    gap: 10px;
  }
}
.term.teaser .field--name-name {
  color: var(--blue);
  text-align: center;
  font-size: 17px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  margin-top: auto;
}
@media screen and (max-width: 768px) {
  .term.teaser .field--name-name {
    font-size: 15px;
  }
}
.term.teaser .field--name-field-media-image {
  display: flex;
  align-items: center;
  justify-content: center;
}
.term.teaser .field--name-field-media-image .field__item {
  width: 100%;
  height: 160px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.term.teaser .field--name-field-media-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  width: auto;
  height: auto;
}

a.term.teaser:hover {
  text-decoration: none;
  opacity: 0.9;
}

.path-poisk .region-content,
.path-taxonomy .region-content {
  background-color: var(--light-bg);
}

.view-poisk > .view-content,
.view-termin-taksonomii > .view-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product .product__stock {
  display: inline-flex;
  height: 30px;
  background-color: #F0F2F5;
  border-radius: 29px;
  padding: 0 15px;
  font-size: 15px;
  color: #A1A7AF;
  align-items: center;
  justify-content: center;
  text-align: center;
  white-space: nowrap;
  margin: 0;
}
.product .product__stock.product__stock__in {
  background-color: #E4F0CF;
  color: var(--green);
}
.product.full h1 {
  line-height: 1.1;
  margin-bottom: 25px;
  font-size: 22px;
  font-weight: bold;
  color: #292F39;
  margin-top: 0;
}
.product.full .field--name-field-kod-tovara,
.product.full .field--name-sku {
  margin-bottom: 20px;
  font-size: 15px;
  color: #989DA5;
}
.product.full .field--name-field-kod-tovara .field--label,
.product.full .field--name-sku .field--label {
  font-weight: normal;
}
.product.full .productGallery {
  list-style: none;
  padding: 0;
  margin: 0;
}
.product.full .productGallery img {
  max-width: 100%;
}
.product.full .lslide {
  position: relative;
  overflow: hidden;
  background: #fff;
  border-radius: 7px;
  height: 100%;
}
.product.full .lslide img {
  display: block;
  max-width: 1000%;
  max-height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  .product.full .lslide img {
    width: 100%;
    display: block;
    height: auto;
    transform: none;
    top: unset;
    left: unset;
    position: unset;
  }
}
.product.full .lSSlideOuter {
  width: 100%;
}
.product.full .lSSlideOuter .lSPager.lSGallery li {
  transition: all 0.2s ease-in-out;
  opacity: 0.8;
  overflow: hidden;
  aspect-ratio: 1/1;
  height: auto !important;
  border-radius: 10px;
  border: 1px solid #CBD7E5;
}
.product.full .lSSlideOuter .lSPager.lSGallery li > a {
  display: block;
  position: relative;
}
.product.full .lSSlideOuter .lSPager.lSGallery li img {
  border-radius: 10px;
}
.product.full .lSSlideOuter .lSPager.lSGallery li.t360 > a {
  width: 100%;
  padding-top: 100%;
  position: relative;
}
.product.full .lSSlideOuter .lSPager.lSGallery li.t360 > a i {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 34px;
  height: 34px;
  margin: -17px 0 0 -17px;
}
@media screen and (max-width: 768px) {
  .product.full .lSSlideOuter .lSPager.lSGallery li.t360 > a i {
    width: 30px;
    height: 30px;
    margin: -15px 0 0 -15px;
  }
}
.product.full .lSSlideOuter .lSPager.lSGallery li.active, .product.full .lSSlideOuter .lSPager.lSGallery li:hover {
  border-color: var(--orange);
  opacity: 1;
  color: var(--blue);
}
.product.full .lSSlideOuter.vertical .lSGallery {
  right: unset;
  left: 0;
  margin-left: 0 !important;
  margin-right: 5px;
  height: 100% !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.product.full .product__brand_img {
  position: absolute;
  z-index: 1;
  width: auto;
  height: 30px;
  left: 30px;
  top: 20px;
}
.product.full .product__stock {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 1;
}
.product.full .product__card {
  display: flex;
  flex-flow: row wrap;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .product.full .product__card {
    gap: 8px;
  }
}
.product.full .product__card .product__maininfo,
.product.full .product__card .product__gallery {
  border-radius: 20px;
  background: var(--white, #FFF);
}
@media screen and (max-width: 768px) {
  .product.full .product__card .product__maininfo,
  .product.full .product__card .product__gallery {
    width: 100%;
  }
}
.product.full .product__card .product__gallery {
  position: relative;
  width: calc(33% - 10px);
  padding: 60px 10px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .product.full .product__card .product__gallery {
    width: 100%;
    padding: 10px;
  }
}
.product.full .product__card .product__gallery .badge {
  left: 25px;
}
.product.full .product__card .product__maininfo {
  position: relative;
  width: calc(67% - 10px);
  padding: 30px;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .product.full .product__card .product__maininfo {
    width: 100%;
    padding: 30px 16px;
  }
}
.product.full .product__card .product__maininfo .field--name-body {
  margin-bottom: 60px;
}
.product.full .product__card .product__maininfo h2 {
  margin-top: 0;
  color: #8893AC;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  margin-bottom: 30px;
}
.product.full .product__card .product__maininfo__btn {
  margin-top: auto;
  width: 100%;
}
.product.full .product__card .product__maininfo ul {
  list-style-type: none;
  padding-left: 0;
  margin: 0;
}
.product.full .product__card .product__maininfo ul li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 14px;
  color: var(--blue-text);
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
}
.product.full .product__card .product__maininfo ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background-image: url("../images/li_check.svg");
  background-repeat: no-repeat;
  background-position: center;
}
.product.full .product__card .product__maininfo ul li:last-child {
  margin-bottom: 0;
}
.product.full .product__delivery {
  padding-top: 20px;
  font-size: 16px;
}
.product.full .product__delivery p {
  margin-bottom: 8px;
}
.product.full .product__delivery a {
  display: inline-block;
  color: var(--blue);
  border-bottom: 1px solid #DADFE9;
}
.product.full .product__delivery a:hover {
  color: var(--blue);
  text-decoration: none;
  border-bottom: 1px solid var(--blue);
}
.product__details .nav-tabs {
  list-style: none;
  padding: 0;
  display: flex;
  margin: 0 0 40px;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .product__details .nav-tabs {
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .product__details .nav-tabs::-webkit-scrollbar {
    display: none;
  }
  .product__details .nav-tabs {
    padding-bottom: 10px;
  }
}
.product__details .nav-tabs > li {
  float: none;
  display: inline-flex;
}
@media screen and (max-width: 768px) {
  .product__details .nav-tabs > li {
    width: auto;
    text-align: center;
    flex: 0 0 auto;
  }
}
.product__details .nav-tabs > li > a {
  margin-right: 0;
  line-height: 1;
  border: none;
  border-bottom: 2px solid transparent;
  border-radius: 0 0 0 0;
  text-decoration: none;
  color: #8893AC;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: -0.4px;
  padding: 14px 0;
}
@media screen and (max-width: 768px) {
  .product__details .nav-tabs > li > a {
    white-space: nowrap;
    font-size: 17px;
    padding: 10px 0;
  }
}
.product__details .nav-tabs > li > a:hover {
  color: var(--orange);
  background-color: transparent;
  border-bottom-color: var(--orange);
  text-decoration: none;
}
.product__details .nav-tabs > li.active > a, .product__details .nav-tabs > li.active > a:hover, .product__details .nav-tabs > li.active > a:focus {
  color: var(--orange);
  background-color: transparent;
  border-bottom-color: var(--orange);
  text-decoration: none;
}
.product__details .field--name-field-opisanie {
  color: var(--blue-text, #2C467F);
  font-size: 17px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
}
.product__details .field--name-field-opisanie a {
  color: var(--orange);
}
.product__details .field--name-field-opisanie a:hover {
  text-decoration: underline;
}
.product__details .field--name-field-opisanie img {
  height: auto;
  max-width: 100%;
  display: block;
}
.product__details .tab-content .tab-pane {
  display: none;
}
.product__details .tab-content .tab-pane.active {
  display: block;
}
.product__details .eav-list, .product__details .eav-list tbody {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.product__details .eav-list__item {
  width: 100%;
  display: flex;
  border-bottom: 1px solid #E5EAEF;
  padding: 12px 0;
  color: var(--blue-text, #2C467F);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
}
@media screen and (max-width: 768px) {
  .product__details .eav-list__item {
    font-size: 15px;
    padding: 10px 0;
  }
}
.product__details .eav-list__attribute {
  width: 30%;
  padding-right: 20px;
}
@media screen and (max-width: 768px) {
  .product__details .eav-list__attribute {
    width: 40%;
    padding-right: 10px;
  }
}
.product__details .eav-list__value {
  width: 70%;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .product__details .eav-list__value {
    width: 60%;
  }
}
.product__details .field--name-field-dokumentaciya {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.product__details .field--name-field-dokumentaciya .field--name-field-media-document .file--general,
.product__details .field--name-field-dokumentaciya .field--name-field-media-document .file--application-octet-stream,
.product__details .field--name-field-dokumentaciya .field--name-field-media-document .file--package-x-generic,
.product__details .field--name-field-dokumentaciya .field--name-field-media-document .file--x-office-spreadsheet,
.product__details .field--name-field-dokumentaciya .field--name-field-media-document .file--x-office-document,
.product__details .field--name-field-dokumentaciya .field--name-field-media-document .file--x-office-presentation,
.product__details .field--name-field-dokumentaciya .field--name-field-media-document .file--text-x-script,
.product__details .field--name-field-dokumentaciya .field--name-field-media-document .file--text-html,
.product__details .field--name-field-dokumentaciya .field--name-field-media-document .file--text-plain,
.product__details .field--name-field-dokumentaciya .field--name-field-media-document .file--application-pdf,
.product__details .field--name-field-dokumentaciya .field--name-field-media-document .file--application-x-executable,
.product__details .field--name-field-dokumentaciya .field--name-field-media-document .file--audio,
.product__details .field--name-field-dokumentaciya .field--name-field-media-document .file--video,
.product__details .field--name-field-dokumentaciya .field--name-field-media-document .file--text,
.product__details .field--name-field-dokumentaciya .field--name-field-media-document .file--image {
  background-image: none;
}
.product__details .field--name-field-dokumentaciya .field--name-field-media-document .file {
  display: block;
  min-height: 16px;
  padding-left: 0;
  background: none;
}
.product__details .field--name-field-dokumentaciya .field--name-field-media-document .file a {
  display: flex;
  padding: 30px;
  gap: 10px;
  align-items: center;
  border-radius: 16px;
  border: 1px solid #E5EAEF;
  background: #fff;
  width: 100%;
  color: var(--blue-text, #2C467F);
  font-size: 17px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
  letter-spacing: -0.34px;
}
@media screen and (max-width: 768px) {
  .product__details .field--name-field-dokumentaciya .field--name-field-media-document .file a {
    padding: 26px 16px;
    font-size: 16px;
  }
}
.product__details .field--name-field-dokumentaciya .field--name-field-media-document .file a:before {
  content: "";
  width: 30px;
  aspect-ratio: 1/1;
  background-repeat: no-repeat;
  background-image: url("../images/document-download.svg");
  transition: all 0.2s ease-in-out;
  background-size: contain;
  background-position: center;
  flex-shrink: 0;
}
.product__details .field--name-field-dokumentaciya .field--name-field-media-document .file a:hover {
  text-decoration: none;
  border-color: var(--blue-text);
}
.product__details .field--name-field-dokumentaciya .field--name-field-media-document .file a:hover:before {
  opacity: 0.8;
}
.product.teaser {
  display: flex;
  flex-flow: row wrap;
  position: relative;
  border-radius: 20px;
  background: var(--white, #FFF);
  padding: 25px;
}
@media screen and (max-width: 768px) {
  .product.teaser {
    padding: 16px;
  }
}
.product.teaser .product__img {
  width: 20%;
  position: relative;
}
@media screen and (max-width: 768px) {
  .product.teaser .product__img {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.product.teaser .product__img img {
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
}
@media screen and (max-width: 768px) {
  .product.teaser .product__img img {
    width: auto;
    height: 140px;
  }
}
.product.teaser .product__maininfo {
  width: 80%;
  padding-left: 30px;
  padding-top: 25px;
}
@media screen and (max-width: 768px) {
  .product.teaser .product__maininfo {
    width: 100%;
    padding-left: 0;
    padding-top: 16px;
  }
}
.product.teaser .product__title {
  color: var(--blue-text, #2C467F);
  font-size: 20px;
  font-style: normal;
  font-weight: 800;
  line-height: 110%;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .product.teaser .product__title {
    font-size: 18px;
  }
}
.product.teaser .product__icon {
  border-radius: 100%;
  border: 1px solid #DEE5EC;
  background: var(--white, #FFF);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  width: 40px;
  aspect-ratio: 1/1;
  position: absolute;
  top: 10px;
  right: 10px;
  transition: all 0.2s ease-in-out;
}
.product.teaser .eav-list {
  width: 100%;
}
.product.teaser .eav-list tbody {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .product.teaser .eav-list tbody {
    gap: 8px;
  }
}
.product.teaser .eav-list__item {
  width: 100%;
  display: flex;
  color: var(--blue-text, #2C467F);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .product.teaser .eav-list__item {
    flex-direction: column;
  }
}
.product.teaser .eav-list__attribute {
  width: 30%;
  padding-right: 20px;
  color: #8893AC;
  border-bottom: 2px dotted #8893AC;
}
@media screen and (max-width: 768px) {
  .product.teaser .eav-list__attribute {
    border-bottom: none;
    width: 100%;
  }
}
.product.teaser .eav-list__attribute span {
  background: #fff;
  margin-bottom: -4px;
  display: inline-block;
  height: calc(100% + 4px);
  margin: -4px;
  padding: 0 4px;
}
@media screen and (max-width: 768px) {
  .product.teaser .eav-list__attribute span {
    margin: 0;
    padding: 0;
    height: auto;
  }
}
.product.teaser .eav-list__value {
  width: 70%;
}
@media screen and (max-width: 768px) {
  .product.teaser .eav-list__value {
    width: 100%;
  }
}
.product.teaser:hover {
  text-decoration: none;
}
.product.teaser:hover .product__title {
  color: var(--orange);
}
.product.teaser:hover .product__icon {
  border-color: var(--orange);
  background: var(--orange);
  color: var(--base-white);
}
.product.teaser .product__stock {
  position: absolute;
  width: auto;
  height: 26px;
  bottom: 0;
  left: 0;
  margin: 0;
}
.product.middle {
  width: 100%;
  height: 100%;
  display: flex;
}
.product.middle .product__link {
  width: 100%;
  height: 100%;
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #E5EAEF;
  padding: 20px;
}
@media screen and (max-width: 768px) {
  .product.middle .product__link {
    padding: 16px;
  }
}
.product.middle .product__link .field--name-field-izobrazheniya {
  display: block;
  width: 100%;
}
.product.middle .product__link .field--name-field-izobrazheniya img {
  display: block;
  width: 100%;
  height: auto;
}
.product.middle .product__link .field--name-field-kategoriya {
  padding: 6px 10px;
  display: inline-flex;
  border-radius: 40px;
  border: 1px solid #DDE2EE;
  color: #8893AC;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%;
}
@media screen and (max-width: 768px) {
  .product.middle .product__link .field--name-field-kategoriya {
    font-size: 12px;
    max-width: 100%;
    overflow: hidden;
  }
}
.product.middle .product__link .title {
  width: 100%;
  display: block;
  padding: 10px 0;
  color: var(--blue-text, #2C467F);
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
}
@media screen and (max-width: 768px) {
  .product.middle .product__link .title {
    font-size: 16px;
  }
}
.product.middle .product__link__more {
  display: inline-flex;
  gap: 6px;
  color: #8893AC;
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
@media screen and (max-width: 768px) {
  .product.middle .product__link__more {
    display: none;
    max-width: 100%;
    overflow: hidden;
  }
}
.product.middle .product__link__more svg {
  width: 24px;
  height: auto;
  display: block;
  color: var(--orange);
}
.product.middle .product__link:hover {
  border-color: var(--blue);
  text-decoration: none;
}
.product.middle .product__link:hover .title {
  color: var(--blue);
}
.product.middle .product__link:hover .product__link__more {
  gap: 10px;
  color: var(--blue);
}

.threesixty {
  position: relative;
  overflow: hidden;
  border: none;
  margin: 0 auto;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.threesixty .spinner {
  width: 60px;
  display: block;
  margin: 0 auto;
  height: 30px;
  background: #333;
  background: rgba(0, 0, 0, 0.7);
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
.threesixty .spinner span {
  font-size: 12px;
  font-weight: bolder;
  color: #fff;
  text-align: center;
  line-height: 30px;
  display: block;
}
.threesixty .threesixty_images {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
}
.threesixty .threesixty_images img {
  position: absolute;
  top: 0;
  width: 100%;
  height: auto;
}
.threesixty .threesixty_images img.current-image {
  visibility: visible;
  width: 100%;
}
.threesixty .threesixty_images img.previous-image {
  visibility: hidden;
  width: 0;
}
.threesixty .nav_bar {
  position: absolute;
  bottom: 5px;
  right: 5px;
  z-index: 11;
}
.threesixty .nav_bar a {
  display: block;
  width: 32px;
  height: 32px;
  float: left;
  background: url(../img/360/sprites.png) no-repeat;
  text-indent: -99999px;
}
.threesixty .nav_bar a.nav_bar_previous {
  background-position: 0 -73px;
}
.threesixty .nav_bar a.nav_bar_next {
  background-position: 0 -104px;
}
.threesixty .nav_bar a.nav_bar_play {
  background-position: 0 0;
}
.threesixty .nav_bar a.nav_bar_stop {
  background-position: 0 -37px;
}

.product__360__source {
  display: none !important;
}

.msicon-ws_360 {
  background-image: url("../images/threes.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 50%;
  aspect-ratio: 1/1;
}

.section__white.view-pohozhie-tovary {
  padding-top: 0;
}

.view-filters__label {
  display: none;
}

.view-poisk,
.view-termin-taksonomii {
  display: flex;
  flex-flow: row wrap;
  gap: 20px;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .view-poisk,
  .view-termin-taksonomii {
    gap: 16px;
  }
}
.view-poisk > .view-filters,
.view-termin-taksonomii > .view-filters {
  width: calc(25% - 10px);
  padding: 30px 20px;
  background: #fff;
  border-radius: 20px;
}
@media screen and (max-width: 768px) {
  .view-poisk > .view-filters,
  .view-termin-taksonomii > .view-filters {
    width: 100%;
    padding: 16px 20px;
  }
}
.view-poisk > .view-filters .view-filters__label,
.view-termin-taksonomii > .view-filters .view-filters__label {
  display: flex;
  flex-flow: row wrap;
  margin-bottom: 20px;
  gap: 10px;
  align-items: center;
  color: #8893AC;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  .view-poisk > .view-filters .view-filters__label,
  .view-termin-taksonomii > .view-filters .view-filters__label {
    margin-bottom: 0;
  }
}
.view-poisk > .view-content,
.view-termin-taksonomii > .view-content {
  width: calc(75% - 10px);
}
@media screen and (max-width: 768px) {
  .view-poisk > .view-content,
  .view-termin-taksonomii > .view-content {
    width: 100%;
  }
}

.bef-exposed-form .form--inline > .form-item,
.bef-exposed-form .form--inline .js-form-wrapper > .form-item {
  float: none; /* LRT */
}

.bef-exposed-form .form--inline .bef--secondary {
  clear: none;
}

.views-exposed-form {
  display: flex;
  flex-flow: column;
  color: var(--blue);
}
@media screen and (max-width: 768px) {
  .views-exposed-form {
    padding-top: 20px;
  }
}
.views-exposed-form .form--inline .form-item {
  margin-right: 0;
}
.views-exposed-form .form-checkboxes .form-item, .views-exposed-form .form-radios .form-item {
  margin-top: 5px;
  margin-bottom: 5px;
}
.views-exposed-form .form-actions {
  margin-bottom: 0;
}
.views-exposed-form .form-actions .button {
  width: 100%;
  height: 50px;
  cursor: pointer;
}
.views-exposed-form .form-actions .button[name=reset] {
  height: auto;
  color: #8893AC;
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
  letter-spacing: -0.3px;
  background: #fff;
  padding: 0;
  margin: 10px 0 0;
}
.views-exposed-form .form-actions .button[name=reset]:before {
  content: "";
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjEiIHZpZXdCb3g9IjAgMCAyMCAyMSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTE3LjUgNS40ODMzMkMxNC43MjUgNS4yMDgzMiAxMS45MzMzIDUuMDY2NjUgOS4xNSA1LjA2NjY1QzcuNSA1LjA2NjY1IDUuODUgNS4xNDk5OCA0LjIgNS4zMTY2NUwyLjUgNS40ODMzMiIgc3Ryb2tlPSIjMkM0NjdGIiBzdHJva2Utd2lkdGg9IjEuNSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+CjxwYXRoIGQ9Ik03LjA4MzAxIDQuNjQxNjNMNy4yNjYzNCAzLjU0OTk2QzcuMzk5NjcgMi43NTgyOSA3LjQ5OTY3IDIuMTY2NjMgOC45MDgwMSAyLjE2NjYzSDExLjA5MTNDMTIuNDk5NyAyLjE2NjYzIDEyLjYwOCAyLjc5MTYzIDEyLjczMyAzLjU1ODI5TDEyLjkxNjMgNC42NDE2MyIgc3Ryb2tlPSIjMkM0NjdGIiBzdHJva2Utd2lkdGg9IjEuNSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+CjxwYXRoIGQ9Ik0xNS43MDg3IDguMTE2MzNMMTUuMTY3IDE2LjUwOEMxNS4wNzUzIDE3LjgxNjMgMTUuMDAwMyAxOC44MzMgMTIuNjc1MyAxOC44MzNINy4zMjUzM0M1LjAwMDMzIDE4LjgzMyA0LjkyNTMzIDE3LjgxNjMgNC44MzM2NiAxNi41MDhMNC4yOTE5OSA4LjExNjMzIiBzdHJva2U9IiMyQzQ2N0YiIHN0cm9rZS13aWR0aD0iMS41IiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPHBhdGggZD0iTTguNjA4NCAxNC4yNUgxMS4zODM0IiBzdHJva2U9IiMyQzQ2N0YiIHN0cm9rZS13aWR0aD0iMS41IiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPHBhdGggZD0iTTcuOTE2OTkgMTAuOTE2NkgxMi4wODM3IiBzdHJva2U9IiMyQzQ2N0YiIHN0cm9rZS13aWR0aD0iMS41IiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPC9zdmc+Cg==");
  margin-right: 4px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
}
.views-exposed-form .form-actions .button[name=reset]:hover {
  color: var(--blue);
}
.views-exposed-form .fieldgroup {
  width: 100%;
  margin: 0 0 20px;
}
.views-exposed-form .fieldgroup legend {
  color: #8893AC;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  display: flex;
  gap: 10px;
  width: 100%;
  align-items: center;
  line-height: 1;
  transition: transform 0.2s;
}
.views-exposed-form .fieldgroup legend .toggle-icon {
  margin-left: auto;
  flex-shrink: 0;
  color: var(--blue);
  width: 20px;
  height: 20px;
  transition: transform 0.2s;
}
.views-exposed-form .fieldgroup legend:hover {
  color: var(--blue);
}
.views-exposed-form .fieldgroup legend:hover .toggle-icon {
  color: var(--orange);
}
.views-exposed-form .form-checkboxes .form-type-checkbox {
  margin-right: 0;
  position: relative;
}
.views-exposed-form .form-checkboxes .form-type-checkbox input[type=checkbox] {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
}
.views-exposed-form .form-checkboxes .form-type-checkbox label.option {
  position: relative;
  color: var(--blue);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 18px;
  letter-spacing: -0.32px;
  padding-left: 26px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.views-exposed-form .form-checkboxes .form-type-checkbox label.option:before {
  position: absolute;
  left: 0;
  display: inline-flex;
  margin-right: 8px;
  width: 18px;
  height: 18px;
  border-radius: 3px;
  border: 1px solid #8893AC;
  flex-shrink: 0;
  content: "";
  box-sizing: border-box;
  top: 2px;
}
.views-exposed-form .form-checkboxes .form-type-checkbox label.option:hover {
  color: var(--orange);
}
.views-exposed-form .form-checkboxes .form-type-checkbox input[type=checkbox]:checked + label.option:before {
  border-color: var(--orange);
  background-color: var(--orange);
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAiIGhlaWdodD0iMTAiIHZpZXdCb3g9IjAgMCAxMCAxMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzU4XzQ5NCkiPgo8cGF0aCBkPSJNOC41NDEwMiAwLjU4NTkzOEwzLjk1ODk4IDYuNjI2OTVMMS4yNSAzLjkxOTkyTDAgNS4xNjk5Mkw0LjE2NjAyIDkuMzM1OTRMMTAgMS44MzU5NEw4LjU0MTAyIDAuNTg1OTM4WiIgZmlsbD0id2hpdGUiLz4KPC9nPgo8ZGVmcz4KPGNsaXBQYXRoIGlkPSJjbGlwMF81OF80OTQiPgo8cmVjdCB3aWR0aD0iMTAiIGhlaWdodD0iMTAiIGZpbGw9IndoaXRlIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==");
  background-repeat: no-repeat;
  background-position: center center;
}

#cookiesjsr {
  --default-margin: 1.25em;
  --font-size-reset: 1.1rem;
  --btn-font-color: #fff;
  --btn-border-color: #fff;
  --btn-bg-color: #DB6534;
  --btn-prime-font-color: #182D5C;
  --btn-prime-border-color: #182D5C;
  --btn-prime-bg-color: #fff;
  --btn-inv-font-color: #182D5C;
  --btn-inv-border-color: #182D5C;
  --btn-inv-bg-color: #fff;
  --btn-prime-inv-font-color: #fff;
  --btn-prime-inv-border-color: #182D5C;
  --btn-prime-inv-bg-color: #182D5C;
  --link-list-font-color: #182D5C;
  --link-list-separator-color: #182D5C;
  --banner-logo-offset: 100px;
  --banner-bg-color: #fff;
  --banner-font-color: #000;
  --layer-header-height: 3.5em;
  --layer-header-bg-color: #fff;
  --layer-header-font-color: #182D5C;
  --layer-body-bg-color: #fff;
  --layer-tab-bg-color: #fff;
  --layer-tab-font-color: #182D5C;
  --layer-tab-active-bg-color: #182D5C;
  --layer-tab-active-font-color: #fff;
  --layer-bg-dark: #182D5C;
  --layer-font-light: #fff;
  --layer-font-dark: #182D5C;
  --layer-border-color: #e4e5e6;
  --layer-footer-bg-color: #fff;
  --layer-footer-font-color: #182D5C;
  --layer-footer-height: 4.5em;
  --switch-border-color: #e4e5e6;
  --switch-handle-color: #fff;
  --switch-bg-off: #fff;
  --switch-always-on-font-color: rgb(20, 82, 66);
  --switch-always-on-bg-color: rgb(50, 206, 164);
  --border-btn-radius: 10px;
}

#cookies-docs {
  margin-bottom: 100px;
}

.cookies-docs table {
  margin-bottom: 30px;
  border-collapse: collapse;
  border-spacing: 0;
}
.cookies-docs table th,
.cookies-docs table td {
  padding: 10px;
  border: 1px solid #ddd;
}
.cookies-docs dd {
  margin-inline-start: 0;
}

.cookiesjsr-banner {
  overflow: visible;
}
.cookiesjsr-banner.active:before {
  content: "";
  display: block;
  left: 0;
  right: 0;
  bottom: 100%;
  position: fixed;
  background: hsla(0, 0%, 5%, 0.5);
  height: 100dvh;
}

.cookiesjsr-service-group.active .cookiesjsr-service-group--content {
  background: #ffffff;
  color: #000;
}

.cookiesjsr-service--description h3 {
  color: #182D5C;
}

.cookiesjsr-service--links a, .cookiesjsr-service--links a:active, .cookiesjsr-service--links a:hover, .cookiesjsr-service--links a:visited {
  color: #182D5C;
}

.cookiesjsr-service--always-on span {
  background: rgb(50, 206, 164);
  color: rgb(20, 82, 66);
}

.cookiesjsr-switch {
  background-color: rgb(118, 118, 118);
  height: 30px;
}
.cookiesjsr-switch::after {
  top: 5px;
  left: 5px;
}

.cookiesjsr-switch.active:after {
  left: 20px;
}

.cookies-docs-service__info {
  overflow: auto;
}

.user-logged-in .region-cookies {
  overflow: hidden;
}

.pd_form {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.pd_form__title {
  font-weight: 600;
  font-size: 24px;
}
.pd_form__btns {
  display: flex;
  gap: 16px;
  flex-flow: row wrap;
}
.pd_form__btns button {
  height: 50px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
  padding: 5px 20px;
  border: 1px solid #182D5C;
  background: #fff;
  color: #182D5C;
  transition: all 0.2s ease-in-out;
}
.pd_form__btns button.pd_yes {
  background: #182D5C;
  color: #fff;
}
.pd_form__btns button:hover {
  opacity: 0.8;
}

.cookiesjsr-links.links--row li a {
  color: #182D5C;
  text-decoration: underline;
}

.cookiesjsr-btn {
  text-transform: none;
  border-radius: var(--border-btn-radius);
  font-size: 1em;
}
@media screen and (max-width: 768px) {
  .cookiesjsr-btn {
    width: 100%;
    margin: 0.25em 0;
  }
}

#cookies-docs {
  padding: var(--padding-section);
}

.webform-submission-otzyv-soglasiya-na-obrabotku-per-form {
  margin: 40px;
  max-width: 100%;
  width: 500px;
}
@media screen and (max-width: 768px) {
  .webform-submission-otzyv-soglasiya-na-obrabotku-per-form {
    padding-left: 20px;
    padding-right: 20px;
    margin-left: 0;
    margin-right: 0;
  }
}
.webform-submission-otzyv-soglasiya-na-obrabotku-per-form input[type=text],
.webform-submission-otzyv-soglasiya-na-obrabotku-per-form input[type=email],
.webform-submission-otzyv-soglasiya-na-obrabotku-per-form textarea {
  display: block;
  width: 100%;
  height: 50px;
  border-radius: 3px;
  border: 1px solid #E4E8EE;
  padding: 6px 12px;
  font-size: 16px;
  color: #000;
  background-color: #FFF;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.webform-submission-otzyv-soglasiya-na-obrabotku-per-form textarea {
  height: auto;
}
.webform-submission-otzyv-soglasiya-na-obrabotku-per-form .button {
  display: inline-flex;
  background: var(--base-grafit);
  color: #fff;
  border-radius: 10px;
  padding: 10px 40px;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-weight: 500;
  font-size: 18px;
  height: 60px;
  transition: all 0.2s ease-in-out;
  border: none;
}

.cookiesjsr-banner button.denyAll {
  order: 2;
}

.cookiesjsr-banner button.allowAll {
  background: var(--btn-bg-color);
  color: #fff;
  border-color: var(--btn-bg-color);
}

.cookiesjsr-banner button.cookiesjsr-settings {
  order: -1;
  padding: 0;
  height: auto;
  border: none;
  width: auto;
  font-size: 0.85em;
  background: transparent;
  color: var(--btn-prime-font-color);
}

.share, .fab {
  height: 60px;
  width: 60px;
  border-radius: 50%;
  position: absolute;
}

.share {
  position: fixed;
  cursor: pointer;
  bottom: 30px;
  right: 30px;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .share {
    bottom: 80px;
    right: 20px;
  }
}

.fab {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  transition: 0.3s;
  opacity: 1;
}
.fab__tg {
  background: #2AABEE url(../images/soc_tg.svg) center/28px no-repeat;
  top: -66px;
}
.fab__vb {
  background: #802AEE url(../images/soc_viber.svg) center/28px no-repeat;
  top: -66px;
}
.fab__wa {
  background: #29D04E url(../images/soc_wa.svg) center/28px no-repeat;
}

@keyframes up {
  50% {
    transform: translateY(-170%);
  }
  100% {
    opacity: 1;
    transform: translateY(-130%);
  }
}
@keyframes down {
  0% {
    opacity: 1;
    transform: translateY(-130%);
  }
  100% {
    opacity: 0;
    transform: translateY(0);
    top: 0;
  }
}
#mybutton {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 4;
  display: flex;
}
#mybutton a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50%;
  height: 60px;
  gap: 10px;
  padding: 5px;
  font-size: 17px;
  font-style: normal;
  font-weight: 600;
  background: var(--green, #0E6471);
  text-decoration: none;
  color: #fff;
}
#mybutton a.feedback {
  border-radius: 0 !important;
  background: var(--orange, rgb(238, 116, 37));
}

.view-podbor > .view-content {
  display: flex;
  flex-flow: row wrap;
  margin-left: -10px;
  margin-right: -10px;
}
.view-podbor > .view-content .views-row {
  padding: 10px;
  width: 33.3333333333%;
}
@media screen and (max-width: 768px) {
  .view-podbor > .view-content .views-row {
    width: 100%;
  }
}
.view-podbor > .view-content .views-row .podbor.teaser {
  display: flex;
  height: 100%;
}

.podbor.teaser {
  background: #FFFFFF;
  border: 1px solid #DCE1E9;
  box-sizing: border-box;
  border-radius: 10px;
  overflow: hidden;
}
.podbor.teaser .info {
  padding: 40px 20px 0;
}
.podbor.teaser .title {
  font-weight: 500;
  font-size: 20px;
  margin-bottom: 10px;
  min-height: 48px;
  line-height: 1.2;
}
.podbor.teaser .field--name-body {
  font-size: 16px;
  color: #959AA2;
  margin-bottom: 0;
}
.podbor.teaser .field--name-field-image {
  display: block;
  width: 100%;
  overflow: hidden;
  position: relative;
  padding-top: 48%;
  transition: all 0.3s ease-in-out;
}
.podbor.teaser .field--name-field-image img {
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  transition: all 0.3s ease-in-out;
}
.podbor.teaser > a {
  display: flex;
  flex-flow: column;
  color: #292F39;
  height: 100%;
  width: 100%;
}
.podbor.teaser > a:hover {
  text-decoration: none;
}
.podbor.teaser > a:hover .title {
  color: var(--orange);
}
.podbor.teaser > a:hover .more i {
  margin-left: 10px;
}
.podbor.teaser > a:hover .field--name-field-image img {
  top: -10px;
  right: -10px;
  bottom: -10px;
  left: -10px;
  width: calc(100% + 20px);
  height: auto;
  max-width: 200%;
}
.podbor.full {
  font-size: 18px;
}
.podbor.full .field--name-body {
  max-width: 970px;
}
.podbor.full .field--name-body p {
  margin-bottom: 30px;
}
.podbor.full .field--name-body ul {
  padding-left: 0;
  list-style: none;
}
.podbor.full .field--name-body ul > li {
  padding-left: 20px;
  position: relative;
}
.podbor.full .field--name-body ul > li:before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  top: 9px;
  left: 0;
  position: absolute;
  background: var(--orange);
  border-radius: 100%;
}

.section__wsidebar__row {
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .section__wsidebar__row {
    flex-direction: column;
  }
}
@media screen and (min-width: 768px) {
  .section__wsidebar__row .layout-sidebar-first {
    width: 25%;
  }
  .section__wsidebar__row .layout-content {
    flex: 1;
  }
}

#block-yoshitake-voda .menu__name,
#block-yoshitake-parikondensat .menu__name {
  margin: 0 0 10px;
  background-color: #fff;
  border-radius: 7px;
  padding: 15px 20px;
  display: flex;
  align-items: center;
}
#block-yoshitake-voda .menu__name svg,
#block-yoshitake-parikondensat .menu__name svg {
  margin-right: 7px;
  color: var(--orange);
}
#block-yoshitake-voda .title,
#block-yoshitake-parikondensat .title {
  font-weight: bold;
  font-size: 17px;
  color: #292F39;
}
#block-yoshitake-voda .calcmenu,
#block-yoshitake-parikondensat .calcmenu {
  padding: 0;
  list-style: none;
}
#block-yoshitake-voda .calcmenu > li,
#block-yoshitake-parikondensat .calcmenu > li {
  padding: 0;
  border-bottom: 1px solid #F0F3F8;
  background-color: #fff;
  overflow: hidden;
}
#block-yoshitake-voda .calcmenu > li:first-child,
#block-yoshitake-parikondensat .calcmenu > li:first-child {
  border-top-left-radius: 7px;
  border-top-right-radius: 7px;
}
#block-yoshitake-voda .calcmenu > li:last-child,
#block-yoshitake-parikondensat .calcmenu > li:last-child {
  border-bottom: none;
  border-bottom-left-radius: 7px;
  border-bottom-right-radius: 7px;
}
#block-yoshitake-voda .calcmenu > li > button,
#block-yoshitake-voda .calcmenu > li > a,
#block-yoshitake-parikondensat .calcmenu > li > button,
#block-yoshitake-parikondensat .calcmenu > li > a {
  border: none;
  text-align: left;
  display: block;
  padding: 15px 20px;
  font-size: 16px;
  background: transparent;
  line-height: 1.2;
  color: #292F39;
  cursor: pointer;
  text-decoration: none;
}
#block-yoshitake-voda .calcmenu > li > button:hover, #block-yoshitake-voda .calcmenu > li > button.active-trail, #block-yoshitake-voda .calcmenu > li > button.active,
#block-yoshitake-voda .calcmenu > li > a:hover,
#block-yoshitake-voda .calcmenu > li > a.active-trail,
#block-yoshitake-voda .calcmenu > li > a.active,
#block-yoshitake-parikondensat .calcmenu > li > button:hover,
#block-yoshitake-parikondensat .calcmenu > li > button.active-trail,
#block-yoshitake-parikondensat .calcmenu > li > button.active,
#block-yoshitake-parikondensat .calcmenu > li > a:hover,
#block-yoshitake-parikondensat .calcmenu > li > a.active-trail,
#block-yoshitake-parikondensat .calcmenu > li > a.active {
  color: var(--calc-color);
  background: #f9e5dd;
  text-decoration: none;
}
#block-yoshitake-voda .calcmenu > li > button.open,
#block-yoshitake-voda .calcmenu > li > a.open,
#block-yoshitake-parikondensat .calcmenu > li > button.open,
#block-yoshitake-parikondensat .calcmenu > li > a.open {
  background: #f9e5dd;
  text-decoration: none;
}
#block-yoshitake-voda .calcmenu > li.active-trail > button,
#block-yoshitake-voda .calcmenu > li.active-trail > a,
#block-yoshitake-parikondensat .calcmenu > li.active-trail > button,
#block-yoshitake-parikondensat .calcmenu > li.active-trail > a {
  color: var(--calc-color);
  background: #f9e5dd;
  text-decoration: none;
}
#block-yoshitake-voda .calcmenu > li > ul,
#block-yoshitake-parikondensat .calcmenu > li > ul {
  padding: 0 20px;
  margin: 0;
  list-style: none;
  background-color: #f9e5dd;
}
#block-yoshitake-voda .calcmenu > li > ul > li,
#block-yoshitake-parikondensat .calcmenu > li > ul > li {
  display: block;
  font-size: 16px;
  color: #292F39;
  position: relative;
  padding: 5px 0 5px 20px;
  cursor: pointer;
}
#block-yoshitake-voda .calcmenu > li > ul > li a,
#block-yoshitake-parikondensat .calcmenu > li > ul > li a {
  color: #292F39;
  text-decoration: none;
}
#block-yoshitake-voda .calcmenu > li > ul > li a:hover,
#block-yoshitake-parikondensat .calcmenu > li > ul > li a:hover {
  text-decoration: none;
  color: var(--calc-color);
}
#block-yoshitake-voda .calcmenu > li > ul > li a:focus,
#block-yoshitake-parikondensat .calcmenu > li > ul > li a:focus {
  text-decoration: none;
}
#block-yoshitake-voda .calcmenu > li > ul > li a.is-active, #block-yoshitake-voda .calcmenu > li > ul > li a.active,
#block-yoshitake-parikondensat .calcmenu > li > ul > li a.is-active,
#block-yoshitake-parikondensat .calcmenu > li > ul > li a.active {
  color: var(--calc-color);
}
#block-yoshitake-voda .calcmenu > li > ul > li:before,
#block-yoshitake-parikondensat .calcmenu > li > ul > li:before {
  content: ">";
  position: absolute;
  top: 6px;
  left: 0;
  font-weight: bold;
  font-size: 90%;
}
#block-yoshitake-voda .calcmenu > li > ul > li:first-child,
#block-yoshitake-parikondensat .calcmenu > li > ul > li:first-child {
  padding-top: 0;
}
#block-yoshitake-voda .calcmenu > li > ul > li:first-child:before,
#block-yoshitake-parikondensat .calcmenu > li > ul > li:first-child:before {
  top: 2px;
}
#block-yoshitake-voda .calcmenu > li > ul > li:first-child > a,
#block-yoshitake-parikondensat .calcmenu > li > ul > li:first-child > a {
  border-top-left-radius: 7px;
  border-top-right-radius: 7px;
}
#block-yoshitake-voda .calcmenu > li > ul > li:last-child,
#block-yoshitake-parikondensat .calcmenu > li > ul > li:last-child {
  padding-bottom: 15px;
}
#block-yoshitake-voda .calcmenu > li > ul > li:last-child > a,
#block-yoshitake-parikondensat .calcmenu > li > ul > li:last-child > a {
  border-bottom-left-radius: 7px;
  border-bottom-right-radius: 7px;
}
#block-yoshitake-voda .calcmenu > li > ul > li:hover, #block-yoshitake-voda .calcmenu > li > ul > li.active,
#block-yoshitake-parikondensat .calcmenu > li > ul > li:hover,
#block-yoshitake-parikondensat .calcmenu > li > ul > li.active {
  background-color: #f9e5dd;
  color: var(--calc-color);
  text-decoration: none;
}
#block-yoshitake-voda .submenu,
#block-yoshitake-parikondensat .submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s;
}
#block-yoshitake-voda .active-trail > .submenu,
#block-yoshitake-voda .open > .submenu,
#block-yoshitake-parikondensat .active-trail > .submenu,
#block-yoshitake-parikondensat .open > .submenu {
  max-height: 600px;
}

.calc-content hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  border-top: 1px solid #eee;
}

/*# sourceMappingURL=styles.css.map */
