html {
  font-size: 20px;
}

body {
  min-width: 375px;
  color: #252525;
  font-family: "Geologica", sans-serif;
  font-weight: 400;
  background-color: #f1f4f5;
  padding: 0 10px;
  margin: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
@media (min-width: 480px) {
  body {
    padding: 0;
  }
}
body.oh, body.mpa {
  overflow: hidden;
}

/* common classes */
.row-s {
  margin-right: -6px;
  margin-left: -6px;
}

.col-s {
  padding-right: 6px;
  padding-left: 6px;
}

.fit-cover {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.fit-contain {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flex-space {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.full-abs {
  position: absolute !important;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.bg-image-cover {
  background-position: center;
  background-color: #000;
  background-size: cover;
  background-repeat: no-repeat;
}

.grad-text {
  display: inline-block;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  background-image: linear-gradient(90deg, #009ee0 0%, #66c8ff 100%);
}
.grad-text.v2 {
  background-image: linear-gradient(90deg, #2767e1 0%, #568efb 50%, #2767e1 100%);
}

.ordinary-text {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .ordinary-text {
    font-size: 18px;
  }
}
.ordinary-text.v2 {
  font-weight: 400;
}
.ordinary-text.v3 * + * {
  margin-top: 24px;
}
.ordinary-text.v3 h3 {
  font-size: 24px;
}
.ordinary-text * + * {
  margin-top: 8px;
}
.ordinary-text ul, .ordinary-text ol {
  list-style-type: none;
  padding-left: 18px;
}
.ordinary-text ul li + li, .ordinary-text ol li + li {
  margin-top: 6px !important;
}
.ordinary-text ul li span, .ordinary-text ol li span {
  color: #009ee0;
}
.ordinary-text ul li::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: #009ee0;
  border-radius: 50%;
  margin: 0 12px 2px -18px;
}
.ordinary-text ol {
  counter-reset: num;
}
.ordinary-text ol li::before {
  content: counter(num) ".";
  counter-increment: num;
  display: inline-block;
  color: #009ee0;
  margin: 0 12px 2px -18px;
}
.ordinary-text a {
  display: inline-block;
}
.ordinary-text .big-img-wrap {
  overflow: hidden;
  height: 240px;
  border-radius: 10px;
}
@media (min-width: 768px) {
  .ordinary-text .big-img-wrap {
    height: 360px;
    border-radius: 20px;
  }
}
@media (min-width: 992px) {
  .ordinary-text .big-img-wrap {
    height: 480px;
  }
}
@media (min-width: 1360px) {
  .ordinary-text .big-img-wrap {
    height: 640px;
  }
}
.ordinary-text .text-container {
  max-width: 980px;
}

.custom-scroll::-webkit-scrollbar {
  width: 4px;
}
.custom-scroll::-webkit-scrollbar-track {
  background-color: rgba(39, 103, 225, 0.1);
  border-radius: 2px;
}
.custom-scroll::-webkit-scrollbar-thumb {
  background-color: #568efb;
  border-radius: 2px;
}
@-moz-document url-prefix() {
  .custom-scroll {
    scrollbar-width: thin;
    scrollbar-color: #568efb rgba(39, 103, 225, 0.1);
  }
}
.custom-scroll.on-dark::-webkit-scrollbar-track {
  background-color: rgba(255, 255, 225, 0.1);
}
.custom-scroll.on-dark::-webkit-scrollbar-thumb {
  background-color: #fff;
}
@-moz-document url-prefix() {
  .custom-scroll.on-dark {
    scrollbar-color: #fff rgba(255, 255, 225, 0.1);
  }
}

.hid-scroll-h::-webkit-scrollbar {
  width: 0;
  height: 0;
}

/* </common classes */
/* elems */
h1, .h1 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}
@media (min-width: 1360px) {
  h1, .h1 {
    font-size: 60px;
  }
}

h2, .h2 {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.2;
}
@media (min-width: 1360px) {
  h2, .h2 {
    font-size: 44px;
  }
}

h3, .h3 {
  font-family: "Geologica", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3;
}
@media (min-width: 1360px) {
  h3, .h3 {
    font-size: 32px;
  }
}

h4, .h4 {
  font-family: "Geologica", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
}

h5, .h5 {
  font-family: "Geologica", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
}

.fill-link {
  display: block;
  font-size: 18px;
  background-color: #e8f8ff;
  border-radius: 17px;
}
.fill-link > a {
  display: inline-block;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  background-image: linear-gradient(90deg, #009ee0 0%, #66c8ff 100%);
  padding: 8px 12px;
}
.fill-link.v2 {
  font-size: clamp(10px, 3vw, 18px);
}

a.txt-link,
.txt-link {
  font-family: "Inter", sans-serif;
  color:#009EE0;
}
a.txt-link:hover,
.txt-link:hover {
  color: #66c8ff;
}

.bttn {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  height: 56px;
  font-size: 16px;
  padding: 0 16px;
  border-radius: 32px;
}
@media (min-width: 992px) {
  .bttn {
    height: 62px;
    font-size: 18px;
    padding: 0 24px;
  }
}
.bttn .layer {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 10;
}
.bttn .svg-icon-wr {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 10px;
}
.bttn::before, .bttn::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.3s;
}
.bttn::before {
  z-index: 2;
}
.bttn::after {
  z-index: 1;
}
.bttn:hover::after {
  opacity: 1;
}
.bttn:active::before, .bttn.active::before {
  opacity: 1;
}
.bttn:disabled, .bttn.slick-disabled {
  opacity: 0.3;
  cursor: default;
}
.bttn:disabled::before, .bttn:disabled::after, .bttn.slick-disabled::before, .bttn.slick-disabled::after {
  opacity: 0;
}
.bttn.sm {
  height: 56px;
  font-size: 16px;
  padding: 0 16px;
}
.bttn.sm.v2 {
  height: 48px;
}
@media (min-width: 992px) {
  .bttn.sm.v2 {
    height: 55.49px;
  }
}

.big-btn-dark {
  height: 72px;
  font-size: 16px;
  font-weight: 600;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
}
@media (min-width: 768px) {
  .big-btn-dark {
    font-size: 18px;
  }
}
@media (min-width: 992px) {
  .big-btn-dark {
    height: 88px;
    font-size: 24px;
  }
}
.big-btn-dark .layer {
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  background-image: linear-gradient(90deg, #fff 0%, #fff 100%);
}
.big-btn-dark .svg-icon-wr {
  width: 24px;
  height: 24px;
}
@media (min-width: 768px) {
  .big-btn-dark .svg-icon-wr {
    width: 32px;
    height: 32px;
  }
}
@media (min-width: 992px) {
  .big-btn-dark .svg-icon-wr {
    width: 40px;
    height: 40px;
  }
}
.big-btn-dark .svg-icon-wr .svg-icon {
  stroke: #fff;
}
.big-btn-dark::before {
  background-image: linear-gradient(90deg, #d7e2ff 0%, #f2ffff 100%);
}
.big-btn-dark::after {
  background-image: linear-gradient(90deg, #fff 0%, #fff 100%);
}
.big-btn-dark:hover .layer, .big-btn-dark:active .layer, .big-btn-dark.active .layer {
  background-image: linear-gradient(90deg, #2767e1 0%, #568efb 50%, #2767e1 100%);
}
.big-btn-dark:hover .svg-icon-wr .svg-icon, .big-btn-dark:active .svg-icon-wr .svg-icon, .big-btn-dark.active .svg-icon-wr .svg-icon {
  stroke: #2767e1;
}

.main-btn-light {
  background-image: linear-gradient(90deg, #009ee0 0%, #66c8ff 100%);
}
.main-btn-light .layer {
  color: #fff;
}
.main-btn-light .svg-icon-wr {
  background-color: rgba(255, 255, 255, 0.2);
}
.main-btn-light .svg-icon-wr .svg-icon {
  stroke: #fff;
}
.main-btn-light::before {
  background-image: linear-gradient(90deg, #008fe0 0%, #66a3ff 100%);
}
.main-btn-light::after {
  background-image: linear-gradient(90deg, #0067e0 0%, #66a3ff 100%);
}

.main-btn-dark,
.sec-btn-light {
  background-color: #fff;
}
.main-btn-dark .layer,
.sec-btn-light .layer {
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  background-image: linear-gradient(90deg, #009ee0 0%, #66c8ff 100%);
}
.main-btn-dark .svg-icon-wr,
.sec-btn-light .svg-icon-wr {
  background-image: linear-gradient(90deg, #009ee0 0%, #66c8ff 100%);
}
.main-btn-dark .svg-icon-wr .svg-icon,
.sec-btn-light .svg-icon-wr .svg-icon {
  stroke: #fff;
}
.main-btn-dark::before,
.sec-btn-light::before {
  background-image: linear-gradient(90deg, #d7e2ff 0%, #f2ffff 100%);
}
.main-btn-dark::after,
.sec-btn-light::after {
  background-image: linear-gradient(90deg, #afc6ff 0%, #c8f3f4 100%);
}
.main-btn-dark:hover .layer,
.main-btn-dark:hover .svg-icon-wr, .main-btn-dark:active .layer,
.main-btn-dark:active .svg-icon-wr, .main-btn-dark.active .layer,
.main-btn-dark.active .svg-icon-wr,
.sec-btn-light:hover .layer,
.sec-btn-light:hover .svg-icon-wr,
.sec-btn-light:active .layer,
.sec-btn-light:active .svg-icon-wr,
.sec-btn-light.active .layer,
.sec-btn-light.active .svg-icon-wr {
  background-image: linear-gradient(90deg, #2767e1 0%, #568efb 50%, #2767e1 100%);
}
.main-btn-dark:disabled .layer,
.main-btn-dark:disabled .svg-icon-wr,
.sec-btn-light:disabled .layer,
.sec-btn-light:disabled .svg-icon-wr {
  background-image: linear-gradient(90deg, #009ee0 0%, #66c8ff 100%);
}

.sec-btn-dark {
  border: 1px solid #fff;
  transition: border-color 0.2s;
}
.sec-btn-dark .layer {
  color: #fff;
}
.sec-btn-dark .svg-icon-wr {
  background-image: linear-gradient(90deg, #fff 0%, #fff 100%);
}
.sec-btn-dark .svg-icon-wr .svg-icon {
  stroke: #66c8ff;
}
.sec-btn-dark::before {
  background-image: linear-gradient(90deg, rgba(39, 103, 225, 0.5) 0%, rgba(86, 142, 251, 0.5) 50%, rgba(39, 103, 225, 0.5) 100%);
}
.sec-btn-dark::after {
  background-image: linear-gradient(90deg, rgba(39, 103, 225, 0.2) 0%, rgba(86, 142, 251, 0.2) 50%, rgba(39, 103, 225, 0.2) 100%);
}
.sec-btn-dark:hover, .sec-btn-dark:active, .sec-btn-dark.active {
  border-color: #afc6ff;
}
.sec-btn-dark:hover .svg-icon-wr {
  background-image: linear-gradient(90deg, #2767e1 0%, #568efb 50%, #2767e1 100%);
}
.sec-btn-dark:hover .svg-icon-wr .svg-icon {
  stroke: #fff;
}
.sec-btn-dark:active .svg-icon-wr, .sec-btn-dark.active .svg-icon-wr {
  background-image: linear-gradient(90deg, #009ee0 0%, #66c8ff 100%);
}
.sec-btn-dark:active .svg-icon-wr .svg-icon, .sec-btn-dark.active .svg-icon-wr .svg-icon {
  stroke: #fff;
}
.sec-btn-dark:active::after, .sec-btn-dark.active::after {
  opacity: 0;
}
.sec-btn-dark:disabled {
  border-color: #fff;
}
.sec-btn-dark:disabled .svg-icon-wr {
  background-image: linear-gradient(90deg, #fff 0%, #fff 100%);
}

.sec-btn-light {
  background-color: transparent;
  border: 1px solid #009ee0;
  transition: border-color 0.2s;
}
.sec-btn-light::before {
  background-image: linear-gradient(90deg, rgba(39, 103, 225, 0.3) 0%, rgba(86, 142, 251, 0.3) 50%, rgba(39, 103, 225, 0.3) 100%);
}
.sec-btn-light::after {
  background-image: linear-gradient(90deg, rgba(39, 103, 225, 0.2) 0%, rgba(86, 142, 251, 0.2) 50%, rgba(39, 103, 225, 0.2) 100%);
}
.sec-btn-light:hover, .sec-btn-light:active, .sec-btn-light.active {
  border-color: #2767e1;
}
.sec-btn-light:active::after, .sec-btn-light.active::after {
  opacity: 0;
}

.main-cover {
  display: none;
  position: fixed !important;
  top: 128px;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 100;
  background-color: rgba(37, 37, 37, 0.5);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}
.main-cover.v2 {
  top: 0;
}

.mp {
  position: fixed;
  right: -375px;
  bottom: 0;
  z-index: 101;
  width: 375px;
  background-color: #f1f4f5;
  transition: right 0.2s;
}
.mp.mpa {
  right: 0;
}

.m-click {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.m-click img {
  width: 40px;
  height: 40px;
  margin-bottom: 8px;
}
.m-click .svg-icon {
  stroke: #fff;
  stroke-width: 1.6;
  animation: jump 2s infinite;
}

@keyframes jump {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(4px);
  }
  60% {
    transform: translateY(2px);
  }
}
.stars {
  display: flex;
  align-items: center;
}
.stars li + li {
  margin-left: 4px;
}

.pict-bg {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  background-color: #f1f4f5;
  border-radius: 20px;
  margin-bottom: 20px;
}
.pict-bg .icon-pict {
  stroke: #2767e1;
}
.pict-bg.v2 {
  background-color: #fff;
}

.dls .col-inner {
  height: 100%;
  min-height: 265px;
  overflow: hidden;
  background-color: #fff;
  padding: 24px;
  border-radius: 20px;
}
.dls dt {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .dls dt {
    font-size: 26px;
  }
}
@media (min-width: 1360px) {
  .dls dt {
    font-size: 32px;
  }
}
.dls dd {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.5;
}
@media (min-width: 1360px) {
  .dls dd {
    font-size: 18px;
  }
}
.dls.v2 {
  margin-right: -20px;
  margin-left: -20px;
}
.dls.v2 .col-inner {
  min-height: auto;
  background-color: transparent;
  padding: 0 10px;
}

.accordion-section .add-block {
  display: flex;
  justify-content: flex-start;
  margin-top: 20px;
}
@media (min-width: 768px) {
  .accordion-section .add-block {
    justify-content: flex-end;
    /* text-align: right; */
  }
}
.accordion-section .add-block p {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}
.accordion-section .add-block button {
  margin-top: 12px;
}

.accordion .accordion-item {
  overflow: hidden;
  color: #252525;
  background-color: #fff;
  border: none;
  border-radius: 20px;
}
.accordion .accordion-item + .accordion-item {
  margin-top: 12px;
}
.accordion .accordion-item-title {
  display: inline-block;
}
.accordion .accordion-button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #252525;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  background-color: transparent;
  padding: 24px 20px;
  box-shadow: none;
}
@media (min-width: 768px) {
  .accordion .accordion-button {
    font-size: 20px;
    padding: 28px 20px;
  }
}
.accordion .accordion-button::after {
  content: none;
}
.accordion .accordion-button .accordion-button-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
  width: 40px;
  height: 40px;
  background-color: #e8f8ff;
  border-radius: 50%;
  margin-left: 24px;
  box-shadow: 0 0 40px 0 rgba(37, 37, 37, 0.1);
}
.accordion .accordion-button .accordion-button-icon .svg-icon {
  position: relative;
  z-index: 2;
  stroke-width: 1.6;
}
.accordion .accordion-button .accordion-button-icon .icon-plus {
  stroke: #fff;
}
.accordion .accordion-button .accordion-button-icon .icon-minus {
  display: none;
  stroke: #009ee0;
}
.accordion .accordion-button .accordion-button-icon::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  background-image: linear-gradient(180deg, #009ee0 0%, #66c8ff 100%);
  opacity: 1;
  transition: opacity 0.2s;
}
.accordion .accordion-button:not(.collapsed) .accordion-item-title {
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  background-image: linear-gradient(90deg, #2767e1 0%, #568efb 50%, #2767e1 100%);
}
.accordion .accordion-button:not(.collapsed) .accordion-button-icon .icon-plus {
  display: none;
}
.accordion .accordion-button:not(.collapsed) .accordion-button-icon .icon-minus {
  display: block;
}
.accordion .accordion-button:not(.collapsed) .accordion-button-icon::after {
  opacity: 0;
}
.accordion .accordion-body {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  padding: 0 20px 28px 20px;
}
@media (min-width: 1360px) {
  .accordion .accordion-body {
    font-size: 18px;
  }
}

.video-wr {
  position: relative;
  overflow: hidden;
}
.video-wr video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.video-wr .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 5;
  transform: translateX(-50%) translateY(-50%);
}

/* </elems */
/* input-placeholder */
input::-webkit-input-placeholder {
  color: rgba(37, 37, 37, 0.5);
  opacity: 1;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

input::-moz-placeholder {
  color: rgba(37, 37, 37, 0.5);
  opacity: 1;
  -moz-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

input:-ms-input-placeholder {
  color: rgba(37, 37, 37, 0.5);
  opacity: 1;
  -ms-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

input:not(:read-only):focus::-webkit-input-placeholder {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

input:not(:-moz-read-only):focus::-moz-placeholder {
  opacity: 0;
  -moz-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

input:not(:read-only):focus::-moz-placeholder {
  opacity: 0;
  -moz-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

input:not(:read-only):focus:-ms-input-placeholder {
  opacity: 0;
  -ms-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

textarea::-webkit-input-placeholder {
  color: rgba(37, 37, 37, 0.5);
  opacity: 1;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

textarea::-moz-placeholder {
  color: rgba(37, 37, 37, 0.5);
  opacity: 1;
  -moz-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

textarea:-ms-input-placeholder {
  color: rgba(37, 37, 37, 0.5);
  opacity: 1;
  -ms-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

textarea:not(:read-only):focus::-webkit-input-placeholder {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

textarea:not(:-moz-read-only):focus::-moz-placeholder {
  opacity: 0;
  -moz-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

textarea:not(:read-only):focus::-moz-placeholder {
  opacity: 0;
  -moz-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

textarea:not(:read-only):focus:-ms-input-placeholder {
  opacity: 0;
  -ms-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

input::-ms-clear {
  display: none;
}

input::-webkit-search-decoration,
input::-webkit-search-cancel-button,
input::-webkit-search-results-button,
input::-webkit-search-results-decoration {
  display: none;
}

.for-field {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  padding-left: 20px;
  margin-bottom: 8px;
}

.inp-gr {
  position: relative;
}
.inp-gr + .inp-gr {
  margin-top: 16px;
}
.inp-gr .icon-btn {
  position: absolute;
  right: 20px;
  bottom: 15px;
}
.inp-gr .icon-btn .svg-icon {
  stroke: #2767e1;
}
.inp-gr .icon-btn:disabled {
  opacity: 0;
  visibility: hidden;
}
.inp-gr .pass-toggle .icon-eye_cross {
  display: none;
}
.inp-gr .pass-toggle.show-pass .icon-eye {
  display: none;
}
.inp-gr .pass-toggle.show-pass .icon-eye_cross {
  display: block;
}

.field {
  width: 100%;
  height: 56px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  padding: 0 20px;
  border-radius: 30px;
  background-color: white;
  margin: 5px;
}
.field:disabled {
  opacity: 0.4;
}
.field.error {
  border-color: #ff3a3a;
}
.field.error + p {
  color: #ff3a3a;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  padding-left: 20px;
  margin-top: 8px;
}
.field.with-btn {
  padding-right: 60px;
}

textarea.field {
  height: 130px;
  padding-top: 16px;
  padding-bottom: 16px;
  resize: none;
}
@media (min-width: 768px) {
  textarea.field {
    height: 200px;
  }
}

.field-on-light {
  background-color: #fff;
  border: 1px solid rgba(37, 37, 37, 0.2);
}

.field-on-dark {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.5);
}
.field-on-dark::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.field-on-dark::-moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.field-on-dark:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
}

textarea.field-on-dark::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
textarea.field-on-dark::-moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
textarea.field-on-dark:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.checkbox-wr {
  display: flex;
  align-items: flex-start;
}
.checkbox-wr label {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  cursor: pointer;
}
.checkbox-wr .sim-checkbox {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  margin-top: 2px;
  transition: 0.2s;
}
.checkbox-wr .sim-checkbox .svg-icon {
  stroke: transparent;
  transition: stroke 0.2s;
}
.checkbox-wr:hover .sim-checkbox {
  border-color: #66c8ff;
}
.checkbox-wr .field-checkbox {
  display: none;
}
.checkbox-wr .field-checkbox:checked + .sim-checkbox {
  background-color: #e8f8ff;
  border-color: #66c8ff;
}
.checkbox-wr .field-checkbox:checked + .sim-checkbox .svg-icon {
  stroke: #66c8ff;
}

.field-radio,
.field-check {
  display: none;
}

.radio-gr {
  display: flex;
  flex-wrap: wrap;
  margin: -4px 0;
}
.radio-gr .radio-wr {
  font-size: 0;
  padding: 4px 0;
  margin-right: 8px;
}
.radio-gr .radio-wr .sim-radio {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  background-color: #f1f4f5;
  padding: 6px 13px;
  border-radius: 17px;
  cursor: pointer;
  transition: background-color 0.1s, color 0.1s;
}
.radio-gr .radio-wr .sim-radio.v2 {
  background-color: #fff;
}
.radio-gr .radio-wr .sim-radio.color {
  width: 52px;
  height: 52px;
  border: 2px solid transparent;
  border-radius: 16px;
  transition: border-color 0.2s;
}
.radio-gr .radio-wr .sim-radio.color-w {
  border-color: #eee;
}
.radio-gr .radio-wr .field-radio:checked + .sim-radio,
.radio-gr .radio-wr .field-radio:checked + .sim-radio.v2 {
  color: #fff;
  background-color: #009ee0;
}
.radio-gr .radio-wr .field-radio:checked + .sim-radio.color,
.radio-gr .radio-wr .field-radio:checked + .sim-radio.v2.color {
  border-color: #2767e1;
}
.radio-gr .radio-wr .add-color {
  height: 52px;
  font-size: 16px;
  font-weight: 500;
  background-color: #fff;
  padding: 6px 13px;
  border: 1px solid rgba(37, 37, 37, 0.2);
  border-radius: 16px;
}
.radio-gr.v2 .radio-wr .sim-radio {
  border-radius: 50%;
}

.sim-radio,
.sim-check {
  display: flex;
  align-items: center;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.5;
  padding: 13px 16px;
  border-radius: 10px;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}
.sim-radio.bord,
.sim-check.bord {
  border: 1px solid rgba(37, 37, 37, 0.2);
}
.sim-radio.bord:hover,
.sim-check.bord:hover {
  border-color: #2767e1;
}
.sim-radio span,
.sim-check span {
  flex-shrink: 0;
  display: block;
  width: 24px;
  height: 24px;
  padding: 3px;
  border: 2px solid rgba(37, 37, 37, 0.4);
  border-radius: 50%;
  margin-right: 8px;
  transition: border-color 0.2s;
}
.sim-radio span span,
.sim-check span span {
  width: 14px;
  height: 14px;
  background-color: transparent;
  border: none;
  transition: background-color 0.2s;
}
.sim-radio:hover,
.sim-check:hover {
  color: #2767e1;
}

.field-radio:checked + .sim-radio span,
.field-radio:checked + .sim-check span,
.field-check:checked + .sim-radio span,
.field-check:checked + .sim-check span {
  border-color: #2767e1;
}
.field-radio:checked + .sim-radio span span,
.field-radio:checked + .sim-check span span,
.field-check:checked + .sim-radio span span,
.field-check:checked + .sim-check span span {
  background-color: #2767e1;
}

.form-on-light .icon-plus,
.form-on-dark .icon-plus {
  stroke-width: 1.6;
  margin-right: 8px;
}
.form-on-light .note,
.form-on-dark .note {
  display: none;
  color: rgba(37, 37, 37, 0.5);
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  padding-left: 20px;
  margin-top: 8px;
}
.form-on-light .checkbox-wr:hover .sim-checkbox,
.form-on-dark .checkbox-wr:hover .sim-checkbox {
  border-color: #66c8ff;
}

.form-on-light .icon-plus {
  stroke: #009ee0;
}
.form-on-light .checkbox-wr label {
  color: #252525;
}
.form-on-light .checkbox-wr .sim-checkbox {
  border: 2px solid #252525;
}
.form-on-light .jq-file__name {
  color: #009ee0;
}

.form-on-dark .icon-plus {
  stroke: #fff;
}
.form-on-dark .checkbox-wr label {
  color: rgba(255, 255, 255, 0.8);
}
.form-on-dark .checkbox-wr .sim-checkbox {
  border: 2px solid #fff;
}

.field-file > input {
  display: none;
}

.jq-file {
  display: flex;
  align-items: center;
}

.jq-file__name {
  order: 1;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.2;
  white-space: normal;
}

.jq-file__browse {
  cursor: pointer;
}

.jq-selectbox__select {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f1f4f5;
  padding: 0 16px;
  border: 1px solid rgba(37, 37, 37, 0.2);
  border-radius: 10px;
  cursor: pointer;
  width: 255px;
  height: 55px;
}

.jq-selectbox__select-text {
  padding: 12px 0;
  width: 100%;
}

.jq-selectbox__trigger {
  margin-left: 12px;
}
.jq-selectbox__trigger .svg-icon {
  stroke: #009ee0;
}

.jq-selectbox__dropdown {
  width: 100%;
  background-color: #f1f4f5;
  border: 1px solid rgba(37, 37, 37, 0.2);
  border-radius: 10px;
}
.jq-selectbox__dropdown ul {
  padding: 8px 0;
}
.jq-selectbox__dropdown ul li {
  padding: 0 16px;
  cursor: pointer;
  transition: color 0.2s;
}

.jq-number {
  display: flex;
  align-items: center;
}
.jq-number .jq-number__field {
  order: 1;
  max-width: 70px;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 500;
  padding: 0 8px;
}
.jq-number .jq-number__field .field-number {
  width: 100%;
  text-align: center;
}
.jq-number .jq-number__spin {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background-image: linear-gradient(90deg, #009ee0 0%, #66c8ff 100%);
  border-radius: 50%;
  cursor: pointer;
}
.jq-number .jq-number__spin.plus {
  order: 2;
}
.jq-number .jq-number__spin .svg-icon {
  width: 16px;
  height: 16px;
  stroke: #fff;
}

.noUi-horizontal .noUi-handle,
.noUi-vertical .noUi-handle {
  width: 24px;
  height: 24px;
  border: none;
  border-radius: 50%;
  box-shadow: none;
  cursor: pointer;
}
.noUi-horizontal .noUi-handle::before, .noUi-horizontal .noUi-handle::after,
.noUi-vertical .noUi-handle::before,
.noUi-vertical .noUi-handle::after {
  content: none;
}
.noUi-horizontal.v2 .noUi-handle,
.noUi-vertical.v2 .noUi-handle {
  width: 18px;
  height: 18px;
}

.noUi-vertical {
  width: 10px;
  height: 100%;
}
.noUi-vertical .noUi-handle {
  right: -5px;
  background: linear-gradient(0deg, #2767e1 0%, #568efb 50%, #2767e1 100%);
}
.noUi-vertical .noUi-connect {
  background: linear-gradient(0deg, #2767e1 0%, #568efb 50%, #2767e1 100%);
}
.noUi-vertical.v2 {
  width: 8px;
}
.noUi-vertical.v2 .noUi-handle-lower {
  bottom: -9px;
}
.noUi-vertical.v2 .noUi-value {
  font-size: 12px;
}

.noUi-horizontal {
  height: 10px;
}
.noUi-horizontal .noUi-handle {
  top: -7px;
  background: linear-gradient(90deg, #2767e1 0%, #568efb 50%, #2767e1 100%);
}
.noUi-horizontal .noUi-handle-lower {
  right: -12px;
}
.noUi-horizontal .noUi-connect {
  background: linear-gradient(90deg, #2767e1 0%, #568efb 50%, #2767e1 100%);
}
.noUi-horizontal.v2 {
  height: 8px;
}
.noUi-horizontal.v2 .noUi-handle {
  top: -5px;
}
.noUi-horizontal.v2 .noUi-handle-lower {
  right: -8px;
}
.noUi-horizontal.v2 .noUi-value {
  font-size: 12px;
}
.noUi-horizontal.pair .noUi-handle-lower {
  right: -21px;
}
.noUi-horizontal.pair .noUi-handle-upper {
  right: -3px;
}

.noUi-target {
  background-color: #f1f4f5;
  border: none;
  border-radius: 5px;
  box-shadow: none;
}
.noUi-target.wbg {
  background-color: #fff;
}

.noUi-marker {
  display: none;
}

.noUi-value {
  color: #252525;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 500;
  padding-left: 0;
}

#crawler10 .noUi-value:last-child {
  margin-left: -10px;
}

.crawler-val {
  color: #484848;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  background-color: #fff;
  padding: 6px 10px;
  border: 1px solid rgba(37, 37, 37, 0.2);
  border-radius: 8px;
  -moz-appearance: textfield;
}
.crawler-val::-webkit-inner-spin-button, .crawler-val::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.svg-icon {
  display: block;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-calc,
.icon-cart,
.icon-fav,
.icon-user {
  width: 28px;
  height: 29px;
}

.icon-glass {
  width: 21px;
  height: 21px;
}

.icon-burger {
  width: 16px;
  height: 14px;
  stroke-width: 1.6;
}

.icon-cross {
  width: 18px;
  height: 18px;
  stroke-width: 1.6;
}

.icon-arr_down_open {
  width: 14px;
  height: 9px;
  stroke-width: 3;
}

.icon-arr_up_open {
  width: 14px;
  height: 9px;
  stroke-width: 3;
  transform: rotate(180deg);
}

.icon-arr_right_open,
.icon-arr_left_open {
  width: 9px;
  height: 14px;
  stroke-width: 3;
}

.icon-arr_right_line,
.icon-arr_left_line {
  width: 30px;
  height: 18px;
  stroke-width: 3;
  stroke: var(--bs-pagination-color);
}

.icon-check {
  width: 10px;
  height: 8px;
  stroke-width: 1.4;
}

.icon-pict,
.icon-lines,
.icon-tiles {
  width: 40px;
  height: 40px;
}

.icon-play {
  width: 50px;
  height: 54px;
}

.icon-plus {
  width: 25px;
  height: 24px;
}

.icon-minus,
.icon-cat {
  width: 24px;
  height: 24px;
}

.icon-gift {
  width: 24px;
  height: 25px;
  stroke-width: 1.6;
}

.icon-close,
.icon-filter,
.icon-eye,
.icon-eye_cross,
.icon-pencil,
.icon-inline {
  width: 24px;
  height: 24px;
  stroke-width: 1.6;
}

.icon-tel,
.icon-car {
  width: 41px;
  height: 40px;
}

.icon-info {
  width: 12px;
  height: 12px;
  stroke-width: 1.4;
}

.icon-copy {
  width: 16px;
  height: 16px;
  stroke-width: 1.4;
}

.dots .slick-dots {
  display: flex;
  max-width: 420px;
}
.dots .slick-dots li {
  height: 4px;
  overflow: hidden;
  font-size: 0;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 2px;
}
.dots .slick-dots li button {
  width: 100%;
  height: 100%;
  background-color: transparent;
  transition: background-color 0.2s;
}
.dots .slick-dots li + li {
  margin-left: 4px;
}
.dots .slick-dots li.slick-active button {
  background-color: #fff;
}
.dots.anime .slick-dots li button {
  background-color: transparent;
  background-image: linear-gradient(90deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 50%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 100%);
  background-size: 200% 100%;
  background-position: 100% 0%;
  transition: none;
}
.dots.anime .slick-dots li.slick-active button {
  background-position: 0% 0%;
  transition-property: background-position;
  transition-timing-function: linear;
}

.controls.v1 .slick-arrow .svg-icon {
  stroke: #fff;
  transition: stroke 0.2s;
}
.controls.v1 .slick-arrow:hover .svg-icon {
  stroke: #c8f3f4;
}
.controls.v1 .slick-arrow:active .svg-icon {
  stroke: #f2ffff;
}
.controls.v1 .slick-arrow.slick-disabled .svg-icon {
  stroke: #fff;
  opacity: 0.3;
}
.controls.v2 .slick-arrow {
  width: 60px;
  height: 60px;
  padding: 0;
  border-radius: 50%;
}
.controls.v2 .slick-arrow .svg-icon {
  width: 14px;
  height: 20px;
  stroke: #fff;
  stroke-width: 1.2;
}
.controls.v2 .slick-prev {
  margin-right: 10px;
}
.controls.v2 .slick-prev .svg-icon {
  margin-right: 2px;
}
.controls.v2 .slick-next {
  margin-left: 10px;
}
.controls.v2 .slick-next .svg-icon {
  margin-left: 2px;
}

.breadcrumb {
  flex-wrap: wrap;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  text-transform: lowercase;
  margin-bottom: 20px;
}
.breadcrumb .breadcrumb-item {
  color: #252525;
  flex-shrink: 0;
}
.breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url(/static/img/b-crumb.png) left center no-repeat;
  padding: 0;
  margin: 3px 10px 0 0;
}
.breadcrumb .breadcrumb-item.active {
  flex-shrink: 1;
  overflow: hidden;
  color: transparent;
  text-wrap: nowrap;
  text-overflow: ellipsis;
  -webkit-background-clip: text;
  background-clip: text;
  background-image: linear-gradient(90deg, #009ee0 0%, #66c8ff 100%);
}

header {
  background-color: #fff;
  padding: 20px 10px;
  margin: 0 -10px;
}
@media (min-width: 480px) {
  header {
    padding: 20px 0;
    margin: 0;
  }
}
header .top-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  flex-wrap: wrap;
  row-gap: 0.8rem;
}



@media (min-width: 992px) {
  header .top-header {
    margin-bottom: 20px;
  }
}
header .top-header .links-gr {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
@media (min-width: 410px) {
  header .top-header .links-gr {
    width: auto;
  }
}
header .top-header .links-gr li + li {
  margin-left: 12px;
}
header .btm-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
header .btm-header .btm-header-elem {
  display: none;
}
@media (min-width: 768px) {
  header .btm-header .btm-header-elem {
    display: flex;
    align-items: center;
  }
}
header .btm-header .btm-header-elem .cat-btn {
  padding: 0 16px 0 5px;
}
@media (min-width: 992px) {
  header .btm-header .btm-header-elem .cat-btn {
    padding: 0 16px 0 8px;
  }
}
header .btm-header .btm-header-elem .cat-btn .svg-icon {
  stroke-width: 1.6;
}
header .btm-header .btm-header-elem .cat-btn .icon-cross {
  display: none;
}
header .btm-header .btm-header-elem .cat-btn.active .icon-cat {
  display: none;
}
header .btm-header .btm-header-elem .cat-btn.active .icon-cross {
  display: block;
}
header .header-menu {
  display: none;
}
@media (min-width: 992px) {
  header .header-menu {
    display: block;
  }
}
header .header-menu ul {
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.2;
}
header .header-menu ul li + li {
  margin-left: 20px;
}
@media (min-width: 1560px) {
  header .header-menu ul li + li {
    margin-left: 32px;
  }
}
header .header-menu ul li a:hover {
  color: #2767e1;
}
header .logo-wr {
  flex-shrink: 0;
  display: block;
  width: 120px;
  height: 42px;
}
@media (min-width: 992px) {
  header .logo-wr {
    width: 140px;
    height: 50px;
  }
}
@media (min-width: 1360px) {
  header .logo-wr {
    width: 196px;
    height: 70px;
  }
}
header .cat-menu-wrap {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  left: 0;
  z-index: 10;
}
@media (min-width: 1360px) {
  header .cat-menu-wrap {
    top: 100%;
  }
}
@media (min-width: 1560px) {
  header .cat-menu-wrap {
    right: 80px;
  }
}
header .cat-menu-wrap .corner {
  position: absolute;
  top: -12px;
  left: 175px;
  z-index: 2;
  border: solid transparent;
  border-bottom-color: #fff;
  border-width: 0 18px 13px 18px;
}
@media (min-width: 992px) {
  header .cat-menu-wrap .corner {
    left: 214px;
  }
}
@media (min-width: 1360px) {
  header .cat-menu-wrap .corner {
    left: 268px;
  }
}
@media (min-width: 1560px) {
  header .cat-menu-wrap .corner {
    left: 280px;
  }
}
header .cat-menu-wrap .cat-menu-inner {
  display: flex;
  position: relative;
  z-index: 1;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 1px 68.2px 0 rgba(0, 0, 0, 0.11);
}
header .cat-menu-wrap .l-part {
  width: 280px;
  padding: 45px 0;
  border-right: 1px solid #ececec;
}
header .cat-menu {
  font-size: 16px;
  line-height: 1.5;
}
header .cat-menu > li {
  padding-right: 8px;
  margin-right: -1px;
}
header .cat-menu > li .li-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding-right: 16px;
  border-top: 1px solid #ececec;
}
header .cat-menu > li .li-inner a {
  flex-grow: 1;
  font-weight: 600;
  padding: 13px 20px;
}
header .cat-menu > li .li-inner button {
  flex-shrink: 0;
  padding: 8px;
}
header .cat-menu > li .li-inner button .svg-icon {
  flex-shrink: 0;
  stroke: #252525;
  transition: stroke 0.2s;
}
header .cat-menu > li .li-inner::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: -8px;
  bottom: 0;
  width: 2px;
}
header .cat-menu > li:last-child .li-inner {
  border-bottom: 1px solid #ececec;
}
header .cat-menu > li:hover .li-inner {
  color: #009ee0;
}
header .cat-menu > li:hover .li-inner .svg-icon {
  stroke: #009ee0;
  transform: rotate(180deg);
}
header .cat-menu > li:hover .li-inner::after {
  background-color: #fff;
}
header .cat-submenu-wrap {
  display: none;
  position: absolute;
  top: 46px;
  right: -12px;
  bottom: 45px;
  left: 280px;
  overflow-y: auto;
  padding: 0 42px 0 30px;
}
@media (min-width: 1360px) {
  header .cat-submenu-wrap {
    padding: 0 52px 0 40px;
  }
}
@media (min-width: 1560px) {
  header .cat-submenu-wrap {
    padding: 0 57px 0 45px;
  }
}
@media (min-width: 992px) {
  header .cat-submenu {
    -moz-column-count: 2;
         column-count: 2;
    -moz-column-gap: 30px;
         column-gap: 30px;
  }
}
@media (min-width: 1360px) {
  header .cat-submenu {
    -moz-column-count: 3;
         column-count: 3;
    -moz-column-gap: 40px;
         column-gap: 40px;
  }
}
@media (min-width: 1560px) {
  header .cat-submenu {
    -moz-column-gap: 50px;
         column-gap: 50px;
  }
}
header .cat-submenu li {
  border-top: 1px solid #ececec;
  border-bottom: 1px solid #ececec;
  margin-top: -1px;
}
header .cat-submenu li:first-child {
  margin-top: 0;
}
header .cat-submenu li a {
  display: block;
  font-weight: 300;
  padding: 13px 0;
}
header .cat-submenu li a:hover {
  color: #009ee0;
}
header .search-wr {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 290px;
  height: 48px;
  font-size: 16px;
  background-color: #f5f3f2;
  border: 1px solid #008fe0;
  border-radius: 30px;
  margin-left: 10px;
}
@media (min-width: 992px) {
  header .search-wr {
    width: 430px;
    height: 56px;
    font-size: 18px;
  }
}
@media (min-width: 1360px) {
  header .search-wr {
    width: 510px;
    margin-left: 16px;
  }
}
@media (min-width: 1560px) {
  header .search-wr {
    width: 686px;
  }
}
header .search-wr .search {
  flex-grow: 1;
  min-width: 1px;
  height: 42px;
  padding: 0 20px;
}
@media (min-width: 992px) {
  header .search-wr .search {
    height: 50px;
  }
}
header .search-wr .make-search-btn {
  flex-shrink: 0;
  width: 48px;
  padding: 0;
  margin: -1px -1px 0 0;
}
@media (min-width: 992px) {
  header .search-wr .make-search-btn {
    width: 56px;
  }
}
header .search-wr .make-search-btn .svg-icon-wr {
  background-color: transparent;
  margin: 0;
}
header .search-wr .make-search-btn .svg-icon {
  width: 16px;
  height: 16px;
  stroke: #fff;
}
@media (min-width: 992px) {
  header .search-wr .make-search-btn .svg-icon {
    width: 21px;
    height: 21px;
  }
}
header .user-menu ul {
  display: flex;
  align-items: center;
}
header .user-menu ul li + li {
  margin-left: 14px;
}
@media (min-width: 992px) {
  header .user-menu ul li + li {
    margin-left: 18px;
  }
}
@media (min-width: 1360px) {
  header .user-menu ul li + li {
    margin-left: 24px;
  }
}
/* header .user-menu ul li:nth-child(1), header .user-menu ul li:nth-child(3) {
  display: none;
} */
@media (min-width: 768px) {
  header .user-menu ul li:nth-child(1), header .user-menu ul li:nth-child(3) {
    display: list-item;
  }
}
@media (min-width: 992px) {
  header #burger ul li:nth-child(1), header .user-menu ul li:nth-child(3) {
    display: none;
  }
}
@media (min-width: 768px) {
  header .user-menu ul li:nth-child(5) {
    display: none;
  }
}
header .user-menu ul li a {
  display: block;
  font-size: 14px;
  text-align: center;
}
header .user-menu ul li a .svg-icon {
  width: 24px;
  height: 24px;
  stroke: #252525;
  stroke-width: 1.6;
  transition: stroke 0.2s;
}
@media (min-width: 992px) {
  header .user-menu ul li a .svg-icon {
    width: 28px;
    height: 29px;
    stroke-width: 2;
  }
}
@media (min-width: 1360px) {
  header .user-menu ul li a .svg-icon {
    margin: 0 auto 4px auto;
  }
}
header .user-menu ul li a span {
  display: none;
}
@media (min-width: 1360px) {
  header .user-menu ul li a span {
    display: inline-block;
  }
}
header .user-menu ul li a:hover {
  color: #2767e1;
}
header .user-menu ul li a:hover .svg-icon {
  stroke: #2767e1;
}
header .burger {
  width: 24px;
  height: 24px;
}
header .burger .icon-burger {
  stroke: #252525;
}
header .burger .icon-cross {
  display: none;
}
header .burger.active .icon-burger {
  display: none;
}
header .burger.active .icon-cross {
  display: block;
  stroke: #009ee0;
}

.header-movable-panel {
  top: 128px;
  overflow-y: auto;
  padding: 24px 20px 32px 20px;
}
.header-movable-panel .search-wr {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 48px;
  font-size: 16px;
  border: 1px solid #008fe0;
  border-radius: 24px;
  margin-bottom: 16px;
}
.header-movable-panel .search-wr .search {
  flex-grow: 1;
  min-width: 1px;
  height: 42px;
  padding: 0 20px;
}
.header-movable-panel .search-wr .make-search-btn {
  flex-shrink: 0;
  width: 48px;
  padding: 0;
  margin: -1px -1px 0 0;
}
.header-movable-panel .search-wr .make-search-btn .svg-icon-wr {
  background-color: transparent;
  margin: 0;
}
.header-movable-panel .search-wr .make-search-btn .svg-icon {
  width: 16px;
  height: 16px;
  stroke: #fff;
}
.header-movable-panel .tab-links {
  display: flex;
  justify-content: space-between;
}
.header-movable-panel .tab-links .tab-link {
  display: block;
  width: calc(50% - 8px);
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  line-height: 1.5;
  background-color: #fff;
  padding: 10px;
  border-radius: 10px;
}
.header-movable-panel .tab-links .tab-link .svg-icon {
  stroke: #009ee0;
  margin: 0 auto 8px auto;
}
.header-movable-panel .mp-cat-menu-wrap h3 {
  display: inline-block;
  font-size: 24px;
  margin-bottom: 16px;
}
.header-movable-panel .mp-cat-menu > li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
}
.header-movable-panel .mp-cat-menu > li + li {
  margin-top: 16px;
}
.header-movable-panel .mp-cat-menu > li > button {
  margin-left: 20px;
}
.header-movable-panel .mp-cat-menu > li > button .svg-icon {
  stroke: #252525;
}
.header-movable-panel .mp-cat-menu .cat-submenu-wrap {
  top: 128px;
  z-index: 102;
  width: 375px;
  overflow-y: auto;
  background-color: #f1f4f5;
  padding: 24px 20px 32px 20px;
  transition: right 0.2s;
}
.header-movable-panel .mp-cat-menu .cat-submenu-wrap .h3-wr {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.header-movable-panel .mp-cat-menu .cat-submenu-wrap .h3-wr button {
  width: 17px;
  height: 16px;
  padding: 0 4px;
  margin-right: 8px;
}
.header-movable-panel .mp-cat-menu .cat-submenu-wrap .h3-wr .svg-icon {
  stroke: #009ee0;
}
.header-movable-panel .mp-cat-menu .cat-submenu-wrap .h3-wr h3 {
  color: rgba(37, 37, 37, 0.5);
  margin-bottom: 0;
}
.header-movable-panel .mp-cat-menu .cat-submenu-wrap .cat-submenu {
  color: rgba(37, 37, 37, 0.8);
}
.header-movable-panel .mp-cat-menu .cat-submenu-wrap .cat-submenu li + li {
  margin-top: 20px;
}
.header-movable-panel .mp-header-menu ul {
  color: rgba(37, 37, 37, 0.5);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}
.header-movable-panel .mp-header-menu ul li + li {
  margin-top: 16px;
}

main {
  padding: 20px 0 0 0;
  /* min-height: calc(100vh - 550px);  */
   flex: 1 0 auto;
}
main.v2 {
  padding: 24px 0 0 0;
}
@media (min-width: 768px) {
  main.v2 {
    padding: 40px 0 0 0;
  }
}

.section {
  margin-bottom: 60px;
}
@media (min-width: 768px) {
  .section {
    margin-bottom: 80px;
  }
}

.mt-2 {
  margin-top: 0px !important;
}

/* @media (min-width: 768px) {
  .mt-2 {
    margin-top: 1rem !important
  }
} */

.section h1, .section .h1, .section h2, .section .h2 {
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .section h1, .section .h1, .section h2, .section .h2 {
    margin-bottom: 40px;
  }
}
.section.v2 {
  margin-top: 32px;
}
@media (min-width: 768px) {
  .section.v2 {
    margin-top: 40px;
  }
}

.sidebar-list > li {
  background-color: #fff;
  padding: 20px 25px;
  border-radius: 10px;
  cursor: pointer;
}
@media (min-width: 1360px) {
  .sidebar-list > li {
    padding: 26px 25px;
  }
}
.sidebar-list > li + li {
  margin-top: 10px;
}
.sidebar-list > li .li-inner {
  display: flex;
  justify-content: space-between;
  align-items: start;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
  transition: color 0.2s;
}
.sidebar-list > li .svg-icon {
  flex-shrink: 0;
  stroke: #252525;
  margin: 11px 0 0 20px;
  transition: stroke 0.2s;
}
.sidebar-list > li.active .li-inner {
  color: #66c8ff;
}
.sidebar-list > li.active .svg-icon {
  stroke: #66c8ff;
  transform: rotate(180deg);
}
.sidebar-list .sub-list {
  display: none;
  font-family: "Inter", sans-serif;
  color: rgba(37, 37, 37, 0.5);
  font-size: 18px;
  line-height: 1.4;
  padding-top: 20px;
}
.sidebar-list .sub-list li {
  padding: 13px 0;
  border-top: 1px solid #e0e0e0;
}
.sidebar-list .sub-list li:last-child {
  border-bottom: 1px solid #e0e0e0;
}
.sidebar-list .sub-list li a:hover {
  color: #009ee0;
}

.main-slider-wrap {
  overflow: hidden;
  border-radius: 20px;
}
@media (min-width: 768px) {
  .main-slider-wrap {
    display: flex;
  }
}
.main-slider-wrap .l-part {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 360px;
  background-image: linear-gradient(90deg, #0fc7f0 -10%, #083ca1 60%);
  padding: 25px 32px;
}
@media (min-width: 480px) {
  .main-slider-wrap .l-part {
    padding: 25px 40px;
  }
}
@media (min-width: 768px) {
  .main-slider-wrap .l-part {
    width: 60%;
    height: 380px;
    background-image: linear-gradient(90deg, #0fc7f0 0%, #083ca1 100%);
  }
}
@media (min-width: 1360px) {
  .main-slider-wrap .l-part {
    width: 55.56%;
    height: 380px;
    padding: 50px 60px;
  }
}
@media (min-width: 1560px) {
  .main-slider-wrap .l-part {
    padding: 50px 105px 50px 60px;
  }
}
.main-slider-wrap .r-part {
  height: 200px;
}
@media (min-width: 768px) {
  .main-slider-wrap .r-part {
    width: 40%;
    height: 380px;
  }
}
@media (min-width: 1360px) {
  .main-slider-wrap .r-part {
    width: 44.44%;
    height: 380px;
  }
}
.main-slider-wrap .controls .arrows {
  display: flex;
  margin-top: 12px;
}
.main-slider-wrap .controls .arrows button {
  margin-right: 10px;
}

.main-slider .slide {
  height: 100%;
  overflow: hidden;
  color: #fff;
}
@media (min-width: 768px) {
  .main-slider .slide {
    height: 100%;
  }
}
.main-slider .slide h2 {
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .main-slider .slide h2 {
    margin-bottom: 24px;
  }
}
.main-slider .slide p {
  color: rgba(255, 255, 255, 0.8);
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}

.main-slider-img {
  height: 100%;
}
.main-slider-img .slick-list,
.main-slider-img .slick-track,
.main-slider-img .slide {
  height: 100%;
}
.main-slider-img .slide {
  width: 100%;
}

@media (min-width: 768px) {
  .let-meet {
    display: flex;
  }
}
.let-meet .l-part {
  height: 250px;
  overflow: hidden;
  font-size: 0;
  border-radius: 20px;
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .let-meet .l-part {
    width: 50%;
    height: auto;
    min-height: 420px;
    margin-bottom: 0;
  }
}
@media (min-width: 768px) {
  .let-meet .r-part {
    width: 50%;
    padding-left: 40px;
  }
}
.let-meet h2 {
  line-height: 1.3;
  margin-bottom: 20px;
}
.let-meet .ordinary-text {
  margin-bottom: 20px;
}
.let-meet .ordinary-text ul li {
  font-size: 16px;
}

.big-section .section-part + .section-part {
  margin-top: 40px;
}
.big-section .section-segm {
  overflow: hidden;
  background-color: #fff;
  padding: 32px;
  border-radius: 20px;
}
@media (min-width: 768px) {
  .big-section .section-segm {
    padding: 40px;
  }
}
.big-section .section-segm .top-part {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
@media (min-width: 768px) {
  .big-section .section-segm .top-part {
    margin-bottom: 40px;
  }
}


.big-section .section-segm .top-part .img-wr {
  width: 100%;
  height: 140px;
  overflow: hidden;
  border-radius: 16px;
  order: 1;
  margin-bottom: 20px;
}
@media (min-width: 400px) {
  .big-section .section-segm .top-part .img-wr {
    height: 200px;
  }
}
@media (min-width: 768px) {
  .big-section .section-segm .top-part .img-wr {
    width: calc(50% + 10px);
    margin-bottom: 0;
  }
}
.big-section .section-segm .top-part .text-wr {
  width: 100%;
  color: rgba(37, 37, 37, 0.5);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  order: 1;
}
@media (min-width: 1360px) {
  .big-section .section-segm .top-part .text-wr {
    width: calc(50% - 10px);
    padding-left: 20px;
  }
}
.big-section .section-segm .top-part .text-wr h3 {
  color: #252525;
  /* margin: 16px 0 12px 0; */
}
.big-section .section-segm .btm-part .d-wr {
  height: 100%;
  background-color: #e8f8ff;
  padding: 20px 16px;
  border-radius: 16px;
}

@media (min-width: 768px) {
  .big-section .section-segm .btm-part .d-wr {
    min-height: 168px;
  }
}
.big-section .section-segm .btm-part dt {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 10px;
}
.big-section .section-segm .btm-part dd {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.4;
  text-transform: lowercase;
}
.big-section .section-segm .btm-part dd ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
/* .big-section .section-segm .btm-part dd ul li {
  padding: 4px 0;
  margin-right: 10px;
} */
@media (min-width: 768px) {
  .big-section .section-segm.v2 .top-part .text-wr {
    order: 0;
    padding-right: 20px;
    padding-left: 0;
  }
}
.big-section .section-ins {
  overflow: hidden;
  color: #fff;
  background-image: linear-gradient(90deg, #2767e1 0%, #568efb 50%, #2767e1 100%);
  border-radius: 20px;
}
@media (min-width: 1360px) {
  .big-section .section-ins {
    display: flex;
  }
}
.big-section .section-ins .l-part {
  padding: 32px 32px 24px 32px;
}
@media (min-width: 768px) {
  .big-section .section-ins .l-part {
    padding: 24px 40px;
  }
}
@media (min-width: 1360px) {
  .big-section .section-ins .l-part {
    width: 60%;
    padding: 40px;
  }
}
.big-section .section-ins .r-part {
  overflow: hidden;
  height: 200px;
  font-size: 0;
  border-radius: 0 0 20px 20px;
}
@media (min-width: 400px) {
  .big-section .section-ins .r-part {
    height: 240px;
  }
}
@media (min-width: 768px) {
  .big-section .section-ins .r-part {
    height: 300px;
  }
}
@media (min-width: 1360px) {
  .big-section .section-ins .r-part {
    width: 40%;
    height: auto;
    border-radius: 20px;
  }
}
.big-section .section-ins h3 {
  margin-bottom: 10px;
}
.big-section .section-ins .ordinary-text {
  color: rgba(255, 255, 255, 0.8);
}
.big-section .section-ins .btns-gr {
  margin-top: 20px;
}
@media (min-width: 768px) {
  .big-section .section-ins .btns-gr {
    display: flex;
  }
}
.big-section .section-ins .btns-gr button {
  margin-right: 12px;
}
.big-section .section-ins .btns-gr button:first-child {
  margin-bottom: 12px;
}
@media (min-width: 768px) {
  .big-section .section-ins .btns-gr button:first-child {
    margin-bottom: 0;
  }
}

.form-section {
  color: #fff;
  background-image: linear-gradient(90deg, #2767e1 0%, #568efb 50%, #2767e1 100%);
  padding: 32px;
  border-radius: 20px;
  position: relative;
  overflow: visible;
}
@media (min-width: 480px) {
  .form-section {
    padding: 40px 35px;
  }
}
@media (min-width: 480px) {
  .form-section h2 {
    text-align: center;
  }
}
.form-section .checkbox-wr {
  margin-top: 20px;
}
.form-section .btns-gr {
  margin-top: 24px;
}
@media (min-width: 480px) {
  .form-section .btns-gr {
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
}
.form-section .btns-gr .recaptcha-place {
  margin: 0 0 24px 0;
}
@media (min-width: 480px) {
  .form-section .btns-gr .recaptcha-place {
    margin: 0 12px 0 0;
  }
}

.brands {
  overflow: hidden;
  margin-right: -20px;
  margin-left: -20px;
}
@media (min-width: 480px) {
  .brands {
    margin-right: 0;
    margin-left: 0;
  }
}
.brands h2 {
  padding: 0 20px;
}
@media (min-width: 480px) {
  .brands h2 {
    padding: 0;
  }
}
.brands.v2 {
  margin-right: -10px;
  margin-left: -10px;
}
@media (min-width: 480px) {
  .brands.v2 {
    margin-right: 0;
    margin-left: 0;
  }
}
@media (min-width: 480px) {
  .brands.v2 h2 {
    text-align: center;
  }
}

.brands-slider,
.brands-slider2 {
  margin-bottom: 24px;
}
.brands-slider .slick-list,
.brands-slider2 .slick-list {
  margin-right: -10px;
  margin-left: -10px;
}
.brands-slider .slide,
.brands-slider2 .slide {
  padding: 0 10px;
}
.brands-slider .slide .img-wr,
.brands-slider2 .slide .img-wr {
  height: 126px;
  background-color: #fff;
  padding: 12px;
  border-radius: 10px;
}
@media (min-width: 768px) {
  .brands-slider .slide .img-wr,
  .brands-slider2 .slide .img-wr {
    height: 160px;
  }
}
.brands-slider .slide .slide-title,
.brands-slider2 .slide .slide-title {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  margin-top: 10px;
}

.brands-slider2 .slick-list {
  overflow: visible;
}

.reviews-slider {
  margin-bottom: 24px;
}
.reviews-slider .slide h3 {
  margin-bottom: 20px;
}
@media (min-width: 1360px) {
  .reviews-slider .slide h3 {
    max-width: 50%;
  }
}
.reviews-slider .slide .part {
  font-weight: 400;
}
@media (min-width: 1360px) {
  .reviews-slider .slide .part {
    width: 50%;
  }
}
.reviews-slider .slide .l-part {
  font-size: 16px;
}
@media (min-width: 1360px) {
  .reviews-slider .slide .l-part {
    padding-right: 20px;
  }
}
@media (min-width: 1360px) {
  .reviews-slider .slide .r-part {
    padding-left: 20px;
  }
}
.reviews-slider .slide .video-wr {
  width: 100%;
  height: 182px;
  background-color: #ececec;
  border-radius: 10px;
  margin-top: 20px;
}
@media (min-width: 480px) {
  .reviews-slider .slide .video-wr {
    height: 240px;
  }
}
@media (min-width: 768px) {
  .reviews-slider .slide .video-wr {
    max-width: 428px;
  }
}
@media (min-width: 1360px) {
  .reviews-slider .slide .video-wr {
    margin-top: 0;
  }
}
.reviews-slider .slide .video-wr .play-btn {
  width: 50px;
  height: 54px;
  background: transparent; 
}
.reviews-slider .slide .video-wr .play-btn .svg-icon {
  width: 50px;
  height: 54px;
  fill: #009ee0;
}

.prod-slider {
  overflow: hidden;
  border-radius: 20px;
}
.prod-slider .slide {
  height: 400px;
}
@media (min-width: 480px) {
  .prod-slider .slide {
    height: 500px;
  }
}
@media (min-width: 1360px) {
  .prod-slider .slide {
    height: 450px;
  }
}
@media (min-width: 1560px) {
  .prod-slider .slide {
    height: 500px;
  }
}

.thumbs-slider .slide {
  padding: 0 4px;
}
.thumbs-slider .slide .img-wr {
  overflow: hidden;
  height: 58px;
  background-color: #fff;
  border: 2px solid rgba(37, 37, 37, 0.2);
  border-radius: 10px;
  cursor: pointer;
}
@media (min-width: 480px) {
  .thumbs-slider .slide .img-wr {
    height: 80px;
    border-radius: 20px;
  }
}
.thumbs-slider .slide.slick-current .img-wr {
  border-color: #2767e1;
}
.thumbs-slider .slick-arrow {
  position: absolute;
  z-index: 10;
  top: 50%;
  transform: translateY(-50%);
}
.thumbs-slider .slick-arrow .svg-icon {
  stroke: #2767e1;
}
.thumbs-slider .slick-prev {
  left: -38px;
}
.thumbs-slider .slick-next {
  right: -38px;
}

.top-block {
  overflow: hidden;
  background-image: linear-gradient(90deg, #0fc7f0 -10%, #083ca1 50%);
  padding-right: 32px;
  padding-left: 32px;
  border-radius: 20px;
}
@media (min-width: 768px) {
  .top-block {
    background-image: linear-gradient(90deg, #0fc7f0 0%, #083ca1 60%);
    padding-right: 40px;
    padding-left: 40px;
  }
}
@media (min-width: 992px) {
  .top-block {
    border-radius: 32px;
  }
}
@media (min-width: 1560px) {
  .top-block {
    padding-right: 60px;
    padding-left: 60px;
  }
}
@media (min-width: 1640px) {
  .top-block {
    margin-right: -60px;
    margin-left: -60px;
  }
}
.top-block .l-part {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 32px 0 24px 0;
}
@media (min-width: 768px) {
  .top-block .l-part {
    padding: 45px 0 24px 0;
  }
}
@media (min-width: 992px) {
  .top-block .l-part {
    height: 465px;
    padding: 45px 0;
  }
}
@media (min-width: 1360px) {
  .top-block .l-part {
    height: 500px;
  }
}
@media (min-width: 1640px) {
  .top-block .l-part {
    padding: 60px 0;
  }
}
.top-block .text-cont {
  color: #fff;
  margin-bottom: 24px;
}
.top-block h1, .top-block h3 {
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .top-block h1, .top-block h3 {
    margin-bottom: 24px;
  }
}
.top-block p {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
}
.top-block .img-rows {
  padding: 0 0 32px 0;
}
@media (min-width: 992px) {
  .top-block .img-rows {
    display: flex;
    justify-content: space-between;
    height: 465px;
    padding: 0 0 0 40px;
  }
}
@media (min-width: 1360px) {
  .top-block .img-rows {
    height: 500px;
  }
}
@media (min-width: 1560px) {
  .top-block .img-rows {
    padding-left: 70px;
  }
}
@media (min-width: 1640px) {
  .top-block .img-rows {
    padding-left: 130px;
  }
}
.top-block .img-rows .img-row {
  display: flex;
}
@media (min-width: 992px) {
  .top-block .img-rows .img-row {
    display: block;
  }
}
.top-block .img-rows .r1 {
  transform: translateX(-70px);
}
@media (min-width: 400px) {
  .top-block .img-rows .r1 {
    transform: translateX(-40px);
  }
}
@media (min-width: 768px) {
  .top-block .img-rows .r1 {
    transform: translateX(-55px);
  }
}
@media (min-width: 992px) {
  .top-block .img-rows .r1 {
    transform: translateY(-315px);
  }
}
@media (min-width: 1360px) {
  .top-block .img-rows .r1 {
    transform: translateY(-450px);
  }
}
.top-block .img-rows .r2 {
  order: 1;
  transform: translateX(-140px);
}
@media (min-width: 400px) {
  .top-block .img-rows .r2 {
    transform: translateX(-90px);
  }
}
@media (min-width: 768px) {
  .top-block .img-rows .r2 {
    transform: translateX(-165px);
  }
}
@media (min-width: 992px) {
  .top-block .img-rows .r2 {
    transform: translateY(-200px);
  }
}
@media (min-width: 1360px) {
  .top-block .img-rows .r2 {
    transform: translateY(-315px);
  }
}
.top-block .img-rows .img-cell {
  padding: 10px 5px;
}
@media (min-width: 768px) {
  .top-block .img-rows .img-cell {
    padding: 10px;
  }
}
@media (min-width: 992px) {
  .top-block .img-rows .img-cell {
    padding: 10px 0;
  }
}
.top-block .img-rows .img-wr {
  width: 160px;
  height: 160px;
  overflow: hidden;
  border-radius: 10px;
}
@media (min-width: 768px) {
  .top-block .img-rows .img-wr {
    width: 300px;
  }
}
@media (min-width: 992px) {
  .top-block .img-rows .img-wr {
    width: 180px;
    height: 250px;
    border-radius: 20px;
  }
}
@media (min-width: 1360px) {
  .top-block .img-rows .img-wr {
    width: 265px;
    height: 340px;
  }
}
@media (min-width: 1560px) {
  .top-block .img-rows .img-wr {
    width: 290px;
  }
}

.btfl-blocks .btfl-block {
  overflow: hidden;
  border-radius: 20px;
}
@media (min-width: 768px) {
  .btfl-blocks .btfl-block {
    height: 210px;
  }
}
@media (min-width: 992px) {
  .btfl-blocks .btfl-block {
    height: 220px;
  }
}
@media (min-width: 1360px) {
  .btfl-blocks .btfl-block {
    height: 255px;
  }
}
.btfl-blocks .btfl-block:nth-child(odd) {
  background-image: linear-gradient(90deg, #c8f3f4 0%, #afc6ff 100%);
}
.btfl-blocks .btfl-block:nth-child(odd) .col-c .char-img {
  right: 0;
}
.btfl-blocks .btfl-block:nth-child(even) {
  background-image: linear-gradient(90deg, #afc6ff 0%, #c8f3f4 100%);
}
@media (min-width: 768px) {
  .btfl-blocks .btfl-block:nth-child(even) .col-c:first-child {
    order: 1;
  }
}
.btfl-blocks .btfl-block:nth-child(even) .col-c .char-img {
  left: 0;
}
.btfl-blocks .btfl-block + .btfl-block {
  margin-top: 16px;
}
@media (min-width: 768px) {
  .btfl-blocks .btfl-block + .btfl-block {
    margin-top: 24px;
  }
}
.btfl-blocks .btfl-block .col-c {
  position: relative;
}
.btfl-blocks .btfl-block .col-c:last-child {
  height: 184px;
}
@media (min-width: 768px) {
  .btfl-blocks .btfl-block .col-c:last-child {
    height: 100%;
  }
}
.btfl-blocks .btfl-block .col-c .char-img {
  position: absolute;
  bottom: 0;
  z-index: 1;
  max-width: 100%;
  max-height: 100%;
}
.btfl-blocks .btfl-block .col-inner {
  padding: 32px;
}
@media (min-width: 768px) {
  .btfl-blocks .btfl-block .col-inner {
    padding: 20px 40px;
  }
}
.btfl-blocks .btfl-block h3 {
  margin-bottom: 16px;
}
@media (min-width: 992px) {
  .btfl-blocks .btfl-block h3 {
    margin-bottom: 20px;
  }
}
.btfl-blocks .btfl-block p {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .btfl-blocks .btfl-block p {
    line-height: 1.3;
  }
}
@media (min-width: 992px) {
  .btfl-blocks .btfl-block p {
    font-size: 18px;
  }
}
@media (min-width: 1360px) {
  .btfl-blocks .btfl-block p {
    font-size: 24px;
  }
}

.comp-digs {
  overflow: hidden;
  margin-top: -16px;
  margin-bottom: -16px;
}
@media (min-width: 768px) {
  .comp-digs {
    margin-top: -24px;
    margin-bottom: -24px;
  }
}
@media (min-width: 768px) {
  .comp-digs .row-top {
    margin-right: -50px;
    margin-left: -50px;
  }
}
@media (min-width: 1560px) {
  .comp-digs .row-top {
    margin-right: -70px;
    margin-left: -70px;
  }
}
.comp-digs .row-top .col-c {
  border-bottom: 1px solid rgba(37, 37, 37, 0.3);
}
@media (min-width: 1360px) {
  .comp-digs .row-top .col-c {
    border-bottom: none;
  }
}
.comp-digs .row-top .col-c:last-child {
  border-bottom: none;
}
.comp-digs .row-top .col-c .col-inner {
  padding: 16px 0;
}
@media (min-width: 768px) {
  .comp-digs .row-top .col-c .col-inner {
    padding: 22px 50px;
  }
}
@media (min-width: 1560px) {
  .comp-digs .row-top .col-c .col-inner {
    padding: 22px 70px;
  }
}
@media (min-width: 768px) {
  .comp-digs .row-btm {
    margin-right: -50px;
    margin-left: -50px;
  }
}
@media (min-width: 1360px) {
  .comp-digs .row-btm {
    margin-right: -32px;
    margin-left: -32px;
  }
}
.comp-digs .row-btm .col-c {
  border-top: 1px solid rgba(37, 37, 37, 0.3);
}
.comp-digs .row-btm .col-c .col-inner {
  padding: 16px 0;
}
@media (min-width: 768px) {
  .comp-digs .row-btm .col-c .col-inner {
    padding: 22px 50px;
  }
}
@media (min-width: 1360px) {
  .comp-digs .row-btm .col-c .col-inner {
    padding: 22px 32px;
  }
}
@media (min-width: 768px) {
  .comp-digs .col-c {
    padding: 24px 0;
  }
}
.comp-digs .col-c .col-inner {
  height: 100%;
}
@media (min-width: 768px) {
  .comp-digs .col-c .col-inner {
    border-right: 1px solid rgba(37, 37, 37, 0.3);
  }
}
.comp-digs dt {
  display: inline-block;
  color: transparent;
  font-size: 44px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  -webkit-background-clip: text;
  background-clip: text;
  background-image: linear-gradient(90deg, #2767e1 0%, #568efb 50%, #2767e1 100%);
  margin-bottom: 12px;
}
@media (min-width: 768px) {
  .comp-digs dt {
    font-size: 50px;
    margin-bottom: 16px;
  }
}
@media (min-width: 1360px) {
  .comp-digs dt {
    font-size: 60px;
  }
}
.comp-digs dd {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .comp-digs dd {
    font-size: 22px;
  }
}
@media (min-width: 1360px) {
  .comp-digs dd {
    font-size: 24px;
  }
}

@media (min-width: 1560px) {
  .extra-block {
    padding-right: 60px !important;
    padding-left: 60px !important;
  }
}
@media (min-width: 1640px) {
  .extra-block {
    margin-right: -60px;
    margin-left: -60px;
  }
}

.mission-block {
  overflow: hidden;
  position: relative;
  background-color: #fff;
  padding-right: 32px;
  padding-left: 32px;
  border-radius: 20px;
}
@media (min-width: 768px) {
  .mission-block {
    padding-right: 40px;
    padding-left: 40px;
  }
}
.mission-block .col-inner {
  padding: 32px 0;
}
@media (min-width: 768px) {
  .mission-block .col-inner {
    padding: 40px 0;
  }
}
@media (min-width: 1560px) {
  .mission-block .col-inner {
    padding: 60px 0;
  }
}
.mission-block h2 {
  margin-bottom: 24px;
}
.mission-block .ordinary-text {
  font-size: 18px;
}
@media (min-width: 768px) {
  .mission-block .ordinary-text {
    font-size: 20px;
  }
}
@media (min-width: 1360px) {
  .mission-block .ordinary-text {
    font-size: 24px;
  }
}
.mission-block .ordinary-text > * + * {
  margin-top: 16px;
}
.mission-block .slogan {
  display: inline-block;
  color: transparent;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  -webkit-background-clip: text;
  background-clip: text;
  background-image: linear-gradient(90deg, #2767e1 0%, #568efb 50%, #2767e1 100%);
  margin-top: 16px;
}
@media (min-width: 768px) {
  .mission-block .slogan {
    font-size: 26px;
    margin-top: 24px;
  }
}
@media (min-width: 1360px) {
  .mission-block .slogan {
    font-size: 30px;
  }
}
@media (min-width: 1640px) {
  .mission-block .slogan {
    font-size: 32px;
  }
}
.mission-block .special-block {
  overflow: hidden;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  background-image: linear-gradient(90deg, #2767e1 0%, #568efb 50%, #2767e1 100%);
  padding: 32px;
  border-radius: 20px;
  margin: 0 -32px;
  box-shadow: -20px 4px 40px 0 rgba(0, 14, 62, 0.2);
}
@media (min-width: 768px) {
  .mission-block .special-block {
    font-size: 20px;
    font-weight: 600;
    padding: 40px 32px;
    margin: 0 -40px;
  }
}
@media (min-width: 992px) {
  .mission-block .special-block {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    width: 390px;
    margin: 0;
  }
}
@media (min-width: 1360px) {
  .mission-block .special-block {
    width: 500px;
    height: 480px;
    padding: 60px 40px;
  }
}
.mission-block .special-block p {
  margin-bottom: 16px;
}
.mission-block .special-block ul li {
  display: flex;
  align-items: center;
}
.mission-block .special-block ul li + li {
  margin-top: 16px;
}
.mission-block .special-block ul li img {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  margin-right: 8px;
}
@media (min-width: 768px) {
  .mission-block .special-block ul li img {
    width: 78px;
    height: 78px;
  }
}
.mission-block .special-block ul li span {
  display: block;
  background-color: rgba(255, 255, 255, 0.3);
  padding: 16px;
  border-radius: 16px;
}
@media (min-width: 768px) {
  .mission-block .special-block ul li span {
    padding: 24px;
  }
}

@media (min-width: 768px) {
  .principles-block h2 {
    text-align: center;
  }
}

.articles-slider-wrap,
.reviews-slider-wrap {
  overflow: hidden;
}
@media (min-width: 480px) {
  .articles-slider-wrap h2,
  .reviews-slider-wrap h2 {
    text-align: center;
  }
}

.articles-slider-wrap2 {
  overflow: hidden;
  padding-top: 100px;
  margin-top: -100px;
}
.articles-slider-wrap2 .slider-wrap {
  position: relative;
  padding-right: 70px;
}
@media (min-width: 400px) {
  .articles-slider-wrap2 .slider-wrap {
    padding-right: 120px;
  }
}
@media (min-width: 768px) {
  .articles-slider-wrap2 .slider-wrap {
    padding-right: 0;
  }
}
.articles-slider-wrap2 .controls {
  margin-top: 20px;
}
@media (min-width: 768px) {
  .articles-slider-wrap2 .controls {
    position: absolute;
    top: -100px;
    right: 0;
    margin-top: 0;
  }
}

.articles-slider,
.articles-slider2 {
  overflow: hidden;
  margin-bottom: 24px;
}
@media (min-width: 480px) {
  .articles-slider,
  .articles-slider2 {
    margin-bottom: 40px;
  }
}
@media (min-width: 768px) {
  .articles-slider,
  .articles-slider2 {
    margin-bottom: 60px;
  }
}
.articles-slider .slick-list,
.articles-slider2 .slick-list {
  margin-right: -10px;
  margin-left: -10px;
}
.articles-slider .slide,
.articles-slider2 .slide {
  padding: 0 10px;
  display: flex;
  flex-direction: column;
  height: auto; 
}
.articles-slider .slide .img-wr,
.articles-slider2 .slide .img-wr {
  overflow: hidden;
  height: 344px;
  border-radius: 10px;
  margin-bottom: 24px;
}
.articles-slider .slide .date,
.articles-slider .slide .p-descr,
.articles-slider2 .slide .date,
.articles-slider2 .slide .p-descr {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 5px;
}
.articles-slider .slide .title,
.articles-slider2 .slide .title {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 24px;
  flex-grow: 1;
  min-height: 0;
}

.articles-slider2 {
  overflow: visible;
  margin-bottom: 0;
}
.articles-slider2 .slick-list {
  overflow: visible;
}
.articles-slider2 .slide .img-wr {
  height: 300px;
}
@media (min-width: 480px) {
  .articles-slider2 .slide .img-wr {
    height: 360px;
  }
}
@media (min-width: 768px) {
  .articles-slider2 .slide .img-wr {
    height: 444px;
  }
}
.articles-slider2 .slide .date,
.articles-slider2 .slide .p-descr {
  font-size: 16px;
  margin-bottom: 12px;
}
@media (min-width: 768px) {
  .articles-slider2 .slide .date,
  .articles-slider2 .slide .p-descr {
    font-size: 18px;
  }
}
.articles-slider2 .slide .p-descr {
  display: block;
}
.articles-slider2 .slide .p-descr:hover {
  color: #009ee0;
}
.articles-slider2 .slide .accent-p {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.3;
}

.reviews-slider2 {
  margin-bottom: 24px;
}
.reviews-slider2 .slick-list {
  margin-right: -10px;
  margin-left: -10px;
}
@media (min-width: 768px) {
  .reviews-slider2 .slick-list {
    overflow: visible;
  }
}
.reviews-slider2 .slide {
  padding: 0 10px;
}
.reviews-slider2 .slide .slide-inner {
  background-color: #fff;
  padding: 20px;
  border: 1px solid #009ee0;
  border-radius: 12px;
}
@media (min-width: 768px) {
  .reviews-slider2 .slide .slide-inner {
    display: flex;
    width: 480px;
    height: 282px;
  }
}
@media (min-width: 992px) {
  .reviews-slider2 .slide .slide-inner {
    height: 354px;
    padding: 28px;
  }
}

.reviews-slider2 .slide .slide-inner.lg {
    width: auto;
    display: block;
  }

@media (min-width: 768px) {
  .reviews-slider2 .slide .slide-inner.lg {
    width: 720px;
    height: 400px;
  }
}
@media (min-width: 992px) {
  .reviews-slider2 .slide .slide-inner.lg {
    width: 730px;
  }
}
@media (min-width: 768px) {
  .reviews-slider2 .slide .slide-inner.lg .r-part {
    padding-left: 20px;
  }
}
@media (min-width: 992px) {
  .reviews-slider2 .slide .slide-inner.lg .r-part {
    padding-left: 24px;
  }
}
.reviews-slider2 .slide .slide-inner .l-part {
  flex-shrink: 0;
  width: 240px;
  height: 180px;
  background-color: #f1f4f5;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .reviews-slider2 .slide .slide-inner .l-part {
    height: auto;
    width: 415px;
  }
}
@media (min-width: 992px) {
  .reviews-slider2 .slide .slide-inner .l-part {
    width: 415px;
  }
}
.reviews-slider2 .slide .slide-inner .l-part .video-wr {
  width: 100%;
  height: 100%;
  border-radius: 12px;
}
.reviews-slider2 .slide .slide-inner .l-part .video-wr .play-btn {
  width: 50px;
  height: 50px;
  background-color: #fff;
  border-radius: 50%;
}
.reviews-slider2 .slide .slide-inner .l-part .video-wr .play-btn .svg-icon {
  display: inline-block;
  width: 14px;
  height: 15px;
  fill: #252525;
  margin-left: 2px;
}
.reviews-slider2 .slide .slide-inner .r-part > * {
  margin-top: 12px;
}
.reviews-slider2 .slide .slide-inner .title {
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
}
.reviews-slider2 .slide .slide-inner .title .img-wrap {
  flex-shrink: 0;
  overflow: hidden;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 16px;
}
@media (min-width: 992px) {
  .reviews-slider2 .slide .slide-inner .title .img-wrap {
    width: 80px;
    height: 80px;
  }
}
.reviews-slider2 .slide .slide-inner .slide-text,
.reviews-slider2 .slide .slide-inner .link-wr {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}
.reviews-slider2 .slide .slide-inner .slide-text {
  color: rgba(37, 37, 37, 0.5);
}

.codex-block-wrap h2 {
  margin-bottom: 16px;
}
.codex-block-wrap .sub-p {
  max-width: 580px;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .codex-block-wrap .sub-p {
    font-size: 20px;
    margin-bottom: 40px;
  }
}
@media (min-width: 1360px) {
  .codex-block-wrap .sub-p {
    font-size: 24px;
  }
}
.codex-block-wrap .codex-block {
  background-color: #fff;
  padding: 32px;
  border-radius: 20px;
}
@media (min-width: 768px) {
  .codex-block-wrap .codex-block {
    padding: 40px;
  }
}
@media (min-width: 1560px) {
  .codex-block-wrap .codex-block {
    padding: 60px;
  }
}
.codex-block-wrap .codex-block h3 {
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(0, 158, 224, 0.2);
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .codex-block-wrap .codex-block h3 {
    margin-bottom: 40px;
  }
}
.codex-block-wrap .codex-block .row-c {
  margin-right: -10px;
  margin-left: -10px;
}
@media (min-width: 1360px) {
  .codex-block-wrap .codex-block .row-c {
    margin-right: -20px;
    margin-left: -20px;
  }
}
@media (min-width: 1560px) {
  .codex-block-wrap .codex-block .row-c {
    margin-right: -40px;
    margin-left: -40px;
  }
}
.codex-block-wrap .codex-block .col-c {
  padding: 0 10px;
}
@media (min-width: 1360px) {
  .codex-block-wrap .codex-block .col-c {
    padding: 0 20px;
  }
}
@media (min-width: 1560px) {
  .codex-block-wrap .codex-block .col-c {
    padding: 0 40px;
  }
}
.codex-block-wrap .codex-block dt {
  display: inline-block;
  color: transparent;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
  -webkit-background-clip: text;
  background-clip: text;
  background-image: linear-gradient(90deg, #2767e1 0%, #568efb 50%, #2767e1 100%);
  margin-bottom: 12px;
}
@media (min-width: 768px) {
  .codex-block-wrap .codex-block dt {
    font-size: 22px;
  }
}
@media (min-width: 1360px) {
  .codex-block-wrap .codex-block dt {
    font-size: 24px;
  }
}
.codex-block-wrap .codex-block dd {
  color: rgba(37, 37, 37, 0.5);
}

.propositions-block,
.offer-block,
.connection-block {
  overflow: hidden;
  padding: 32px;
  border-radius: 40px;
  background-image: linear-gradient(90deg, #2767e1 0%, #568efb 50%, #2767e1 100%);
}
@media (min-width: 1360px) {
  .propositions-block,
  .offer-block,
  .connection-block {
    display: flex;
    padding: 40px 30px;
  }
}
.propositions-block .h-wrap,
.offer-block .h-wrap,
.connection-block .h-wrap {
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .propositions-block .h-wrap,
  .offer-block .h-wrap,
  .connection-block .h-wrap {
    display: flex;
    justify-content: space-between;
  }
}
.propositions-block .h-wrap .h-wrap-elem,
.offer-block .h-wrap .h-wrap-elem,
.connection-block .h-wrap .h-wrap-elem {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  text-align: center;
  line-height: 1.5;
}
.propositions-block .h-wrap .rainbow-stick,
.offer-block .h-wrap .rainbow-stick,
.connection-block .h-wrap .rainbow-stick {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  color: #2767e1;
  font-family: "Geologica", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 4px;
  background-image: linear-gradient(90deg, #afc6ff 0%, #c8f3f4 100%);
  padding: 10px 16px;
  border-radius: 24px;
  margin-top: 24px;
}
@media (min-width: 768px) {
  .propositions-block .h-wrap .rainbow-stick,
  .offer-block .h-wrap .rainbow-stick,
  .connection-block .h-wrap .rainbow-stick {
    font-size: 18px;
    margin-top: 0;
  }
}
.propositions-block .h-wrap .rainbow-stick .svg-icon,
.offer-block .h-wrap .rainbow-stick .svg-icon,
.connection-block .h-wrap .rainbow-stick .svg-icon {
  width: 18px;
  height: 18px;
  stroke: #2767e1;
  margin-right: 6px;
}
@media (min-width: 768px) {
  .propositions-block .h-wrap .rainbow-stick .svg-icon,
  .offer-block .h-wrap .rainbow-stick .svg-icon,
  .connection-block .h-wrap .rainbow-stick .svg-icon {
    width: 24px;
    height: 24px;
  }
}
.propositions-block .part,
.offer-block .part,
.connection-block .part {
  flex: 1 0 auto;
}
@media (min-width: 1360px) {
  .propositions-block .part,
  .offer-block .part,
  .connection-block .part {
    width: 50%;
  }
}
.propositions-block .l-part,
.offer-block .l-part,
.connection-block .l-part {
  color: #fff;
}
@media (min-width: 1360px) {
  .propositions-block .l-part,
  .offer-block .l-part,
  .connection-block .l-part {
    padding-right: 20px;
  }
}
.propositions-block .l-part h2,
.offer-block .l-part h2,
.connection-block .l-part h2 {
  margin-bottom: 12px;
}
.propositions-block .l-part .tel,
.offer-block .l-part .tel,
.connection-block .l-part .tel {
  display: inline-block;
  font-size: 18px;
  line-height: 1.2;
  padding: 6px 12px;
  border: 1px solid rgba(232, 248, 255, 0.5);
  border-radius: 18px;
  margin: 12px 0 24px 0;
}
@media (min-width: 1360px) {
  .propositions-block .l-part .inp-common,
  .offer-block .l-part .inp-common,
  .connection-block .l-part .inp-common {
    max-height: 440px;
    overflow-y: auto;
    padding-right: 24px;
  }
}
.propositions-block .l-part .inp-gr-hor,
.offer-block .l-part .inp-gr-hor,
.connection-block .l-part .inp-gr-hor {
  margin-top: 24px;
}
@media (min-width: 768px) {
  .propositions-block .l-part .inp-gr-hor,
  .offer-block .l-part .inp-gr-hor,
  .connection-block .l-part .inp-gr-hor {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
.propositions-block .l-part .inp-gr-hor .jq-file__name,
.offer-block .l-part .inp-gr-hor .jq-file__name,
.connection-block .l-part .inp-gr-hor .jq-file__name {
  max-width: 300px;
}
.propositions-block .l-part .inp-gr-hor button,
.offer-block .l-part .inp-gr-hor button,
.connection-block .l-part .inp-gr-hor button {
  margin-top: 24px;
}
@media (min-width: 768px) {
  .propositions-block .l-part .inp-gr-hor button,
  .offer-block .l-part .inp-gr-hor button,
  .connection-block .l-part .inp-gr-hor button {
    margin-top: 0;
  }
}
.propositions-block .r-part,
.offer-block .r-part,
.connection-block .r-part {
  font-size: 0;
  margin-top: 40px;
}
@media (min-width: 1360px) {
  .propositions-block .r-part,
  .offer-block .r-part,
  .connection-block .r-part {
    padding-left: 20px;
    margin-top: 0;
  }
}
.propositions-block .r-part .img-wr,
.offer-block .r-part .img-wr,
.connection-block .r-part .img-wr {
  overflow: hidden;
  height: 275px;
  border-radius: 32px;
}
@media (min-width: 768px) {
  .propositions-block .r-part .img-wr,
  .offer-block .r-part .img-wr,
  .connection-block .r-part .img-wr {
    height: 300px;
  }
}
@media (min-width: 1360px) {
  .propositions-block .r-part .img-wr,
  .offer-block .r-part .img-wr,
  .connection-block .r-part .img-wr {
    height: 100%;
  }
}
.propositions-block .r-part .descr-area,
.offer-block .r-part .descr-area,
.connection-block .r-part .descr-area {
  height: 100%;
  background-color: #fff;
  padding: 32px 24px;
  border-radius: 32px;
}
.propositions-block .r-part .descr-area h3,
.offer-block .r-part .descr-area h3,
.connection-block .r-part .descr-area h3 {
  margin-bottom: 20px;
}
.propositions-block .r-part .descr-area .descr-text,
.offer-block .r-part .descr-area .descr-text,
.connection-block .r-part .descr-area .descr-text {
  font-weight: 400;
}
@media (min-width: 1360px) {
  .propositions-block .r-part .descr-area .descr-text,
  .offer-block .r-part .descr-area .descr-text,
  .connection-block .r-part .descr-area .descr-text {
    max-height: 500px;
    overflow-y: auto;
    padding-right: 10px;
    margin-right: -10px;
  }
}

.connection-block .l-part h2 {
  margin-bottom: 24px;
}
.connection-block .l-part .checkbox-wr {
  margin: 24px 0;
}
.connection-block .r-part {
  max-height: 655px;
}

.production .segment + .segment {
  margin-top: 40px;
}
.production .segment-top {
  overflow: hidden;
  background-image: linear-gradient(90deg, #c8f3f4 0%, #afc6ff 100%);
  padding: 24px;
  border-radius: 20px;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .production .segment-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
.production .segment-top .part {
  flex: 1 0 50%;
  margin-bottom: 12px;
}
@media (min-width: 768px) {
  .production .segment-top .part {
    display: flex;
    align-items: center;
    padding-right: 24px;
    margin-bottom: 0;
  }
}
.production .segment-top .pict-bg {
  flex-shrink: 0;
  margin: 0 0 12px 0;
}
@media (min-width: 768px) {
  .production .segment-top .pict-bg {
    margin: 0 12px 0 0;
  }
}
.production .segment-top .text-part {
  flex: 1 0 50%;
  font-weight: 400;
}
@media (min-width: 768px) {
  .production .segment-top .text-part {
    max-width: 300px;
  }
}
@media (min-width: 1360px) {
  .production .segment-top .text-part {
    max-width: 485px;
  }
}
.production .segment-links .img-wr {
  display: block;
  overflow: hidden;
  height: 160px;
  font-size: 0;
  border-radius: 10px;
  margin-bottom: 12px;
}
@media (min-width: 480px) {
  .production .segment-links .img-wr {
    height: 208px;
  }
}
.production .segment-links a {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  line-height: 1.5;
}
.production .segment-links a:hover {
  color: #2767e1;
}

.products-section {
  margin-bottom: 40px;
}
.products-section h2 {
  margin-bottom: 24px;
}
.products-section .filters-area {
  position: fixed;
  top: 0;
  right: -375px;
  bottom: 0;
  z-index: 101;
  width: 375px;
  background-color: #fff;
  padding: 112px 0 40px 0;
  transition: right 0.2s;
}
@media (min-width: 768px) {
  .products-section .filters-area {
    position: static;
    width: auto;
    padding: 32px 0 40px 0;
    border-radius: 20px;
  }
}
.products-section .filters-area.mpa {
  right: 0;
}
.products-section .filters-area .parts {
  overflow-y: auto;
  height: 100%;
  padding: 0 24px;
}
@media (min-width: 768px) {
  .products-section .filters-area .parts {
    overflow: visible;
    display: flex;
  }
}
.products-section .filters-area .l-part {
  width: 260px;
}
@media (min-width: 768px) {
  .products-section .filters-area .l-part {
    flex-shrink: 0;
    padding-right: 15px;
  }
}
@media (min-width: 1360px) {
  .products-section .filters-area .l-part {
    padding-right: 30px;
  }
}
.products-section .filters-area .r-part {
  flex-grow: 1;
  margin-top: 60px;
}
@media (min-width: 768px) {
  .products-section .filters-area .r-part {
    padding-left: 15px;
    margin-top: 0;
  }
}
@media (min-width: 1360px) {
  .products-section .filters-area .r-part {
    padding-left: 30px;
  }
}
.products-section .filters-area .h-wr {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 32px;
  right: 0;
  left: 0;
  z-index: 1;
  padding: 0 24px;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .products-section .filters-area .h-wr {
    display: none;
  }
}
.products-section .filters-area .h-wr h2 {
  margin-bottom: 0;
}
.products-section .filters-area .h-wr .close-btn .svg-icon {
  stroke: #009ee0;
}
.products-section .filters-area .btm-segm {
  text-align: center;
  margin-top: 40px;
}
@media (min-width: 768px) {
  .products-section .filters-area .btm-segm {
    display: none;
  }
}
.products-section .filters-area .btm-segm #f-apply {
  width: 100%;
}
.products-section .filters-area .btm-segm .txt-link {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  margin-top: 24px;
}

.filters-area-segm + .filters-area-segm {
  margin-top: 20px;
}
.filters-area-segm.wbg-gr {
  align-items: center;
  background-color: #fff;
  padding: 24px;
  border-radius: 20px;
}
.filters-area-segm .segm-title {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 12px;
}
.filters-area-segm .segm-title span {
  color: #009ee0;
}
.filters-area-segm .crawler-values {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
.filters-area-segm .crawler-values .crawler-val {
  width: calc(50% - 6px);
}

.products {
  margin-top: 24px;
}
@media (min-width: 768px) {
  .products {
    margin-top: 60px;
  }
}
.products .top-pan {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .products .top-pan {
    align-items: center;
  }
}
.products .top-pan-elem {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .products .top-pan-elem {
    display: flex;
    align-items: center;
    font-size: 18px;
  }
}
.products .top-pan-elem .select-title {
  display: block;
  margin: 0 0 4px 0;
}
@media (min-width: 768px) {
  .products .top-pan-elem .select-title {
    margin: 0 40px 0 0;
  }
}
.products .prod-view .icon-lines {
  stroke: #b0b0b0;
  stroke-width: 4;
}
.products .prod-view .icon-tiles {
  fill: #b0b0b0;
}
.products .prod-view.active .icon-lines {
  stroke: #2767e1;
}
.products .prod-view.active .icon-tiles {
  fill: #2767e1;
}
.products .filter-btn {
  padding: 0 16px 0 8px;
}
.products .btm-pane {
  text-align: center;
  margin-top: 40px;
}
.products .btm-pane button {
  margin: 0 auto 8px auto;
}
.products .btm-pane .pgs {
  color: rgba(37, 37, 37, 0.5);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}

.corner-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  width: 46px;
  height: 46px;
  background-color: rgba(37, 37, 37, 0.2);
  border-radius: 50%;
}
.corner-btn .svg-icon {
  position: relative;
  stroke: #fff;
  z-index: 3;
  transition: stroke 0.2s;
}
.corner-btn:hover {
  background-color: #fff;
}
.corner-btn:hover .svg-icon {
  stroke: #2767e1;
}
.corner-btn::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  background-image: linear-gradient(90deg, #2767e1 0%, #568efb 50%, #2767e1 100%);
  opacity: 0;
  transition: opacity 0.2s;
}
.corner-btn:active, .corner-btn.active {
  background-color: rgba(37, 37, 37, 0.2);
}
.corner-btn:active::before, .corner-btn.active::before {
  opacity: 1;
}
.corner-btn:active .svg-icon, .corner-btn.active .svg-icon {
  stroke: #fff;
}

.prod-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  max-width: 350px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .prod-card {
    max-width: none;
  }
}
.prod-card .img-wr {
  position: relative;
  height: 280px;
  overflow: hidden;
  border-radius: 10px;
}
.prod-card .corner-btns {
  display: flex;
  align-items: center;
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 1;
}
.prod-card .corner-btns button + button {
  margin-left: 12px;
}
.prod-card .descr-bl {
  margin-top: 8px;
}
.prod-card .price {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3;
}
.prod-card .card-title {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  margin-top: 8px;
}
.prod-card .grey-text {
  color: rgba(37, 37, 37, 0.5);
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  margin-top: 4px;
}
.prod-card .grey-text.v2 {
  font-size: 16px;
}
.prod-card .flex-part {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
}
.prod-card .p-small {
  font-size: 12px;
}
.prod-card .p-small b {
  font-weight: 600;
}
.prod-card .p-small .icon-info {
  display: inline-block;
  stroke: #009ee0;
}
.prod-card .btm-part {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
}
.prod-card .btm-part button:first-child {
  width: calc(45% - 8px);
}
@media (min-width: 992px) {
  .prod-card .btm-part button:first-child {
    width: calc(45% - 4px);
  }
}
@media (min-width: 1560px) {
  .prod-card .btm-part button:first-child {
    width: calc(50% - 8px);
  }
}
.prod-card .btm-part button:last-child {
  width: calc(55% - 8px);
  justify-content: flex-start;
  padding: 0 16px 0 8px;
}
@media (min-width: 992px) {
  .prod-card .btm-part button:last-child {
    width: calc(55% - 4px);
  }
}
@media (min-width: 1560px) {
  .prod-card .btm-part button:last-child {
    width: calc(50% - 8px);
  }
}
.prod-card .btm-part button:last-child .svg-icon {
  width: 24px;
  height: 24px;
}
@media (min-width: 1360px) {
  .prod-card.list {
    flex-direction: row;
    height: 176px;
    background-color: #fff;
    border-radius: 10px;
  }
  .prod-card.list .img-wr {
    flex-shrink: 0;
    width: 224px;
    height: 100%;
  }
  .prod-card.list .img-wr .corner-btns {
    right: auto;
    left: 8px;
  }
  .prod-card.list .img-wr .corner-btns button + button {
    margin-left: 12px;
  }
  .prod-card.list .top-part {
    display: flex;
  }
  .prod-card.list .top-part .descr-bl {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    max-width: 600px;
    padding: 24px;
    margin-top: 0;
  }
  .prod-card.list .top-part .descr-bl .price {
    order: 1;
  }
  .prod-card.list .top-part .descr-bl .card-title {
    overflow: hidden;
    max-height: 48px;
    margin-top: 0;
  }
  .prod-card.list .btm-part {
    flex-shrink: 0;
    display: block;
    width: 222px;
    padding: 24px;
    margin-top: 0;
  }
  .prod-card.list .btm-part button {
    width: 100%;
  }
  .prod-card.list .btm-part button:last-child {
    margin-top: 16px;
  }
}
.prod-card.list.v2 .cross-part {
  display: none;
}
@media (min-width: 1360px) {
  .prod-card.list.v2 .top-part {
    flex-grow: 1;
  }
  .prod-card.list.v2 .top-part .descr-bl {
    flex-grow: 1;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    max-width: none;
  }
  .prod-card.list.v2 .top-part .descr-bl .p-gr:last-child {
    min-width: 350px;
    margin-left: 24px;
  }
  .prod-card.list.v2 .top-part .descr-bl .card-title {
    font-size: 18px;
  }
  .prod-card.list.v2 .flex-part {
    margin-top: 0;
  }
  .prod-card.list.v2 .cross-part {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    padding: 24px 24px 24px 0;
  }
}

.big-btns-block {
  overflow: hidden;
  background-image: linear-gradient(90deg, #2767e1 0%, #568efb 50%, #2767e1 100%);
  padding: 32px;
  border-radius: 20px;
  margin-bottom: 60px;
}
@media (min-width: 1360px) {
  .big-btns-block {
    padding: 60px 40px;
  }
}
.big-btns-block .row-c {
  margin-right: -6px;
  margin-left: -6px;
}
.big-btns-block .col-c {
  padding-right: 6px;
  padding-left: 6px;
}
.big-btns-block .col-c.mt {
  margin-top: 12px;
}
@media (min-width: 768px) {
  .big-btns-block .col-c.mt {
    margin-top: 0;
  }
}
.big-btns-block button {
  width: 100%;
  padding: 0 16px;
}
.big-btns-block button .icon-calc {
  width: 41px;
  height: 40px;
  stroke-width: 1.6;
}

.white-blocks .col-inner {
  height: 100%;
  overflow: hidden;
  background-color: #fff;
  padding: 20px 0;
  border-radius: 20px;
}

.calculator .col-inner.v2 {
  background-color: transparent;
  padding: 24px;
  border: 3px solid #fff;
}
.calculator .col-inner .col-elem {
  padding: 16px 24px;
}
.calculator .col-inner .col-elem + .col-elem,
.calculator .col-inner .col-elem + .col-elem-gr {
  border-top: 1px solid rgba(37, 37, 37, 0.1);
}
.calculator .col-inner .col-elem .col-elem-title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 12px;
}
.calculator .col-inner .col-elem .col-elem-title span {
  color: #009ee0;
}
.calculator .col-inner .col-elem .col-elem-title.v2 {
  font-size: 16px;
}
.calculator .col-inner .col-c {
  padding-right: 20px;
  padding-left: 20px;
}
@media (min-width: 480px) {
  .calculator .col-inner .col-string {
    display: flex;
    justify-content: space-between;
  }
}
.calculator .col-inner .col-string span {
  display: block;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
}
.calculator .col-inner .col-string span:last-child {
  color: #009ee0;
  font-family: "Inter", sans-serif;
}
.calculator .col-inner .col-string + .col-string {
  margin-top: 16px;
}
.calculator .bag-icon-radios {
  display: flex;
  flex-wrap: wrap;
  max-width: 200px;
  margin: -12px -6px 0 -6px;
}
.calculator .bag-icon-radios .cell {
  flex-shrink: 0;
  width: 100px;
  padding: 0 6px;
  margin-top: 12px;
}
.calculator .bag-icon-radios .sim-radio {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 88px;
  border: 1px solid rgba(37, 37, 37, 0.4);
  border-radius: 10px;
  cursor: pointer;
  transition: border-color 0.2s;
}
.calculator .bag-icon-radios .sim-radio .svg-icon {
  stroke: rgba(37, 37, 37, 0.4);
  transition: stroke 0.2s;
}
.calculator .bag-icon-radios .sim-radio:hover {
  border-color: #2767e1;
}
.calculator .bag-icon-radios .field-radio:checked + .sim-radio {
  border-color: #2767e1;
}
.calculator .bag-icon-radios .field-radio:checked + .sim-radio .svg-icon {
  stroke: #2767e1;
}
.calculator .big-radios {
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .calculator .big-radios {
    flex-wrap: nowrap;
  }
}
.calculator .big-radios .sim-radio:first-of-type {
  margin: 0 0 12px 0;
}
@media (min-width: 992px) {
  .calculator .big-radios .sim-radio:first-of-type {
    margin: 0 12px 0 0;
  }
}
.calculator .digit-radios {
  display: flex;
}
.calculator .digit-radios .sim-radio {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 56px;
  height: 56px;
  color: rgba(37, 37, 37, 0.4);
  font-family: "Inter", sans-serif;
  font-size: 24px;
  border: 1px solid rgba(37, 37, 37, 0.4);
  border-radius: 10px;
  margin-right: 12px;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}
@media (min-width: 992px) {
  .calculator .digit-radios .sim-radio {
    width: 75px;
    height: 75px;
  }
}
.calculator .digit-radios .sim-radio:last-child {
  margin-right: 0;
}
.calculator .digit-radios .sim-radio:hover {
  border-color: #2767e1;
}
.calculator .digit-radios .field-radio:checked + .sim-radio {
  color: #2767e1;
  border-color: #2767e1;
}
.calculator .text-segment {
  width: 100%;
  font-family: "Inter", sans-serif;
  line-height: 1.5;
  padding: 8px 140px 16px 24px;
  border: 1px solid rgba(37, 37, 37, 0.4);
  border-radius: 10px;
}
@media (min-width: 480px) {
  .calculator .text-segment {
    width: 250px;
    padding: 8px 100px 16px 24px;
  }
}
.calculator .text-segment .size-bag {
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 4px;
}
.calculator .text-segment .segm-text {
  color: rgba(37, 37, 37, 0.4);
  font-size: 13px;
}
.calculator .crawler-val {
  width: 120px;
  margin-bottom: 20px;
}
.calculator .bag-graph {
  display: flex;
  flex-wrap: wrap;
  width: 281px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .calculator .bag-graph {
    width: 100%;
  }
}
.calculator .bag-graph .elem1,
.calculator .bag-graph .elem2,
.calculator .bag-graph .elem3 {
  flex-shrink: 0;
}
.calculator .bag-graph .elem1 {
  width: 30%;
}
.calculator .bag-graph .elem2 {
  width: 70%;
}
.calculator .bag-graph .elem3 {
  width: 100%;
}
.calculator .bag-graph .elem-title {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
}
.calculator .bag-graph .crawler.vert {
  height: 236px;
}
.calculator .bag-graph .bag-img-wr {
  position: relative;
  height: 290px;
  margin-top: 35px;
}
.calculator .bag-graph .bag-img-wr .bag-img {
  max-width: 100%;
}
.calculator .bag-graph .bag-img-wr .vals {
  position: absolute;
  color: rgba(37, 37, 37, 0.4);
  font-family: "Inter", sans-serif;
  font-size: 11px;
}
.calculator .bag-graph .bag-img-wr .val1 {
  top: 110px;
  right: -15px;
}
@media (min-width: 768px) {
  .calculator .bag-graph .bag-img-wr .val1 {
    top: 115px;
    right: -13px;
  }
}
@media (min-width: 992px) {
  .calculator .bag-graph .bag-img-wr .val1 {
    top: 96px;
    right: -15px;
  }
}
@media (min-width: 1360px) {
  .calculator .bag-graph .bag-img-wr .val1 {
    top: 98px;
    right: -15px;
  }
}
@media (min-width: 1560px) {
  .calculator .bag-graph .bag-img-wr .val1 {
    top: 114px;
    right: -10px;
  }
}
.calculator .bag-graph .bag-img-wr .val2 {
  bottom: -1px;
  left: 77px;
}
@media (min-width: 768px) {
  .calculator .bag-graph .bag-img-wr .val2 {
    bottom: -12px;
    left: 80px;
  }
}
@media (min-width: 992px) {
  .calculator .bag-graph .bag-img-wr .val2 {
    bottom: 34px;
    left: 66px;
  }
}
@media (min-width: 1360px) {
  .calculator .bag-graph .bag-img-wr .val2 {
    bottom: 28px;
    left: 68px;
  }
}
@media (min-width: 1560px) {
  .calculator .bag-graph .bag-img-wr .val2 {
    bottom: -14px;
    left: 80px;
  }
}
.calculator .bag-graph .bag-img-wr .val3 {
  bottom: 26px;
  right: 47px;
}
@media (min-width: 768px) {
  .calculator .bag-graph .bag-img-wr .val3 {
    bottom: 16px;
    right: 50px;
  }
}
@media (min-width: 992px) {
  .calculator .bag-graph .bag-img-wr .val3 {
    bottom: 57px;
    right: 41px;
  }
}
@media (min-width: 1360px) {
  .calculator .bag-graph .bag-img-wr .val3 {
    bottom: 52px;
    right: 42px;
  }
}
@media (min-width: 1560px) {
  .calculator .bag-graph .bag-img-wr .val3 {
    bottom: 14px;
    right: 55px;
  }
}
.calculator .order-btn {
  display: inline-block;
  width: 100%;
  min-width: 205px;
  margin-top: 24px;
}
@media (min-width: 480px) {
  .calculator .order-btn {
    width: auto;
  }
}

.contacts .links-gr,
.delivery .links-gr,
.nav-tabs-section .links-gr {
  margin-top: 16px;
}
@media (min-width: 768px) {
  .contacts .links-gr,
  .delivery .links-gr,
  .nav-tabs-section .links-gr {
    display: flex;
  }
}
@media (min-width: 992px) {
  .contacts .links-gr,
  .delivery .links-gr,
  .nav-tabs-section .links-gr {
    margin-top: 0;
  }
}
.contacts .links-gr li + li,
.delivery .links-gr li + li,
.nav-tabs-section .links-gr li + li {
  margin: 12px 0 0 0;
}
@media (min-width: 768px) {
  .contacts .links-gr li + li,
  .delivery .links-gr li + li,
  .nav-tabs-section .links-gr li + li {
    margin: 0 0 0 12px;
  }
}
.contacts .links-gr li .fill-link,
.delivery .links-gr li .fill-link,
.nav-tabs-section .links-gr li .fill-link {
  display: inline-block;
}

.contacts h1 {
  margin-bottom: 24px;
}
.contacts .h1-sub-text {
  max-width: 730px;
  font-weight: 400;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .contacts .h1-sub-text {
    margin-bottom: 50px;
  }
}
.contacts .white-blocks .col-inner {
  padding-right: 24px;
  padding-left: 24px;
}
.contacts .white-blocks .map {
  min-height: 240px;
}
@media (min-width: 480px) {
  .contacts .white-blocks .map {
    min-height: 360px;
  }
}
@media (min-width: 992px) {
  .contacts .white-blocks .map {
    min-height: 405px;
  }
}
.contacts .white-blocks .contacts-text {
  padding-top: 32px;
  padding-bottom: 32px;
}
.contacts .white-blocks .contacts-text h3 {
  margin-bottom: 20px;
}

.delivery .h-block {
  max-width: 620px;
  margin-bottom: 24px;
}
@media (min-width: 480px) {
  .delivery .h-block {
    margin-bottom: 40px;
  }
}
@media (min-width: 1360px) {
  .delivery .h-block {
    max-width: 800px;
    margin-bottom: 65px;
  }
}
.delivery .h-block h1 {
  margin-bottom: 24px;
}
.delivery .h-block .h3 {
  color: #009ee0;
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .delivery .btfl-blocks .btfl-block {
    height: 210px;
  }
}
@media (min-width: 992px) {
  .delivery .btfl-blocks .btfl-block {
    height: 220px;
  }
}
@media (min-width: 1360px) {
  .delivery .btfl-blocks .btfl-block {
    height: 300px;
  }
}
@media (min-width: 1560px) {
  .delivery .btfl-blocks .btfl-block {
    height: 340px;
  }
}
.delivery .btfl-blocks h2 {
  margin-bottom: 16px;
}
.delivery .white-blocks .col-inner {
  padding: 24px;
}
.delivery .white-blocks h3 {
  margin-bottom: 16px;
}
.delivery .links-gr {
  margin-top: 8px;
  margin-bottom: 24px;
}
.delivery .map {
  height: 180px;
  overflow: hidden;
  border: 1px solid rgba(37, 37, 37, 0.2);
  border-radius: 10px;
}
@media (min-width: 480px) {
  .delivery .map {
    height: 240px;
  }
}
@media (min-width: 768px) {
  .delivery .map {
    height: 300px;
  }
}
@media (min-width: 992px) {
  .delivery .map {
    height: 360px;
  }
}

.actions-inn .h-wrap {
  max-width: 900px;
  margin-bottom: 12px;
}
.actions-inn .h-wrap h2 {
  margin-bottom: 0;
}
.actions-inn .p-date {
  margin-bottom: 32px;
}
@media (min-width: 768px) {
  .actions-inn .p-date {
    margin-bottom: 40px;
  }
}

.registration h2 {
  margin-bottom: 16px;
}
.registration .reg-form {
  color: #252525;
  margin-top: 40px;
}
.registration .reg-form .field-file {
  margin-bottom: 24px;
}
.registration .reg-form .btns-gr {
  margin-top: 20px;
}
@media (min-width: 768px) {
  .registration .reg-form .btns-gr {
    display: flex;
    justify-content: space-between;
  }
}
.registration .reg-form .btns-gr .reg-btn {
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .registration .reg-form .btns-gr .reg-btn {
    order: 1;
    margin-bottom: 0;
  }
}

.cabinet .sidebar-wrap {
  margin-bottom: 40px;
}
@media (min-width: 1560px) {
  .cabinet .sidebar-wrap {
    padding-right: 50px;
  }
}
.cabinet .sidebar {
  background-color: #fff;
  padding: 24px;
  border-radius: 20px;
}
.cabinet .sidebar .icon-pict {
  stroke-width: 1.6;
}
.cabinet .sidebar h3 {
  font-size: 24px;
}
.cabinet .sidebar .links-list {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  margin-top: 16px;
}
.cabinet .sidebar .links-list li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  border-radius: 10px;
}
.cabinet .sidebar .links-list li a:hover {
  color: #009ee0;
}
.cabinet .sidebar .links-list li.active a {
  background-color: #e8f8ff;
}
.cabinet .sidebar .links-list li.active a span {
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  background-image: linear-gradient(90deg, #009ee0 0%, #66c8ff 100%);
}
.cabinet .sidebar .links-list li.active a::after {
  content: "";
  flex-shrink: 0;
  display: block;
  width: 8px;
  height: 8px;
  background-color: #009ee0;
  border-radius: 50%;
}
.cabinet .inp-list li {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}
.cabinet .inp-list li .inp-gr {
  flex-grow: 1;
}
.cabinet .field-del {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  color: rgba(37, 37, 37, 0.4);
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 500;
  margin-left: 6px;
}
@media (min-width: 992px) {
  .cabinet .field-del {
    margin-left: 20px;
  }
}
.cabinet .field-del .svg-icon {
  width: 16px;
  height: 16px;
  stroke: rgba(37, 37, 37, 0.4);
  margin-left: 5px;
  transition: stroke 0.2s;
}
.cabinet .field-del:hover {
  color: #ff3a3a;
}
.cabinet .field-del:hover .svg-icon {
  stroke: #ff3a3a;
}
.cabinet .add-inp-btn {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 500;
}
.cabinet .add-inp-btn .svg-icon {
  width: 16px;
  height: 16px;
  stroke: #009ee0;
  margin: 0 0 0 4px;
  transition: stroke 0.2s;
}
.cabinet .add-inp-btn:hover .svg-icon {
  stroke: #66c8ff;
}
.cabinet .orders-history-elem {
  background-color: #fff;
  border-radius: 20px;
}
@media (min-width: 1360px) {
  .cabinet .orders-history-elem {
    display: flex;
  }
}
.cabinet .orders-history-elem + .orders-history-elem {
  margin-top: 20px;
}
.cabinet .orders-history-elem .l-part {
  flex-shrink: 0;
  overflow: hidden;
  color: #fff;
  background-image: linear-gradient(90deg, #2767e1 0%, #568efb 50%, #2767e1 100%);
  padding: 32px;
  border-radius: 20px;
}
@media (min-width: 1360px) {
  .cabinet .orders-history-elem .l-part {
    width: 300px;
    padding: 40px 28px;
  }
}
@media (min-width: 1560px) {
  .cabinet .orders-history-elem .l-part {
    width: 354px;
  }
}
.cabinet .orders-history-elem .l-part ul {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
}
.cabinet .orders-history-elem .l-part ul li {
  padding: 12px 0;
  border-top: 1px solid #66a3ff;
}
.cabinet .orders-history-elem .l-part ul li:first-child {
  padding-top: 0;
  border-top: none;
}
.cabinet .orders-history-elem .l-part ul lilast-child {
  padding-bottom: 0;
}
.cabinet .orders-history-elem .l-part .link {
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.4;
  margin-top: 24px;
}
.cabinet .orders-history-elem .l-part .link:hover {
  color: #66c8ff;
}
.cabinet .orders-history-elem .l-part button {
  margin-top: 16px;
}
.cabinet .orders-history-elem .r-part {
  flex-grow: 1;
  padding: 32px;
}
@media (min-width: 992px) {
  .cabinet .orders-history-elem .r-part {
    display: flex;
  }
}
@media (min-width: 1360px) {
  .cabinet .orders-history-elem .r-part {
    padding: 48px 32px;
  }
}
@media (min-width: 1560px) {
  .cabinet .orders-history-elem .r-part {
    padding: 48px 32px 48px 60px;
  }
}
@media (min-width: 992px) {
  .cabinet .orders-history-elem .r-part .r-part-l {
    width: 65%;
  }
}
@media (min-width: 1560px) {
  .cabinet .orders-history-elem .r-part .r-part-l {
    width: 70%;
  }
}
.cabinet .orders-history-elem .r-part .r-part-r {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  order: 1;
  line-height: 1.5;
  padding: 0 0 20px 0;
}
@media (min-width: 992px) {
  .cabinet .orders-history-elem .r-part .r-part-r {
    align-items: flex-end;
    width: 35%;
    padding: 0 0 0 20px;
  }
}
@media (min-width: 1560px) {
  .cabinet .orders-history-elem .r-part .r-part-r {
    width: 30%;
  }
}
.cabinet .orders-history-elem .r-part .picts {
  display: flex;
  flex-wrap: wrap;
  margin: 2px -6px 16px -6px;
}
.cabinet .orders-history-elem .r-part .picts li {
  padding: 0 6px;
  margin-top: 12px;
}
.cabinet .orders-history-elem .r-part .picts li .img-wr {
  overflow: hidden;
  width: 80px;
  height: 80px;
  border-radius: 10px;
}
.cabinet .orders-history-elem .r-part .picts li a {
  width: 80px;
  height: 80px;
  color: rgba(37, 37, 37, 0.5);
  font-family: "Inter", sans-serif;
  font-size: 14px;
  background-color: #f1f4f5;
  border-radius: 10px;
}
.cabinet .orders-history-elem .r-part .ordinary-text {
  font-size: 16px;
}
.cabinet .orders-history-elem .r-part .ordinary-text p + p {
  margin-top: 15px;
}
.cabinet .orders-history-elem .r-part .ordinary-text button {
  font-family: "Geologica", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}
.cabinet .orders-history-elem .r-part .status1 {
  font-size: 20px;
  font-weight: 600;
}
.cabinet .orders-history-elem .r-part .status2 {
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  background-color: #a7eaff;
  padding: 5px 10px;
  border-radius: 10px;
  margin-top: 12px;
}

.order-info-block {
  min-height: 280px;
  overflow: hidden;
  color: #fff;
  background-image: linear-gradient(90deg, #2767e1 0%, #568efb 50%, #2767e1 100%);
  padding: 24px;
  border-radius: 20px;
}
.order-info-block h4 {
  margin-bottom: 22px;
}
@media (min-width: 1560px) {
  .order-info-block h4 {
    font-size: 24px;
  }
}
.order-info-block .order-info-string {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}
.order-info-block .order-info-string + .order-info-string {
  margin-top: 4px;
}
.order-info-block .order-info-string span:first-child {
  color: rgba(255, 255, 255, 0.5);
}
.order-info-block .order-info-string:last-child {
  margin-top: 16px;
}
.order-info-block .order-info-string:last-child span {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
}
.order-info-block .order-info-string:last-child span:last-child {
  font-family: "Geologica", sans-serif;
  font-size: 20px;
  font-weight: 600;
}
.order-info-block button {
  width: 100%;
  margin-top: 24px;
}
.order-info-block .picts {
  display: flex;
  margin-bottom: 24px;
}
.order-info-block .picts li + li {
  margin-left: 8px;
}
.order-info-block .picts li .img-wr,
.order-info-block .picts li a {
  overflow: hidden;
  width: 58px;
  height: 58px;
  border-radius: 10px;
}
@media (min-width: 1560px) {
  .order-info-block .picts li .img-wr,
  .order-info-block .picts li a {
    width: 68px;
    height: 68px;
  }
}
.order-info-block .picts li a {
  color: rgba(37, 37, 37, 0.5);
  font-family: "Inter", sans-serif;
  font-size: 14px;
  background-color: #f1f4f5;
}

.placing-order .order-form legend {
  float: none;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 24px;
}
.placing-order .order-form fieldset + fieldset {
  margin-top: 40px;
}
.placing-order .order-form .order-receive-type {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 24px;
}
@media (min-width: 480px) {
  .placing-order .order-form .order-receive-type {
    flex-direction: row;
    align-items: stretch;
  }
}
.placing-order .order-form .order-receive-type li + li {
  margin: 12px 0 0 0;
}
@media (min-width: 480px) {
  .placing-order .order-form .order-receive-type li + li {
    margin: 0 0 0 12px;
  }
}
.placing-order .order-form .pane-title {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 12px;
}
.placing-order .order-form .pick_ups {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.placing-order .order-form .pick_ups li + li {
  margin-top: 12px;
}
.placing-order .order-form .place-order {
  margin-top: 24px;
}
.placing-order .order-form textarea.field {
  height: 220px;
}

.product-card-section h2 {
  margin-bottom: 12px;
}
.product-card-section .sub-p {
  color: rgba(37, 37, 37, 0.5);
  font-family: "Inter", sans-serif;
  font-size: 16px;
}
.product-card-section .sub-p span {
  color: #252525;
}
.product-card-section .articul-copy-btn {
  position: relative;
  stroke: rgba(37, 37, 37, 0.5);
}
.product-card-section .articul-copy-btn .articul-tip {
  display: none;
  position: absolute;
  top: -15px;
  left: 20px;
  z-index: 5;
  font-size: 12px;
  background-color: #fff;
  padding: 4px 8px;
  border: 1px solid rgba(37, 37, 37, 0.5);
  border-radius: 3px;
}

.product-card {
  margin: 32px 0;
}
.product-card .col-l {
  flex: 0 0 auto;
  width: 355px;
  margin: 0 auto 40px auto;
}
@media (min-width: 480px) {
  .product-card .col-l {
    width: 460px;
  }
}
@media (min-width: 768px) {
  .product-card .col-l {
    width: 480px;
  }
}
@media (min-width: 1360px) {
  .product-card .col-l {
    width: 380px;
    margin: 0;
  }
}
@media (min-width: 1560px) {
  .product-card .col-l {
    width: 480px;
  }
}
.product-card .thumbs-slider-wrap {
  padding: 0 38px;
  margin-top: 16px;
}
@media (min-width: 480px) {
  .product-card .thumbs-slider-wrap {
    padding: 0 58px;
  }
}
@media (min-width: 1360px) {
  .product-card .thumbs-slider-wrap {
    padding: 0 38px;
  }
}
@media (min-width: 1560px) {
  .product-card .thumbs-slider-wrap {
    padding: 0 58px;
  }
}
@media (min-width: 1560px) {
  .product-card .r-part {
    padding-left: 20px;
  }
}
.product-card .r-part .wbg-gr {
  margin-top: 32px;
}
.product-card .r-part .btm-links {
  margin-top: 32px;
  font-size: 16px;
}
.product-card .filters-area-segm.wbg-gr .p-block {
  color: rgba(37, 37, 37, 0.5);
  font-family: "Inter", sans-serif;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .product-card .filters-area-segm.wbg-gr .p-block {
    max-width: 155px;
  }
}
.product-card .filters-area-segm.wbg-gr .p-block .price {
  font-size: 16px;
}
.product-card .filters-area-segm.wbg-gr .p-block .price span {
  color: #252525;
  font-family: "Geologica", sans-serif;
  font-size: 24px;
  font-weight: 600;
}
.product-card .filters-area-segm.wbg-gr .p-block .p-info {
  font-size: 12px;
}
.product-card .filters-area-segm.wbg-gr .p-block .p-info .svg-icon {
  display: inline-block;
  stroke: #009ee0;
  vertical-align: baseline;
}
.product-card .filters-area-segm.wbg-gr button {
  padding: 0 16px 0 8px;
}

.nav-tabs-section {
  background-color: #fff;
  padding: 24px 32px 40px 32px;
  border-radius: 20px;
}
.nav-tabs-section .nav-tabs-wrap-wrap {
  border-bottom: 2px solid rgba(37, 37, 37, 0.4);
}
.nav-tabs-section .nav-tabs-wrap {
  overflow-x: auto;
  margin-bottom: -2px;
}
.nav-tabs-section .nav-tabs {
  flex-wrap: nowrap;
  border: none;
}
.nav-tabs-section .nav-tabs .nav-item {
  padding: 0 12px;
}
.nav-tabs-section .nav-tabs .nav-item:first-child {
  padding-left: 0;
}
.nav-tabs-section .nav-tabs .nav-item:last-child {
  padding-right: 0;
}
.nav-tabs-section .nav-tabs .nav-link {
  color: rgba(37, 37, 37, 0.4);
  font-family: "Geologica", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
  background-color: transparent;
  padding: 0 0 16px 0;
  border: none;
  border-bottom: 2px solid transparent;
  margin: 0;
}
.nav-tabs-section .nav-tabs .nav-link.active {
  color: #009ee0;
  border-bottom-color: #009ee0;
}
.nav-tabs-section .tab-pane {
  padding-top: 32px;
}
.nav-tabs-section .tab-pane h3 {
  margin-bottom: 24px;
}
.nav-tabs-section .tab-pane .dots-li {
  max-width: 600px;
  color: rgba(37, 37, 37, 0.5);
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .nav-tabs-section .tab-pane .dots-li {
    font-size: 18px;
  }
}
.nav-tabs-section .tab-pane .dots-li li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.nav-tabs-section .tab-pane .dots-li li + li {
  margin-top: 12px;
}
.nav-tabs-section .tab-pane .dots-li li span {
  flex-shrink: 0;
  display: block;
}
.nav-tabs-section .tab-pane .dots-li li span:nth-child(2) {
  flex-grow: 1;
  border-bottom: 1px dashed rgba(37, 37, 37, 0.5);
  margin: 0 8px;
}
.nav-tabs-section .tab-pane .dots-li li span:last-child {
  color: #252525;
}
@media (min-width: 1360px) {
  .nav-tabs-section .tab-pane .dots-li li span:last-child {
    width: 150px;
  }
}
.nav-tabs-section .tab-pane .pane-inner {
  max-width: 830px;
}
.nav-tabs-section .tab-pane dl .d-wr + .d-wr {
  margin-top: 24px;
}
.nav-tabs-section .tab-pane dl dt {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}
@media (min-width: 1360px) {
  .nav-tabs-section .tab-pane dl dt {
    font-size: 24px;
  }
}
.nav-tabs-section .tab-pane .text-with-icons .svg-icon {
  display: inline-block;
  stroke: #2767e1;
  stroke-width: 2;
  margin-right: 4px;
}
.nav-tabs-section .tab-pane .text-with-icons .icon-self {
  stroke-width: 1.4;
}
.nav-tabs-section .tab-pane .text-with-icons span {
  color: rgba(37, 37, 37, 0.4);
}
.nav-tabs-section .tab-pane .links-gr {
  margin: 8px 0 16px 0;
}

footer {
  background-color: #fff;
  padding: 32px 10px;
  margin: 0 -10px;
}
@media (min-width: 480px) {
  footer {
    padding: 45px 0;
    margin: 0;
  }
}
@media (min-width: 768px) {
  footer {
    padding: 60px 0;
  }
}
footer .top-footer {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
footer .top-footer .cat-btn {
  padding: 0 16px 0 8px;
  margin: 24px 0 0 0;
}
@media (min-width: 480px) {
  footer .top-footer .cat-btn {
    margin: 0 0 0 30px;
  }
}
@media (min-width: 768px) {
  footer .top-footer .cat-btn {
    margin: 0 0 0 40px;
  }
}
@media (min-width: 992px) {
  footer .top-footer .cat-btn {
    margin: 24px 0 0 0;
  }
}
footer .top-footer-elem {
  flex-shrink: 0;
  width: 100%;
}
@media (min-width: 992px) {
  footer .top-footer-elem {
    width: 50%;
  }
}
@media (min-width: 1360px) {
  footer .top-footer-elem {
    width: auto;
  }
}
footer .logo-wr {
  display: block;
  width: 196px;
  height: 70px;
}
footer .footer-menu {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  line-height: 1.5;
  margin-right: 70px;
}
@media (min-width: 1360px) {
  footer .footer-menu {
    margin-right: 50px;
  }
}
@media (min-width: 1560px) {
  footer .footer-menu {
    margin-right: 70px;
  }
}
footer .footer-menu li + li {
  margin-top: 12px;
}
footer .footer-menu li a:hover {
  color: #2767e1;
}
footer .elem-h {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 12px;
}
footer .links-gr li + li {
  margin-top: 12px;
}
footer .links-gr li span {
  display: inline-block;
}
footer .footer-ul {
  max-width: 350px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.5;
}
@media (min-width: 1360px) {
  footer .footer-ul {
    max-width: 300px;
  }
}
@media (min-width: 1560px) {
  footer .footer-ul {
    max-width: 350px;
  }
}
footer .footer-ul li + li {
  margin-top: 12px;
}
footer .btm-footer p {
  font-size: 14px;
  line-height: 1.5;
}

/* modals */
.modal-backdrop.show {
  background-color: rgba(37, 37, 37, 0.8);
}

.modal {
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}

.modal-dialog {
  margin-right: 20px;
  margin-left: 20px;
}
@media (min-width: 480px) {
  .modal-dialog {
    margin-right: auto;
    margin-left: auto;
    max-width: 440px;
  }
}
@media (min-width: 768px) {
  .modal-dialog {
    max-width: 600px;
  }
}
@media (min-width: 992px) {
  .modal-dialog {
    max-width: 730px;
  }
}

.modal-header {
  text-align: center;
  background-color: transparent;
  padding: 24px 24px 20px 24px;
  border: none;
  margin: 0;
}

.modal-body {
  padding: 20px 24px 24px 24px;
}
.modal-body form {
  font-family: "Inter", sans-serif;
  font-size: 16px;
}
.modal-body .enter-form .forgot-link {
  display: inline-block;
  margin-top: 12px;
}
@media (min-width: 480px) {
  .modal-body .btns-gr {
    display: flex;
    justify-content: space-between;
  }
}
.modal-body .btns-gr button {
  width: 100%;
}
@media (min-width: 480px) {
  .modal-body .btns-gr button {
    width: calc(50% - 6px);
  }
}
.modal-body .btns-gr button:first-child {
  margin-bottom: 12px;
}
@media (min-width: 480px) {
  .modal-body .btns-gr button:first-child {
    margin-bottom: 0;
  }
}

.modal-content {
  background-color: #f1f4f5;
  border: none;
  border-radius: 20px;
}
.modal-content .close-btn {
  position: absolute;
  top: -66px;
  right: 0;
  width: 46px;
  height: 46px;
}
@media (min-width: 768px) {
  .modal-content .close-btn {
    top: 0;
    right: -66px;
  }
}
.modal-content.tall .close-btn {
  top: 10px;
  right: 10px;
}
@media (min-width: 768px) {
  .modal-content.tall .close-btn {
    top: 0;
    right: -66px;
  }
}
.modal-content.v2 {
  background-color: #fff;
}
.modal-content .big-img-wr {
  overflow: hidden;
  height: 330px;
  border-radius: 20px;
}
@media (min-width: 480px) {
  .modal-content .big-img-wr {
    height: 440px;
  }
}
@media (min-width: 768px) {
  .modal-content .big-img-wr {
    height: 600px;
  }
}
@media (min-width: 992px) {
  .modal-content .big-img-wr {
    height: 720px;
  }
}

@media (min-width: 992px) {
  .account-enter .modal-dialog {
    max-width: 660px;
  }
}

.estimate-order .inp-gr label {
  font-family: "Geologica", sans-serif;
  font-size: 20px;
  font-weight: 600;
  padding-left: 0;
}
.estimate-order .inp-gr textarea.field {
  height: 220px;
}

.order-placed .pict-bg.ma {
  margin-right: auto;
  margin-left: auto;
}
.order-placed .modal-body {
  padding: 12px 24px 24px 24px;
}

/* .txt-link-filter {
  font-family: "Inter", sans-serif;
  color:white;
  background-color: #009EE0;
  border-radius: 20px;
  border-style: solid;
  border-color: #009EE0;
} */

/* .txt-link-filter {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  border-radius: 1rem;
  background: var(--bs-white);
  font-family: "Inter", sans-serif;
  line-height: 1;
  color: #009ee0;
} */

.txt-link-filter, 
.txt-link-filter:hover, 
.txt-link-filter:focus, 
.txt-link-filter:visited {
    color: #009ee0;
    text-decoration: none;
    outline: none;
    display: inline-block;
    padding: 0.2rem 0.6rem;
    border-radius: 1rem;
    background: var(--bs-white);
    font-family: "Inter", sans-serif;
    line-height: 1;
}

.pagination {
  justify-content: center;
  align-items: center;
}

.pagination-wr {
  margin-top: 40px;
}

.justify-content-lg-between-pagination {
  justify-content: center;
}
/* 
#filters-id {
  color: white;
} */

.page-link-extension {
  border-radius: 32px;
  margin: 10px;
}

.page-ellipsis {
  background-color: rgba(0, 14, 62, 0.0);
  border-color: rgb(0, 0, 0, 0);
  pointer-events: none;
}

.page-item:last-child .page-link {
    border-start-end-radius: 32px;
    border-end-end-radius: 32px;
}

.page-item:first-child .page-link {
    border-top-left-radius:32px;
    border-bottom-left-radius:32px;
    cursor: pointer;
}

.container-margin {
  margin-top: 40px;
}

.prod-view svg {
    pointer-events: none;
}

.jq-selectbox__dropdown ul li {
    padding: 16px;
    cursor: pointer;
}

.jq-selectbox__dropdown ul li:hover {
    color: black;
    background-color: #0002;
}

.page-item:not(:first-child) .page-link {
    margin-left: calc(-1 * var(--bs-border-width));
    cursor: pointer;
}


.descr-category {
  display: flex;
  flex-flow: column;
  gap: 1rem;
  margin-top: 3rem;
}

.descr-category p {
  line-height: 1.2;
}

.descr-category a {
  color: #009ee0;
}

.descr-category a:hover {
  color: #66c8ff;
}

.descr-category ul,
.descr-category ol {
  display: flex;
  flex-flow: column;
  gap: 0.8rem;
  padding-left: 1rem;
}

.descr-category ul li {
  position: relative;
  display: flex;
  flex-flow: column;
  gap: 0.3rem;
}

.descr-category ul li::before {
  content: "";
  position: absolute;
  top: 0.3rem;
  left: 0rem;
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: #009ee0;
  border-radius: 50%;
  margin: 0 12px 2px -18px;
}

.descr-category ol {
  list-style: decimal;
}

.descr-category ol li::marker {
  color: #009ee0;
}

.descr-category h2 {
  margin-bottom: 0;
}


.descr-category tbody {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.descr-category tr {
  display: grid;
  grid-template-columns: 180px auto;
  gap: 0.3rem;
}
.descr-category tr:not(:last-child) {
  padding-bottom: 0.6rem;
  border-bottom: 1px solid gray;
}

.txt-link-filter:hover,
.txt-link-filter:focus-visible {
  color: var(--bs-link-hover-color);
}
.txt-link-filter:active {
  color: #009ee0;
}

#question-select {
  margin: 10px 0;
}

#question-area {
  height: 100%;
}


dialog#question-dialog {
    display: none; 
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: none;
    border-radius: 8px;
    padding: 30px;
    z-index: 1000;
    max-width: 90%;
}

dialog#image-zoom-dialog {
    display: none; 
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: none;
    border-radius: 8px;
    padding: 30px;
    z-index: 1000;
    max-width: 90%;
}

dialog#question-dialog[open] {
    display: block;
}

dialog#image-zoom-dialog[open] {
    display: block;
}

dialog::backdrop {
    background: rgba(0, 0, 0, 0.5); 
    backdrop-filter: blur(5px);    
}


.corner-btn-question {
    margin-left: auto;
    right: -95px;
    top: -40px;
}

@media (width <= 762px) {
  .corner-btn-question {
    margin-left: auto;
    right: -15px;
    top: -15px;
  }
}


@media (width <= 480px) {
  .form-section-modal {
    width: 400px;
  }
}

@media (width <= 760px) {
  .form-section-modal {
    width: 400px;
  }
}

@media (width <= 992px) {
  .form-section-modal {
    width: 500px;
  }
}


@media (width <= 767px) {
  #top-pan-items {
    flex-direction: column; 
    align-items: baseline;
  }
}

@media (width <= 767px) {
  #filter-btn {
    margin-top: 25px;
  }
}

#mobail-pagination { 
  display: none; 
}

#desktop-pagination { 
  display: block; 
}

@media (width <= 767px) {
  #desktop-pagination { display: none; }
  #mobail-pagination { display: block; width: 100%; }
}


.quiz-div {
  display: flex;
  justify-content: center;
  flex: 1 0 auto;
}

.quiz-section {
    align-items: center;
    margin: auto;
    min-width: 30%;
    max-width: 30%;
}

.quiz-input {
  margin: 0 0 5px 0;
}

.quiz-buttom {
  width:100%;
}

.quiz-include-div {
  padding: 15px;
}

#quiz-text {
  margin: 10px auto;
}

.cols-analytic {
  display: flex;
}

.result-analytics {
  display: none;
}

.result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px dashed #e0e0e0;
}
.result-type-label {
    font-size: 20px;
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin: 20px 0 10px;
}

.question-text {
    font-size: 20px;
    padding-right: 20px;
    line-height: 1.5;
    font-weight: 500;
}

.result-analytics {
  display: none;
}

.step-counter {
    font-size: 15px;
    color: white;
    margin-bottom: 8px;
}

.question-box h2 {
    font-size: 34px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    text-align: left;
}

.question-description {
    font-size: 15px;
    color: white;
    margin-bottom: 40px;
}

.rating-stars-list {
    display: flex;
    gap: 15px;
    margin-bottom: 60px;
    justify-content: center;

}

.star-icon {
    font-size: 75px;
    color: rgba(255, 255, 255, 0.234);
    cursor: pointer;
    transition: 0.2s;
}

.star-icon.active {
    color: white;
}

/* .star-icon:hover ~ span {
    font-size: 75px;
    color: rgba(255, 255, 255, 0.234);
    cursor: pointer;
    transition: 0.2s;
} */

.quiz-nav-row {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 35px;
}

.quiz-selection {
    max-width: 100%;
}

.quiz-active {
  display: none;
}

.quiz-next-buttom {
  min-width: 145px;
}

.quiz-textarea {
    margin-bottom: 20px;
}

.quiz-check-border {
  border: 2px solid #fff;
  margin-left: 5px;
}


@media (min-width: 768px) {
    textarea.field {
        height: 130px;
    }
}

.share_btn {
  min-width: 182px;
}

.rating-stars-list {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    justify-content: center;
}


.quiz-div.quiz-active {
    display: none;
}

.quiz-section {
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


.filters-area-non-active {
    opacity: 0.5; 
    filter: grayscale(1); 
    pointer-events: none; 
    cursor: not-allowed; 
}

@media (min-width: 768px) {
    .products-section .filters-area .btm-segm {
        display: flex;        
        align-items: center;   
        gap: 20px;            
        margin-top: 30px;     
        padding: 20px 0; 
    }
}

.products-section .filters-area .btm-segm .txt-link {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    line-height: 1.5;
    margin-top: 0;
}

.cat-selection-active {
  color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 1));
}

.product-card .filters-area-segm.wbg-gr button {
    padding: 0 16px 0 8px;
    width: 155px;
}

.hero-product-info {
  margin: 32px 0;
}

.product-info-item {
    width: 100%; 
}

.row-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #ddd; 
}

.row-item:last-child {
    border-bottom: none;
}

.label-item {
    font-weight: 500;
    font-size: 20px;
    margin: 5px 0;
}

.value-item {
    color: #333;
    font-size: 20px;
}

.video-review {
  align-content: center;
  text-align: center;
}

@media (min-width: 992px) {
    .reviews-slider2 .slide .slide-inner {
        height: 400px;
        padding: 28px;
    }
}


/* ==========================================================================
   1. БАЗОВЫЕ СТИЛИ И СЕТКА (ОБЩИЕ)
   ========================================================================== */
.big-section .section-segm .btm-part .row {
    display: grid !important;
    gap: 1rem !important;
    grid-template-columns: repeat(1, 1fr) !important; 
}

@media (min-width: 768px) {
  .big-section .section-segm .btm-part .row {
      display: grid !important;
      gap: 1rem !important;
      grid-template-columns: repeat(2, 1fr) !important; 
  }
}

.big-section .section-segm .btm-part .row > .col {
    padding: 0 !important;
    flex: none !important;
    width: 100% !important;
}

/* 2. ЦЕНТРОВКА И ОБЕРТКИ ДЛЯ КНОПОК/ССЫЛОК */
.big-section .section-segm .btm-part .d-wr {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    min-height: 50px;
    padding: 0.5rem 0.8rem !important;
    height: 100%;
}

@media (min-width: 992px) {
    .big-section .section-segm .btm-part .d-wr {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        width: 100% !important;
        min-height: 50px;
    }
}

.big-section .section-segm .btm-part dt {
    margin: 0 !important;
    padding: 0 !important;
    display: block !important;
    width: 100% !important;
}

.big-section .section-segm .btm-part dt a {
    display: block !important;
    width: 100% !important;
    color: #009ee0 !important;
    text-transform: uppercase !important;
    text-align: center !important;
    text-decoration: none;
}

.big-section .section-segm .btm-part dt a:hover {
    color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 1)) !important;
}

.next-col {
    margin-top: 0;
}

/* ==========================================================================
   2. ВЕРХНЯЯ ЧАСТЬ (КАРТИНКА + ТЕКСТ) - ПО УМОЛЧАНИЮ (МОБИЛЬНЫЕ)
   ========================================================================== */
.big-section .section-segm .top-part {
    display: block; /* Друг под другом */
    margin-bottom: 55px;
}

.big-section .section-segm .top-part .img-wr {
    width: 100%;
    margin-bottom: 20px;
}

/* ==========================================================================
   3. АДАПТИВ (ПЛАНШЕТЫ ОТ 768px)
   ========================================================================== */
@media (min-width: 768px) {
    .big-section .section-segm .top-part {
        margin-bottom: 60px; 
    }
}

/* ==========================================================================
   4. АДАПТИВ (ДЕСТОП ОТ 1360px)
   ========================================================================== */
@media (min-width: 1360px) {
    /* Верхняя часть: картинка сбоку, текст в заштрихованной области */
    .big-section .section-segm .top-part {
        display: flex !important;
        align-items: flex-start;
        margin-bottom: 60px;
    }

    .big-section .section-segm .top-part .img-wr {
        width: calc(40% + 10px) !important;
        margin-bottom: 0 !important;
        flex-shrink: 0;
    }

    .big-section .section-segm .top-part .text-wr {
        flex: 1; 
        padding-left: 20px;
    }

    .big-section .section-segm .btm-part .row {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}
@media (min-width: 1360px) {
    h2, .h2, .font-size-slider {
        font-size: 33px;
    }
}


h2, .h2, .font-size-slider {
    font-size: 30px;
}


ol, ul, .case-post_body {
  list-style: auto;
}



.articles-slider .slick-track,
.articles-slider2 .slick-track {
  display: flex;
}


/* .articles-slider .slide,
.articles-slider2 .slide {
  display: flex;
  flex-direction: column;
  height: auto; 
} */


/* .articles-slider .slide .title,
.articles-slider2 .slide .title {
  flex-grow: 1;
  min-height: 0; 
  margin-bottom: 24px;
} */

.articles-slider .slide .bttn,
.articles-slider2 .slide .bttn {
  margin-top: auto;
  align-self: flex-start;
}

.breadcrumb {
    gap: 0 10px; 
}
.breadcrumb-item, .breadcrumb-item::before {
    padding: 0 !important; 
}


.imageFull {
  width: 280px;
  max-height: 85vh;
}


@media (min-width: 480px) {
  .imageFull {
    width: 380px;
    max-height: 85vh;
  }
}
  
@media (min-width: 760px) {
  .imageFull {
    width: 590px;
    max-height: 85vh;
  }
}

@media (min-width: 1360px) {
  .imageFull {
    width: 100%;
    max-height: 85vh;
  }
}

.filter-btn {
  margin-bottom: 25px;
}

@media (min-width: 1360px) {
  .filter-btn {
    margin-bottom: 0px;
  }
}

@media (max-width: 380px) {
  .scroll-dialog {
    overflow-y: auto; 
  }
}



.search-wr {
    position: relative;
    z-index: 1000;
}

#search-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ccc;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
    max-height: 450px;
    overflow-y: auto;          
    z-index: 10000;
    margin-top: 4px;
    border-radius: 30px;
    
    scrollbar-width: none;          
    -ms-overflow-style: none;       
}

#search-dropdown::-webkit-scrollbar {
    display: none;                  
}

#search-dropdown-mobile {
    display: none;
    position: fixed;
    background: white;
    border: 1px solid #ccc;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    max-height: 55vh;
    overflow-y: auto;
    z-index: 10000;
    border-radius: 12px;
    width: 92%;
    left: 4%;
    top: auto;
    scrollbar-width: none;
}

#search-dropdown-mobile::-webkit-scrollbar {
    display: none;
}

.search-suggestion-item {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    text-decoration: none;
    color: #222;
    border-bottom: 1px solid #eee;
    gap: 12px;
    transition: all 0.2s ease;
}

.search-suggestion-item:hover {
    background: #f5f3f2;
    color: #1976d2;
}

.search-suggestion-item:hover .suggestion-price {
    color: #1565c0;
    font-weight: 700;
}

.search-suggestion-item:last-child {
    border-bottom: none;
}

.suggestion-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    flex-shrink: 0;
    border: 1px solid #eee;
    border-radius: 4px;
}

.suggestion-img-placeholder {
    width: 50px;
    height: 50px;
    background: #f5f5f5;
    flex-shrink: 0;
    border-radius: 4px;
}

.suggestion-info {
    flex: 1;
    min-width: 0;
}

.suggestion-name {
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 3px;
}

.suggestion-article {
    font-size: 0.86em;
    color: #666;
}

.suggestion-price {
    color: #0066cc;
    font-weight: 600;
    white-space: nowrap;
    margin-left: 10px;
}

.search-suggestion-item:first-child .suggestion-img {
  border-radius: 30px 4px 4px 4px;
}

.search-suggestion-item:last-child .suggestion-img {
  border-radius: 4px 4px 4px 30px;
}


.footer-documents {
  display: flex;
  flex-wrap: wrap;      
  align-items: center;
  gap: 12px 24px;       
  justify-content: flex-start;
}
