@charset "UTF-8";
/*body*/
:root {
  --red-accent---cc3333: #c33;
  --blue-accent---0062d9: #0062d9;
  --grey---b8b8b8: #bec8d4;
  --grey---dddddd: #d3dae7;
  --grey---efefef: #f4f6fa;
  --white----ffffff: #fff;
  --text-black-191919: #191919;
  --text-grey-424242: #424242;
  --text-grey-686868: #686868;
  --font-family: "Roboto Flex", sans-serif;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background: #24364b;
  min-width: 360px;
  height: 100%;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  color: var(--text-grey-424242);
}
body.hidden {
  overflow: hidden;
}

ul {
  margin: 0px;
  padding: 0px;
}
ul li {
  list-style: none;
}

a,
img,
input {
  outline: none;
}

a {
  text-decoration: none;
  transition: 0.5s;
  color: var(--blue-accent---0062d9);
}

a span.solid,
div span.solid {
  border-bottom: solid 1px;
  transition: 0.5s;
}
a span.solid:hover,
div span.solid:hover {
  border-bottom: 1px solid transparent;
}

.btn {
  border-radius: 64px;
  padding: 16px 0;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--white----ffffff);
  width: 100%;
  max-width: 195px;
  text-align: center;
  display: block;
  transition: 0.5s;
  cursor: pointer;
}
@media (min-width: 1280px) {
  .btn {
    max-width: 175px;
  }
}
@media (min-width: 1600px) {
  .btn {
    max-width: 185px;
  }
}
@media (min-width: 1920px) {
  .btn {
    max-width: 195px;
  }
}
.btn.red {
  background: var(--red-accent---cc3333);
  border: 1px solid var(--red-accent---cc3333);
}
.btn.red:hover {
  background: #ed0202;
  border: 1px solid #ed0202;
}
.btn.blue {
  background: transparent;
  color: var(--blue-accent---0062d9);
  border: 1px solid var(--blue-accent---0062d9);
}
.btn.blue:hover {
  background: var(--blue-accent---0062d9);
  color: #fff !important;
}

.mobil {
  display: block;
}
@media (min-width: 992px) {
  .mobil {
    display: none;
  }
}

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

.container {
  display: flex;
  /*height: 100vh; /* высота окна */
}

.h1_title,
h1 {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 24px;
  line-height: 110%;
  letter-spacing: -0.01em;
  color: var(--text-black-191919);
  margin: 0 0 20px;
}
@media (min-width: 769px) {
  .h1_title,
h1 {
    font-size: 32px;
  }
}

.h3_title,
h3 {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 24px;
  line-height: 125%;
  letter-spacing: -0.01em;
  color: var(--text-black-191919);
  margin: 0 0 20px;
}
.h3_title.st-normal,
h3.st-normal {
  font-weight: 400;
}
@media (min-width: 769px) {
  .h3_title,
h3 {
    font-size: 32px;
  }
}

h4, .h4_title {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 117%;
  color: var(--text-black-191919);
  margin: 0 0 16px;
}
@media (min-width: 769px) {
  h4, .h4_title {
    font-size: 24px;
  }
}

.sidebar {
  width: 30%;
  border-right: 1px solid var(--grey---dddddd);
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 248px;
  background: #fff;
  display: none;
  z-index: 2;
}
@media (min-width: 1200px) {
  .sidebar {
    display: block;
  }
}
@media (min-width: 1365px) {
  .sidebar {
    width: 268px;
  }
}
@media (min-width: 1600px) {
  .sidebar {
    width: 335px;
  }
}

/* Основная часть справа - с шапкой и футером */
.main-area {
  margin-left: 30%;
  display: flex;
  flex-direction: column;
  /*height: 100vh; */
  width: 70%;
  margin-left: 0;
  width: 100%;
  max-width: 100%;
}
@media (min-width: 1200px) {
  .main-area {
    margin-left: 248px;
    width: calc(100% - 248px);
  }
}
@media (min-width: 1365px) {
  .main-area {
    margin-left: 268px;
    width: calc(100% - 268px);
  }
}
@media (min-width: 1600px) {
  .main-area {
    margin-left: 335px;
    width: calc(100% - 335px);
  }
}

.wrapper {
  padding-right: 15px;
  padding-left: 15px;
  box-sizing: border-box;
}
@media (min-width: 1365px) {
  .wrapper {
    padding-right: 24px;
    padding-left: 24px;
  }
}
@media (min-width: 1600px) {
  .wrapper {
    padding-right: 30px;
    padding-left: 30px;
  }
}

header {
  flex: 0 0 auto;
  /* не растягивается */
  background: #fff;
  position: relative;
  z-index: 2;
}

.content {
  flex: 1;
  /* занимает всё оставшееся пространство */
  background: #fff;
  overflow: auto;
  /* при необходимости прокрутки */
  padding: 15px 0;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
}
.content .box {
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 992px) {
  .content .box {
    padding-left: 30px;
    padding-right: 30px;
  }
}

footer {
  background: #24364b;
  flex: 0 0 auto;
  position: relative;
}

.overflow {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  background: rgba(0, 0, 0, 0.5);
  z-index: 5;
  opacity: 0;
  visibility: hidden;
  transition: 0.8s;
}
.overflow.active {
  opacity: 1;
  visibility: visible;
}

/* modal */
.modalBox .title {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: -0.01em;
  color: var(--text-black-191919);
  margin: 0 0 25px;
}

.modalBox {
  background: var(--white----ffffff);
  border-radius: 16px;
  padding: 24px;
  width: 100%;
  max-width: 415px;
  box-sizing: border-box;
  z-index: 10;
}
.modalBox form input[type=text],
.modalBox form input[type=tel],
.modalBox form input[type=number] {
  border: 1px solid var(--grey---dddddd);
  border-radius: 64px;
  padding: 8px 16px 8px 24px;
  width: 100%;
  margin: 0 0 25px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 112%;
  color: var(--text-black-191919);
  box-sizing: border-box;
}
.modalBox form input[type=text]:focus,
.modalBox form input[type=tel]:focus,
.modalBox form input[type=number]:focus {
  border: 1px solid #136cdc;
}
.modalBox form button,
.modalBox form input[type=submit] {
  width: 100%;
  max-width: 265px;
}

.flexes {
  margin-bottom: 15px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 13px;
  line-height: 123%;
  color: var(--text-black-191919);
  align-items: flex-start;
}
.flexes a {
  color: var(--text-black-191919);
}

.modalBox .fancybox-close-small {
  background: #fff !important;
}

.modalBox .phoneBlock {
  margin: 0 0 20px;
}
.modalBox .phoneBlock div {
  margin: 0 0 8px;
}
.modalBox .phoneBlock div:last-child {
  margin-bottom: 0px;
}
.modalBox .phoneBlock div a {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: -0.01em;
  color: var(--text-black-191919);
}

.modalBox a.btn {
  margin-bottom: 25px;
}

.modalBox .socilaModal {
  justify-content: flex-start;
}
.modalBox .socilaModal a {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  color: var(--text-grey-424242);
  margin: 0 12px 0 0;
}
.modalBox .socilaModal a svg {
  margin-right: 8px;
}
.modalBox .socilaModal a:hover span {
  border-bottom: 1px solid transparent;
}

input[name=surname],
input[name=surnames] {
  width: 0 !important;
  height: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  opacity: 0 !important;
  overflow: hidden !important;
}

.sectionContent .h3_title {
  font-weight: 400;
}
.sectionContent p {
  margin: 0 0 20px;
}
.sectionContent .sectionContent--wrapper {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
}
.sectionContent .sectionContent--wrapper .sectionContent--collumn {
  padding: 0 10px 0 0;
  box-sizing: border-box;
}
.sectionContent .sectionContent--elem {
  margin: 0 0 40px;
}
.sectionContent ul {
  margin: 0px;
  padding: 0 0 0 20px;
}
.sectionContent ul li {
  list-style: disc;
  margin: 0 0 5px;
}

.pagination {
  display: none;
}
@media (min-width: 581px) {
  .pagination {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.pagination li {
  margin: 0 4px;
}
.pagination li.active a {
  border-color: transparent;
}
.pagination li.active a:hover {
  color: var(--text-grey-424242);
  background: #fff;
}
.pagination li a {
  border: 1px solid var(--blue-accent---0062d9);
  border-radius: 4px;
  padding: 10px;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  font-weight: 400;
  font-size: 12px;
  line-height: 125%;
  text-align: center;
  color: var(--text-grey-424242);
  transition: 0.5s;
}
.pagination li a:hover {
  background: var(--blue-accent---0062d9);
  color: #fff;
}
@media (min-width: 580px) {
  .pagination li a {
    font-size: 14px;
  }
}
@media (min-width: 769px) {
  .pagination li a {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}
.pagination li span {
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 10px;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  transition: 0.5s;
}
@media (min-width: 768px) {
  .pagination li span {
    width: 40px;
    height: 40px;
  }
}
.pagination li:first-child, .pagination li:last-child {
  position: relative;
  transition: 0.5s;
}
.pagination li:first-child a, .pagination li:last-child a {
  border-color: transparent;
  width: 60px;
}
.pagination li:first-child a:hover, .pagination li:last-child a:hover {
  background: transparent;
}
.pagination li:first-child {
  left: 0px;
}
.pagination li:first-child:hover {
  left: -5px;
}
.pagination li:last-child {
  right: 0px;
}
.pagination li:last-child:hover {
  right: -5px;
}

.showMore {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 581px) {
  .showMore {
    display: none;
  }
}
.showMore a.btn {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 112%;
  letter-spacing: -0.01em;
  color: var(--blue-accent---0062d9);
  border: 1px solid var(--blue-accent---0062d9);
  border-radius: 64px;
  padding: 16px 0;
  width: 100%;
  text-align: center;
  max-width: 190px;
  box-sizing: border-box;
}

dl {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0 0 15px;
}
dl dt,
dl dd {
  width: 100%;
  max-width: 49%;
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  color: var(--text-grey-424242);
  margin: 0px;
}

.blocker {
  z-index: 10 !important;
}

.cfcity_first .text-center {
  display: flex;
}

.cfcity_first .text-center .btn {
  cursor: pointer;
  transition: 0.2s ease-out;
  border: 2px solid #1091d5;
  border-radius: 3px;
  color: #fff;
}
.cfcity_first .text-center .btn:hover {
  background: #0f55d9;
}

.fancybox-container,
.fancybox-slide {
  z-index: 12 !important;
}

#cookie_notification {
  display: none;
  justify-content: space-between;
  align-items: flex-end;
  position: fixed;
  bottom: 15px;
  left: 50%;
  width: 1170px;
  max-width: 90%;
  transform: translateX(-50%);
  padding: 25px;
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.4);
  z-index: 1000000;
}

#cookie_notification p {
  margin: 0 15px 0 0;
  font-size: 14px;
  text-align: left;
  color: #000;
  line-height: 1.2;
}

#cookie_notification button {
  background: #1091d5;
  color: #fff !important;
  transition: 0.8s;
  padding: 8px 20px;
  font-size: 14px;
  line-height: 1;
}

#cookie_notification button:hover {
  background: #1871a3;
}

#cookie_notification.show {
  display: flex;
}

@media (max-width: 992px) {
  #cookie_notification p {
    font-size: 14px;
  }
}
@media (max-width: 580px) {
  #cookie_notification.show {
    padding: 10px;
    display: block;
  }
  #cookie_notification.show p {
    margin: 0 0 12px;
  }
}
/*sidebar*/
.sidebar--logo {
  padding: 29px 30px;
  box-sizing: border-box;
  display: block;
}
.sidebar--logo img {
  max-width: 100%;
  width: 100%;
}
@media (min-width: 1280px) {
  .sidebar--logo {
    padding: 31px 30px;
  }
}
@media (min-width: 1365px) {
  .sidebar--logo {
    padding: 31px 38px;
  }
}
@media (min-width: 1600px) {
  .sidebar--logo {
    padding: 5.1% 30px;
  }
}
@media (min-width: 1920px) {
  .sidebar--logo {
    padding: 5% 30px;
  }
}

.sidebar--btnCatalog {
  background: var(--blue-accent---0062d9);
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  padding: 18px 0;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--white----ffffff);
  text-align: center;
}
@media (min-width: 1365px) {
  .sidebar--btnCatalog {
    font-size: 16px;
  }
}

#popup-menu-container {
  position: absolute;
  z-index: 9999;
  display: none;
  width: 100%;
  max-width: 300px;
  top: 0px;
  background: #fff;
  left: 100%;
  transition: 0.5s;
  padding: 15px;
  box-sizing: border-box;
  height: 100%;
}
#popup-menu-container.open {
  display: block !important;
}
#popup-menu-container li {
  list-style: none;
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}
#popup-menu-container li ul {
  position: absolute;
  background: #fff;
  left: 100%;
  transition: 0.5s;
  padding: 15px;
  box-sizing: border-box;
  width: 100%;
  top: 0;
  z-index: 12222;
  display: none;
  margin-left: 1px;
  height: 100%;
  border-right: 1px solid var(--grey---dddddd);
  max-width: 300px;
}
#popup-menu-container li.open > ul {
  display: block;
}
#popup-menu-container li img {
  margin-right: 8px;
  width: 100%;
  max-width: 24px;
}
#popup-menu-container li a {
  position: relative;
  padding-right: 30px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 112%;
  color: var(--text-black-191919);
  display: block;
  width: 100%;
}
#popup-menu-container li a:hover {
  color: var(--blue-accent---0062d9);
}
#popup-menu-container li a svg {
  position: absolute;
  right: 0px;
  top: 50%;
  margin-top: -12px;
}
@media (min-width: 1365px) {
  #popup-menu-container li a {
    font-size: 16px;
  }
}

.sidebar--navigation {
  padding: 15px;
  box-sizing: border-box;
  position: relative;
}
.sidebar--navigation::-webkit-scrollbar {
  width: 4px;
}
@media (min-width: 1365px) {
  .sidebar--navigation {
    padding: 16px 16px 16px 30px;
  }
}
.sidebar--navigation .scrollContainer {
  overflow-y: auto;
  overflow-x: visible;
  height: 100%;
}
.sidebar--navigation .scrollContainer::-webkit-scrollbar {
  display: none;
}
.sidebar--navigation ul {
  margin: 0px 0 40px;
  padding: 0px;
}
.sidebar--navigation ul li {
  list-style: none;
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}
.sidebar--navigation ul li ul {
  position: absolute;
  background: #fff;
  left: 100%;
  transition: 0.5s;
  padding: 15px;
  box-sizing: border-box;
  width: 100%;
  top: 0;
  z-index: 12222;
  display: none;
  margin-left: 1px;
  height: 100%;
  border-right: 1px solid var(--grey---dddddd);
  max-width: 300px;
}
.sidebar--navigation ul li.open > ul {
  display: block;
}
.sidebar--navigation ul li img {
  margin-right: 8px;
  width: 100%;
  max-width: 24px;
}
.sidebar--navigation ul li a {
  position: relative;
  padding-right: 30px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 112%;
  color: var(--text-black-191919);
  display: block;
  width: 100%;
}
.sidebar--navigation ul li a:hover {
  color: var(--blue-accent---0062d9);
}
.sidebar--navigation ul li a svg {
  position: absolute;
  right: 0px;
  top: 50%;
  margin-top: -12px;
}
@media (min-width: 1365px) {
  .sidebar--navigation ul li a {
    font-size: 16px;
  }
}

/*header*/
.headerDesck {
  display: none;
}
@media (min-width: 1080px) {
  .headerDesck {
    display: block;
  }
}

.headerMobile {
  display: flex;
  justify-content: space-between;
  padding: 12px 15px;
  border-bottom: 1px solid var(--grey---dddddd);
}
.headerMobile.fixed {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  background: #fff;
  z-index: 6;
  box-sizing: border-box;
}
@media (min-width: 1080px) {
  .headerMobile {
    display: none;
  }
}
.headerMobile .headerLogo {
  max-width: 130px;
}
.headerMobile .headerLogo img {
  max-width: 100%;
}
.headerMobile .headerCenter--phone div {
  display: none;
}
@media (min-width: 520px) {
  .headerMobile .headerCenter--phone div {
    display: none;
  }
}
.headerMobile .headerCenter--phone a {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 114%;
  color: var(--text-black-191919);
}
.headerMobile .headerCenter--phone svg {
  margin-right: 5px;
}
@media (min-width: 520px) {
  .headerMobile .headerCenter--phone svg {
    margin-right: 12px;
  }
}
.headerMobile .headerCenter--phone svg:last-child {
  margin: 0 0 0 5px;
}
@media (min-width: 520px) {
  .headerMobile .headerCenter--phone svg:last-child {
    margin: 0 0 0 12px;
  }
}
.headerMobile .mobilNavBtn {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 112%;
  color: var(--text-black-191919);
}
.headerMobile .mobilNavBtn svg {
  margin-left: 12px;
}

.headerTop {
  background: var(--grey---efefef);
  padding-top: 9px;
  padding-bottom: 9px;
  justify-content: space-between;
}

.headerTop--link a {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 1;
  color: var(--text-grey-424242);
  margin-right: 16px;
  transition: 0.5s;
}
.headerTop--link a svg {
  margin-right: 8px;
}
.headerTop--link a:last-child {
  margin-right: 0px;
}
.headerTop--link a:hover {
  color: var(--blue-accent---0062d9);
}
.headerTop--link a:hover span.solid {
  border-bottom: 1px solid transparent;
}

.cfcity a,
.cfcity {
  display: flex;
  align-items: center;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 114%;
  color: var(--text-grey-424242);
}

.cfcity a {
  margin-left: 5px;
}

.headerCenter {
  padding-top: 23px;
  padding-bottom: 23px;
  justify-content: space-between;
  background: #fff;
}
.headerCenter .btn {
  max-width: 120px;
  font-size: 10px;
}
@media (min-width: 1280px) {
  .headerCenter .btn {
    max-width: 150px;
    font-size: 12px;
  }
}
@media (min-width: 1365px) {
  .headerCenter .btn {
    max-width: 178px;
    font-size: 16px;
  }
}
.headerCenter .icon {
  border: 1px solid var(--grey---dddddd);
  border-radius: 64px;
  width: 35px;
  height: 35px;
  margin-right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 35px;
}
@media (min-width: 1365px) {
  .headerCenter .icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    margin-right: 12px;
  }
}

.headerCenter--schedule,
.headerCenter--location {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 13px;
  line-height: 112%;
  color: var(--text-black-191919);
  width: 100%;
  max-width: 180px;
}
@media (min-width: 1280px) {
  .headerCenter--schedule,
.headerCenter--location {
    max-width: 200px;
    font-size: 14px;
  }
}
@media (min-width: 1365px) {
  .headerCenter--schedule,
.headerCenter--location {
    max-width: 220px;
    font-size: 16px;
  }
}

.headerCenter--search {
  width: 100%;
  max-width: 170px;
}
@media (min-width: 1180px) {
  .headerCenter--search {
    max-width: 230px;
  }
}
@media (min-width: 1280px) {
  .headerCenter--search {
    max-width: 230px;
  }
}
@media (min-width: 1600px) {
  .headerCenter--search {
    max-width: 400px;
  }
}
@media (min-width: 1920px) {
  .headerCenter--search {
    max-width: 600px;
  }
}

#mse2_form {
  position: relative;
  width: 100%;
}
#mse2_form input {
  width: 100%;
  background: var(--grey---efefef);
  border: 1px solid var(--grey---dddddd);
  border-radius: 64px;
  padding: 8px 35px 8px 15px;
  width: 100%;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  color: var(--text-grey-424242);
  box-sizing: border-box;
}
@media (min-width: 1280px) {
  #mse2_form input {
    padding: 8px 35px 8px 24px;
  }
}
#mse2_form button {
  position: absolute;
  right: 16px;
  top: 50%;
  width: 24px;
  height: 24px;
  margin-top: -12px;
  border: none;
  background: none;
}

.headerCenter--phone {
  margin: 0px 5px;
}
.headerCenter--phone a {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 14px;
  line-height: 100%;
  color: var(--text-black-191919);
  transition: 0.5s;
}
.headerCenter--phone a:hover {
  color: var(--blue-accent---0062d9);
}
@media (min-width: 1365px) {
  .headerCenter--phone a {
    font-size: 16px;
  }
}
@media (min-width: 1601px) {
  .headerCenter--phone a {
    font-size: 18px;
  }
}
@media (min-width: 1200px) {
  .headerCenter--phone {
    margin: 0px 15px;
  }
}

.headerNavigation {
  border-top: 1px solid #ebebeb;
  border-bottom: 1px solid #ebebeb;
}
.headerNavigation nav ul {
  margin: 0px;
  padding: 0px;
  justify-content: space-between;
}
.headerNavigation nav ul li {
  list-style: none;
  width: 100%;
  position: relative;
}
.headerNavigation nav ul li.small {
  width: 60px;
}
@media (min-width: 1365px) {
  .headerNavigation nav ul li.small {
    width: 80px;
  }
}
.headerNavigation nav ul li.small a {
  padding: 18px 14px;
}
@media (min-width: 1365px) {
  .headerNavigation nav ul li.small a {
    padding: 18px 24px;
  }
}
@media (min-width: 1600px) {
  .headerNavigation nav ul li.small a {
    padding: 18px 20px;
  }
}
@media (min-width: 1700px) {
  .headerNavigation nav ul li.small a {
    padding: 18px 30px;
  }
}
@media (min-width: 1560px) {
  .headerNavigation nav ul li.small {
    width: 100%;
  }
}
.headerNavigation nav ul li ul {
  display: none;
  position: absolute;
  left: 0px;
  top: 100%;
  box-shadow: 0 35px 42px -16px rgba(0, 0, 0, 0.15);
  background: var(--white----ffffff);
  border: 1px solid var(--grey---dddddd);
  border-radius: 0 0 8px 8px;
  padding: 20px 15px;
  width: 100%;
  box-sizing: border-box;
}
.headerNavigation nav ul li ul li {
  margin: 0 0 12px;
}
.headerNavigation nav ul li ul li:last-child {
  margin-bottom: 0px;
}
.headerNavigation nav ul li ul li a {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.3;
  color: var(--text-grey-424242);
  background: none;
  border: none;
  padding: 0px;
  text-align: left;
  transition: 0.5s;
  white-space: normal;
  height: auto;
  justify-content: flex-start;
  max-height: 100%;
}
.headerNavigation nav ul li ul li a:hover {
  color: var(--blue-accent---0062d9);
}
.headerNavigation nav ul li:hover ul {
  display: block;
}
.headerNavigation nav ul li a {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 1;
  color: var(--text-black-191919);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 10px;
  text-align: center;
  background: var(--grey---efefef);
  border-right: 1px solid var(--grey---dddddd);
  transition: 0.5s;
  box-sizing: border-box;
  white-space: nowrap;
  height: 51px;
  max-height: 51px;
}
.headerNavigation nav ul li a.parent {
  display: flex;
  align-items: center;
  justify-content: center;
}
.headerNavigation nav ul li a.parent svg {
  margin-left: 0px;
}
.headerNavigation nav ul li a:hover {
  color: var(--blue-accent---0062d9);
}
.headerNavigation nav ul li a span.text {
  display: none;
}
@media (min-width: 1280px) {
  .headerNavigation nav ul li a {
    padding: 15px 15px;
    font-size: 16px;
  }
}
@media (min-width: 1600px) {
  .headerNavigation nav ul li a {
    padding: 18px 15px;
  }
  .headerNavigation nav ul li a span.text {
    display: block;
  }
}
@media (min-width: 1920px) {
  .headerNavigation nav ul li a {
    padding: 18px 30px;
  }
}

.favorit-link,
.linkCart {
  position: relative;
  align-items: center;
  display: flex !important;
}
.favorit-link .link-icon,
.linkCart .link-icon {
  position: relative;
}
.favorit-link .link-icon .msfavorites-total,
.favorit-link .link-icon .ms2_total_count,
.linkCart .link-icon .msfavorites-total,
.linkCart .link-icon .ms2_total_count {
  position: absolute;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 10px;
  line-height: 1;
  color: var(--white----ffffff);
  background: var(--red-accent---cc3333);
  border-radius: 10px;
  padding: 0;
  width: 14px;
  height: 14px;
  box-sizing: border-box;
  top: -2px;
  left: -2px;
}

.link-auth {
  display: flex !important;
}
.link-auth svg {
  margin-right: 8px;
}

.cfcity_list li a {
  transition: 0.5s;
}
.cfcity_list li a:hover {
  color: var(--text-black-191919);
}

/*breadcrumb*/
.breadcrumb {
  justify-content: flex-start;
  flex-wrap: wrap;
  margin: 0 0 40px;
}
.breadcrumb li {
  margin: 0 10px 0 0;
  position: relative;
}
.breadcrumb li a, .breadcrumb li > span, .breadcrumb li:before {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 129%;
  color: var(--text-grey-424242);
}
.breadcrumb li:before {
  content: "/";
  position: absolute;
  right: -7px;
  top: 1px;
}
.breadcrumb li:last-child:before {
  display: none;
}
.breadcrumb li a {
  transition: 0.5s;
}
.breadcrumb li a:hover {
  color: var(--blue-accent---0062d9);
}

/*footer*/
.footerTop {
  padding-top: 20px;
  padding-bottom: 20px;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footerTop--logo {
  max-width: 150px;
}
.footerTop--logo img {
  max-width: 100%;
}
@media (min-width: 993px) {
  .footerTop--logo {
    max-width: 15%;
  }
}
@media (min-width: 1600px) {
  .footerTop--logo {
    max-width: 18%;
  }
}

.footerTop--location,
.footerTop--mail {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 112%;
  color: var(--white----ffffff);
  justify-content: flex-start;
  margin: 0 0 12px;
  display: none;
}
.footerTop--location:last-child,
.footerTop--mail:last-child {
  margin: 0;
}
@media (min-width: 1600px) {
  .footerTop--location:last-child,
.footerTop--mail:last-child {
    margin: 0;
  }
}
@media (min-width: 993px) {
  .footerTop--location,
.footerTop--mail {
    display: flex;
  }
}
@media (min-width: 1600px) {
  .footerTop--location,
.footerTop--mail {
    font-size: 16px;
    margin: 0;
    max-width: 50%;
  }
}
@media (min-width: 1700px) {
  .footerTop--location,
.footerTop--mail {
    font-size: 16px;
    margin: 0;
    max-width: 100%;
  }
}

.footerTop--address {
  display: block;
  align-items: center;
  width: 100%;
  max-width: 25%;
  display: none;
}
@media (min-width: 993px) {
  .footerTop--address {
    display: block;
  }
}
@media (min-width: 1600px) {
  .footerTop--address {
    display: flex;
    justify-content: space-between;
    max-width: 38%;
  }
}
@media (min-width: 1700px) {
  .footerTop--address {
    max-width: 42%;
  }
}
@media (min-width: 1920px) {
  .footerTop--address {
    max-width: 37.5%;
  }
}

.footerTop--mail .icon,
.footerTop--location .icon {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 64px;
  width: 44px;
  height: 44px;
  min-width: 44px;
  margin-right: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footerTop--phone a {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 14px;
  line-height: 111%;
  color: var(--white----ffffff);
}
@media (min-width: 1600px) {
  .footerTop--phone a {
    font-size: 18px;
  }
}

.footerTop .btn {
  display: none;
}
@media (min-width: 993px) {
  .footerTop .btn {
    display: block;
  }
}

.footerTop--schedule {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 114%;
  color: var(--white----ffffff);
  display: none;
}
@media (min-width: 993px) {
  .footerTop--schedule {
    display: block;
  }
}

.footerCenter {
  padding-top: 30px;
  padding-bottom: 30px;
  flex-wrap: wrap;
}
@media (min-width: 681px) {
  .footerCenter {
    align-items: flex-start;
    justify-content: space-between;
  }
}

.footerCenter--menu {
  width: 100%;
  max-width: 19%;
  display: none;
}
@media (min-width: 993px) {
  .footerCenter--menu {
    display: block;
  }
}
@media (min-width: 1365px) {
  .footerCenter--menu {
    max-width: 16%;
  }
}
.footerCenter--menu .h4_title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 18px;
  line-height: 111%;
  letter-spacing: -0.01em;
  color: var(--white----ffffff);
  display: block;
  margin: 0 0 15px;
}
.footerCenter--menu ul li {
  margin: 0 0 8px;
}
.footerCenter--menu ul li a {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 112%;
  letter-spacing: -0.01em;
  color: var(--white----ffffff);
}
@media (min-width: 1365px) {
  .footerCenter--menu ul li a {
    font-size: 16px;
  }
}
.footerCenter--menu ul li a:hover {
  color: #c8c8c8;
}
.footerCenter--menu ul li a:hover span.solid {
  border-bottom: 1px solid #c8c8c8;
}
.footerCenter--menu ul li a span.solid {
  border-bottom: 1px solid transparent;
}
.footerCenter--menu:first-child {
  max-width: 19%;
}
@media (min-width: 1365px) {
  .footerCenter--menu:first-child {
    max-width: 16%;
  }
}
@media (min-width: 1450px) {
  .footerCenter--menu:first-child {
    max-width: 23%;
  }
}
@media (min-width: 1450px) {
  .footerCenter--menu:first-child ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
.footerCenter--menu:first-child ul li {
  width: 100%;
}
@media (min-width: 1450px) {
  .footerCenter--menu:first-child ul li {
    max-width: 49%;
  }
}

.footerCenter--btn {
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 0 0 15px;
}
@media (min-width: 681px) {
  .footerCenter--btn {
    max-width: 54%;
    justify-content: space-between;
    margin: 0px;
  }
}
@media (min-width: 768px) {
  .footerCenter--btn {
    max-width: 48%;
  }
}
@media (min-width: 993px) {
  .footerCenter--btn {
    display: block;
    max-width: 19%;
  }
}
@media (min-width: 1365px) {
  .footerCenter--btn {
    max-width: 15%;
  }
}
.footerCenter--btn a {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 112%;
  color: var(--white----ffffff);
  justify-content: flex-start;
}
.footerCenter--btn a:nth-child(2) {
  margin: 0 12px;
}
@media (min-width: 681px) {
  .footerCenter--btn a:nth-child(2) {
    margin: 0 0 12px;
  }
}
.footerCenter--btn a:hover {
  color: #c8c8c8;
}
.footerCenter--btn a:hover span.solid {
  border-bottom: 1px solid #c8c8c8;
}
.footerCenter--btn a span.solid {
  border-bottom: 1px solid transparent;
  transition: 0.5s;
}
@media (min-width: 681px) {
  .footerCenter--btn a {
    margin: 0 0 12px;
  }
}
@media (min-width: 1365px) {
  .footerCenter--btn a {
    font-size: 16px;
  }
}
.footerCenter--btn a svg {
  margin: 0 5px 0 0;
}

.footerCenter--social {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 681px) {
  .footerCenter--social {
    max-width: 269px;
    justify-content: space-between;
  }
}
@media (min-width: 993px) {
  .footerCenter--social {
    display: block;
    max-width: 150px;
  }
}
.footerCenter--social a {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 1;
  color: var(--white----ffffff);
  justify-content: flex-end;
  margin: 0px 12px;
}
@media (min-width: 681px) {
  .footerCenter--social a {
    margin: 0 0 12px;
  }
}
@media (min-width: 1365px) {
  .footerCenter--social a {
    font-size: 16px;
  }
}
.footerCenter--social a svg {
  margin: 0 8px 0 0;
  width: 24px;
  height: 24px;
}

.footerCopir {
  padding-top: 20px;
  padding-bottom: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: block;
}
@media (min-width: 769px) {
  .footerCopir {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }
}
.footerCopir .footerCopir--text {
  width: 100%;
  margin: 0 0 12px;
}
@media (min-width: 681px) {
  .footerCopir .footerCopir--text {
    max-width: 60%;
    margin: 0px;
  }
}
.footerCopir .footerCopir--text p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 114%;
  letter-spacing: -0.01em;
  color: var(--grey---dddddd);
  margin: 0px;
}
.footerCopir .footerCopir--link {
  text-align: right;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media (min-width: 681px) {
  .footerCopir .footerCopir--link {
    display: block;
  }
}
.footerCopir .footerCopir--link a {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 114%;
  letter-spacing: -0.01em;
  text-align: right;
  color: var(--grey---dddddd);
}

/*index*/
.swiper-pagination-bullet {
  width: 12px !important;
  height: 12px !important;
  margin: 0px 6px !important;
}
.swiper-pagination-bullet:hover {
  cursor: pointer;
}

.blockTitle {
  justify-content: space-between;
  margin-bottom: 20px;
}
.blockTitle .h3_title {
  margin: 0px;
}
.blockTitle .swiperNavigation {
  justify-content: flex-end;
  display: none;
}
@media (min-width: 480px) {
  .blockTitle .swiperNavigation {
    display: flex;
  }
}
.blockTitle .swiperNavigation .btn-prev {
  width: 40px;
  height: 40px;
  border: 1px solid var(--grey---dddddd);
  border-radius: 12px 0 0 12px;
  justify-content: center;
  position: relative;
  left: 0px;
  right: 0px;
  margin: 0px;
}
.blockTitle .swiperNavigation .btn-prev svg {
  width: 24px;
  height: 24px;
  fill: none;
}
.blockTitle .swiperNavigation .btn-next {
  width: 40px;
  height: 40px;
  justify-content: center;
  border: 1px solid var(--grey---dddddd);
  border-radius: 0 12px 12px 0;
  position: relative;
  left: 0px;
  right: 0px;
  margin: 0px;
}
.blockTitle .swiperNavigation .btn-next svg {
  width: 24px;
  height: 24px;
  fill: none;
}

.swiper-pagination {
  display: block;
  position: relative !important;
  padding-top: 35px;
}
@media (min-width: 480px) {
  .swiper-pagination {
    display: none;
  }
}

.sectionMainSlider {
  display: block;
  margin: 15px 0 60px;
  max-width: 100%;
}
@media (min-width: 1336px) {
  .sectionMainSlider {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    align-items: stretch;
  }
}
.sectionMainSlider .mainSlider {
  grid-column: span 3;
  position: relative;
  z-index: 3;
}
.sectionMainSlider .mainSlider .swiper {
  border-radius: 16px;
}
.sectionMainSlider .mainSlider .swiper-pagination {
  z-index: 3;
}
.sectionMainSlider .mainSlider .elemSlide {
  position: relative;
  background: #e9f3ff;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  min-height: 321px;
  padding: 150px 30px 30px;
  box-sizing: border-box;
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (min-width: 580px) {
  .sectionMainSlider .mainSlider .elemSlide {
    padding-top: 0px;
    background-position: right center;
  }
}
.sectionMainSlider .mainSlider .elemSlide img {
  width: 100%;
  max-width: 100%;
  opacity: 0;
  display: none;
}
.sectionMainSlider .mainSlider .elemSlide .mainSlider--info {
  position: relative;
}
@media (min-width: 580px) {
  .sectionMainSlider .mainSlider .elemSlide .mainSlider--info {
    position: absolute;
    top: 50px;
    left: 60px;
    width: 100%;
    max-width: 40%;
  }
}
@media (min-width: 769px) {
  .sectionMainSlider .mainSlider .elemSlide .mainSlider--info {
    max-width: 28%;
  }
}
.sectionMainSlider .mainSlider .elemSlide .mainSlider--info .title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 32px;
  line-height: 125%;
  letter-spacing: -0.01em;
  color: var(--text-black-191919);
}
.sectionMainSlider .mainSlider .elemSlide .mainSlider--info p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  color: var(--text-grey-424242);
}
.sectionMainSlider .mainSliderAdvert {
  grid-column: span 1;
  background: url("../imgs/advert-bg.png") 0 0 no-repeat;
  background-size: cover;
  padding: 12px 20px 30px;
  box-sizing: border-box;
  border-radius: 20px;
  display: none;
}
@media (min-width: 1336px) {
  .sectionMainSlider .mainSliderAdvert {
    max-height: 321px;
    min-height: 321px;
    display: block;
  }
}
.sectionMainSlider .mainSliderAdvert img {
  margin: 0px auto 15px;
  display: block;
  max-height: 150px;
}
@media (min-width: 1600px) {
  .sectionMainSlider .mainSliderAdvert img {
    max-height: 100%;
  }
}
.sectionMainSlider .mainSliderAdvert .mainSliderAdvert--info .title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 18px;
  line-height: 100%;
  text-align: center;
  color: var(--white----ffffff);
}
@media (min-width: 1600px) {
  .sectionMainSlider .mainSliderAdvert .mainSliderAdvert--info .title {
    font-size: 24px;
  }
}
.sectionMainSlider .mainSliderAdvert .mainSliderAdvert--info p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 112%;
  text-align: center;
  color: var(--white----ffffff);
}
@media (min-width: 1600px) {
  .sectionMainSlider .mainSliderAdvert .mainSliderAdvert--info p {
    font-size: 16px;
  }
}

.mainCatalog {
  margin-bottom: 60px;
}
.mainCatalog .mainCatalogGrid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 10px;
  align-items: stretch;
}
@media (min-width: 580px) {
  .mainCatalog .mainCatalogGrid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 768px) {
  .mainCatalog .mainCatalogGrid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1336px) {
  .mainCatalog .mainCatalogGrid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.mainCatalog .mainCatalogGrid .mainCatalogGrid--elem {
  border: 1px solid var(--grey---dddddd);
  border-radius: 12px;
  padding: 12px;
  transition: 0.5s;
  background: #fff;
}
.mainCatalog .mainCatalogGrid .mainCatalogGrid--elem:hover {
  box-shadow: 0 35px 42px -16px rgba(0, 0, 0, 0.15);
}
.mainCatalog .mainCatalogGrid .mainCatalogGrid--elem img {
  max-width: 100%;
  margin: 0 auto 12px;
  display: block;
}
.mainCatalog .mainCatalogGrid .mainCatalogGrid--elem .title {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 24px;
  line-height: 117%;
  color: var(--text-black-191919);
  margin: 0 0 5px;
  display: inline-block;
  transition: 0.5s;
}
.mainCatalog .mainCatalogGrid .mainCatalogGrid--elem .title:hover {
  color: var(--blue-accent---0062d9);
}
.mainCatalog .mainCatalogGrid .mainCatalogGrid--elem a.more {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 129%;
  color: var(--blue-accent---0062d9);
}
.mainCatalog .mainCatalogGrid .mainCatalogGrid--elem ul {
  padding-left: 18px;
  margin: 0 0 5px;
}
.mainCatalog .mainCatalogGrid .mainCatalogGrid--elem ul li {
  list-style: disc;
}
.mainCatalog .mainCatalogGrid .mainCatalogGrid--elem ul li a {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 129%;
  color: var(--text-grey-424242);
  transition: 0.5s;
}
.mainCatalog .mainCatalogGrid .mainCatalogGrid--elem ul li a:hover {
  color: var(--blue-accent---0062d9);
}

.mainServices {
  background: var(--grey---efefef);
  padding: 60px 0;
  margin-bottom: 60px;
}
.mainServices .mainServices--list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: stretch;
  gap: 10px;
}
@media (min-width: 769px) {
  .mainServices .mainServices--list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1365px) {
  .mainServices .mainServices--list {
    grid-template-columns: repeat(6, 1fr);
  }
}
.mainServices .mainServices--list .mainServices--elem {
  border-radius: 16px;
  padding: 33px 12px;
  background: #fff;
}
.mainServices .mainServices--list .mainServices--elem:hover {
  box-shadow: 0 35px 42px -16px rgba(0, 0, 0, 0.15);
}
.mainServices .mainServices--list .mainServices--elem img {
  display: block;
  margin: 0 auto 12px;
}
.mainServices .mainServices--list .mainServices--elem span {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 117%;
  color: var(--text-black-191919);
  display: block;
  text-align: center;
}
@media (min-width: 769px) {
  .mainServices .mainServices--list .mainServices--elem span {
    font-size: 24px;
  }
}

.mainBrends {
  margin: 0 0 60px;
}
.mainBrends .sliderBrends {
  position: relative;
}
.mainBrends .sliderBrends .swiper-slide img {
  max-width: 100%;
}

.mainSpecialProducts {
  margin: 0 0 60px;
}

.sliderProducts {
  position: relative;
}

.elemProduct {
  padding: 15px;
  border: 1px solid var(--grey---dddddd);
  border-radius: 24px;
  box-sizing: border-box;
  background: #fff;
}
.elemProduct form {
  position: relative;
}
.elemProduct form .msfavorites {
  position: absolute;
  border: 1px solid var(--grey---dddddd);
  border-radius: 64px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  right: 0px;
  top: 0px;
  z-index: 2;
}
.elemProduct form .msfavorites svg path {
  transition: 0.5s;
}
.elemProduct form .msfavorites:hover, .elemProduct form .msfavorites.voted {
  cursor: pointer;
}
.elemProduct form .msfavorites:hover svg path, .elemProduct form .msfavorites.voted svg path {
  fill: #0062D9;
}
.elemProduct form .quickview {
  display: none;
}
.elemProduct form .elemProduct--image {
  position: relative;
  width: 100%;
  max-width: 232px;
  height: 232px;
  margin: 0 auto 25px;
}
.elemProduct form .elemProduct--image a {
  display: block;
}
.elemProduct form .elemProduct--image img {
  width: 100%;
  height: auto;
  max-width: 100%;
}
.elemProduct form .elemProduct--image .stickers {
  display: none;
}
.elemProduct form .elemProduct--title {
  position: relative;
  margin: 0 0 10px;
}
.elemProduct form .elemProduct--title a {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 111%;
  color: var(--text-black-191919);
}
@media (min-width: 768px) {
  .elemProduct form .elemProduct--title a {
    font-size: 18px;
  }
}
.elemProduct form .elemProduct--title .product-info-btn {
  display: none;
}
.elemProduct form .elemProduct--vendor {
  justify-content: space-between;
  margin: 0 0 15px;
}
.elemProduct form .elemProduct--vendor span {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  line-height: 112%;
  color: var(--text-black-191919);
}
.elemProduct form .elemProduct--vendor img {
  width: 100%;
  max-width: 170px;
  max-width: 45%;
  height: auto;
}
.elemProduct form .elemProduct--price {
  justify-content: space-between;
  flex-wrap: wrap;
}
.elemProduct form .elemProduct--price .priceWrap {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 12px;
}
.elemProduct form .elemProduct--price .price {
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 16px;
  line-height: 112%;
  color: var(--text-black-191919);
  white-space: nowrap;
  width: 100%;
  margin: 0 10px 12px 0;
}
@media (min-width: 1281px) {
  .elemProduct form .elemProduct--price .price {
    width: auto;
    margin: 0 8px 0 0;
  }
}
.elemProduct form .elemProduct--price .oldPrice {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 112%;
  color: #c6c6c6;
  text-decoration: line-through;
  display: flex;
  margin: 0 0 12px;
}
.elemProduct form .elemProduct--price .oldPrice span {
  display: block;
  white-space: nowrap;
}
@media (min-width: 1281px) {
  .elemProduct form .elemProduct--price .oldPrice {
    margin: 0;
  }
}
.elemProduct form .elemProduct--price .priceBtnWrap {
  width: 100%;
  justify-content: flex-end;
  justify-content: space-between;
}
.elemProduct form .elemProduct--price .one_click {
  max-width: 60%;
  font-weight: 400;
  font-size: 16px;
  padding: 17px 0;
  min-width: 150px;
  max-width: 160px;
}
.elemProduct form .elemProduct--price .btnCart {
  border-radius: 64px;
  padding: 14px 0;
  width: 100%;
  max-width: 72px;
  min-width: 72px;
  background: var(--red-accent---cc3333);
  justify-content: center;
  margin: 0px 0px 0px 8px;
  border: 1px solid var(--red-accent---cc3333);
  box-sizing: border-box;
  transition: 0.5s;
}
.elemProduct form .elemProduct--price .btnCart:hover {
  background: #ed0202;
  cursor: pointer;
}
.elemProduct form .elemProduct--description {
  display: none;
}

.mainOwnProduction {
  margin: 0 0 60px;
}
.mainOwnProduction .elemOwnProd:hover .elemOwnProd--image {
  box-shadow: 0 35px 42px -16px rgba(0, 0, 0, 0.15);
}
.mainOwnProduction .elemOwnProd .elemOwnProd--image {
  border: 1px solid var(--grey---dddddd);
  border-radius: 12px;
  padding: 12px 0;
  margin: 0 0 12px;
  transition: 0.5s;
  background: var(--white----ffffff);
}
.mainOwnProduction .elemOwnProd .elemOwnProd--image img {
  width: 100%;
  max-width: 232px;
  margin: 0px auto;
  display: block;
}
.mainOwnProduction .elemOwnProd .elemOwnProd--title {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 111%;
  color: var(--text-black-191919);
}

.mainAboutCompany {
  margin: 0 0 60px;
}
.mainAboutCompany .mainAboutCompany--wrap {
  display: block;
  background: var(--grey---efefef);
  border-radius: 24px;
  padding: 10px;
}
@media (min-width: 993px) {
  .mainAboutCompany .mainAboutCompany--wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
}
.mainAboutCompany .mainAboutCompany--wrap p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  color: var(--text-grey-424242);
  margin: 0 0 25px;
}
.mainAboutCompany .mainAboutCompany--wrap .left-block {
  grid-column: 1;
  backdrop-filter: blur(75px);
  background: rgba(255, 255, 255, 0.75);
  border-radius: 24px;
  padding: 25px;
  box-sizing: border-box;
  margin-bottom: 10px;
}
@media (min-width: 993px) {
  .mainAboutCompany .mainAboutCompany--wrap .left-block {
    margin-bottom: 0px;
  }
}
.mainAboutCompany .mainAboutCompany--wrap .left-block .h3_title {
  margin: 0 0 25px;
}
.mainAboutCompany .mainAboutCompany--wrap .left-block a.btn.blue {
  max-width: 250px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 112%;
  letter-spacing: -0.01em;
  color: var(--blue-accent---0062d9);
}
.mainAboutCompany .mainAboutCompany--wrap .right-block {
  display: block;
}
@media (min-width: 581px) {
  .mainAboutCompany .mainAboutCompany--wrap .right-block {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}
.mainAboutCompany .mainAboutCompany--wrap .grid-item {
  backdrop-filter: blur(75px);
  background: rgba(255, 255, 255, 0.75);
  padding: 24px;
  box-sizing: border-box;
  min-height: 170px;
  margin: 0 0 10px;
}
.mainAboutCompany .mainAboutCompany--wrap .grid-item:last-child {
  margin: 0px;
}
@media (min-width: 581px) {
  .mainAboutCompany .mainAboutCompany--wrap .grid-item {
    margin: 0px;
  }
}
.mainAboutCompany .mainAboutCompany--wrap .grid-item b {
  font-family: var(--font-family);
  font-weight: 900;
  font-size: 54px;
  line-height: 100%;
  letter-spacing: -0.01em;
  color: #0061d9;
  display: block;
  margin: 0 0 8px;
}
.mainAboutCompany .mainAboutCompany--wrap .grid-item p {
  margin: 0px;
}
.mainAboutCompany .mainAboutCompany--wrap .grid-item:last-child {
  background: var(--blue-accent---0062d9);
  border-radius: 16px;
  padding: 24px;
}
.mainAboutCompany .mainAboutCompany--wrap .grid-item:last-child b {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 24px;
  line-height: 117%;
  color: var(--white----ffffff);
}
.mainAboutCompany .mainAboutCompany--wrap .grid-item:last-child p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  color: var(--white----ffffff);
  margin: 0 0 5px;
}
.mainAboutCompany .mainAboutCompany--wrap .grid-item:last-child a {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  color: var(--white----ffffff);
}

.mainSertificates {
  margin: 0 0 60px;
}
.mainSertificates .sliderSertificates {
  position: relative;
}
.mainSertificates .sliderSertificates .swiper-slide {
  border: 1px solid var(--grey---dddddd);
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 10px;
  box-sizing: border-box;
}
.mainSertificates .sliderSertificates .swiper-slide img {
  max-width: 100%;
}

.mainSolveTasks {
  margin: 0 0 75px;
}
.mainSolveTasks .tabs-container {
  margin-bottom: 30px;
}
.mainSolveTasks .tabs {
  display: flex;
  cursor: pointer;
  margin-bottom: 10px;
  overflow-x: auto;
  /* Включить горизонтальную прокрутку при необходимости */
  -webkit-overflow-scrolling: touch;
  /* Для плавной прокрутки на мобильных устройствах */
  scrollbar-width: none;
  /* Для скрытия полосы прокрутки в Firefox */
  width: 100%;
  max-width: 780px;
}
@media (min-width: 581px) {
  .mainSolveTasks .tabs {
    flex-wrap: wrap;
  }
}
.mainSolveTasks .tab {
  border: 1px solid var(--grey---dddddd);
  background: var(--grey---efefef);
  border-radius: 32px;
  padding: 8px 16px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 112%;
  color: var(--text-grey-686868);
  margin: 0 8px 8px 0;
  transition: 0.5s;
  white-space: nowrap;
}
.mainSolveTasks .tab.active {
  border: 1px solid var(--blue-accent---0062d9);
  color: var(--blue-accent---0062d9);
  background: #fff;
}
.mainSolveTasks .tab-contents {
  width: 100%;
  max-width: 780px;
}
.mainSolveTasks .tab-content {
  display: none;
}
.mainSolveTasks .tab-content .flex {
  display: block;
}
@media (min-width: 581px) {
  .mainSolveTasks .tab-content .flex {
    flex-wrap: wrap;
    justify-content: space-between;
    display: flex;
  }
}
.mainSolveTasks .tab-content .flex .flex-el {
  width: 100%;
  display: flex;
  align-items: flex-start;
  margin: 0 0 30px;
}
@media (min-width: 581px) {
  .mainSolveTasks .tab-content .flex .flex-el {
    max-width: 49%;
  }
}
.mainSolveTasks .tab-content .flex .flex-el .icon {
  background: rgba(51, 51, 153, 0.1);
  border-radius: 12px;
  width: 40px;
  height: 40px;
  margin: 0 12px 0 0;
}
.mainSolveTasks .tab-content .flex .flex-el p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  color: var(--text-grey-424242);
  margin: 0px;
}
.mainSolveTasks .tab-content.active {
  display: flex;
  flex-wrap: wrap;
}
.mainSolveTasks a.btn.red {
  max-width: 195px;
}

.testingEquipment {
  margin: 0 0 60px;
}
.testingEquipment .testingEquipmentSlider {
  position: relative;
}
.testingEquipment .testingEquipmentSlider .swiper-slide {
  padding: 60px 75px 165px;
  background-color: var(--blue-accent---0062d9);
  background-position: right bottom;
  background-repeat: no-repeat;
  box-sizing: border-box;
}
@media (max-width: 992px) {
  .testingEquipment .testingEquipmentSlider .swiper-slide {
    background-image: none !important;
    padding: 0px 0px 125px;
  }
}
.testingEquipment .testingEquipmentSlider .swiper-slide img {
  display: block;
  width: 100%;
  max-width: 100%;
}
@media (min-width: 993px) {
  .testingEquipment .testingEquipmentSlider .swiper-slide img {
    display: none;
  }
}
.testingEquipment .testingEquipmentSlider .swiper-slide .slide-text {
  width: 100%;
  padding: 30px 30px 0;
  box-sizing: border-box;
}
@media (min-width: 993px) {
  .testingEquipment .testingEquipmentSlider .swiper-slide .slide-text {
    max-width: 45%;
    padding: 0px;
  }
}
.testingEquipment .testingEquipmentSlider .swiper-slide .slide-text .h3_title {
  color: var(--white----ffffff);
  margin: 0 0 20px;
}
.testingEquipment .testingEquipmentSlider .swiper-slide .slide-text p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  color: var(--white----ffffff);
}
.testingEquipment .testingEquipmentSlider .blockTitle {
  position: absolute;
  left: 30px;
  bottom: 35px;
  z-index: 10;
  color: #fff;
  width: 100%;
  max-width: 80px;
  height: 44px;
}
@media (min-width: 993px) {
  .testingEquipment .testingEquipmentSlider .blockTitle {
    left: 75px;
    bottom: 60px;
  }
}
.testingEquipment .testingEquipmentSlider .blockTitle .swiperNavigation {
  display: flex !important;
}
.testingEquipment .testingEquipmentSlider .blockTitle .swiper-button-prev,
.testingEquipment .testingEquipmentSlider .blockTitle .swiper-button-next {
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.reviewsBlock {
  /*margin:0 0 60px;*/
}
.reviewsBlock .reviewsSlider .swiper-pagination {
  padding: 0px;
  margin-bottom: 40px;
}

/*filter*/
.sectionFilter .filterItem {
  box-shadow: 0 1px 27px -5px rgba(0, 0, 0, 0.1);
  background: var(--white----ffffff);
  border: 1px solid var(--grey---dddddd);
  overflow: hidden;
  border-radius: 12px;
  width: 100%;
  max-width: 374px;
  margin: 0 0 10px;
}
.sectionFilter .filterItem .filterItem--Title {
  background: var(--grey---efefef);
  padding: 16px;
  font-size: 20px;
  line-height: 100%;
  color: var(--text-black-191919);
  justify-content: space-between;
}
.sectionFilter .filterItem .filterItemWrap {
  height: 0px;
  overflow: hidden;
  padding: 0;
}
.sectionFilter .filterItem .filterItemWrap .filterItemWrapScroll {
  max-height: 150px;
  overflow-y: auto;
  padding: 0px 16px;
  margin: 0 0 24px;
  position: relative;
}
.sectionFilter .filterItem .filterItemWrap .filterItemWrapScroll .label {
  position: relative;
  line-height: 112%;
  color: var(--text-black-191919);
  margin: 0 0 10px;
  justify-content: flex-start;
  cursor: pointer;
}
.sectionFilter .filterItem .filterItemWrap .filterItemWrapScroll .label .psevdo-check {
  width: 24px;
  height: 24px;
  border: 1px solid var(--grey---dddddd);
  border-radius: 2px;
  margin: 0 4px 0 0;
}
.sectionFilter .filterItem .filterItemWrap .filterItemWrapScroll .label .psevdo-check svg {
  opacity: 0;
}
.sectionFilter .filterItem .filterItemWrap .filterItemWrapScroll [type=checkbox] {
  position: absolute;
  left: -9999px;
}
.sectionFilter .filterItem .filterItemWrap .filterItemWrapScroll [type=checkbox]:checked + label .psevdo-check {
  background: var(--blue-accent---0062d9);
  border: 1px solid var(--blue-accent---0062d9);
}
.sectionFilter .filterItem .filterItemWrap .filterItemWrapScroll [type=checkbox]:checked + label .psevdo-check svg {
  opacity: 1;
}
.sectionFilter .filterItem .filterItemWrap .filterItemWrapScroll .mse2_number_inputs {
  justify-content: space-between;
}
.sectionFilter .filterItem .filterItemWrap .filterItemWrapScroll .mse2_number_inputs .flex {
  line-height: 112%;
  color: var(--text-grey-424242);
  margin-right: 20px;
}
.sectionFilter .filterItem .filterItemWrap .filterItemWrapScroll .mse2_number_inputs .flex:last-child {
  margin-right: 0px;
}
.sectionFilter .filterItem .filterItemWrap .filterItemWrapScroll .mse2_number_inputs .flex input {
  background: var(--grey---efefef);
  border-radius: 16px;
  padding: 11px 12px;
  line-height: 1;
  border: 1px solid var(--grey---efefef);
  max-width: 100px;
  box-sizing: border-box;
  margin-left: 8px;
}
.sectionFilter .filterItem.active .filterItem--Title {
  background: #fff;
}
.sectionFilter .filterItem.active .filterItemWrap {
  height: 100%;
  max-height: 150px;
  padding: 0 0 24px;
}
.sectionFilter .filterItem.active .filterItem--Title svg {
  transform: rotate(180deg);
}

.reset-filters-btn {
  border: 1px solid var(--blue-accent---0062d9);
  border-radius: 64px;
  padding: 16px 32px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-family);
  line-height: 112%;
  letter-spacing: -0.01em;
  color: var(--blue-accent---0062d9);
  background: #fff;
  transition: 0.5s;
}
.reset-filters-btn.hidden {
  display: none;
}
.reset-filters-btn:hover {
  color: #fff;
  background: var(--blue-accent---0062d9);
  cursor: pointer;
}

/*filter*/
.sectionListingProduct--wrapper {
  display: block;
}
@media (min-width: 1199px) {
  .sectionListingProduct--wrapper {
    display: grid;
    grid-template-columns: 1fr 4fr;
    gap: 10px;
  }
}
.sectionListingProduct--wrapper .sectionListingProduct--result .sectionListingProduct--result__product {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 10px;
  margin: 0 0 40px;
}
@media (min-width: 570px) {
  .sectionListingProduct--wrapper .sectionListingProduct--result .sectionListingProduct--result__product {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 850px) {
  .sectionListingProduct--wrapper .sectionListingProduct--result .sectionListingProduct--result__product {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1079px) {
  .sectionListingProduct--wrapper .sectionListingProduct--result .sectionListingProduct--result__product {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1440px) {
  .sectionListingProduct--wrapper .sectionListingProduct--result .sectionListingProduct--result__product {
    grid-template-columns: repeat(3, 1fr);
  }
}
.sectionListingProduct--wrapper .sectionListingProduct--result .sectionListingProduct--result__pagination {
  margin: 0 0 60px;
}
.sectionListingProduct--wrapper .sectionListingProduct--result__sort {
  width: 100%;
  justify-content: space-between;
  margin: 0 0 10px;
}
.sectionListingProduct--wrapper .sectionListingProduct--result__sort #mse2_tpl a {
  border: 1px solid var(--grey---dddddd);
  border-radius: 4px;
  padding: 16px;
  width: 52px;
  height: 52px;
  margin-left: 10px;
  transition: 0.5s;
  box-sizing: border-box;
}
.sectionListingProduct--wrapper .sectionListingProduct--result__sort #mse2_tpl a:first-child {
  margin-left: 0px;
}
.sectionListingProduct--wrapper .sectionListingProduct--result__sort #mse2_tpl a svg path {
  transition: 0.5s;
  stroke: var(--grey---dddddd);
}
.sectionListingProduct--wrapper .sectionListingProduct--result__sort #mse2_tpl a:hover, .sectionListingProduct--wrapper .sectionListingProduct--result__sort #mse2_tpl a.active {
  border-color: var(--blue-accent---0062d9);
}
.sectionListingProduct--wrapper .sectionListingProduct--result__sort #mse2_tpl a:hover svg path, .sectionListingProduct--wrapper .sectionListingProduct--result__sort #mse2_tpl a.active svg path {
  stroke: var(--blue-accent---0062d9);
}
.sectionListingProduct--wrapper .sectionListingProduct--result__sort #mse2_sort .select_down {
  line-height: 112%;
  color: var(--text-black-191919);
  position: relative;
  display: block;
}
@media (min-width: 520px) {
  .sectionListingProduct--wrapper .sectionListingProduct--result__sort #mse2_sort .select_down {
    display: flex;
  }
}
.sectionListingProduct--wrapper .sectionListingProduct--result__sort #mse2_sort .select_down .mse2_sort {
  display: none;
  position: absolute;
  top: 60px;
  width: 92%;
  right: 0px;
  padding: 15px;
  z-index: 12;
  background: #fff;
  border: 1px solid var(--kaskad-light-grey);
  border-radius: 15px;
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  box-shadow: 0 0 10px 0 rgba(35, 32, 29, 0.15);
  background: #fff;
  box-sizing: content-box;
}
.sectionListingProduct--wrapper .sectionListingProduct--result__sort #mse2_sort .select_down .mse2_sort.active {
  display: block;
}
.sectionListingProduct--wrapper .sectionListingProduct--result__sort #mse2_sort .select_down .mse2_sort a {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 214%;
  color: var(--text-grey-424242);
  text-transform: uppercase;
  display: block;
  margin: 0 0 10px;
  transition: 0.5s;
}
.sectionListingProduct--wrapper .sectionListingProduct--result__sort #mse2_sort .select_down .mse2_sort a:last-child {
  margin: 0px;
}
.sectionListingProduct--wrapper .sectionListingProduct--result__sort #mse2_sort .select_down .mse2_sort a.active, .sectionListingProduct--wrapper .sectionListingProduct--result__sort #mse2_sort .select_down .mse2_sort a:hover {
  font-weight: 700;
  color: var(--blue-accent---0062d9);
}
.sectionListingProduct--wrapper .sectionListingProduct--result__sort #mse2_sort .sortSelect {
  background: var(--grey---efefef);
  border-radius: 16px;
  padding: 16px;
  line-height: 112%;
  min-width: 245px;
  justify-content: space-between;
  box-sizing: border-box;
  margin-left: 0px;
}
@media (min-width: 520px) {
  .sectionListingProduct--wrapper .sectionListingProduct--result__sort #mse2_sort .sortSelect {
    margin-left: 20px;
  }
}
@media (min-width: 520px) {
  .sectionListingProduct--wrapper .sectionListingProduct--result__sort {
    align-items: flex-end;
  }
}
.sectionListingProduct--wrapper .sectionListingProduct--result__tags {
  margin: 0 0 10px;
}
.sectionListingProduct--wrapper .sectionListingProduct--result__tags .listSeoPage .tagList {
  justify-content: flex-start;
  flex-wrap: wrap;
  margin: 0 0 20px;
}
.sectionListingProduct--wrapper .sectionListingProduct--result__tags .listSeoPage .tagList li {
  margin: 0px 10px 10px 0;
}
.sectionListingProduct--wrapper .sectionListingProduct--result__tags .listSeoPage .tagList li a {
  border: 1px solid var(--grey---b8b8b8);
  border-radius: 38px;
  padding: 10px 16px;
  box-sizing: border-box;
  line-height: 112%;
  color: var(--text-grey-424242);
  transition: 0.5s;
  display: block;
}
.sectionListingProduct--wrapper .sectionListingProduct--result__tags .listSeoPage .tagList li a:hover {
  color: #fff;
  background: var(--blue-accent---0062d9);
  border-color: var(--blue-accent---0062d9);
}
.sectionListingProduct--wrapper .sectionListingProduct--result__tags .listSeoPage .tagToggle {
  line-height: 125%;
  color: var(--blue-accent---0062d9);
  cursor: pointer;
}
.sectionListingProduct--wrapper .sectionListingProduct--filter .sectionFilter {
  display: none;
}
@media (min-width: 1199px) {
  .sectionListingProduct--wrapper .sectionListingProduct--filter .sectionFilter {
    display: block;
  }
}
.sectionListingProduct--wrapper .sectionListingProduct--filter .mobilTitle {
  display: flex;
  background: var(--grey---efefef);
  border-radius: 16px;
  padding: 16px;
  line-height: 112%;
  min-width: 245px;
  justify-content: space-between;
  box-sizing: border-box;
  margin-left: 0px;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 15px;
}
@media (min-width: 1199px) {
  .sectionListingProduct--wrapper .sectionListingProduct--filter .mobilTitle {
    display: none;
  }
}

/*filter*/
.sectionTextColls {
  align-items: flex-start;
  justify-content: space-between;
}
.sectionTextColls .sectionTextColls--leftColl {
  width: 100%;
  max-width: 100%;
}
@media (min-width: 992px) {
  .sectionTextColls .sectionTextColls--leftColl {
    max-width: 61%;
  }
}
.sectionTextColls .sectionTextColls--leftColl .sectionContent--elem {
  /* Основной уровень: 1, 2, 3... */
}
.sectionTextColls .sectionTextColls--leftColl .sectionContent--elem img {
  width: 100%;
  max-width: 100%;
}
.sectionTextColls .sectionTextColls--leftColl .sectionContent--elem ol {
  counter-reset: item;
  list-style-type: none;
  padding: 0 0 0 10px;
}
.sectionTextColls .sectionTextColls--leftColl .sectionContent--elem ol li {
  margin: 0 0 20px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  color: var(--text-grey-424242);
}
.sectionTextColls .sectionTextColls--leftColl .sectionContent--elem ol li ol {
  margin-top: 12px;
}
.sectionTextColls .sectionTextColls--leftColl .sectionContent--elem ol.main-list > li {
  counter-increment: item;
  position: relative;
  margin: 0 0 20px;
}
.sectionTextColls .sectionTextColls--leftColl .sectionContent--elem ol.main-list > li::before {
  content: counters(item, ".") ".";
  position: absolute;
  left: 0;
  width: 2em;
}
.sectionTextColls .sectionTextColls--leftColl .sectionCompanyAdvantages {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 0 0 30px;
}
@media (min-width: 992px) {
  .sectionTextColls .sectionTextColls--leftColl .sectionCompanyAdvantages {
    grid-template-columns: repeat(3, 1fr);
  }
}
.sectionTextColls .sectionTextColls--leftColl .sectionCompanyAdvantages .sectionCompanyAdvantages--elem {
  background: var(--grey---efefef);
  border-radius: 12px;
  padding: 12px;
}
.sectionTextColls .sectionTextColls--leftColl .sectionCompanyAdvantages .sectionCompanyAdvantages--elem .icon {
  background: var(--blue-accent---0062d9);
  width: 32px;
  height: 32px;
  margin: 0 0 12px;
}
.sectionTextColls .sectionTextColls--leftColl .sectionCompanyAdvantages .sectionCompanyAdvantages--elem span {
  line-height: 125%;
  color: var(--text-grey-424242);
}
.sectionTextColls .sectionTextColls--leftColl p strong {
  font-weight: 700;
  font-size: 18px;
  line-height: 111%;
  color: var(--text-black-191919);
}
.sectionTextColls .sectionTextColls--rightColl {
  width: 100%;
  max-width: 36%;
  display: none;
}
.sectionTextColls .sectionTextColls--rightColl img {
  max-width: 100%;
}
@media (min-width: 992px) {
  .sectionTextColls .sectionTextColls--rightColl {
    display: block;
  }
}

/*filter*/
.sectionVacancyWrap {
  display: block;
  margin: 0 0 30px;
}
@media (min-width: 681px) {
  .sectionVacancyWrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    align-items: flex-start;
  }
}
.sectionVacancyWrap .vacancyElem {
  background: var(--grey---efefef);
  border-radius: 16px;
  padding: 24px 24px 32px;
  box-sizing: border-box;
  margin: 0 0 20px;
}
.sectionVacancyWrap .vacancyElem .vacancyElem--cost {
  font-weight: 700;
  font-size: 16px;
  line-height: 111%;
  color: var(--text-black-191919);
  margin: 0 0 10px;
}
@media (min-width: 768px) {
  .sectionVacancyWrap .vacancyElem .vacancyElem--cost {
    font-size: 18px;
  }
}
.sectionVacancyWrap .vacancyElem .vacancyElem--title {
  font-weight: 400;
  font-size: 18px;
  line-height: 117%;
  color: var(--text-black-191919);
  margin: 0 0 15px;
}
@media (min-width: 768px) {
  .sectionVacancyWrap .vacancyElem .vacancyElem--title {
    font-size: 24px;
  }
}
.sectionVacancyWrap .vacancyElem p {
  margin: 0 0 15px;
}
.sectionVacancyWrap .vacancyElem a {
  color: var(--blue-accent---0062d9);
}

/*filter*/
.sectionTextColls {
  align-items: flex-start;
  justify-content: space-between;
}
.sectionTextColls .sectionTextColls--leftColl {
  width: 100%;
  max-width: 100%;
}
@media (min-width: 992px) {
  .sectionTextColls .sectionTextColls--leftColl {
    max-width: 61%;
  }
}
.sectionTextColls .sectionTextColls--leftColl .sectionContent--elem {
  /* Основной уровень: 1, 2, 3... */
}
.sectionTextColls .sectionTextColls--leftColl .sectionContent--elem img {
  width: 100%;
  max-width: 100%;
}
.sectionTextColls .sectionTextColls--leftColl .sectionContent--elem ol {
  counter-reset: item;
  list-style-type: none;
  padding: 0 0 0 10px;
}
.sectionTextColls .sectionTextColls--leftColl .sectionContent--elem ol li {
  margin: 0 0 20px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  color: var(--text-grey-424242);
}
.sectionTextColls .sectionTextColls--leftColl .sectionContent--elem ol li ol {
  margin-top: 12px;
}
.sectionTextColls .sectionTextColls--leftColl .sectionContent--elem ol.main-list > li {
  counter-increment: item;
  position: relative;
  margin: 0 0 20px;
}
.sectionTextColls .sectionTextColls--leftColl .sectionContent--elem ol.main-list > li::before {
  content: counters(item, ".") ".";
  position: absolute;
  left: 0;
  width: 2em;
}
.sectionTextColls .sectionTextColls--leftColl .sectionCompanyAdvantages {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 0 0 30px;
}
@media (min-width: 992px) {
  .sectionTextColls .sectionTextColls--leftColl .sectionCompanyAdvantages {
    grid-template-columns: repeat(3, 1fr);
  }
}
.sectionTextColls .sectionTextColls--leftColl .sectionCompanyAdvantages .sectionCompanyAdvantages--elem {
  background: var(--grey---efefef);
  border-radius: 12px;
  padding: 12px;
}
.sectionTextColls .sectionTextColls--leftColl .sectionCompanyAdvantages .sectionCompanyAdvantages--elem .icon {
  background: var(--blue-accent---0062d9);
  width: 32px;
  height: 32px;
  margin: 0 0 12px;
}
.sectionTextColls .sectionTextColls--leftColl .sectionCompanyAdvantages .sectionCompanyAdvantages--elem span {
  line-height: 125%;
  color: var(--text-grey-424242);
}
.sectionTextColls .sectionTextColls--leftColl p strong {
  font-weight: 700;
  font-size: 18px;
  line-height: 111%;
  color: var(--text-black-191919);
}
.sectionTextColls .sectionTextColls--rightColl {
  width: 100%;
  max-width: 36%;
  display: none;
}
.sectionTextColls .sectionTextColls--rightColl img {
  max-width: 100%;
}
@media (min-width: 992px) {
  .sectionTextColls .sectionTextColls--rightColl {
    display: block;
  }
}

/*filter*/
.sectionSertificate .sectionSertificateWrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  align-items: stretch;
}
@media (min-width: 581px) {
  .sectionSertificate .sectionSertificateWrap {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 769px) {
  .sectionSertificate .sectionSertificateWrap {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 1281px) {
  .sectionSertificate .sectionSertificateWrap {
    grid-template-columns: repeat(6, 1fr);
  }
}
@media (min-width: 1921px) {
  .sectionSertificate .sectionSertificateWrap {
    grid-template-columns: repeat(7, 1fr);
  }
}
.sectionSertificate .sectionSertificateWrap a {
  display: block;
  margin: 0 0 40px;
}
.sectionSertificate .sectionSertificateWrap a:hover img {
  box-shadow: 0 35px 42px -16px rgba(0, 0, 0, 0.15);
  background: var(--white----ffffff);
}
.sectionSertificate .sectionSertificateWrap a img {
  border: 1px solid var(--grey---dddddd);
  border-radius: 12px;
  overflow: hidden;
  margin: 0 0 5px;
  width: 100%;
  max-width: 100%;
  transition: 0.5s;
}
.sectionSertificate .sectionSertificateWrap a span {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  color: var(--text-grey-424242);
  display: block;
}
.sectionSertificate .reesterList {
  margin: 0 0 40px;
  width: 100%;
  max-width: 768px;
}
.sectionSertificate .reesterList p {
  margin: 0 0 12px;
}
.sectionSertificate .reesterList p a {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  text-decoration: underline;
  text-decoration-skip-ink: none;
  color: var(--blue-accent---0062d9);
  transition: 0.5s;
}
.sectionSertificate .reesterList p a:hover {
  text-decoration: none;
}
.sectionSertificate .licensList {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 0 0 30px;
}

.licensList--elem {
  background: var(--grey---efefef);
  border-radius: 12px;
  padding: 12px 16px;
  justify-content: flex-start;
  border: 1px solid var(--grey---efefef);
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  color: var(--text-grey-424242);
  transition: 0.5s;
}
.licensList--elem svg {
  margin: 0 5px 0 0;
}
.licensList--elem:hover {
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.15);
  background: var(--white----ffffff);
  border: 1px solid var(--grey---dddddd);
}

/*filter*/
.sectionRewievsWrap {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 10px;
  margin: 0 0 40px;
}
@media (min-width: 993px) {
  .sectionRewievsWrap {
    grid-template-columns: repeat(2, 1fr);
  }
}
.sectionRewievsWrap .sectionRewievsWrap--elem .flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media (min-width: 481px) {
  .sectionRewievsWrap .sectionRewievsWrap--elem .flex {
    align-items: flex-start;
    flex-wrap: nowrap;
    justify-content: space-between;
  }
}
.sectionRewievsWrap .sectionRewievsWrap--elem .flex a {
  width: auto;
  margin: 0 0 16px;
}
@media (min-width: 481px) {
  .sectionRewievsWrap .sectionRewievsWrap--elem .flex a {
    width: 100%;
    margin: 0 30px 0 0;
  }
}
.sectionRewievsWrap .sectionRewievsWrap--elem .flex .sectionRewievsWrap--text {
  width: 100%;
  max-width: 100%;
}

.rewievsPagination {
  margin: 0 0 60px;
}

.sectionRewievsWrap--elem {
  background: var(--grey---efefef);
  border-radius: 16px;
  padding: 16px;
  box-sizing: border-box;
  transition: 0.5s;
}
.sectionRewievsWrap--elem:hover {
  box-shadow: 0 35px 42px -16px rgba(0, 0, 0, 0.15);
  background: var(--white----ffffff);
}
.sectionRewievsWrap--elem .flex {
  display: block;
}
@media (min-width: 421px) {
  .sectionRewievsWrap--elem .flex {
    align-items: flex-start;
    display: flex;
  }
}
.sectionRewievsWrap--elem .flex a {
  display: block;
  margin-right: 30px;
  width: 100%;
}
.sectionRewievsWrap--elem .flex a img {
  width: 100%;
  min-width: 165px;
  max-width: 165px;
  display: block;
  margin: 0px auto 12px;
}
@media (min-width: 421px) {
  .sectionRewievsWrap--elem .flex a img {
    margin: 0px;
    min-width: 120px;
    max-width: 120px;
  }
}
@media (min-width: 993px) {
  .sectionRewievsWrap--elem .flex a img {
    min-width: 180px;
    max-width: 180px;
  }
}
@media (min-width: 1281px) {
  .sectionRewievsWrap--elem .flex a img {
    min-width: 243px;
    max-width: 243px;
  }
}
.sectionRewievsWrap--elem .flex .sectionRewievsWrap--text p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  color: var(--text-grey-424242);
  margin: 0 0 12px;
}
.sectionRewievsWrap--elem .flex .sectionRewievsWrap--text b {
  display: block;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 16px;
  line-height: 125%;
  color: var(--text-grey-424242);
}

/*filter*/
.sectionRekvizit {
  margin: 0 0 80px;
}

.sectionRekvizitWrap {
  display: block;
  margin: 0 0 25px;
}
@media (min-width: 993px) {
  .sectionRekvizitWrap {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 10px;
    margin: 0px;
  }
}
@media (min-width: 1560px) {
  .sectionRekvizitWrap {
    gap: 58px;
    grid-template-columns: repeat(2, 1fr);
  }
}
.sectionRekvizitWrap .sectionRekvizitWrap--list dt,
.sectionRekvizitWrap .sectionRekvizitWrap--list dd {
  margin: 0 0 5px;
  max-width: 100%;
}
@media (min-width: 421px) {
  .sectionRekvizitWrap .sectionRekvizitWrap--list dt,
.sectionRekvizitWrap .sectionRekvizitWrap--list dd {
    max-width: 49%;
  }
}
.sectionRekvizitWrap .sectionRekvizitWrap--docs .licensList {
  display: block;
  margin: 0 0 30px;
}
@media (min-width: 1560px) {
  .sectionRekvizitWrap .sectionRekvizitWrap--docs .licensList {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
.sectionRekvizitWrap .sectionRekvizitWrap--docs .licensList .licensList--elem {
  display: inline-flex;
}

/*product*/
.sectionProduct {
  margin: 0 0 60px;
}
.sectionProduct .sectionProductWrap {
  display: block;
}
@media (min-width: 840px) {
  .sectionProduct .sectionProductWrap {
    align-items: flex-start;
    justify-content: space-between;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 0 15px;
  }
}
@media (min-width: 993px) {
  .sectionProduct .sectionProductWrap {
    gap: 0 30px;
  }
}
.sectionProduct .sectionProductWrap .sectionProduct--leftColl {
  width: 100%;
  max-width: 100%;
  grid-column: span 3;
}
.sectionProduct .sectionProductWrap .sectionProduct--leftColl .sectionProduct--topSection {
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.sectionProduct .sectionProductWrap .sectionProduct--leftColl .sectionProduct--topSection .sectionProduct--gallery {
  width: 100%;
  max-width: 100%;
  align-items: flex-start;
  flex-wrap: wrap;
  margin: 0 0 30px;
}
@media (min-width: 581px) {
  .sectionProduct .sectionProductWrap .sectionProduct--leftColl .sectionProduct--topSection .sectionProduct--gallery {
    flex-wrap: nowrap;
  }
}
@media (min-width: 840px) {
  .sectionProduct .sectionProductWrap .sectionProduct--leftColl .sectionProduct--topSection .sectionProduct--gallery {
    flex-wrap: wrap;
  }
}
@media (min-width: 993px) {
  .sectionProduct .sectionProductWrap .sectionProduct--leftColl .sectionProduct--topSection .sectionProduct--gallery {
    max-width: 52%;
    margin: 0px;
  }
}
@media (min-width: 1560px) {
  .sectionProduct .sectionProductWrap .sectionProduct--leftColl .sectionProduct--topSection .sectionProduct--gallery {
    flex-wrap: nowrap;
  }
}
.sectionProduct .sectionProductWrap .sectionProduct--leftColl .sectionProduct--topSection .sectionProduct--gallery .productGallry--thumb {
  display: flex;
  flex-direction: row;
  width: 100%;
  order: 2;
}
@media (min-width: 581px) {
  .sectionProduct .sectionProductWrap .sectionProduct--leftColl .sectionProduct--topSection .sectionProduct--gallery .productGallry--thumb {
    flex-direction: column;
    order: 1;
    width: 95px;
    min-width: 95px;
    height: 100%;
    margin: 0 20px 0 0;
  }
}
@media (min-width: 840px) {
  .sectionProduct .sectionProductWrap .sectionProduct--leftColl .sectionProduct--topSection .sectionProduct--gallery .productGallry--thumb {
    display: flex;
    flex-direction: row;
    width: 100%;
    order: 2;
  }
}
@media (min-width: 1560px) {
  .sectionProduct .sectionProductWrap .sectionProduct--leftColl .sectionProduct--topSection .sectionProduct--gallery .productGallry--thumb {
    flex-direction: column;
    order: 1;
    width: 105px;
    min-width: 107px;
    height: 100%;
    margin: 0 20px 0 0;
  }
}
.sectionProduct .sectionProductWrap .sectionProduct--leftColl .sectionProduct--topSection .sectionProduct--gallery .productGallry--thumb .swiper-wrapper {
  justify-content: flex-start;
}
.sectionProduct .sectionProductWrap .sectionProduct--leftColl .sectionProduct--topSection .sectionProduct--gallery .productGallry--thumb .swiper-slide {
  width: 95px;
  height: 80px !important;
}
@media (min-width: 840px) {
  .sectionProduct .sectionProductWrap .sectionProduct--leftColl .sectionProduct--topSection .sectionProduct--gallery .productGallry--thumb .swiper-slide {
    height: auto !important;
  }
}
@media (min-width: 1560px) {
  .sectionProduct .sectionProductWrap .sectionProduct--leftColl .sectionProduct--topSection .sectionProduct--gallery .productGallry--thumb .swiper-slide {
    width: 105px;
    height: 80px !important;
  }
}
.sectionProduct .sectionProductWrap .sectionProduct--leftColl .sectionProduct--topSection .sectionProduct--gallery .productGallry--thumb .img-wrapper {
  height: 70px;
  border: 1px solid var(--grey---dddddd);
  border-radius: 8px;
  overflow: hidden;
  line-height: 1;
  opacity: 0.7;
}
@media (min-width: 1560px) {
  .sectionProduct .sectionProductWrap .sectionProduct--leftColl .sectionProduct--topSection .sectionProduct--gallery .productGallry--thumb .img-wrapper {
    width: 105px;
    height: 80px;
  }
}
.sectionProduct .sectionProductWrap .sectionProduct--leftColl .sectionProduct--topSection .sectionProduct--gallery .productGallry--thumb .img-wrapper img {
  width: 100%;
  max-width: 100%;
}
.sectionProduct .sectionProductWrap .sectionProduct--leftColl .sectionProduct--topSection .sectionProduct--gallery .productGallry--thumb .swiper-slide-thumb-active .img-wrapper {
  opacity: 1;
}
.sectionProduct .sectionProductWrap .sectionProduct--leftColl .sectionProduct--topSection .productGallery {
  width: 100%;
  order: 1;
  margin: 0 0 10px;
}
@media (min-width: 1560px) {
  .sectionProduct .sectionProductWrap .sectionProduct--leftColl .sectionProduct--topSection .productGallery {
    order: 2;
    margin: 0px;
  }
}
.sectionProduct .sectionProductWrap .sectionProduct--leftColl .sectionProduct--topSection .productGallery .swiper-slide {
  border: 1px solid var(--grey---dddddd);
  border-radius: 12px;
  overflow: hidden;
  line-height: 0;
  box-sizing: border-box;
}
.sectionProduct .sectionProductWrap .sectionProduct--leftColl .sectionProduct--topSection .productGallery .swiper-slide a {
  display: block;
}
.sectionProduct .sectionProductWrap .sectionProduct--leftColl .sectionProduct--topSection .productGallery .swiper-slide a img {
  max-width: 100%;
}
.sectionProduct .sectionProductWrap .sectionProduct--leftColl .sectionProduct--topSection .sectionProduct--info {
  width: 100%;
  max-width: 100%;
}
@media (min-width: 993px) {
  .sectionProduct .sectionProductWrap .sectionProduct--leftColl .sectionProduct--topSection .sectionProduct--info {
    max-width: 46%;
  }
}
.sectionProduct .sectionProductWrap .sectionProduct--leftColl .sectionProduct--topSection .sectionProduct--info .small-info {
  justify-content: flex-start;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--grey---dddddd);
  margin-bottom: 15px;
}
.sectionProduct .sectionProductWrap .sectionProduct--leftColl .sectionProduct--topSection .sectionProduct--info .small-info .article {
  font-size: 13px;
  line-height: 123%;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--text-grey-424242);
  margin-right: 15px;
}
.sectionProduct .sectionProductWrap .sectionProduct--leftColl .sectionProduct--topSection .sectionProduct--info .small-info .msfavorites {
  width: 32px;
  height: 32px;
  margin-right: 15px;
}
.sectionProduct .sectionProductWrap .sectionProduct--leftColl .sectionProduct--topSection .sectionProduct--info .small-info .inStock {
  border-radius: 4px;
  padding: 2px 12px;
  background: #e9f3ff;
  font-size: 16px;
  line-height: 125%;
  color: var(--blue-accent---0062d9);
}
.sectionProduct .sectionProductWrap .sectionProduct--leftColl .sectionProduct--topSection .sectionProduct--info .sectionProduct--vendor img {
  max-height: 26px;
}
.sectionProduct .sectionProductWrap .sectionProduct--leftColl .sectionProduct--topSection .sectionProduct--info .sectionProduct--vendor dl {
  justify-content: flex-start;
}
.sectionProduct .sectionProductWrap .sectionProduct--leftColl .sectionProduct--topSection .sectionProduct--info .sectionProduct--vendor dl dd {
  font-weight: bold;
  margin: 0 2% 0 0;
}
@media (min-width: 993px) {
  .sectionProduct .sectionProductWrap .sectionProduct--leftColl .sectionProduct--topSection .sectionProduct--info .sectionProduct--vendor dl dd {
    max-width: 200px;
  }
}
.sectionProduct .sectionProductWrap .sectionProduct--leftColl .sectionProduct--topSection .sectionProduct--info .sectionProduct--vendor a {
  font-size: 16px;
  line-height: 125%;
  color: var(--blue-accent---0062d9);
}
.sectionProduct .sectionProductWrap .sectionProduct--leftColl .sectionProduct--topSection .sectionProduct--info .sectionIntroProd .introProduct {
  width: 100%;
  max-height: 60px;
  overflow: hidden;
  transition: max-height 0.5s;
  margin: 0 0 12px;
}
.sectionProduct .sectionProductWrap .sectionProduct--leftColl .sectionProduct--topSection .sectionProduct--info .sectionIntroProd .introProduct p {
  font-size: 16px;
  line-height: 125%;
  color: var(--text-grey-424242);
  margin: 0 0 15px;
}
.sectionProduct .sectionProductWrap .sectionProduct--leftColl .sectionProduct--topSection .sectionProduct--info .sectionIntroProd .introProduct.expanded {
  max-height: 1000px;
  /* раскрываем полностью */
}
.sectionProduct .sectionProductWrap .sectionProduct--leftColl .sectionProduct--topSection .sectionProduct--info .sectionIntroProd .js-introProd {
  font-size: 16px;
  line-height: 125%;
  text-decoration-skip-ink: none;
  color: var(--blue-accent---0062d9);
  cursor: pointer;
}
.sectionProduct .sectionProductWrap .sectionProduct--leftColl .sectionProduct--topSection .sectionProduct--info .sectionIntroProd .js-introProd span {
  border-bottom: solid 1px;
  transition: 0.5s;
}
.sectionProduct .sectionProductWrap .sectionProduct--leftColl .sectionProduct--topSection .sectionProduct--info .sectionIntroProd .js-introProd:hover span {
  border-bottom: 1px solid transparent;
}
.sectionProduct .sectionProductWrap .sectionProduct--rightColl {
  width: 100%;
}
@media (min-width: 841px) {
  .sectionProduct .sectionProductWrap .sectionProduct--rightColl {
    max-width: 320px;
    min-width: 320px;
  }
}
@media (min-width: 1366px) {
  .sectionProduct .sectionProductWrap .sectionProduct--rightColl {
    max-width: 350px;
    min-width: 350px;
  }
}
.sectionProduct .sectionProductWrap .sectionProduct--rightColl .sectionProduct--price {
  background: var(--grey---efefef);
  border-radius: 16px;
  padding: 24px 16px;
  box-sizing: border-box;
  margin: 0 0 24px;
}
@media (min-width: 1200px) {
  .sectionProduct .sectionProductWrap .sectionProduct--rightColl .sectionProduct--price {
    padding: 24px;
  }
}
.sectionProduct .sectionProductWrap .sectionProduct--rightColl .sectionProduct--price form {
  max-width: 320px;
  min-width: 320px;
  margin: 0px auto;
}
@media (min-width: 840px) {
  .sectionProduct .sectionProductWrap .sectionProduct--rightColl .sectionProduct--price form {
    max-width: 100%;
    min-width: 100%;
  }
}
.sectionProduct .sectionProductWrap .sectionProduct--rightColl .sectionProduct--price .sectionProduct--variation {
  margin: 0 0 25px;
  position: relative;
}
.sectionProduct .sectionProductWrap .sectionProduct--rightColl .sectionProduct--price .sectionProduct--variation .select__head {
  width: 100%;
  max-width: 100%;
  border: 1px solid var(--grey---dddddd);
  border-radius: 64px;
  padding: 15px 24px;
  font-size: 16px;
  line-height: 112%;
  color: var(--text-black-191919);
  cursor: pointer;
  box-sizing: border-box;
  background: #fff;
  justify-content: space-between;
  position: relative;
}
.sectionProduct .sectionProductWrap .sectionProduct--rightColl .sectionProduct--price .sectionProduct--variation .select__head svg {
  transition: 0.2s ease-in;
}
.sectionProduct .sectionProductWrap .sectionProduct--rightColl .sectionProduct--price .sectionProduct--variation .select__head.open svg {
  transform: rotate(180deg);
}
.sectionProduct .sectionProductWrap .sectionProduct--rightColl .sectionProduct--price .sectionProduct--variation .select__list {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  margin-top: 5px;
  max-height: 205px;
  overflow-x: hidden;
  overflow-y: auto;
  z-index: 100;
  margin: 0;
  padding: 0;
  font-size: 14px;
  color: #424348;
  scrollbar-color: dark;
  scrollbar-width: thin;
  overscroll-behavior: contain;
}
.sectionProduct .sectionProductWrap .sectionProduct--rightColl .sectionProduct--price .sectionProduct--variation .select__list::-webkit-scrollbar {
  width: 7px;
  background-color: #F8F9FA;
  padding: 5px;
}
.sectionProduct .sectionProductWrap .sectionProduct--rightColl .sectionProduct--price .sectionProduct--variation .select__list.open {
  display: block;
}
.sectionProduct .sectionProductWrap .sectionProduct--rightColl .sectionProduct--price .sectionProduct--variation .select__list .select__item {
  padding: 10px 12px;
  font-size: 16px;
  line-height: 112%;
  color: var(--text-black-191919);
  transition: 0.5s;
}
.sectionProduct .sectionProductWrap .sectionProduct--rightColl .sectionProduct--price .sectionProduct--variation .select__list .select__item:hover {
  background: #F8F9FA;
  cursor: pointer;
}
.sectionProduct .sectionProductWrap .sectionProduct--rightColl .sectionProduct--price .textPrice {
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: flex-start;
  margin: 0 0 25px;
}
.sectionProduct .sectionProductWrap .sectionProduct--rightColl .sectionProduct--price .textPrice .price {
  font-weight: 600;
  font-size: 42px;
  line-height: 95%;
  letter-spacing: -0.01em;
  color: var(--text-black-191919);
  margin: 0 20px 8px 0;
}
.sectionProduct .sectionProductWrap .sectionProduct--rightColl .sectionProduct--price .textPrice .old-price {
  font-size: 24px;
  letter-spacing: -0.01em;
  text-decoration: line-through;
  color: var(--text-grey-424242);
  margin: 0 0 8px 0;
}
.sectionProduct .sectionProductWrap .sectionProduct--rightColl .sectionProduct--price .textPrice .cheaper {
  width: 100%;
}
.sectionProduct .sectionProductWrap .sectionProduct--rightColl .sectionProduct--price .textPrice .cheaper a {
  font-size: 16px;
  line-height: 112%;
  letter-spacing: -0.01em;
  color: var(--red-accent---cc3333);
}
.sectionProduct .sectionProductWrap .sectionProduct--rightColl .sectionProduct--price .textPrice .cheaper a span {
  border-bottom: 1px solid transparent;
  transition: 0.5s;
}
.sectionProduct .sectionProductWrap .sectionProduct--rightColl .sectionProduct--price .textPrice .cheaper a:hover span {
  border-bottom: 1px solid var(--red-accent---cc3333);
}
.sectionProduct .sectionProductWrap .sectionProduct--rightColl .sectionProduct--price .addCart {
  align-items: center;
  justify-content: center;
  width: 100%;
  display: flex;
  max-width: 100%;
  margin: 0 0 15px;
}
.sectionProduct .sectionProductWrap .sectionProduct--rightColl .sectionProduct--price .addCart svg {
  margin-left: 5px;
}
.sectionProduct .sectionProductWrap .sectionProduct--rightColl .sectionProduct--price .one_click {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 112%;
  letter-spacing: -0.01em;
  color: var(--red-accent---cc3333);
  border: 1px solid var(--red-accent---cc3333);
  border-radius: 64px;
  max-width: 100%;
  margin: 0 0 15px;
  padding: 18px 0;
}
.sectionProduct .sectionProductWrap .sectionProduct--rightColl .sectionProduct--price .one_click:hover {
  color: white;
  background: var(--red-accent---cc3333);
}
.sectionProduct .sectionProductWrap .sectionProduct--rightColl .sectionProduct--price .btn-check {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 112%;
  letter-spacing: -0.01em;
  color: var(--text-black-191919);
}
.sectionProduct .sectionProductWrap .sectionProduct--rightColl .sectionProduct--price .btn-check span {
  border-bottom: 1px solid transparent;
  transition: 0.5s;
}
.sectionProduct .sectionProductWrap .sectionProduct--rightColl .sectionProduct--price .btn-check svg {
  margin: 0 8px 0 0;
}
.sectionProduct .sectionProductWrap .sectionProduct--rightColl .sectionProduct--price .btn-check:hover span {
  border-bottom: 1px solid var(--text-black-191919);
}
.sectionProduct .sectionProductWrap .sectionProduct--rightColl .righBlockPromo {
  background: var(--grey---efefef);
  border-radius: 12px;
  padding: 12px;
  box-sizing: border-box;
  margin: 0 0 15px;
  justify-content: flex-start;
}
.sectionProduct .sectionProductWrap .sectionProduct--rightColl .righBlockPromo .icon {
  background: var(--blue-accent---0062d9);
  border-radius: 30px;
  width: 32px;
  height: 32px;
  margin: 0 12px 0 0;
  min-width: 32px;
}
.sectionProduct .sectionProductWrap .sectionProduct--rightColl .righBlockPromo p {
  font-size: 16px;
  line-height: 125%;
  color: var(--text-grey-424242);
  margin: 0px;
}
.sectionProduct .sectionProductWrap .sectionProduct--rightColl .righBlockPromo.desc {
  display: none;
}
@media (min-width: 769px) {
  .sectionProduct .sectionProductWrap .sectionProduct--rightColl .righBlockPromo.desc {
    display: flex;
  }
}
.sectionProduct .sectionProductWrap .sectionProduct--rightColl .righBlockPromo.mobil {
  display: flex;
}
@media (min-width: 769px) {
  .sectionProduct .sectionProductWrap .sectionProduct--rightColl .righBlockPromo.mobil {
    display: none;
  }
}
.sectionProduct .sectionProductWrap .sectionProduct--rightColl .productRightForm {
  border-radius: 24px;
  padding: 24px 16px;
  background: var(--blue-accent---0062d9);
  margin: 0 0 24px;
}
@media (min-width: 1200px) {
  .sectionProduct .sectionProductWrap .sectionProduct--rightColl .productRightForm {
    padding: 32px;
  }
}
.sectionProduct .sectionProductWrap .sectionProduct--rightColl .productRightForm .productRightFormWrap {
  max-width: 320px;
  min-width: 320px;
  margin: 0px auto;
}
@media (min-width: 840px) {
  .sectionProduct .sectionProductWrap .sectionProduct--rightColl .productRightForm .productRightFormWrap {
    max-width: 100%;
    min-width: 100%;
  }
}
.sectionProduct .sectionProductWrap .sectionProduct--rightColl .productRightForm .productRightForm--title {
  font-size: 32px;
  letter-spacing: -0.01em;
  color: var(--white----ffffff);
  margin: 0 0 8px;
}
.sectionProduct .sectionProductWrap .sectionProduct--rightColl .productRightForm .productRightForm--subtitle {
  font-size: 16px;
  line-height: 125%;
  color: var(--white----ffffff);
  margin: 0 0 12px;
}
.sectionProduct .sectionProductWrap .sectionProduct--rightColl .productRightForm .social--link {
  margin: 0 0 24px;
  justify-content: flex-start;
}
.sectionProduct .sectionProductWrap .sectionProduct--rightColl .productRightForm .social--link a {
  color: #fff;
  margin: 0px 12px 0 0;
  font-size: 14px;
}
@media (min-width: 1200px) {
  .sectionProduct .sectionProductWrap .sectionProduct--rightColl .productRightForm .social--link a {
    font-size: 16px;
  }
}
.sectionProduct .sectionProductWrap .sectionProduct--rightColl .productRightForm .social--link a:last-child {
  margin: 0px;
}
.sectionProduct .sectionProductWrap .sectionProduct--rightColl .productRightForm .social--link a svg {
  margin: 0 5px 0 0;
}
.sectionProduct .sectionProductWrap .sectionProduct--rightColl .productRightForm form input[type=text] {
  background: var(--white----ffffff);
  border: 1px solid var(--grey---dddddd);
  border-radius: 64px;
  padding: 16px 16px 16px 24px;
  box-sizing: border-box;
  font-size: 16px;
  line-height: 112%;
  color: var(--text-black-191919);
  margin: 0 0 24px;
  width: 100%;
  max-width: 100%;
}
.sectionProduct .sectionProductWrap .sectionProduct--rightColl .productRightForm form button {
  width: 100%;
  max-width: 100%;
  margin: 0 0 15px;
}
.sectionProduct .sectionProductWrap .sectionProduct--rightColl .productRightForm form .flexes {
  justify-content: flex-start;
  align-items: flex-start;
  color: #fff;
}
.sectionProduct .sectionProductWrap .sectionProduct--rightColl .productRightForm form .flexes input {
  background: #fff;
}
.sectionProduct .sectionProductWrap .sectionProduct--rightColl .productRightForm form .flexes a {
  color: #fff;
}

.productTabs-container {
  display: flex;
  width: 100%;
  overflow: hidden;
  padding-top: 40px;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}
.productTabs-container .productTabs {
  display: flex;
  flex-direction: row;
  width: 100%;
  max-width: 100%;
  border: 1px solid var(--grey---b8b8b8);
  border-radius: 4px;
  margin: 0;
  overflow-x: auto;
  /* включаем горизонтальную прокрутку */
  white-space: nowrap;
  /* все кнопки в одну линию */
  -webkit-overflow-scrolling: touch;
}
@media (min-width: 1200px) {
  .productTabs-container .productTabs {
    flex-direction: column;
    max-width: 190px;
    margin: 0 28px 0 0;
  }
}
.productTabs-container .productTabs .p-tab {
  padding: 15px;
  cursor: pointer;
  border: none;
  border-bottom: none 0px;
  transition: background 0.3s;
  font-size: 16px;
  line-height: 112%;
  color: var(--text-grey-424242);
  box-sizing: border-box;
  text-align: left;
  background: #fff;
  border-right: 1px solid var(--grey---b8b8b8);
  width: 100%;
  min-width: 120px;
  text-align: center;
}
@media (min-width: 581px) {
  .productTabs-container .productTabs .p-tab {
    min-width: auto;
  }
}
@media (min-width: 993px) {
  .productTabs-container .productTabs .p-tab {
    padding: 15px 24px;
  }
}
@media (min-width: 1200px) {
  .productTabs-container .productTabs .p-tab {
    border-bottom: none 0px;
    border-bottom: 1px solid var(--grey---b8b8b8);
    width: auto;
    text-align: left;
  }
}
.productTabs-container .productTabs .p-tab.active, .productTabs-container .productTabs .p-tab:hover {
  background: var(--blue-accent---0062d9);
  color: #fff;
  font-weight: 600;
}
.productTabs-container .productTabs .p-tab:last-child {
  border-bottom: 0px;
  border-right: 0px;
}
.productTabs-container .productTabsContent {
  flex: 1;
  padding: 20px 0;
  width: 100%;
  box-sizing: border-box;
}
.productTabs-container .productTabsContent .productTabs-element {
  display: none;
}
.productTabs-container .productTabsContent .productTabs-element.active {
  display: block;
}
.productTabs-container .productTabsContent .productTabs-element .h3_title {
  font-weight: 400;
}
.productTabs-container .productTabsContent .productTabs-element p {
  margin: 0 0 24px;
}
.productTabs-container .productTabsContent .productTabs-element ul {
  padding-left: 15px;
  margin: 0 0 24px;
}
.productTabs-container .productTabsContent .productTabs-element ul li {
  list-style: disc;
}
.productTabs-container .productTabsContent .productTabs-element .b_title {
  font-size: 18px;
}

.productBottomBanner {
  background: var(--grey---efefef);
  padding: 32px;
  box-sizing: border-box;
  border-radius: 24px;
}
.productBottomBanner p {
  font-size: 18px;
  line-height: 111%;
  color: var(--text-black-191919);
  margin: 0 !important;
}
.productBottomBanner p b {
  font-weight: 700;
  font-size: 24px;
  line-height: 100%;
  color: var(--text-grey-424242);
  display: block;
  margin: 0 0 7px;
}

.alsoProductWrap {
  background: var(--grey---efefef);
  padding-top: 60px;
  padding-bottom: 60px;
}

/*news*/
.sectionNews {
  margin: 0 0 60px;
}
.sectionNews .sectionNewsList {
  display: block;
  margin: 0 0 40px;
}
@media (min-width: 481px) {
  .sectionNews .sectionNewsList {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 10px;
  }
}
@media (min-width: 993px) {
  .sectionNews .sectionNewsList {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1367px) {
  .sectionNews .sectionNewsList {
    grid-template-columns: repeat(4, 1fr);
  }
}
.sectionNews .newsItem {
  margin: 0 0 15px;
}
@media (min-width: 481px) {
  .sectionNews .newsItem {
    margin: 0px;
  }
}
.sectionNews .newsItem .newsItemImg {
  margin: 0 0 8px;
}
.sectionNews .newsItem .newsItemText a {
  margin: 0 0 4px;
}

.newsItem .newsItemImg {
  margin: 0 0 12px;
  line-height: 0;
}
.newsItem .newsItemImg img {
  width: 100%;
  max-width: 100%;
  border-radius: 12px;
}
.newsItem .newsItemText a {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 117%;
  color: var(--text-black-191919);
  display: inline-block;
  margin: 0 0 12px;
}
@media (min-width: 769px) {
  .newsItem .newsItemText a {
    font-size: 24px;
  }
}
.newsItem .newsItemText a span.solid {
  border-bottom: 1px solid transparent;
}
.newsItem .newsItemText a:hover span.solid {
  border-bottom: solid 1px;
}
.newsItem .newsItemText p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  color: var(--text-grey-424242);
  margin: 0px;
}
.newsItem a.btn.blue {
  display: none;
}
@media (min-width: 1201px) {
  .newsItem a.btn.blue {
    display: block;
  }
}

.innerNewsImg {
  margin: 0 0 30px;
}
@media (min-width: 769px) {
  .innerNewsImg {
    margin: 0 0 40px;
  }
}
.innerNewsImg img {
  width: 100%;
  max-width: 100%;
}

.content.innerNews {
  padding-top: 0px;
}
.content.innerNews .sectionPageTitle .h1_title {
  margin: 0 0 35px;
}
.content.innerNews .innerNewsText {
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--grey---dddddd);
}
@media (min-width: 769px) {
  .content.innerNews .innerNewsText {
    padding-bottom: 45px;
  }
}

.sectionMainNews {
  margin: 0 0 60px;
}
.sectionMainNews .sectionMainNewsList .swiper {
  margin-bottom: 30px;
}
.sectionMainNews .sectionMainNewsList .swiper-pagination {
  display: block;
}
@media (min-width: 1201px) {
  .sectionMainNews .sectionMainNewsList .swiper-pagination {
    display: none;
  }
}

/*articles*/
.sectionArticles {
  margin: 0 0 60px;
}
.sectionArticles .sectionArticlesList {
  margin: 0 0 40px;
}
.sectionArticles .sectionArticles--elem {
  display: block;
  margin: 0 0 20px;
}
@media (min-width: 769px) {
  .sectionArticles .sectionArticles--elem {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
  }
}
.sectionArticles .sectionArticles--elem .sectionArticles--imgs {
  border: 1px solid var(--grey---dddddd);
  border-radius: 12px;
  width: 100%;
  min-width: 375px;
  max-width: 375px;
  margin: 0 25px 0 0;
  line-height: 0;
}
.sectionArticles .sectionArticles--elem .sectionArticles--imgs img {
  width: 100%;
  max-width: 100%;
}
@media (max-width: 391px) {
  .sectionArticles .sectionArticles--elem .sectionArticles--imgs {
    min-width: 100%;
  }
}
.sectionArticles .sectionArticles--elem .sectionArticles--info {
  padding-top: 15px;
}
.sectionArticles .sectionArticles--elem .sectionArticles--info .sectionArticles--data {
  font-size: 14px;
  line-height: 114%;
  color: var(--text-grey-424242);
  margin: 0 0 12px;
}
.sectionArticles .sectionArticles--elem .sectionArticles--info .sectionArticles--title {
  font-size: 20px;
  line-height: 117%;
  color: var(--text-black-191919);
  margin: 0 0 12px;
}
@media (min-width: 769px) {
  .sectionArticles .sectionArticles--elem .sectionArticles--info .sectionArticles--title {
    font-size: 24px;
  }
}
.sectionArticles .sectionArticles--elem .sectionArticles--info p {
  font-size: 16px;
  line-height: 125%;
  color: var(--text-grey-424242);
}
.sectionArticles .sectionArticles--elem .sectionArticles--info a {
  color: var(--blue-accent---0062d9);
}

.articlDetail .sectionTextColls--leftColl .sectionContent--elem h4, .articlDetail .sectionTextColls--leftColl .sectionContent--elem h3, .articlDetail .sectionTextColls--leftColl .sectionContent--elem h2 {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 24px;
  line-height: 117%;
  color: var(--text-black-191919);
  margin: 0 0 20px;
}
.articlDetail .sectionTextColls--leftColl .sectionContent--elem h4 strong, .articlDetail .sectionTextColls--leftColl .sectionContent--elem h3 strong, .articlDetail .sectionTextColls--leftColl .sectionContent--elem h2 strong {
  font-weight: 400;
}
.articlDetail .sectionTextColls--leftColl .sectionContent--elem img {
  width: auto;
  max-width: 100%;
  border: 1px solid var(--grey---dddddd);
  border-radius: 24px;
  margin: 0 0 25px;
}
.articlDetail .sectionTextColls--leftColl .sectionContent--elem a {
  text-decoration: underline;
  color: var(--text-grey-424242);
}
.articlDetail .sectionTextColls--leftColl .sectionContent--elem a:hover {
  text-decoration: none;
}
.articlDetail .sectionTextColls--leftColl .sectionContent--elem ul {
  margin-bottom: 25px;
}
.articlDetail .sectionTextColls--leftColl .articlData {
  font-size: 14px;
  line-height: 114%;
  color: var(--text-grey-424242);
  margin: 0 0 32px;
}
.articlDetail .sectionTextColls--leftColl .sectionArticleAuthor {
  padding: 15px 30px;
  border-radius: 25px;
  box-shadow: 4px 4px 15px 0 rgba(34, 60, 80, 0.15);
  border: 1px solid var(--grey---dddddd);
}
.articlDetail .sectionTextColls--leftColl .FlexAuthor img {
  border-radius: 50%;
  margin-right: 25px;
  margin-bottom: 0px;
  max-width: 120px !important;
}
.articlDetail .sectionTextColls--leftColl .FlexAuthorText--title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
}
.articlDetail .sectionTextColls--leftColl .FlexAuthorText--status {
  font-size: 14px;
}
.articlDetail .sectionTextColls--leftColl .sectionArticleAuthor span {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  display: block;
}
.articlDetail .sectionTextColls--leftColl .FlexAuthor {
  display: flex;
  align-items: center;
}
.articlDetail .sectionTextColls--rightColl img {
  border: 1px solid var(--grey---dddddd);
  border-radius: 24px;
}

#articleTopNavigation {
  padding: 20px 0;
}
#articleTopNavigation p {
  font-size: 18px;
  line-height: 1;
  font-weight: bold;
}
#articleTopNavigation ol {
  margin: 0px;
  padding: 0 0 0 35px;
}
#articleTopNavigation ol li {
  margin: 0 0 5px;
  list-style-type: auto;
}
#articleTopNavigation ol li a {
  font-size: 16px;
  line-height: 1.2;
  display: inline-block;
  color: var(--text-grey-424242);
  text-decoration: none;
}
#articleTopNavigation ol li a span.dashed {
  border-bottom: 1px dashed var(--text-grey-424242);
  transition: 0.5s;
}
#articleTopNavigation ol li a:hover span.dashed {
  border-bottom: 2px dashed transparent;
}

/*page*/
.sectionListClients {
  padding-top: 53px;
  padding-bottom: 53px;
  padding-right: 0px !important;
  padding-left: 0px !important;
}
@media (min-width: 769px) {
  .sectionListClients {
    padding-right: 15px !important;
    padding-left: 15px !important;
  }
}
.sectionListClients .swiper-wrapper {
  display: flex;
}
@media (min-width: 769px) {
  .sectionListClients .swiper-wrapper {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 993px) {
  .sectionListClients .swiper-wrapper {
    grid-template-columns: repeat(6, 1fr);
  }
}
@media (min-width: 1366px) {
  .sectionListClients .swiper-wrapper {
    grid-template-columns: repeat(8, 1fr);
  }
}
.sectionListClients .swiper-wrapper .sectionListClients-elem {
  display: block;
  margin-left: 15px;
}
@media (min-width: 769px) {
  .sectionListClients .swiper-wrapper .sectionListClients-elem {
    margin-left: 0;
  }
}
.sectionListClients .swiper-wrapper .sectionListClients-elem img {
  width: 100%;
  max-width: 100%;
}
.sectionListClients .swiper-pagination {
  display: block;
  padding: 35px 15px;
  box-sizing: border-box;
}
@media (min-width: 769px) {
  .sectionListClients .swiper-pagination {
    display: none;
  }
}

.sectionContent--elem table {
  width: 100%;
  border-collapse: collapse;
  /* table-layout: fixed;*/
}
.sectionContent--elem th, .sectionContent--elem td {
  padding: 10px;
  text-align: left;
}
.sectionContent--elem thead tr {
  position: relative;
  border-bottom: 5px solid #fff;
}
.sectionContent--elem thead tr:before {
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background: var(--grey---dddddd);
  border-radius: 4px;
  z-index: 1;
}
.sectionContent--elem thead tr th {
  padding: 7px 12px;
  box-sizing: border-box;
  font-size: 14px;
  line-height: 114%;
  color: var(--text-grey-424242);
  position: relative;
  z-index: 3;
}
.sectionContent--elem tbody tr {
  position: relative;
  border-bottom: 5px solid #fff;
}
.sectionContent--elem tbody tr:before {
  content: "";
  background: var(--grey---efefef);
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  z-index: 1;
}
.sectionContent--elem tbody tr td {
  position: relative;
  z-index: 3;
  font-size: 16px;
  line-height: 125%;
  color: var(--text-grey-424242);
}
.sectionContent--elem tbody tr td span {
  font-size: 12px;
  line-height: 117%;
  color: var(--text-grey-424242);
  display: block;
}
@media (max-width: 768px) {
  .sectionContent--elem table, .sectionContent--elem thead, .sectionContent--elem tbody, .sectionContent--elem tr, .sectionContent--elem th, .sectionContent--elem td {
    display: block;
  }
  .sectionContent--elem table {
    border: none;
  }
  .sectionContent--elem tr {
    margin-bottom: 5px;
  }
  .sectionContent--elem th, .sectionContent--elem td {
    position: relative;
  }
  .sectionContent--elem th {
    display: none;
  }
  .sectionContent--elem td {
    padding-left: 50%;
  }
  .sectionContent--elem td::before {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 45%;
    padding-right: 10px;
    white-space: nowrap;
    font-weight: bold;
    content: attr(data-label);
  }
}
.sectionContent--elem .tblImportanty {
  font-size: 14px;
  line-height: 114%;
  color: var(--text-grey-424242);
  margin: 0 0 8px;
}
.sectionContent--elem .tblImportanty.last {
  margin: 0 0 32px;
}
.sectionContent--elem h4 {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 24px;
  line-height: 117%;
  color: var(--text-black-191919);
  margin: 0 0 20px;
}

.sectionText {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
}
.sectionText .full-coll {
  width: 100%;
  max-width: 100%;
}
.sectionText .coll-2 {
  width: 100%;
  max-width: 100%;
}
@media (min-width: 581px) {
  .sectionText .coll-2 {
    max-width: 49%;
  }
}
.sectionText .coll-3 {
  width: 100%;
  max-width: 100%;
}
@media (min-width: 581px) {
  .sectionText .coll-3 {
    max-width: 31%;
  }
}
.sectionText .h3_title {
  margin: 0 0 15px;
  font-weight: 400;
}
.sectionText p {
  margin: 0 0 15px;
}
.sectionText ul {
  margin: 0 0 20px 20px;
}
.sectionText ul li {
  list-style: disc;
  margin: 0 0 5px;
}

.sectionQuestionForm {
  margin: 0 0 60px;
}

.questionFormWrap {
  border-radius: 16px;
  padding: 32px;
  background: #0062D9;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
}
.questionFormWrap .h3_title, .questionFormWrap p {
  color: #fff;
}
.questionFormWrap img {
  margin: 0 30px 0 0;
  border-radius: 16px;
  display: none;
}
@media (min-width: 993px) {
  .questionFormWrap img {
    display: block;
  }
}
.questionFormWrap form {
  width: 100%;
}
.questionFormWrap form input[type=text],
.questionFormWrap form textarea {
  font-size: 14px;
  line-height: 113%;
  color: var(--text-black-191919);
  border: 1px solid var(--grey---dddddd);
  border-radius: 64px;
  padding: 17px 24px;
  width: 100%;
  box-sizing: border-box;
  max-height: 51px;
  margin: 0 0 15px;
}
.questionFormWrap form .flex {
  justify-content: flex-start;
  align-items: center;
}
.questionFormWrap form .flex button {
  margin: 0 24px 0 0;
}
.questionFormWrap form .flex .flexes {
  color: #fff;
}
.questionFormWrap form .flex .flexes a {
  color: #fff;
}

/*contact*/
.sectionContactLocation {
  margin: 0 0 60px;
}
.sectionContactLocation img {
  width: 100%;
  max-width: 100%;
  margin: 0 0 5px;
  border-radius: 16px;
}
.sectionContactLocation p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 113%;
  color: var(--text-grey-424242);
  margin: 0px;
}
.sectionContactLocation .gridLocalImgs {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 10px;
  padding-top: 20px;
}
@media (min-width: 441px) {
  .sectionContactLocation .gridLocalImgs {
    grid-template-columns: repeat(2, 1fr);
  }
}
.sectionContactLocation .sectionText {
  display: block;
  margin: 0 0 60px;
}
@media (min-width: 769px) {
  .sectionContactLocation .sectionText {
    display: flex;
  }
}
.sectionContactLocation .sectionText .coll-2 {
  max-width: 100%;
  margin: 0 0 30px;
}
@media (min-width: 769px) {
  .sectionContactLocation .sectionText .coll-2 {
    max-width: 48%;
    margin: 0px;
  }
}

.sectionContact {
  margin: 0 0 40px;
}
.sectionContact > .sectionText {
  display: block;
}
@media (min-width: 993px) {
  .sectionContact > .sectionText {
    display: flex;
  }
}
.sectionContact > .sectionText > .coll-2 {
  max-width: 100%;
  margin: 0 0 30px;
}
@media (min-width: 993px) {
  .sectionContact > .sectionText > .coll-2 {
    max-width: 48%;
    margin: 0px;
  }
}

.sectionContactLocal {
  display: block;
}
@media (min-width: 581px) {
  .sectionContactLocal {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }
}
.sectionContactLocal .firstColl {
  width: 100%;
  max-width: 100%;
}
@media (min-width: 581px) {
  .sectionContactLocal .firstColl {
    max-width: 52%;
  }
}
.sectionContactLocal .firstColl .c-local {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.sectionContactLocal .firstColl .c-local i {
  width: 44px;
  height: 44px;
  font-style: normal;
  margin: 0 5px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
}
.sectionContactLocal .firstColl .c-local.last {
  margin-bottom: 25px;
}
.sectionContactLocal .lastColl {
  width: 100%;
  max-width: 100%;
  padding-top: 5px;
}
@media (min-width: 581px) {
  .sectionContactLocal .lastColl {
    max-width: 44%;
  }
}
.sectionContactLocal .lastColl .phone {
  font-size: 14px;
  line-height: 114%;
  color: var(--text-grey-424242);
  margin: 0 0 10px;
}
.sectionContactLocal .lastColl .phone span {
  display: block;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
  color: var(--text-black-191919);
  text-transform: uppercase;
  margin: 0 0 5px;
}

.contactInfo {
  background: var(--grey---efefef);
  padding: 32px;
  border-radius: 16px;
}
.contactInfo .contactInfo--elem {
  margin: 0 0 32px;
  width: 100%;
  max-width: 300px;
}
.contactInfo .contactInfo--elem.last {
  margin: 0px;
}
.contactInfo .contactInfo--elem b {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
  color: var(--text-black-191919);
  display: block;
  margin: 0 0 8px;
}
.contactInfo .contactInfo--elem a {
  font-size: 16px;
  line-height: 113%;
  text-decoration: underline;
  text-decoration-skip-ink: none;
  color: var(--blue-accent---0062d9);
}
.contactInfo .contactInfo--elem span {
  font-size: 16px;
  line-height: 125%;
  color: var(--text-grey-424242);
  display: block;
}

#yandex_map {
  width: 100%;
  height: 500px;
  border-radius: 16px;
  overflow: hidden;
}

.yamapWrapper {
  margin: 0 0 40px;
  height: 500px;
}

.locationTabs {
  width: 100%;
}
.locationTabs .tabs-container {
  margin-bottom: 30px;
}
.locationTabs .tabs {
  display: flex;
  cursor: pointer;
  margin-bottom: 10px;
  overflow-x: auto;
}
.locationTabs .tab {
  border: 1px solid var(--grey---b8b8b8);
  padding: 16px 24px;
  font-size: 16px;
  line-height: 113%;
  text-align: center;
  color: var(--text-grey-424242);
}
.locationTabs .tab.active {
  color: var(--white----ffffff);
  background: var(--blue-accent---0062d9);
  border: 1px solid var(--blue-accent---0062d9);
  border-radius: 4px 0 0 4px;
}
.locationTabs .tab-contents {
  width: 100%;
  max-width: 580px;
}
.locationTabs .tab-content {
  display: none;
  padding: 20px 0;
}
.locationTabs .tab-content .deliveryGridContent {
  display: block;
}
@media (min-width: 768px) {
  .locationTabs .tab-content .deliveryGridContent {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}
.locationTabs .tab-content .deliveryGridContent p {
  font-size: 16px;
  line-height: 125%;
  color: var(--text-grey-424242);
  margin: 0 0 4px;
}
.locationTabs .tab-content.active {
  display: flex;
  flex-wrap: wrap;
}

.tab-gallery .tab-content {
  display: none;
}
.tab-gallery .tab-content.active {
  display: block;
}

.sectionContactAbout {
  margin: 0 0 60px;
}
.sectionContactAbout .sectionContactAboutWrap {
  padding: 30px 20px;
  background: var(--grey---efefef);
  box-sizing: border-box;
}
.sectionContactAbout .sectionContactAboutWrap .h3_title {
  font-weight: 400;
}
@media (min-width: 581px) {
  .sectionContactAbout .sectionContactAboutWrap {
    padding: 60px 30px;
  }
}
.sectionContactAbout .sectionText {
  display: block;
}
@media (min-width: 769px) {
  .sectionContactAbout .sectionText {
    display: flex;
  }
}
.sectionContactAbout .sectionText .coll-2 {
  max-width: 100%;
  margin: 0 0 30px;
}
@media (min-width: 769px) {
  .sectionContactAbout .sectionText .coll-2 {
    max-width: 48%;
    margin: 0px;
  }
}
.sectionContactAbout .sectionText .coll-2:last-child {
  margin: 0px;
}

.sectionContactEmploees {
  margin: 0 0 60px;
}
.sectionContactEmploees .emploeesGrid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 40px 20px;
}
@media (min-width: 421px) {
  .sectionContactEmploees .emploeesGrid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 581px) {
  .sectionContactEmploees .emploeesGrid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 769px) {
  .sectionContactEmploees .emploeesGrid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.sectionContactEmploees .emploeesGrid .emploeesGrid--elem img {
  width: 100%;
  max-width: 100%;
  border-radius: 16px;
  margin: 0 0 8px;
}
.sectionContactEmploees .emploeesGrid .emploeesGrid--elem .emploeesGrid--department {
  background: rgba(0, 98, 217, 0.1);
  border-radius: 25px;
  padding: 4px 8px;
  box-sizing: border-box;
  font-weight: 400;
  font-size: 12px;
  line-height: 117%;
  color: var(--text-grey-424242);
  display: inline-block;
  margin: 0 0 6px;
}
.sectionContactEmploees .emploeesGrid .emploeesGrid--elem .emploeesGrid--jobTitle {
  font-weight: 400;
  font-size: 14px;
  line-height: 114%;
  color: var(--text-grey-424242);
}
.sectionContactEmploees .emploeesGrid .emploeesGrid--elem .emploeesGrid--name {
  font-weight: 700;
  font-size: 16px;
  line-height: 125%;
  color: var(--text-black-191919);
  margin: 0 0 8px;
}
.sectionContactEmploees .emploeesGrid .emploeesGrid--elem .emploeesGrid--phone {
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  color: var(--text-grey-424242);
}
.sectionContactEmploees .emploeesGrid .emploeesGrid--elem .emploeesGrid--phone a {
  color: var(--text-grey-424242);
}
.sectionContactEmploees .emploeesGrid .emploeesGrid--elem .emploeesGrid--email {
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
}
.sectionContactEmploees .emploeesGrid .emploeesGrid--elem .emploeesGrid--email a {
  color: var(--blue-accent---0062d9);
}

.sectionCdekPoint {
  margin: 0 0 60px;
}

.cdekPointGrid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 10px;
}
@media (min-width: 421px) {
  .cdekPointGrid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 581px) {
  .cdekPointGrid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 769px) {
  .cdekPointGrid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.cdekPointGrid .cdekPoint--elem {
  border-radius: 16px;
  padding: 12px 16px 24px;
  background: var(--grey---efefef);
}
.cdekPointGrid .cdekPoint--elem .cdekPoint--city {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
  color: var(--text-black-191919);
  display: flex;
  align-items: center;
}
.cdekPointGrid .cdekPoint--elem .cdekPoint--city i {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
}
.cdekPointGrid .cdekPoint--elem .cdekPoint--city p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  color: var(--text-grey-424242);
}

/*author*/
.sectionAuthor {
  display: block;
  margin: 0 0 95px;
}
@media (min-width: 681px) {
  .sectionAuthor {
    justify-content: space-between;
    align-items: flex-start;
    display: flex;
  }
}
.sectionAuthor .sectionAuthor--leftColl {
  width: 100%;
  min-width: 0px;
  max-width: 100%;
  margin: 0 0 30px;
}
@media (min-width: 681px) {
  .sectionAuthor .sectionAuthor--leftColl {
    max-width: 40%;
    margin: 0px;
  }
}
@media (min-width: 993px) {
  .sectionAuthor .sectionAuthor--leftColl {
    max-width: 22%;
    min-width: 320px;
    margin: 0 55px 0 0;
  }
}
.sectionAuthor .sectionAuthor--leftColl img {
  max-width: 100%;
  margin: 0 0 15px;
}
.sectionAuthor .sectionAuthor--leftColl .jobTitle {
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  color: var(--text-grey-424242);
  margin: 0 0 8px;
}
.sectionAuthor .sectionAuthor--leftColl h1 {
  font-weight: 700;
  font-size: 32px;
  line-height: 110%;
  letter-spacing: -0.01em;
  color: var(--text-black-191919);
  margin: 0 0 15px;
}
.sectionAuthor .sectionAuthor--rightColl {
  width: 100%;
  max-width: 100%;
}
@media (min-width: 681px) {
  .sectionAuthor .sectionAuthor--rightColl {
    max-width: 55%;
  }
}
@media (min-width: 993px) {
  .sectionAuthor .sectionAuthor--rightColl {
    max-width: 72%;
  }
}
.sectionAuthor .sectionAuthor--rightColl .h3_title {
  font-weight: 400;
  margin: 0 0 22px;
}
.sectionAuthor .sectionAuthor--rightColl .jobInfo {
  max-width: 530px;
  margin: 0 0 40px;
}
.sectionAuthor .sectionAuthor--rightColl .jobContact dt {
  width: 10%;
  max-width: 135px;
  min-width: 135px;
  margin: 0 12px 0 0;
}
.sectionAuthor .sectionAuthor--rightColl .jobContact dd {
  max-width: 100%;
}

.jobContact {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  color: var(--text-black-191919);
  margin: 0 0 10px;
  flex-wrap: nowrap;
}
.jobContact dt {
  width: 100%;
  max-width: 48%;
}
.jobContact dd {
  width: 100%;
  max-width: 48%;
}
.jobContact a {
  color: var(--blue-accent---0062d9);
}

.otherArticlGrid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 10px;
}
@media (min-width: 421px) {
  .otherArticlGrid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1081px) {
  .otherArticlGrid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.otherArticlGrid .otherArticlElem .otherArticlElem--imgs {
  border: 1px solid var(--grey---dddddd);
  border-radius: 12px;
  padding: 15px;
  margin: 0 0 12px;
  box-sizing: border-box;
}
.otherArticlGrid .otherArticlElem .otherArticlElem--imgs img {
  width: 100%;
  max-width: 100%;
}
.otherArticlGrid .otherArticlElem .otherArticlElem--data {
  font-size: 14px;
  line-height: 114%;
  color: var(--text-grey-424242);
}
.otherArticlGrid .otherArticlElem .otherArticlElem--title {
  font-size: 16px;
  line-height: 117%;
  color: var(--text-black-191919);
  margin: 0 0 8px;
  display: inline-block;
}
@media (min-width: 1200px) {
  .otherArticlGrid .otherArticlElem .otherArticlElem--title {
    font-size: 24px;
  }
}

/*cart*/
#msCart .table-responsive {
  margin: 0 0 30px;
}
#msCart table {
  border-collapse: collapse;
  width: 100%;
}
#msCart table thead tr th {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 113%;
  color: var(--text-grey-424242);
  text-align: left;
  padding: 0px 12px;
}
@media (max-width: 768px) {
  #msCart table thead {
    display: none;
  }
}
#msCart table tbody {
  background: var(--grey---efefef);
  border-radius: 24px;
}
#msCart table tbody tr {
  position: relative;
}
@media (max-width: 768px) {
  #msCart table tbody tr {
    display: block;
  }
}
#msCart table tbody tr td {
  padding: 12px;
  border: 1px solid var(--grey---efefef);
  text-align: left;
}
@media (max-width: 768px) {
  #msCart table tbody tr td {
    display: block;
  }
}
#msCart table tbody tr td .flex {
  justify-content: flex-start;
}
#msCart table tbody tr td:last-child {
  padding: 0px;
  width: 54px;
}
#msCart table tbody tr td.ms-title {
  width: 100%;
}
@media (min-width: 769px) {
  #msCart table tbody tr td.ms-title {
    width: 45%;
  }
}
@media (min-width: 993px) {
  #msCart table tbody tr td.ms-title {
    width: 59%;
  }
}
#msCart table tbody tr td:before {
  content: attr(data-label);
  float: left;
  display: block;
  width: 100%;
  max-width: 150px;
}
@media (min-width: 769px) {
  #msCart table tbody tr td:before {
    display: none;
  }
}
#msCart .cartImgs {
  padding: 15px;
  background: #fff;
  border-radius: 16px;
  margin: 0 20px 0 0;
  max-width: 120px;
}
@media (min-width: 993px) {
  #msCart .cartImgs {
    max-width: 155px;
  }
}
#msCart .cartImgs img {
  width: 100%;
  max-width: 100%;
}
#msCart .cartTitle a {
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
  color: var(--text-grey-424242);
}
#msCart .ms-input-number-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
#msCart .ms-input-number-wrap .ms-input-number-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  padding: 10px;
  box-sizing: border-box;
  font-size: 18px;
  line-height: 100%;
  text-align: center;
  color: var(--text-grey-424242);
  border: 1px solid #fff;
  background: #fff;
}
#msCart .ms-input-number-wrap .ms-input-number-emulator {
  width: 100%;
  max-width: 30px;
  background: none;
  border: none;
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
  text-align: center;
  color: var(--text-grey-424242);
}
#msCart .ms-count form button {
  display: none;
}
#msCart .ms-remove {
  position: absolute;
  right: 10px;
  top: 10px;
}
@media (min-width: 769px) {
  #msCart .ms-remove {
    position: relative;
    right: 0px;
    top: 0px;
  }
}
#msCart .ms-remove button {
  background: none;
  border: none;
  width: 24px;
  height: 24px;
  padding: 0px;
  right: 10px;
  position: relative;
}

.cartResult {
  display: flex;
  justify-content: flex-end;
  margin: 0 0 40px;
}
@media (min-width: 581px) {
  .cartResult {
    margin: 0 0 60px;
  }
}
.cartResult .cartResultWrap {
  width: 100%;
  max-width: 100%;
  position: relative;
}
@media (min-width: 769px) {
  .cartResult .cartResultWrap {
    max-width: 39%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
@media (min-width: 993px) {
  .cartResult .cartResultWrap {
    max-width: 29%;
  }
}
.cartResult .cartResultWrap .ms2_form {
  position: absolute;
  right: 10px;
  top: 10px;
}
@media (min-width: 769px) {
  .cartResult .cartResultWrap .ms2_form {
    max-width: 60px;
    position: relative;
  }
}
.cartResult .cartResultWrap .ms2_form button {
  border: none;
  background: none;
  margin: 0;
}
@media (min-width: 769px) {
  .cartResult .cartResultWrap .ms2_form button {
    margin: 0 15px 0 0;
  }
}
@media (min-width: 1366px) {
  .cartResult .cartResultWrap .ms2_form button {
    margin: 0 28px 0 0;
  }
}
.cartResult .cartResultWrap .cartResult--itogText {
  width: 100%;
  max-width: 40%;
  font-weight: 400;
  font-size: 20px;
  line-height: 1;
  color: var(--text-black-191919);
  margin: 0 0 12px;
}
@media (min-width: 769px) {
  .cartResult .cartResultWrap .cartResult--itogText {
    margin: 0px;
  }
}
@media (min-width: 1366px) {
  .cartResult .cartResultWrap .cartResult--itogText {
    max-width: 50%;
  }
}
.cartResult .cartResultWrap .cartResult--itogCost {
  width: 100%;
  max-width: 40%;
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
  color: var(--text-black-191919);
}

.cartBtn {
  display: flex;
  justify-content: flex-end;
  margin: 0 0 40px;
}
@media (min-width: 581px) {
  .cartBtn {
    margin: 0 0 70px;
  }
}
.cartBtn a {
  width: 100%;
  max-width: 195px;
}

/*order*/
#msOrder {
  margin: 0 0 40px;
}
@media (min-width: 581px) {
  #msOrder {
    margin: 0 0 60px;
  }
}
#msOrder .sectionTextColls {
  display: block;
}
@media (min-width: 993px) {
  #msOrder .sectionTextColls {
    display: flex;
  }
}
#msOrder .sectionTextColls .sectionTextColls--rightColl {
  display: block;
  max-width: 100%;
}
@media (min-width: 993px) {
  #msOrder .sectionTextColls .sectionTextColls--rightColl {
    max-width: 36%;
  }
}
#msOrder .sectionTextColls .sectionTextColls--leftColl {
  margin: 0 0 24px;
}
@media (min-width: 993px) {
  #msOrder .sectionTextColls .sectionTextColls--leftColl {
    margin: 0px;
  }
}
#msOrder .userFace {
  display: flex;
  width: 100%;
  max-width: 570px;
  border: 1px solid var(--grey---b8b8b8);
  border-radius: 4px;
  overflow: hidden;
  margin: 0 0 20px;
}
#msOrder .userFace .customradio {
  width: 100%;
  max-width: 50%;
  padding: 0px;
  margin: 0px;
}
#msOrder .userFace .customradio input {
  display: none;
}
#msOrder .userFace .customradio input:checked + label {
  background: var(--blue-accent---0062d9);
  color: #fff;
}
#msOrder .userFace .customradio label {
  display: block;
  padding: 16px;
  box-sizing: border-box;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 113%;
  text-align: center;
  color: var(--text-grey-424242);
}
#msOrder .userFace .customradio label:before {
  display: none;
}
@media (min-width: 769px) {
  #msOrder .userFace .customradio label {
    padding: 16px 24px;
    font-size: 16px;
  }
}
#msOrder .h4_title {
  font-weight: 700;
  font-size: 16px;
  line-height: 125%;
  color: var(--text-grey-424242);
  margin: 0 0 16px;
}
#msOrder input[type=text], #msOrder input[type=number], #msOrder textarea {
  border: 1px solid var(--grey---dddddd);
  border-radius: 64px;
  padding: 17px 24px;
  width: 100%;
  box-sizing: border-box;
  margin: 0 0 10px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 113%;
  color: var(--text-black-191919);
}
#msOrder textarea {
  height: 105px;
  margin: 0 0 32px;
  border-radius: 24px;
}
#msOrder .coll-2 {
  max-width: 100%;
}
@media (min-width: 581px) {
  #msOrder .coll-2 {
    max-width: 49.7%;
  }
}
#msOrder .coll-3 {
  max-width: 100%;
}
@media (min-width: 581px) {
  #msOrder .coll-3 {
    max-width: 32.9%;
  }
}
#msOrder .customradio {
  padding: 0 0 0 32px;
  position: relative;
  margin: 0 0 12px;
}
#msOrder .customradio input {
  display: none;
}
#msOrder .customradio input:checked + label:before {
  border-radius: 100%;
  border: 8px solid var(--blue-accent---0062d9);
  width: 9.2px;
  height: 9.2px;
}
#msOrder .customradio label {
  position: relative;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 113%;
  color: var(--text-black-191919);
}
#msOrder .customradio label:before {
  position: absolute;
  left: -32px;
  top: 0px;
  content: "";
  border-radius: 100%;
  border: 1px solid var(--grey---dddddd);
  width: 24.5px;
  height: 24.5px;
}
#msOrder .customradio p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 114%;
  color: var(--text-grey-424242);
  margin: 0px;
}
#msOrder #deliveries {
  margin: 0 0 32px;
}
#msOrder .well {
  background: var(--grey---efefef);
  padding: 24px;
  border-radius: 24px;
}
#msOrder .well .orderTotalList {
  margin: 0 0 24px;
}
#msOrder .well .orderTotalList dl {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin: 0 0 4px;
  width: 100%;
}
#msOrder .well .orderTotalList dl dt, #msOrder .well .orderTotalList dl dd {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.4;
  color: var(--text-black-191919);
}
#msOrder .well .orderTotalList dl dd {
  text-align: right;
  font-weight: 700;
}
#msOrder .well .orderTotalResult {
  margin: 0 0 12px;
}
@media (min-width: 1671px) {
  #msOrder .well .orderTotalResult {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
#msOrder .well .orderTotalResult .orderTotalItog {
  margin: 0 0 12px;
}
@media (min-width: 1671px) {
  #msOrder .well .orderTotalResult .orderTotalItog {
    margin: 0px;
  }
}
#msOrder .well .orderTotalResult .orderTotalItog b {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 20px;
  line-height: 100%;
  color: var(--text-black-191919);
}
#msOrder .well .orderTotalResult .orderTotalItog .orderTotalItog--cost {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 34px;
  line-height: 118%;
  letter-spacing: -0.01em;
  color: var(--text-black-191919);
}
#msOrder .well .agreement label {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 113%;
  color: var(--text-grey-424242);
}
#msOrder .well .agreement p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 114%;
  color: var(--text-grey-424242);
}

/*slovar*/
.sectionAlfavit .listAlf {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
  margin: 0 0 35px;
}
.sectionAlfavit .listAlf li {
  list-style: none;
  padding-left: 25px;
  position: relative;
}
.sectionAlfavit .listAlf li:after {
  content: "•";
  display: block;
  position: absolute;
  width: 5px;
  height: 5px;
  top: 0px;
  left: 10px;
  color: var(--grey---b8b8b8);
}
.sectionAlfavit .listAlf li:first-child::after {
  display: none;
}
.sectionAlfavit .listAlf li:first-child {
  padding-left: 0px;
}
.sectionAlfavit .listAlf li a {
  font-size: 18px;
  line-height: 111%;
  color: var(--text-grey-424242);
}
.sectionAlfavit .alfTitle {
  background: var(--grey---efefef);
  border-radius: 12px;
  padding: 4px 16px;
  font-weight: 400;
  font-size: 32px;
  line-height: 125%;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--text-black-191919);
  margin: 0 0 10px;
  transition: 0.5s;
}
.sectionAlfavit .alfTitle:hover {
  color: var(--blue-accent---0062d9);
}
.sectionAlfavit .alfList {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  padding-left: 20px;
  margin: 0 0 24px;
}
.sectionAlfavit .alfList li {
  width: 100%;
  max-width: 100%;
  margin: 0px;
  list-style: disc;
  padding-right: 15px;
  box-sizing: border-box;
}
.sectionAlfavit .alfList li:nth-child(3n) {
  margin-right: 0px;
}
@media (min-width: 581px) {
  .sectionAlfavit .alfList li {
    max-width: 49%;
    margin: 0px;
  }
}
@media (min-width: 769px) {
  .sectionAlfavit .alfList li {
    max-width: 32.5%;
    margin: 0 1% 0 0;
  }
}
.sectionAlfavit .alfList li a {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  color: var(--text-grey-424242);
  transition: 0.5s;
}
.sectionAlfavit .alfList li a:hover {
  color: var(--blue-accent---0062d9);
}

/*document*/
.sectionDocuments {
  margin: 0 0 60px;
}
.sectionDocuments .documentsList {
  display: block;
  margin: 0 0 40px;
}
@media (min-width: 581px) {
  .sectionDocuments .documentsList {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}
@media (min-width: 769px) {
  .sectionDocuments .documentsList {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 993px) {
  .sectionDocuments .documentsList {
    grid-template-columns: repeat(4, 1fr);
  }
}
.sectionDocuments .documentsList .documentsList--elem {
  background: var(--grey---efefef);
  border-radius: 12px;
  padding: 12px 20px;
  transition: 0.5s;
  border: 1px solid var(--grey---efefef);
  margin: 0 0 10px;
}
@media (min-width: 581px) {
  .sectionDocuments .documentsList .documentsList--elem {
    margin: 0px;
  }
}
@media (min-width: 769px) {
  .sectionDocuments .documentsList .documentsList--elem {
    padding: 12px 32px;
  }
}
.sectionDocuments .documentsList .documentsList--elem svg {
  margin: 0 auto 15px;
  display: block;
}
.sectionDocuments .documentsList .documentsList--elem .documentsList--title {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  color: var(--text-grey-424242);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sectionDocuments .documentsList .documentsList--elem .documentsList--title i {
  background: var(--white----ffffff);
  border-radius: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 0 15px;
}
.sectionDocuments .documentsList .documentsList--elem .documentsList--title i svg {
  margin: 0px;
}
.sectionDocuments .documentsList .documentsList--elem:hover {
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.15);
  background: var(--white----ffffff);
  border: 1px solid var(--grey---dddddd);
}

/*rucovod*/
.sectionManuals {
  margin: 0 0 60px;
}
.sectionManuals .manualsList {
  display: block;
  margin: 0 0 40px;
}
@media (min-width: 581px) {
  .sectionManuals .manualsList {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
  }
}
@media (min-width: 769px) {
  .sectionManuals .manualsList {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 993px) {
  .sectionManuals .manualsList {
    grid-template-columns: repeat(3, 1fr);
  }
}

.documentLink {
  background: var(--grey---efefef);
  border-radius: 12px;
  padding: 12px 16px;
  transition: 0.5s;
  border: 1px solid var(--grey---efefef);
  margin: 0 0 10px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  color: var(--text-grey-424242);
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
@media (min-width: 581px) {
  .documentLink {
    margin: 0px;
  }
}
.documentLink svg {
  margin: 0 12px 0 0;
  min-width: 25px;
}
.documentLink:hover {
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.15);
  background: var(--white----ffffff);
  border: 1px solid var(--grey---dddddd);
}

/*delivery*/
.sectionDelivery > .sectionText {
  display: block;
}
@media (min-width: 1493px) {
  .sectionDelivery > .sectionText {
    display: flex;
  }
}
.sectionDelivery > .sectionText > .coll-2 {
  max-width: 100%;
}
@media (min-width: 1493px) {
  .sectionDelivery > .sectionText > .coll-2 {
    max-width: 48%;
  }
}

.attention {
  background: var(--grey---efefef);
  padding: 16px 24px;
  border-left: 4px solid var(--red-accent---cc3333);
  border-radius: 0 16px 16px 0;
  margin: 0 0 32px;
}
.attention p {
  font-size: 16px;
  line-height: 125%;
  color: var(--text-grey-424242);
}
.attention p:last-child {
  margin: 0px;
}

.deliveryTabs .tabs-container {
  margin-bottom: 30px;
}
.deliveryTabs .tabs {
  display: flex;
  cursor: pointer;
  margin-bottom: 10px;
  overflow-x: auto;
}
.deliveryTabs .tab {
  border: 1px solid var(--grey---b8b8b8);
  padding: 16px 24px;
  font-size: 16px;
  line-height: 113%;
  text-align: center;
  color: var(--text-grey-424242);
}
.deliveryTabs .tab.active {
  color: var(--white----ffffff);
  background: var(--blue-accent---0062d9);
  border: 1px solid var(--blue-accent---0062d9);
  border-radius: 4px 0 0 4px;
}
.deliveryTabs .tab-contents {
  width: 100%;
  max-width: 780px;
}
.deliveryTabs .tab-content {
  display: none;
  padding: 20px 0;
}
.deliveryTabs .tab-content .deliveryGridContent {
  display: block;
}
@media (min-width: 768px) {
  .deliveryTabs .tab-content .deliveryGridContent {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}
.deliveryTabs .tab-content .deliveryGridContent p {
  font-size: 16px;
  line-height: 125%;
  color: var(--text-grey-424242);
  margin: 0 0 4px;
}
.deliveryTabs .tab-content.active {
  display: flex;
  flex-wrap: wrap;
}

.deliveryForm {
  border-radius: 24px;
  padding: 32px;
  background: #0062D9;
  box-sizing: border-box;
  width: 100%;
  max-width: 720px;
  margin: 40px 0;
}
@media (min-width: 681px) {
  .deliveryForm {
    margin: 0 0 60px;
  }
}
.deliveryForm .deliveryForm--title {
  font-size: 24px;
  line-height: 88%;
  letter-spacing: -0.01em;
  color: var(--white----ffffff);
  margin: 0 0 24px;
}
@media (min-width: 681px) {
  .deliveryForm .deliveryForm--title {
    font-size: 30px;
  }
}
@media (min-width: 768px) {
  .deliveryForm .deliveryForm--title {
    font-size: 48px;
  }
}
.deliveryForm .sectionText {
  display: block;
}
@media (min-width: 581px) {
  .deliveryForm .sectionText {
    display: flex;
  }
}
.deliveryForm .sectionText.center {
  align-items: center;
}
.deliveryForm .sectionText .coll-2 {
  width: 100%;
  max-width: 100%;
  font-size: 14px;
  line-height: 125%;
  color: var(--white----ffffff);
  margin: 0 0 24px;
}
@media (min-width: 581px) {
  .deliveryForm .sectionText .coll-2 {
    max-width: 48%;
  }
}
@media (min-width: 681px) {
  .deliveryForm .sectionText .coll-2 {
    font-size: 16px;
  }
}
.deliveryForm .sectionText .coll-2 a {
  font-size: 14px;
  line-height: 125%;
  color: var(--white----ffffff);
  display: inline-block;
  margin: 0 0 10px;
}
@media (min-width: 681px) {
  .deliveryForm .sectionText .coll-2 a {
    font-size: 16px;
  }
}
.deliveryForm .sectionText .coll-2 .phone {
  font-size: 14px;
  line-height: 125%;
  color: var(--white----ffffff);
  display: block;
}
@media (min-width: 681px) {
  .deliveryForm .sectionText .coll-2 .phone {
    font-size: 16px;
  }
}
.deliveryForm .sectionText .coll-2 input[type=text] {
  font-size: 14px;
  line-height: 113%;
  color: var(--text-black-191919);
  border: 1px solid var(--grey---dddddd);
  border-radius: 64px;
  padding: 17px 24px;
  width: 100%;
  box-sizing: border-box;
}
@media (min-width: 681px) {
  .deliveryForm .sectionText .coll-2 input[type=text] {
    font-size: 16px;
  }
}
.deliveryForm .sectionText .coll-2 button {
  width: 100%;
  max-width: 100%;
}
.deliveryForm .sectionText .coll-2 label {
  margin: 0px;
}
.deliveryForm .sectionText .coll-2 label div {
  color: #fff;
  font-size: 13px;
}
.deliveryForm .sectionText .coll-2 label div a {
  margin: 0px;
}

/*delivery*/
.mobilNavigation {
  position: fixed;
  top: 0px;
  right: -100%;
  width: 100%;
  max-width: 325px;
  height: 100%;
  overflow-y: auto;
  background-color: #fff;
  transition: left 2.3s ease;
  padding: 15px 0;
  z-index: 10;
}
@media (min-width: 769px) {
  .mobilNavigation {
    max-width: 600px;
  }
}
.mobilNavigation.open {
  right: 0px;
}
.mobilNavigation .mobilBtnClose {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 24px;
  height: 24px;
}
.mobilNavigation .mobilBtnClose svg {
  display: block;
  height: 100%;
  overflow: visible;
  position: relative;
  width: 100%;
}
.mobilNavigation .mobilNavigation--elem {
  padding: 20px 0;
  border-bottom: 1px solid var(--grey---dddddd);
}
.mobilNavigation .mobilNavigation--elem:nth-child(4) {
  padding: 0px;
}
.mobilNavigation .mobilNavigation--elem ul {
  padding: 0px 25px;
  box-sizing: border-box;
}
.mobilNavigation .mobilNavigation--elem .contact--wrapper {
  padding: 0px 25px 35px;
  box-sizing: border-box;
}
.mobilNavigation .mobilNavigation--elem #mse2_form {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 25px;
  box-sizing: border-box;
}
.mobilNavigation .mobilNavigation--elem #mse2_form input {
  border-radius: 0px;
  background: #fff;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 112%;
  color: var(--text-grey-424242);
  border: none;
  order: 2;
}
.mobilNavigation .mobilNavigation--elem #mse2_form button {
  order: 1;
  width: 24px;
  height: 24px;
  position: relative;
  left: 0px;
  top: 0px;
  margin: 0 8px 0 -10px;
}
.mobilNavigation .mobilNavigation--elem .favorit-link,
.mobilNavigation .mobilNavigation--elem .linkCart,
.mobilNavigation .mobilNavigation--elem .link-auth {
  justify-content: flex-start;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 112%;
  color: var(--text-black-191919);
  margin: 0 0 25px;
}
.mobilNavigation .mobilNavigation--elem .favorit-link .link-icon,
.mobilNavigation .mobilNavigation--elem .linkCart .link-icon,
.mobilNavigation .mobilNavigation--elem .link-auth .link-icon {
  width: 24px;
  height: 24px;
  margin: 0 5px 0 0;
}
.mobilNavigation .mobilNavigation--elem .favorit-link .link-icon svg,
.mobilNavigation .mobilNavigation--elem .linkCart .link-icon svg,
.mobilNavigation .mobilNavigation--elem .link-auth .link-icon svg {
  margin: 0px;
}
.mobilNavigation .mobilNavigation--elem .link-auth {
  margin-bottom: 0px;
}
.mobilNavigation .mobilNavigation--elem .headerCenter--phone {
  margin: 0 0 12px;
}
.mobilNavigation .mobilNavigation--elem .btn {
  margin: 0 0 20px;
}
.mobilNavigation .mobilNavigation--elem .headerTop--link {
  justify-content: flex-start;
}
.mobilNavigation .mobilNavigation--elem .headerTop--link a {
  margin-right: 38px;
  font-size: 13px;
}
.mobilNavigation .mobilNavigation--elem .headerTop--link a:last-child {
  margin-right: 0px;
}
.mobilNavigation .mobilNavigation--elem .mobilMenu ul {
  padding: 0px;
}
.mobilNavigation .mobilNavigation--elem .mobilMenu ul li {
  list-style: none;
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}
.mobilNavigation .mobilNavigation--elem .mobilMenu ul li a {
  position: relative;
  padding-right: 30px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 112%;
  color: var(--text-black-191919);
}
.mobilNavigation .mobilNavigation--elem .mobilMenu ul li a:hover {
  color: var(--blue-accent---0062d9);
}
.mobilNavigation .mobilNavigation--elem .mobilMenu ul li a svg {
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -12px;
}
@media (min-width: 1365px) {
  .mobilNavigation .mobilNavigation--elem .mobilMenu ul li a {
    font-size: 16px;
  }
}
.mobilNavigation .mobilNavigation--elem .mobilMenu ul li.level-1 {
  padding: 8px 25px;
  margin: 0px;
  border-bottom: 1px solid var(--grey---dddddd);
  display: block;
}
.mobilNavigation .mobilNavigation--elem .mobilMenu ul li.level-1 a {
  display: block;
  padding: 12px 25px 12px 0px;
  width: 100%;
  box-sizing: border-box;
}
.mobilNavigation .mobilNavigation--elem .mobilMenu ul li.level-1:last-child {
  border: none;
}
.mobilNavigation .mobilNavigation--elem .mobilMenu ul li.folder ul {
  padding: 0px !important;
}
.mobilNavigation .mobilNavigation--elem .mobilMenu ul li.folder ul li {
  display: block;
}
.mobilNavigation .mobilNavigation--elem .mobilMenu ul li ul {
  display: none;
}
.mobilNavigation .mobilNavigation--elem .mobilMenu ul li.open > ul {
  display: block;
  padding: 0 0 0 25px !important;
}
.mobilNavigation .mobilNavigation--elem .mobilMenu .mobilMenu--catalog {
  display: none;
  padding: 21px 25px;
  box-sizing: border-box;
}
.mobilNavigation .mobilNavigation--elem .mobilMenu .mobilMenu--catalog .linkBack {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 113%;
  color: var(--text-black-191919);
  display: flex;
  align-items: center;
  margin: 0 0 21px;
}
.mobilNavigation .mobilNavigation--elem .mobilMenu .mobilMenu--catalog .linkBack svg {
  margin: 0 12px 0 0;
}
.mobilNavigation .mobilNavigation--elem .mobilMenu .mobilMenu--catalog ul li.c-folder {
  margin: 0 0 16px;
}
.mobilNavigation .mobilNavigation--elem .mobilMenu .mobilMenu--catalog ul li.c-folder a {
  display: flex;
  width: 100%;
}