html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
*:before,
*:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
:root {
  --color-accent: #1568f0;
  --color-hover: #fc5252;
}
a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: 0.15s linear;
  transition: 0.15s linear;
  outline: none;
}
.title {
  margin: 0 0 30px;
  font-weight: 600;
  font-size: 44px;
  line-height: 1.1;
}
.title_accent {
  color: var(--color-accent);
}
@media (max-width: 1300px) {
  .title {
    font-size: 36px;
  }
}
@media (max-width: 1000px) {
  .title {
    font-size: 30px;
    margin: 0 0 15px;
  }
}
@media (max-width: 420px) {
  .title {
    font-size: 24px;
  }
}
@media (max-width: 320px) {
  .title {
    font-size: 21px;
  }
}
.title_medium {
  font-size: 30px;
}
@media (max-width: 420px) {
  .title_medium {
    font-size: 24px;
  }
}
@media (max-width: 320px) {
  .title_medium {
    font-size: 18px;
  }
}
.title_middle {
  text-align: center;
}
.section-title {
  font-size: 36px;
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 32px;
  color: #1b242b;
  text-align: left;
}
@media (max-width: 1024px) {
  .section-title {
    font-size: 32px;
  }
}
@media (max-width: 768px) {
  .section-title {
    font-size: 26px;
  }
}
.button {
  font: 18px/1.3 'IBM Plex Sans', sans-serif;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 5px;
  border: solid 1px #046de5;
  background-color: #036bff;
  height: 51px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
  cursor: pointer;
  -webkit-transition: 0.15s linear;
  transition: 0.15s linear;
}
@media (max-width: 1000px) {
  .button {
    height: 57px;
    font-size: 19px;
  }
}
@media (max-width: 420px) {
  .button {
    height: 51px;
    font-size: 17px;
  }
}
@media (max-width: 320px) {
  .button {
    height: 44px;
    font-size: 15px;
  }
}
.button svg {
  fill: #fff;
}
.button span {
  position: absolute;
  right: 13px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.button:hover {
  background: #046de5;
}
.button_secondary {
  color: #212121;
  background: #f5f5f5;
  border: 1px solid #eee;
}
.button_secondary:hover {
  background: #eee;
}
.button-primary {
  font-size: 15px;
  padding: 0 16px;
  color: #2a2e32;
  border-radius: 3px;
  border: 1px solid #d6d7d7;
  height: 36px;
  background-color: #fff;
}
.button-primary:hover {
  background-color: #fff;
  -webkit-box-shadow: 0 1px 2px 0 rgba(188,195,199,0.59);
          box-shadow: 0 1px 2px 0 rgba(188,195,199,0.59);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#f3f3f3));
  background-image: -webkit-linear-gradient(top, #fff, #f3f3f3);
  background-image: linear-gradient(to bottom, #fff, #f3f3f3);
  border: solid 1px #d6d7d7;
  color: #2a2e32;
}
.button-primary:active {
  background: #f8f8f8;
  border: 1px solid #d6d7d7;
  -webkit-box-shadow: inset 0 1px 1px 0 #d9d9d9;
          box-shadow: inset 0 1px 1px 0 #d9d9d9;
  border-radius: 3px;
}
.input-text {
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font: 18px/1.3 'IBM Plex Sans', sans-serif;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  height: 51px;
  padding: 0 15px 3px;
  border-radius: 3px;
  border: solid 1px #c3cad3;
  color: #1c2832;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transition: 0.15s linear;
  transition: 0.15s linear;
}
@media (max-width: 1000px) {
  .input-text {
    height: 56px;
    border-radius: 5px;
  }
}
@media (max-width: 420px) {
  .input-text {
    height: 51px;
    font-size: 16px;
    border-radius: 3px;
  }
}
@media (max-width: 320px) {
  .input-text {
    height: 44px;
  }
}
.input-text::-webkit-input-placeholder {
  color: rgba(28,40,50,0.5);
}
.input-text::-moz-placeholder {
  color: rgba(28,40,50,0.5);
}
.input-text:-ms-input-placeholder {
  color: rgba(28,40,50,0.5);
}
.input-text::-ms-input-placeholder {
  color: rgba(28,40,50,0.5);
}
.input-text::placeholder {
  color: rgba(28,40,50,0.5);
}
.input-text:focus {
  border-color: transparent;
  -webkit-box-shadow: 0 1px 8px 0 rgba(3,107,255,0.61), 0 0 5px 0 #036bff;
          box-shadow: 0 1px 8px 0 rgba(3,107,255,0.61), 0 0 5px 0 #036bff;
}
.form-b {
  margin: 0 auto 16px;
  max-width: 430px;
}
.form-b .input-text {
  margin: 0 0 15px;
}
.form-b .button {
  width: 100%;
}
.online-b {
  margin: 0 0 54px;
  position: relative;
  overflow: hidden;
}
.online-b:before,
.online-b:after {
  content: '';
  top: 0;
  width: 50px;
  height: 100%;
  position: absolute;
  z-index: 2;
}
.online-b:before {
  left: 0;
  background: -webkit-gradient(linear, left top, right top, from(#fff), to(rgba(255,255,255,0)));
  background: -webkit-linear-gradient(left, #fff, rgba(255,255,255,0));
  background: linear-gradient(to right, #fff, rgba(255,255,255,0));
}
.online-b:after {
  right: 0;
  background: -webkit-gradient(linear, right top, left top, from(#fff), to(rgba(255,255,255,0)));
  background: -webkit-linear-gradient(right, #fff, rgba(255,255,255,0));
  background: linear-gradient(to left, #fff, rgba(255,255,255,0));
}
.online-b_article {
  margin: 0 0 65px;
}
.online-b__line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.online-b__line span {
  margin: -2px 7px 0 0;
  width: 12px;
  height: 12px;
  border-radius: 100%;
  display: block;
  background: #40d46d;
  -webkit-animation: faded 2s ease-in-out infinite;
          animation: faded 2s ease-in-out infinite;
}
@media (max-width: 1000px) {
  .online-b__line {
    font-size: 16px;
  }
  .online-b__line span {
    width: 10px;
    height: 10px;
  }
}
@media (max-width: 420px) {
  .online-b__line {
    font-size: 14px;
  }
  .online-b__line span {
    width: 10px;
    height: 10px;
  }
}
@media (max-width: 320px) {
  .online-b__line {
    font-size: 12px;
  }
  .online-b__line span {
    width: 8px;
    height: 8px;
  }
}
@-webkit-keyframes faded {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 0.5;
  }
  45%, 65%, 100% {
    opacity: 1;
  }
}
@keyframes faded {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 0.5;
  }
  45%, 65%, 100% {
    opacity: 1;
  }
}
.online-b__guys {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 39px auto 0;
  max-width: 430px;
  background: url("../img/content/lineup.svg") no-repeat 50% 0;
  padding: 33px 0 0;
}
@media (max-width: 1000px) {
  .online-b__guys {
    margin-top: 24px;
    padding-top: 20px;
    background: url("../img/content/lineup_m.svg") no-repeat 50% 0;
  }
}
.online-b__guys img {
  display: block;
  width: 45px;
  height: 45px;
  border-radius: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0 -7px 0 0;
}
@media (max-width: 1000px) {
  .online-b__guys img {
    width: 35px;
    height: 35px;
  }
}
@media (max-width: 420px) {
  .online-b__guys img {
    width: 32px;
    height: 32px;
  }
}
@media (max-width: 320px) {
  .online-b__guys img {
    width: 28px;
    height: 28px;
  }
}
.online-b__reaction {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #000;
}
@media (max-width: 1000px) {
  .online-b__reaction {
    font-size: 18px;
  }
}
@media (max-width: 420px) {
  .online-b__reaction {
    font-size: 16px;
  }
}
@media (max-width: 320px) {
  .online-b__reaction {
    font-size: 14px;
  }
}
.online-b__reaction img {
  display: block;
  margin: 0 10px 0 0;
}
.fiches-b {
  max-width: 430px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 1000px) {
  .fiches-b_desktop {
    display: none;
  }
}
.fiches-b_mobile {
  display: none;
}
@media (max-width: 1000px) {
  .fiches-b_mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.fiches-b__item {
  width: 118px;
  text-align: center;
  background: url("../img/content/oscar.svg") no-repeat;
  height: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 12px;
  line-height: 16px;
  padding-bottom: 2px;
}
@media (max-width: 1000px) {
  .fiches-b__item_hide-mobile {
    display: none;
  }
}
.fiches-b__item_year {
  padding-bottom: 6px;
}
.fiches-b_mobile .fiches-b__item {
  width: 30%;
  background: none;
  height: auto;
  padding: 0;
  display: block;
  color: #000;
  position: relative;
  font-size: 13px;
  line-height: 18px;
}
@media (max-width: 320px) {
  .fiches-b_mobile .fiches-b__item {
    font-size: 12px;
    line-height: 16px;
  }
}
.fiches-b_mobile .fiches-b__item:after {
  content: '';
  height: 149px;
  right: -5px;
  width: 1px;
  background: #f0f5fc;
  position: absolute;
  top: -18px;
}
.fiches-b_mobile .fiches-b__item:last-child:after {
  display: none;
}
.fiches-b_mobile .fiches-b__item img {
  margin: 0 0 18px;
}
@media (max-width: 1300px) {
  .hide-on-mobile {
    display: none !important;
  }
}
.pattern {
  background: #f2f2f2 url("../img//content/bg.png") repeat;
  background-size: 375px 375px;
  position: relative;
}
.pattern.catalog-b {
  background: #f2f2f2;
  position: relative;
}
.pattern.catalog-b:after {
  content: '';
  background: #f2f2f2 url("../img//content/pattern.png") repeat;
  background-size: 375px 375px;
  opacity: 0.2;
  width: 100%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  display: block;
  height: 100%;
}
.checkbox {
  width: 18px;
  min-width: 18px;
  height: 18px;
  position: relative;
  display: inline-block;
  margin-right: 14px;
}
.checkbox input {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  opacity: 0;
  z-index: 2;
  margin: 0;
}
.checkbox i {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 3px;
  background-color: #fff;
  border: solid 1px #c1c4c6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.checkbox i svg {
  display: block;
  opacity: 0;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  position: relative;
  left: 0;
}
.checkbox i svg path {
  fill: #fff;
}
.checkbox:hover i,
label:hover .checkbox i {
  border: solid 1px #9299a2;
}
.checkbox:hover i svg,
label:hover .checkbox i svg {
  opacity: 1;
  fill: #000;
}
.checkbox:hover i svg path,
label:hover .checkbox i svg path {
  fill: #000;
}
.checkbox input:checked + i {
  background: #0bc17e;
  border-color: #0bc17e;
}
.checkbox input:checked + i svg {
  opacity: 1;
}
.checkbox:hover input:checked + i,
label:hover .checkbox input:checked + i {
  background-color: #00b676;
  -webkit-box-shadow: none;
          box-shadow: none;
}
html,
body {
  height: 100%;
}
body {
  font: 16px/1.3 'IBM Plex Sans', sans-serif;
  height: 100%;
  color: #1b242b;
  background: #f5f7f7 url("../img/content/bg.png") repeat;
  background-size: 375px 375px;
  background-attachment: fixed;
}
body.scroll-locked {
  overflow-x: hidden;
}
.max-width {
  padding: 0 48px;
  margin: 0 auto;
  max-width: 1300px;
}
@media (max-width: 1440px) {
  .max-width {
    width: 100%;
    padding: 0 22px;
  }
}
@media (max-width: 320px) {
  .max-width {
    padding: 0 15px;
  }
}
.wrapper {
  position: relative;
  min-height: 100vh;
  max-width: 1400px;
  margin: 0 auto;
  -webkit-transition: 0.15s ease-out;
  transition: 0.15s ease-out;
  background: #fff;
  -webkit-box-shadow: 0 5px 25px rgba(0,0,0,0.03);
          box-shadow: 0 5px 25px rgba(0,0,0,0.03);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 1000px) {
  .wrapper {
    -webkit-transition: 0.15s ease-out;
    transition: 0.15s ease-out;
    display: block;
  }
}
.wrapper__grid {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
}
@media (max-width: 1000px) {
  .wrapper__grid {
    width: 100%;
  }
}
@media (max-width: 1000px) {
  .wrapper:after {
    content: '';
    width: 100%;
    height: 100%;
    opacity: 0;
    -webkit-transition: 0.15s ease-out;
    transition: 0.15s ease-out;
    position: fixed;
    left: 0;
    top: 0;
    background: rgba(0,0,0,0.7);
    pointer-events: none;
    z-index: 99;
  }
  .wrapper_open:after {
    opacity: 1;
  }
}
.content {
  padding: 60px 0 90px;
}
@media (max-width: 1300px) {
  .content {
    padding-top: 40px;
    padding-bottom: 50px;
  }
}
.content_crm {
  padding-top: 0;
  padding-bottom: 0;
}
.content_work {
  padding-top: 0;
}
.content_modules {
  overflow: visible;
  padding-bottom: 0;
}
/* Welcome
-------------------
 */
.welcome-b {
  margin: 0 0 115px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1300px) {
  .welcome-b {
    margin: 0 0 134px;
  }
}
@media (max-width: 420px) {
  .welcome-b {
    margin: 0 0 120px;
  }
}
@media (max-width: 320px) {
  .welcome-b {
    margin: 0 0 100px;
  }
}
.welcome-b__title {
  font-size: 46px;
  line-height: 1.25;
  font-weight: 600;
  margin: 0 0 20px;
}
@media (max-width: 1300px) {
  .welcome-b__title {
    text-align: center;
    font-size: 42px;
    color: #111d2c;
  }
}
@media (max-width: 420px) {
  .welcome-b__title {
    margin: 0 0 10px;
    font-size: 36px;
  }
}
@media (max-width: 320px) {
  .welcome-b__title {
    font-size: 31px;
  }
}
.welcome-b__text {
  margin: 0 0 30px;
  font-size: 23px;
  line-height: 34px;
}
@media (max-width: 1300px) {
  .welcome-b__text {
    margin: 0 auto 35px;
    font-size: 24px;
    color: #111e2d;
    line-height: 34px;
    text-align: center;
    max-width: 340px;
  }
}
@media (max-width: 420px) {
  .welcome-b__text {
    margin: 0 0 30px;
    font-size: 22px;
    line-height: 31px;
  }
}
@media (max-width: 320px) {
  .welcome-b__text {
    margin: 0 0 25px;
    font-size: 19px;
    line-height: 26px;
  }
}
.welcome-b__about {
  max-width: 655px;
}
.welcome-b__about .online-b {
  max-width: 450px;
  margin: 15px auto 45px 0;
}
@media (max-width: 1300px) {
  .welcome-b__about .online-b {
    max-width: 100%;
  }
}
.welcome-b__about .form-b {
  max-width: 450px;
  margin: 0 auto 0 0;
}
.welcome-b__about .fiches-b {
  max-width: 450px;
  margin: 0 auto 0 0;
}
@media (max-width: 1300px) {
  .welcome-b__about {
    max-width: 100%;
  }
  .welcome-b__about .online-b {
    margin: 0;
  }
}
.welcome-b__button {
  display: none;
  position: relative;
}
.welcome-b__button:after {
  content: '';
  height: 20px;
  width: 100%;
  background: #fff;
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  z-index: 5;
}
@media (max-width: 1300px) {
  .welcome-b__button {
    display: table;
    max-width: 400px;
    width: 100%;
    margin: 0 auto 15px;
  }
  .welcome-b__button .button {
    width: 100%;
  }
}
@media (max-width: 320px) {
  .welcome-b__button {
    margin: 0 0 12px;
  }
}
.welcome-b__phone {
  width: 255px;
  height: 480px;
  padding: 31px 14px 36px 11px;
  border-radius: 26px;
  -webkit-box-shadow: 20px 30px 40px -7px rgba(85,117,144,0.15), 0 0 0 7px #dde4ea;
          box-shadow: 20px 30px 40px -7px rgba(85,117,144,0.15), 0 0 0 7px #dde4ea;
  background: #fff;
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  margin: 7px 0 0;
}
.welcome-b__phone_mobile {
  display: none;
  -webkit-box-shadow: 0 60px 60px -7px rgba(85,117,144,0.15), 0 9px 30px 6px rgba(101,142,177,0.1), 0 0 0 7px #dde4ea;
          box-shadow: 0 60px 60px -7px rgba(85,117,144,0.15), 0 9px 30px 6px rgba(101,142,177,0.1), 0 0 0 7px #dde4ea;
}
@media (max-width: 1300px) {
  .welcome-b__phone {
    width: 284px;
    height: 270px;
    overflow: hidden;
    margin: 0 auto 20px;
    -webkit-box-shadow: 0 60px 60px -7px rgba(85,117,144,0.15), 0 9px 30px 6px rgba(101,142,177,0.1);
            box-shadow: 0 60px 60px -7px rgba(85,117,144,0.15), 0 9px 30px 6px rgba(101,142,177,0.1);
    border: 7px solid #dde4ea;
    border-bottom: 0;
    border-radius: 26px 26px 0 0;
  }
  .welcome-b__phone_mobile {
    display: block;
  }
  .welcome-b__phone_desktop {
    display: none;
  }
}
@media (max-width: 420px) {
  .welcome-b__phone {
    width: 255px;
    height: 244px;
  }
}
@media (max-width: 320px) {
  .welcome-b__phone {
    width: 236px;
  }
}
.welcome-b__phone:before {
  border-radius: 10px;
  background: #dde4ea;
  content: '';
  top: 5px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  position: absolute;
  width: 80px;
  height: 15px;
}
.welcome-b__phone-title {
  font-size: 18px;
  line-height: 32px;
  margin: 0 0 10px;
}
@media (max-width: 1300px) {
  .welcome-b__phone-title {
    font-size: 20px;
    line-height: 32px;
    margin: 0 0 12px;
  }
}
@media (max-width: 420px) {
  .welcome-b__phone-title {
    font-size: 18px;
    line-height: 32px;
    margin: 0 0 10px;
  }
}
@media (max-width: 320px) {
  .welcome-b__phone-title {
    font-size: 15px;
    line-height: 32px;
  }
}
.welcome-b__phone-list {
  overflow: hidden;
  pointer-events: none;
}
.welcome-b__phone-list_click {
  pointer-events: auto;
}
.welcome-b__phone-message {
  margin: 0 0 13px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.welcome-b__phone-message_full {
  display: block;
}
.welcome-b__phone-timer {
  padding: 6px 11px 8px;
  border-radius: 15px;
  background-color: #f1f5f8;
  color: #415c73;
  font-size: 14px;
  line-height: 18px;
}
@media (max-width: 1300px) {
  .welcome-b__phone-timer {
    font-size: 15px;
    line-height: 20px;
  }
}
@media (max-width: 420px) {
  .welcome-b__phone-timer {
    font-size: 13px;
    line-height: 16px;
  }
}
@media (max-width: 320px) {
  .welcome-b__phone-timer {
    font-size: 12px;
    line-height: 16px;
  }
}
.welcome-b__phone-line {
  padding: 0 0 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 0 6px;
  border-bottom: solid 1px rgba(65,92,115,0.1);
}
.welcome-b__phone-line:last-child {
  margin: 0;
  padding: 0;
  border: 0;
}
.welcome-b__phone-photo {
  width: 36px;
  height: 36px;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 100%;
}
@media (max-width: 1300px) {
  .welcome-b__phone-photo {
    width: 39px;
    height: 39px;
  }
}
@media (max-width: 420px) {
  .welcome-b__phone-photo {
    width: 36px;
    height: 36px;
  }
}
@media (max-width: 320px) {
  .welcome-b__phone-photo {
    width: 31px;
    height: 31px;
  }
}
.welcome-b__phone-text {
  width: calc(100% - 46px);
}
@media (max-width: 1300px) {
  .welcome-b__phone-text {
    width: calc(100% - 51px);
  }
}
@media (max-width: 420px) {
  .welcome-b__phone-text {
    width: calc(100% - 46px);
  }
}
@media (max-width: 320px) {
  .welcome-b__phone-text {
    width: calc(100% - 37px);
  }
}
.welcome-b__phone-text span {
  padding: 6px 11px 8px;
  border-radius: 15px;
  background-color: #f1f5f8;
  color: #415c73;
  font-size: 14px;
  line-height: 18px;
  display: table;
  margin: 0 0 7px;
}
@media (max-width: 1300px) {
  .welcome-b__phone-text span {
    font-size: 15px;
    line-height: 20px;
  }
}
@media (max-width: 420px) {
  .welcome-b__phone-text span {
    font-size: 13px;
    line-height: 16px;
  }
}
@media (max-width: 320px) {
  .welcome-b__phone-text span {
    font-size: 12px;
    line-height: 16px;
  }
}
.welcome-b__phone-text span:last-child {
  margin: 0;
}
.welcome-b__phone-text_emoji span {
  font-size: 17px;
  padding-top: 7px;
  padding-bottom: 7px;
}
/* Clients
-------------------
 */
.clients-b {
  margin: 0;
}
@media (max-width: 1300px) {
  .clients-b {
    padding: 0;
    border: 0;
    margin: 0;
  }
}
@media (max-width: 420px) {
  .clients-b {
    margin: 0;
  }
}
@media (max-width: 320px) {
  .clients-b {
    margin: 0;
  }
}
.clients-b__title {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
  flex-wrap: wrap;
  margin: 0 0 24px;
  font-weight: 600;
  font-size: 24px;
  line-height: 29px;
  color: #111d2c;
}
@media (max-width: 1300px) {
  .clients-b__title {
    font-size: 26px;
    line-height: 29px;
    margin: 0 0 30px;
  }
}
@media (max-width: 420px) {
  .clients-b__title {
    font-size: 24px;
    line-height: 29px;
    margin: 0 0 24px;
  }
}
@media (max-width: 320px) {
  .clients-b__title {
    font-size: 21px;
    line-height: 29px;
    margin: 0 0 18px;
  }
}
.clients-b__title .top-header__reviews {
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.clients-b__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -25px 0 0;
}
@media (max-width: 1300px) {
  .clients-b__list {
    display: block;
    margin: 0;
  }
}
.clients-b__item {
  width: 25%;
  padding: 0 25px 25px 0;
}
@media (max-width: 1300px) {
  .clients-b__item {
    width: 100%;
    padding: 0;
    margin: 0 0 20px;
  }
}
.clients-b__logo {
  margin: 0 0 19px;
  min-height: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media (max-width: 1300px) {
  .clients-b__logo {
    margin: 0 0 45px;
  }
}
@media (max-width: 420px) {
  .clients-b__logo {
    margin: 0 0 40px;
  }
}
@media (max-width: 320px) {
  .clients-b__logo {
    margin: 0 0 35px;
  }
}
.clients-b__logo img {
  display: block;
  -webkit-transition: 0.15s linear;
  transition: 0.15s linear;
}
@media (max-width: 420px) {
  .clients-b__logo img {
    max-height: 40px;
  }
}
@media (max-width: 1300px) {
  .clients-b__block {
    padding: 14px 33px 28px 22px;
    position: relative;
    border-radius: 10px;
    -webkit-box-shadow: 0 20px 50px 10px rgba(24,56,99,0.03), 0 20px 40px 1px rgba(23,41,91,0.06);
            box-shadow: 0 20px 50px 10px rgba(24,56,99,0.03), 0 20px 40px 1px rgba(23,41,91,0.06);
    background-color: #fff;
    display: block;
  }
}
@media (min-width: 1000px) {
  .clients-b__block:hover .clients-b__logo img {
    -webkit-transform: translateY(-10%);
            transform: translateY(-10%);
  }
}
.clients-b__more {
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 100%;
  position: absolute;
  top: 30px;
  right: 18px;
  background-color: rgba(247,248,250,0.78);
  width: 36px;
  height: 36px;
}
.clients-b__more svg {
  display: block;
  fill: #1c2832;
  opacity: 0.4;
}
@media (max-width: 1300px) {
  .clients-b__more {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    top: 16px;
    width: 38px;
    height: 38px;
  }
}
@media (max-width: 420px) {
  .clients-b__more {
    width: 36px;
    height: 36px;
  }
}
@media (max-width: 320px) {
  .clients-b__more {
    width: 29px;
    height: 29px;
  }
}
.clients-b__text {
  margin: 0 0 17px;
  font-size: 17px;
  display: block;
  line-height: 26px;
}
@media (max-width: 1300px) {
  .clients-b__text {
    margin: 0;
    font-size: 18px;
    line-height: 28px;
  }
}
@media (max-width: 420px) {
  .clients-b__text {
    font-size: 16px;
    line-height: 25px;
  }
}
@media (max-width: 320px) {
  .clients-b__text {
    font-size: 14px;
    line-height: 21px;
  }
}
.clients-b__person {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 15px;
}
@media (max-width: 1300px) {
  .clients-b__person {
    display: none;
  }
}
.clients-b__person img {
  display: block;
  width: 26px;
  height: 26px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 100%;
  margin: 0 10px 0 0;
}
/* Article Page
-------------------
 */
.article-page-b {
  margin: 0 0 50px;
  position: relative;
}
@media (max-width: 1300px) {
  .article-page-b {
    padding: 0;
    background: none;
    border-radius: 0;
  }
}
.article-page-b__back {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 0 50px;
}
@media (max-width: 1300px) {
  .article-page-b__back {
    margin: 0 0 25px;
  }
}
.article-page-b__back:hover {
  color: var(--color-accent);
}
.article-page-b__content .title {
  font-size: 22px;
}
.article-page-b__content .form-b {
  margin-top: 27px;
  max-width: 600px;
}
.article-page-b__content .fiches-b {
  max-width: 600px;
}
.article-page-b__title {
  margin: 0 0 30px;
  font-weight: 600;
  font-size: 44px;
  line-height: 56px;
}
@media (max-width: 1300px) {
  .article-page-b__title {
    font-size: 29px;
    line-height: 37px;
    color: #111d2c;
    margin: 0 0 12px;
  }
}
@media (max-width: 420px) {
  .article-page-b__title {
    font-size: 24px;
    line-height: 30px;
  }
}
@media (max-width: 320px) {
  .article-page-b__title {
    font-size: 21px;
    line-height: 28px;
  }
}
.article-page-b__author {
  position: relative;
  padding-left: 52px;
  min-height: 36px;
  margin: 0 0 38px;
}
@media (max-width: 1300px) {
  .article-page-b__author {
    min-height: 26px;
    padding-left: 38px;
    margin: 0 0 34px;
  }
}
.article-page-b__author-ava {
  position: absolute;
  left: 0;
  top: 0;
  width: 36px;
  height: 36px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: 100%;
}
@media (max-width: 1300px) {
  .article-page-b__author-ava {
    width: 26px;
    height: 26px;
    top: 2px;
  }
}
.article-page-b__author-name {
  font-size: 16px;
  margin: 0 0 3px;
}
@media (max-width: 1300px) {
  .article-page-b__author-name {
    font-size: 12px;
    margin: 0;
    line-height: 17px;
  }
}
.article-page-b__author-whois {
  color: #5f717a;
  font-size: 14px;
  line-height: 16px;
}
@media (max-width: 1300px) {
  .article-page-b__author-whois {
    font-size: 12px;
    line-height: 17px;
  }
}
.article-page-b__label {
  margin: 32px 0 10px;
  font-weight: 600;
  font-size: 23px;
  line-height: 35px;
}
@media (max-width: 1300px) {
  .article-page-b__label {
    font-size: 16px;
    line-height: 22px;
  }
}
/* Check
-------------------
 */
.check-b {
  margin-top: 100px;
}
@media (max-width: 1300px) {
  .check-b {
    margin-top: 50px;
  }
}
.check-b__mobile {
  display: none;
}
.check-b__title {
  font-weight: 600;
  text-align: center;
  margin: 0 0 18px;
  font-size: 42px;
  line-height: 46px;
}
@media (max-width: 1300px) {
  .check-b__title {
    margin: 0 0 14px;
    text-align: left;
    font-size: 26px;
    line-height: 34px;
    color: #111d2c;
  }
}
@media (max-width: 420px) {
  .check-b__title {
    margin: 0 0 13px;
    font-size: 24px;
    line-height: 31px;
  }
}
@media (max-width: 320px) {
  .check-b__title {
    margin: 0 0 10px;
    font-size: 21px;
    line-height: 26px;
  }
}
@media (max-width: 1300px) {
  .check-b__list {
    margin: 0 0 27px;
  }
  .check-b__item {
    padding-left: 23px;
    position: relative;
    margin: 0 0 4px;
    font-size: 17px;
    line-height: 26px;
    color: #1c2832;
  }
  .check-b__item:before {
    width: 6px;
    height: 6px;
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    background: #076bff;
    content: '';
    border-radius: 100%;
  }
  .check-b__item:last-child {
    margin: 0;
  }
}
@media (max-width: 420px) {
  .check-b__list {
    margin: 0 0 24px;
  }
  .check-b__item {
    font-size: 16px;
  }
}
@media (max-width: 320px) {
  .check-b__list {
    margin: 0 0 18px;
  }
  .check-b__item {
    margin: 0;
    padding-left: 20px;
    font-size: 14px;
  }
}
.check-b__text {
  text-align: center;
  margin: 0 0 40px;
  font-size: 21px;
  line-height: 32px;
}
/* About Page
------------------------
 */
.about-page-b {
  margin: 0 auto;
}
/* Seo Page
----------------------
 */
.page-duble-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.page-duble-column .popup-review__sidebar {
  width: 100%;
  padding: 25px 30px;
}
.page-duble-column .popup-review__sidebar .online-b__line {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.page-duble-column .popup-review__sidebar .button {
  padding: 0;
}
@media (max-width: 1300px) {
  .page-duble-column {
    display: block;
  }
}
.page-duble-column__left {
  padding-right: 50px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
}
@media (max-width: 1300px) {
  .page-duble-column__left {
    padding-right: 0;
    margin-bottom: 30px;
  }
}
.page-duble-column__right {
  width: 300px;
  min-width: 300px;
  position: relative;
}
@media (max-width: 1300px) {
  .page-duble-column__right {
    width: auto;
    min-width: 1px;
  }
}
/* Modules Page
------------------------
 */
.start-b {
  padding: 0 0 20px;
  position: relative;
}
.start-b__block {
  position: relative;
}
.start-b__icon {
  position: absolute;
  right: 15%;
  top: 10px;
}
@media (max-width: 1300px) {
  .start-b__icon {
    display: table;
    margin: 0 auto;
    position: initial;
    height: 170px;
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
  }
}
.start-b__icon .icon__box-1 {
  position: absolute;
  z-index: 2;
  right: 0;
}
@media (max-width: 1300px) {
  .start-b__icon .icon__box-1 {
    right: initial;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.start-b__icon .icon__box-2 {
  position: absolute;
  z-index: 1;
  right: 0;
}
@media (max-width: 1300px) {
  .start-b__icon .icon__box-2 {
    right: initial;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.start-b__title {
  font-size: 37px;
  line-height: 49px;
  color: #0072cc;
  font-weight: 800;
  margin: 0 0 11px 15px;
}
@media (max-width: 1300px) {
  .start-b__title {
    font-size: 24px;
    line-height: 32px;
    margin: 0 0 11px;
  }
}
.start-b__desc {
  font-size: 20px;
  line-height: 30px;
  color: #212426;
  max-width: 582px;
  margin: 0 0 0 15px;
}
@media (max-width: 1300px) {
  .start-b__desc {
    font-size: 16px;
    line-height: 23px;
    margin: 0;
  }
  .start-b__desc span {
    display: none;
  }
}
.nav-b {
  border-bottom: 2px solid rgba(230,230,230,0.6);
  background: #fff;
  z-index: 9 !important;
}
.nav-b_show {
  -webkit-transition: 0 !important;
  transition: 0 !important;
  opacity: 1 !important;
}
.nav-b_sticky {
  top: 0;
  position: sticky;
}
.nav-b__list {
  font-size: 18px;
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 0 0 15px;
}
.nav-b__list_show {
  opacity: 1 !important;
  -webkit-animation: navFade 0s forwards;
          animation: navFade 0s forwards;
}
@media (max-width: 1300px) {
  .nav-b__list {
    font-size: 15px;
    padding: 0 22px;
    gap: 20px;
    margin: 0 -22px;
    -webkit-overflow-scrolling: touch;
    overflow: scroll;
    overflow-y: hidden;
    white-space: nowrap;
    scroll-behavior: smooth;
  }
  .nav-b__list::-webkit-scrollbar {
    display: none;
  }
}
.nav-b__item {
  position: relative;
  bottom: -1px;
  padding: 0 20px 0 0;
}
@media (max-width: 1300px) {
  .nav-b__item {
    padding: 0;
  }
}
.nav-b__link {
  color: #0072cc;
  display: block;
  padding: 15px 0 18px;
  border: 0;
  border-bottom: 5px solid transparent;
  -webkit-transition: 0s;
  transition: 0s;
}
@media (min-width: 1000px) {
  .nav-b__link:hover {
    color: #fc5252;
    border-bottom: 4px solid transparent;
    -webkit-transition: 0s;
    transition: 0s;
  }
}
.nav-b__link_current {
  color: #000 !important;
  border-bottom: 4px solid #f37676;
  -webkit-transition: 0s;
  transition: 0s;
}
@media (max-width: 1300px) {
  .nav-b__link_current {
    font-weight: 600;
  }
}
.nav-b__link_current:hover {
  color: #000 !important;
  border-bottom: 4px solid #f37676;
  -webkit-transition: 0s;
  transition: 0s;
}
@media (max-width: 1300px) {
  .nav-b__link {
    padding: 15px 0 10px;
  }
}
/* Hero
---------------------------
 */
.hero-b {
  position: relative;
}
.hero-b:after {
  content: '';
  background: rgba(0,0,0,0.5);
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 2;
}
.hero-b__back {
  font-size: 13px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 10px;
  height: 28px;
  background: rgba(255,255,255,0.7);
  color: #222;
  border-radius: 35px;
  position: absolute;
  z-index: 3;
  top: 20px;
  left: 20px;
  gap: 8px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 1000px) {
  .hero-b__back {
    border-radius: 50%;
    width: 28px;
    left: 10px;
    top: 10px;
  }
  .hero-b__back span {
    display: none;
  }
}
.hero-b__back svg {
  fill: none;
  width: 6px;
  height: auto;
}
@media (max-width: 1000px) {
  .hero-b__back svg {
    width: 9px;
  }
}
.hero-b__back:hover {
  background: #fff;
  color: var(--color-accent);
}
.hero-b__block {
  text-align: center;
  padding: 140px 0 160px;
  position: relative;
  z-index: 3;
  margin: 0 auto;
  max-width: 800px;
}
.hero-b__block .title {
  font-size: 44px;
  color: #fff;
  margin: 0;
}
@media (max-width: 1300px) {
  .hero-b__block {
    padding: 80px 0 60px;
  }
  .hero-b__block .title {
    font-size: 27px;
    line-height: 1.2;
  }
}
.hero-b__fiches {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 18px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 30px 0 0;
}
.hero-b__fiches-item {
  background: var(--color-accent);
  color: #fff;
  border-radius: 25px;
  padding: 1px 16px 0;
  font-size: 14px;
  height: 34px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
/* Works
---------------------
 */
.works-b__list {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 1000px) {
  .works-b__list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.works-b__item {
  display: block;
  height: 240px;
  position: relative;
  overflow: hidden;
  border-radius: 6px;
}
.works-b__item:before {
  content: '';
  background: rgba(0,0,0,0.5);
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 2;
  -webkit-transition: 0.15s linear;
  transition: 0.15s linear;
}
.works-b__item:hover:before {
  -webkit-backdrop-filter: blur(1.5px);
          backdrop-filter: blur(1.5px);
}
.works-b__item img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  -webkit-transition: 0.15s linear;
  transition: 0.15s linear;
}
.works-b__item:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.works-b__content {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  padding: 25px;
  color: #fff;
  z-index: 3;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.works-b__title {
  display: block;
  font-weight: 600;
  font-size: 24px;
  line-height: 1.1;
}
.works-b__sort {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 30px;
}
.works-b__sort-item input {
  display: none;
}
.works-b__sort-item input + label {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
  -webkit-transition: 0.15s linear;
  transition: 0.15s linear;
  background: #ddd;
  border-radius: 25px;
  padding: 1px 12px 0;
  color: #111;
  font-size: 14px;
  height: 28px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.works-b__sort-item input + label:hover {
  background: #ccc;
}
.works-b__sort-item input:checked + label {
  color: #fff;
  background: var(--color-accent);
}
.works-b__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 5px;
}
.works-b__tags-item {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
  -webkit-transition: 0.15s linear;
  transition: 0.15s linear;
  font-size: 12px;
  text-transform: uppercase;
  color: #fff;
}
.works-b__tags-item:after {
  content: '·';
  margin: 0 0 0 5px;
}
.works-b__tags-item:last-child:after {
  display: none;
}
.works-b__more {
  display: table;
  margin: 60px auto 0;
}
.works-b__more-links {
  padding: 0 30px 2px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 51px;
  background: #f5f8fa;
  font-size: 16px;
  color: #1c2832;
  border-radius: 25px;
}
@media (max-width: 1300px) {
  .works-b__more-links {
    border: solid 1px rgba(28,40,50,0.1);
    background: none;
  }
}
.works-b__more-links:hover {
  background: #f0f4f7;
}
/* CRM
------------------------
 */
.gray-block {
  background: #f5f8fa;
  padding: 100px 0;
}
@media (max-width: 1300px) {
  .gray-block {
    padding: 0;
    background: none;
  }
}
.crm-header {
  color: #fff;
  background: url("../img/content/bg.jpg") no-repeat 50% 100%;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 100px 0;
  margin: 0 0 60px;
}
@media (max-width: 1300px) {
  .crm-header {
    padding: 100px 0;
  }
}
.crm-header__title {
  text-align: center;
  font-size: 50px;
  line-height: 55px;
  font-weight: 900;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.crm-header__title svg {
  margin: 12px 0 0 18px;
}
@media (max-width: 1300px) {
  .crm-header__title {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    font-size: 30px;
    line-height: 35px;
  }
  .crm-header__title svg {
    width: 70%;
    height: auto;
  }
}
.crm-header__note {
  margin: 20px 0 32px;
  font-size: 25px;
  line-height: 32px;
  font-weight: 500;
  text-align: center;
}
@media (max-width: 1300px) {
  .crm-header__note {
    font-size: 18px;
    line-height: 26px;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }
}
.crm-header__button {
  margin: 0 auto;
  display: table;
}
.crm-header__button .button {
  min-width: 240px;
}
.b-attention {
  background: #ffe769;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  right: 0;
  z-index: 5;
}
.b-attention-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 12px 0 14px;
  color: #212426 !important;
  border: 0;
}
.b-attention-grid br {
  display: none;
}
@media (max-width: 1300px) {
  .b-attention-grid {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
  .b-attention-grid br {
    display: none;
  }
}
.b-attention__links {
  font-family: 'MuseoSansCyrl', sans-serif;
  -webkit-appearance: none;
  cursor: pointer;
  border: 2px solid rgba(33,36,38,0.8) !important;
  padding: 4px 22px;
  border-radius: 20px;
  font-weight: 500;
  font-size: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 0 0 31px;
  -webkit-transition: 0s;
  transition: 0s;
  outline: none;
}
@media (max-width: 1300px) {
  .b-attention__links {
    margin: 10px 0 0;
  }
}
.b-attention-grid:hover .b-attention__links {
  background: #212426;
  color: #fff;
}
.clients-b {
  margin: 0;
}
@media (max-width: 1300px) {
  .clients-b {
    margin: 0;
  }
}
.clients-b-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 1300px) {
  .clients-b-grid {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.clients-b__content {
  width: calc(100% - 530px);
  font-size: 18px;
  line-height: 1.4;
}
.clients-b__content .title {
  font-size: 34px;
}
.clients-b__content_hide {
  display: none;
  margin: 210px 0 0;
}
@media (max-width: 1300px) {
  .clients-b__content {
    width: 100%;
    font-size: 16px;
    line-height: 24px;
  }
  .clients-b__content_hide {
    display: block;
  }
}
.clients-b__content p {
  margin: 26px 0;
}
@media (max-width: 1300px) {
  .clients-b__content p {
    margin: 20px 0;
  }
}
.clients-b__content p:first-child {
  margin-top: 0;
}
.clients-b__sidebar {
  width: 315px;
  margin: 18px 100px 216px 0;
}
@media (max-width: 1300px) {
  .clients-b__sidebar {
    width: 100%;
    margin: 10px auto 0;
  }
}
.clients-b__pain {
  border-radius: 5px;
  border: solid 11px #7ed321;
  padding: 31px 18px 22px 35px;
  position: relative;
  font-weight: 500;
  font-size: 22px;
  line-height: 29px;
}
.clients-b__pain:before {
  position: absolute;
  bottom: -33px;
  left: 36px;
  content: '';
  width: 18px;
  height: 18px;
  background-position: center;
  background-image: url("../img/png-sprite/96dpi/null");
  background-size: contain;
  background-repeat: no-repeat;
  height: 22px;
}
.clients-b__pain:after {
  position: absolute;
  top: calc(100% - 10px);
  left: 50%;
  background: url("../img/content/illustration.png") no-repeat;
  background-size: contain;
  content: '';
  width: 334px;
  height: 191px;
  -webkit-transform: translate(-52%, 0);
          transform: translate(-52%, 0);
}
.clients-b__line {
  margin: 0 0 13px;
}
.include-b {
  margin: 0 0 162px;
  background: #f4f5f5;
  border-radius: 6px;
  padding: 76px 80px 77px;
}
@media (max-width: 1300px) {
  .include-b {
    margin: 0 -25px 82px;
    border-radius: 0;
    padding: 60px 15px 100px;
  }
}
.include-b__links {
  border: 0;
}
.include-b__links_tab {
  font-size: 22px;
  line-height: 33px;
  color: #1771f1;
  display: block;
  border-bottom: 4px solid transparent;
  padding: 0 0 9px;
}
@media (max-width: 1300px) {
  .include-b__links_tab {
    font-size: 17px;
    line-height: 24px;
  }
}
.include-b__links_tab:hover {
  color: #e95124;
  border-color: transparent;
}
.include-b__links_tab_active {
  color: #212426 !important;
  border-color: #e95124;
  cursor: default;
}
.include-b__links_tab_active:hover {
  opacity: 1;
  border-color: #e95124;
}
.include-b__tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 40px 0 0;
}
@media (max-width: 1300px) {
  .include-b__tabs {
    margin: 0;
  }
}
.include-b__tab {
  margin: 0 20px;
}
@media (max-width: 1300px) {
  .include-b__tab {
    margin: 0 10px;
  }
}
.include-b__white {
  border-radius: 6px;
  border: solid 1px #e6e7e8;
  background-color: #fff;
  padding: 64px 54px 67px;
}
@media (max-width: 1300px) {
  .include-b__white {
    padding: 46px 20px;
  }
}
.include-b__content {
  display: none;
  font-size: 20px;
  line-height: 28px;
}
@media (max-width: 1300px) {
  .include-b__content {
    font-size: 16px;
    line-height: 24px;
  }
}
.include-b__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 1300px) {
  .include-b__grid {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.include-b__grid_logo {
  margin: 45px 0 0;
}
@media (max-width: 1300px) {
  .include-b__grid_logo {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 34px 0 0;
  }
}
.include-b__logo {
  margin: 0 40px 0 0;
}
.include-b__logo img {
  max-width: 100%;
  height: auto;
}
.include-b__left {
  width: 57%;
}
@media (max-width: 1300px) {
  .include-b__left {
    width: 100%;
  }
}
.include-b__left strong {
  display: block;
  margin: 0 0 3px;
}
.include-b__left p {
  margin: 20px 0;
}
.include-b__left p:first-child {
  margin-top: 0;
}
.include-b__summa {
  font-weight: 500;
  margin: 5px 0 0;
  display: block;
}
.include-b__right {
  width: 35%;
  padding: 0 0 0 28px;
}
@media (max-width: 1300px) {
  .include-b__right {
    margin: 30px 0 0;
    width: 100%;
    padding: 0;
  }
}
.include-b__right p {
  margin: 0;
}
.include-b__price {
  font-size: 24px;
  margin: 0 0 2px;
}
.questions-b {
  padding: 82px 0 88px;
  position: relative;
}
@media (max-width: 1300px) {
  .questions-b {
    padding: 90px 0 100px;
  }
}
.questions-b .icon__rupor {
  position: absolute;
  top: -56px;
  right: 130px;
}
@media (max-width: 1300px) {
  .questions-b .icon__rupor {
    width: 85px;
    height: 93.5px;
    top: -34px;
    right: 50%;
    -webkit-transform: translate(50%, 0);
            transform: translate(50%, 0);
  }
}
.questions-b__list {
  margin: 52px 0 0;
  max-width: 706px;
}
@media (max-width: 1300px) {
  .questions-b__list {
    margin: 30px 0 0;
  }
}
.questions-b__item {
  margin: 0 0 40px;
}
.questions-b__item:last-child {
  margin: 0;
}
@media (max-width: 1300px) {
  .questions-b__item {
    margin: 0 0 35px;
  }
}
.questions-b__title {
  font-size: 22px;
  line-height: 1.4;
  font-weight: 700;
  margin: 0 0 13px;
}
@media (max-width: 1300px) {
  .questions-b__title {
    font-size: 18px;
    line-height: 24px;
    margin: 0 0 5px;
  }
}
.questions-b__text {
  font-size: 18px;
  line-height: 1.4;
}
@media (max-width: 1300px) {
  .questions-b__text {
    font-size: 16px;
    line-height: 24px;
  }
}
.grid-b {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 0 132px;
}
.grid-b .sticky {
  position: sticky;
  top: 40px;
}
@media (max-width: 1300px) {
  .grid-b {
    margin: 0 0 80px;
  }
}
.grid-b__element {
  max-width: 590px;
  margin: 0 0 112px;
}
.grid-b__element:last-child {
  margin: 0;
}
.grid-b__title {
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  margin: 0 0 4px;
}
.grid-b__sidebar {
  width: 290px;
  margin-left: -21px;
}
@media (max-width: 1300px) {
  .grid-b__sidebar {
    display: none;
  }
}
.grid-b__content {
  width: calc(100% - 335px);
}
@media (max-width: 1300px) {
  .grid-b__content {
    width: 100%;
  }
}
.menu-b__item {
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  margin: 0 0 17px;
}
.menu-b__item:last-child {
  margin: 0;
}
.menu-b__item .button {
  max-width: 240px;
}
.menu-b__item_order {
  padding-left: 5px;
  padding-top: 20px;
}
.menu-b__links {
  display: block;
  padding: 0 0 0 12px;
  border: 0;
  border-left: 4px solid transparent;
  color: #3f3f3f;
}
.menu-b__links_active {
  border-color: #02bcf3;
  font-weight: 500;
  color: #282828;
}
.menu-b__links_active:hover {
  color: #282828;
  border-color: #02bcf3;
}
.menu-b__links:hover {
  color: #000;
  border-color: transparent;
}
.article-b {
  margin: 0 0 90px;
}
.article-b:last-child {
  margin: 0;
}
.article-b__title {
  font-weight: 700;
  font-size: 26px;
  margin: 0 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.article-b__title_small {
  font-size: 22px;
  line-height: 28px;
  margin: 0;
}
@media (max-width: 1300px) {
  .article-b__title {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.article-b__pay {
  background: #ffda89;
  height: 18px;
  padding: 1px 6px 0;
  color: #303030;
  font-size: 12px;
  margin: 0 0 0 10px;
  font-weight: 400;
}
@media (max-width: 1300px) {
  .article-b__pay {
    margin: 5px 0 0;
  }
}
.article-b__text {
  font-size: 18px;
  line-height: 28px;
  max-width: 575px;
  font-weight: 400;
}
.article-b__gallery {
  max-width: 575px;
  margin: 15px 0 36px;
  -webkit-box-shadow: 0 5px 15px 0 rgba(89,120,150,0.6);
          box-shadow: 0 5px 15px 0 rgba(89,120,150,0.6);
  border-radius: 5px;
  overflow: visible !important;
}
@media (max-width: 1300px) {
  .article-b__gallery {
    width: initial !important;
  }
}
.article-b__gallery.fotorama {
  margin-bottom: 56px;
}
.article-b__gallery .fotorama__nav-wrap {
  position: absolute;
  bottom: -40px;
  left: 0;
}
.article-b__gallery .fotorama__nav:before,
.article-b__gallery .fotorama__nav:after {
  display: none;
}
.article-b__gallery img {
  max-width: 100%;
  display: block;
  height: auto;
}
.article-b__quote {
  max-width: 575px;
  margin: 34px 0 0;
  border-radius: 5px;
  padding: 25px 26px 36px 100px;
  background: #fff8e7;
  position: relative;
}
.article-b__quote:before {
  content: '';
  background: url("../img/content/quote_arrow.png") no-repeat;
  background-size: contain;
  width: 87px;
  height: 43px;
  position: absolute;
  right: 50px;
  top: -32px;
}
@media (max-width: 1300px) {
  .article-b__quote .article-b__text {
    margin-left: -80px;
  }
}
.article-b__quote .article-b__title {
  font-size: 20px;
}
.article-b__whois {
  color: #757575;
  font-size: 16px;
  line-height: 28px;
  font-weight: 300;
  margin: 0 0 8px;
}
.article-b__avatar {
  position: absolute;
  left: 22px;
  top: 25px;
}
.article-b__avatar img {
  width: 60px;
  height: 60px;
  border-radius: 100%;
  display: block;
}
.fotorama__dot {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  width: 4px !important;
  height: 4px !important;
  background: #fff !important;
  border: 1px solid rgba(64,78,101,0.5) !important;
}
.fotorama__nav--dots .fotorama__nav__frame {
  width: 14px !important;
}
.fotorama__nav__frame.fotorama__active .fotorama__dot {
  background: #404e65 !important;
  border: 1px solid #404e65 !important;
}
.system-b {
  margin: 0 0 190px;
}
@media (max-width: 1300px) {
  .system-b {
    margin: 0 0 100px;
  }
}
.system-b__note {
  text-align: center;
  margin: 0 0 100px;
  font-size: 26px;
  line-height: 36px;
}
@media (max-width: 1300px) {
  .system-b__note {
    margin: 0 0 50px;
    font-size: 16px;
    line-height: 24px;
  }
  .system-b__note br {
    display: none;
  }
}
.system-b__column {
  text-align: center;
  width: 42%;
  position: relative;
}
.system-b__column_line {
  width: 2px;
}
@media (max-width: 1300px) {
  .system-b__column_line {
    display: none;
  }
}
@media (max-width: 1300px) {
  .system-b__column {
    width: 100%;
    margin: 0 0 50px;
  }
}
.system-b__line {
  width: 2px;
  height: 280px;
  -webkit-transform: rotate(10deg);
          transform: rotate(10deg);
  background: #979797;
}
.system-b__logo {
  margin: 0 0 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 15px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 600;
  font-size: 44px;
  line-height: 1.1;
}
.system-b__logo img {
  height: 50px;
  max-width: 100%;
  position: relative;
  top: 1px;
}
@media (max-width: 1300px) {
  .system-b__logo {
    margin: 0 0 10px;
    padding: 0;
  }
  .system-b__logo img {
    height: 30px;
  }
}
.system-b__text {
  font-size: 22px;
  line-height: 28px;
  margin: 0 auto 30px;
  max-width: 560px;
  display: block;
  text-align: center;
}
@media (max-width: 1300px) {
  .system-b__text {
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 24px;
  }
}
.system-b__links {
  color: #212426;
}
.system-b__links:hover {
  color: #212426;
}
.system-b__down {
  font-size: 22px;
  color: #666;
}
.system-b__down_link {
  border: 0;
  color: #02bcf3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.system-b__down_link svg {
  margin: -2px 0 0 10px;
  stroke: #02bcf3;
}
@media (max-width: 1300px) {
  .system-b__down {
    font-size: 16px;
  }
}
.system-b__links:hover .system-b__down_link {
  color: #e95124;
  -webkit-transition: 0s;
  transition: 0s;
}
.system-b__links:hover .system-b__down_link svg {
  stroke: #e95124;
}
.system-b__button {
  display: table;
  margin: 0 auto;
}
.system-b__button .button {
  min-width: 240px;
}
@media (max-width: 1300px) {
  .system-b__button .button {
    font-size: 16px;
  }
}
/* How
--------------------
 */
.how__element {
  position: relative;
  margin: 0;
}
@media (max-width: 1300px) {
  .how__element {
    margin: 50px 0 0;
  }
}
.how__element--title {
  margin: 0 0 37px;
  font-weight: 600;
  text-align: center;
  font-size: 30px;
  line-height: 46px;
  position: relative;
  z-index: 2;
}
@media (max-width: 1300px) {
  .how__element--title {
    margin: 0 0 24px;
    font-size: 24px;
    line-height: 31px;
    text-align: left;
  }
}
.how__element--blocks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media (max-width: 1300px) {
  .how__element--blocks {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.how__element--blocks .blocks__block {
  position: relative;
  width: 31%;
}
@media (max-width: 1300px) {
  .how__element--blocks .blocks__block {
    width: 100%;
  }
}
.how__element--blocks .blocks__block--item {
  margin: 0 0 20px;
  color: #1c2832;
  font-size: 16px;
  line-height: 23px;
}
.how__element--blocks .blocks__block--item strong {
  font-weight: bold;
}
.how__element--blocks .blocks__block--item .item__timer {
  position: relative;
  margin: 3px 0 -7px -3px;
  padding: 15px 16px 15px 15px;
  background: url("../img//content/timer-bg.png") no-repeat;
  width: 202px;
  height: 116px;
}
.how__element--blocks .blocks__block--item .item__timer--line {
  position: relative;
  margin: 0 0 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-size: 12px;
  color: #55626f;
  line-height: 18px;
}
.how__element--blocks .blocks__block--item .item__timer--line .line__count {
  color: #11b679;
}
.how__element--blocks .blocks__block--item .item__timer--line .line__count s {
  text-decoration: none;
}
.how__element--blocks .blocks__block--item .item__timer--line.line--false .line__count {
  color: #9ba3aa;
}
.how__element--blocks .blocks__block--item .item__timer--line.line--false:after {
  position: absolute;
  opacity: 0.5;
  width: 174px;
  height: 1px;
  background: #979797;
  top: 8px;
  left: 0;
  content: '';
  display: block;
}
.how__element--blocks .blocks__block--item .item__timer--line.line--bold {
  opacity: 1;
  bottom: 0;
  font-weight: bold;
}
.how__element--blocks .blocks__block--item .item__timer {
  background: url("../img/content/shape.png") no-repeat;
  background-size: contain;
  width: 100%;
  padding: 12px 32px 0 17px;
  max-width: 288px;
}
.how__element--blocks .blocks__block--item .item__timer--line.line--false:after {
  width: 100%;
}
/* Tariffs
----------------
 */
.tariffs-b {
  margin: 0;
}
.tariffs-b__blocks {
  margin: 0 auto;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
}
@media (max-width: 420px) {
  .tariffs-b__blocks {
    width: 100%;
    gap: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.tariffs-b__blocks--block {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  color: #353d43;
  border-radius: 4px;
  background-color: #fff;
  -webkit-box-shadow: 0 1px 2px 0 rgba(188,195,199,0.56);
          box-shadow: 0 1px 2px 0 rgba(188,195,199,0.56);
  padding: 15px 19px 25px;
  border: solid 1px #dee3e6;
}
.tariffs-b__blocks--block .block__label--note {
  padding: 2px 0 0;
  font-size: 13px;
  color: #0067ba;
  line-height: 16px;
}
.tariffs-b__blocks--block .block__title {
  font-size: 22px;
  line-height: 35px;
  font-weight: bold;
  color: #1c2832;
}
.tariffs-b__blocks--block .block__count {
  padding: 2px 0 15px;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #353d43;
}
.tariffs-b__blocks--block .block__text {
  font-size: 16px;
  line-height: 24px;
  color: #353d43;
}
.tariffs-b__blocks--block .block__note {
  padding: 11px 0 0;
  font-size: 13px;
  line-height: 19px;
}
/* Case Page
-------------------------
 */
.case-page-b {
  max-width: 660px;
  margin: 0 auto;
}
@media (max-width: 1000px) {
  .case-page-b {
    font-family: 'Open Sans', Arial, sans-serif;
  }
}
.case-page-b a {
  color: #1568f0;
}
.case-page-b a:hover {
  opacity: 0.7;
}
.case-page-b fieldset {
  margin: 48px 0;
  background: #f5f5f5;
  border-radius: 12px;
  -webkit-box-shadow: 0 5px 20px rgba(0,0,0,0.2);
          box-shadow: 0 5px 20px rgba(0,0,0,0.2);
  border: 2px solid var(--color-accent);
  padding: 48px;
}
@media (max-width: 1300px) {
  .case-page-b fieldset {
    margin: 32px 0;
    padding: 24px;
    border: 1px solid var(--color-accent);
    border-radius: 6px;
  }
}
.case-page-b__count {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin: 80px -80px;
}
@media (max-width: 1300px) {
  .case-page-b__count {
    margin: 80px 0;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 420px) {
  .case-page-b__count {
    margin: 60px 0;
    gap: 10px;
  }
}
.case-page-b__count-item {
  padding: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 18px;
  line-height: 1.1;
  min-height: 160px;
  gap: 10px;
  background: #f3f3f3;
  border-radius: 20px;
}
.case-page-b__count-item svg {
  width: auto;
  max-height: 38px;
  margin-bottom: 5px;
}
.case-page-b__count-item_white {
  color: #fff;
}
.case-page-b__count-item_nobg {
  background: none;
}
.case-page-b__count-item strong {
  font-size: 42px;
}
@media (max-width: 420px) {
  .case-page-b__count-item {
    font-size: 14px;
    padding: 15px;
    border-radius: 10px;
    gap: 8px;
  }
  .case-page-b__count-item svg {
    max-height: 30px;
  }
  .case-page-b__count-item strong {
    font-size: 32px;
  }
}
@media (min-width: 1300px) {
  .case-page-b__count-item_left {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .case-page-b__count-item_right {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}
.case-page-b__count-item_border {
  border: 1px solid #ddd;
}
.case-page-b__count-item_inrow {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 20px;
}
.case-page-b__count-item_double {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 420px) {
  .case-page-b__count-item_double {
    padding: 0;
  }
}
@media (max-width: 1300px) {
  .case-page-b__count-item_tablet-reset {
    grid-column: inherit !important;
    grid-row: inherit !important;
  }
  .case-page-b__count-item_tablet-double {
    grid-column: 1/3 !important;
  }
}
.case-page-b__count-item_double .case-page-b__count-item {
  padding: 0;
  background: none;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.case-page-b h2 {
  margin: 0 0 16px;
  font-size: 30px;
}
@media (max-width: 1300px) {
  .case-page-b h2 {
    margin: 0 0 12px;
    font-size: 24px;
  }
}
.case-page-b h3 {
  font-size: 24px;
  margin: 0 0 16px;
}
@media (max-width: 1300px) {
  .case-page-b h3 {
    margin: 0 0 12px;
    font-size: 18px;
  }
}
.case-page-b p ~ h2,
.case-page-b p ~ h3 {
  margin-top: 48px;
}
@media (max-width: 1300px) {
  .case-page-b p ~ h2,
  .case-page-b p ~ h3 {
    margin-top: 32px;
  }
}
.case-page-b img {
  display: block;
  margin: 32px 0;
  max-width: 100%;
  height: auto;
}
@media (max-width: 1300px) {
  .case-page-b img {
    margin: 24px 0;
  }
}
.case-page-b figure {
  display: block;
  margin: 48px -64px;
}
.case-page-b figure img {
  width: 100%;
  height: auto;
  margin: 0;
  max-width: initial;
}
@media (max-width: 1300px) {
  .case-page-b figure {
    margin: 32px -22px;
  }
}
.case-page-b ol {
  counter-reset: item;
  margin: 0 0 17px 13px;
}
.case-page-b ol li {
  display: block;
  margin: 0 0 9px;
  font-size: 18px;
  line-height: 28px;
}
@media (max-width: 1300px) {
  .case-page-b ol li {
    font-size: 16px;
    line-height: 24px;
    margin: 0 0 4px;
  }
}
.case-page-b ol li ol {
  margin-top: 10px;
}
.case-page-b ol li:last-child {
  margin: 0;
}
.case-page-b ol li:before {
  content: counters(item, ".") ". ";
  counter-increment: item;
  margin-right: 4px;
}
.case-page-b__start {
  margin: -60px -70px 70px;
  position: relative;
  z-index: 2;
  border-radius: 15px;
  background: #f5f8fa;
  padding: 50px 70px;
}
@media (max-width: 1300px) {
  .case-page-b__start {
    padding: 40px 48px;
    margin: 0 -48px 50px;
    border-radius: 0;
  }
}
@media (max-width: 1000px) {
  .case-page-b__start {
    margin: 0 -22px 50px;
    padding: 40px 22px;
  }
}
.case-page-b__start-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  grid-row-gap: 30px;
}
.case-page-b__start-column {
  width: calc(50% - 60px);
  font-size: 16px;
}
@media (max-width: 1300px) {
  .case-page-b__start-column {
    width: 100%;
  }
}
.case-page-b__start-column a {
  color: #1568f0;
}
.case-page-b__start-column a:hover {
  opacity: 0.7;
}
.case-page-b__start-column strong {
  color: #111;
  font-weight: bold;
}
.case-page-b__start-social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}
.case-page-b__start-social img {
  height: 42px;
  width: auto;
}
.case-page-b__ref {
  font-style: italic;
  line-height: 1.55;
  font-size: 18px;
}
@media (max-width: 1000px) {
  .case-page-b__ref {
    font-size: 16px;
  }
}
.case-page-b__gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  margin: 40px -70px 60px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 1300px) {
  .case-page-b__gallery {
    margin: 0 -48px;
    overflow-x: scroll;
    -ms-flex-wrap: initial;
        flex-wrap: initial;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    gap: 20px;
    padding: 0 48px;
  }
  .case-page-b__gallery::-webkit-scrollbar {
    display: none;
  }
}
@media (max-width: 1000px) {
  .case-page-b__gallery {
    margin: 0 -22px;
    padding: 0 22px;
  }
}
.case-page-b__gallery-item {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 30%;
          flex: 1 0 30%;
  border: 1px solid #efefef;
  border-radius: 10px;
  overflow: hidden;
}
@media (max-width: 1300px) {
  .case-page-b__gallery-item {
    min-width: 250px;
    -webkit-box-flex: initial;
        -ms-flex: initial;
            flex: initial;
  }
}
.case-page-b__gallery-item img {
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
@media (max-width: 1300px) {
  .case-page-b__gallery-item img {
    height: 190px;
  }
}
.case-page-b__gallery-item a {
  display: block;
}
.case-page-b__gallery-item a:hover img {
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
}
.case-page-b__gallery ~ blockquote {
  margin-top: 60px;
}
.case-page-b__client {
  margin: 60px -70px 0;
  padding: 40px;
  border-radius: 10px;
  background: #d8ffd3;
}
@media (max-width: 1300px) {
  .case-page-b__client {
    padding: 25px 20px;
    margin: 60px -48px 0;
  }
}
@media (max-width: 1000px) {
  .case-page-b__client {
    margin: 40px -22px 0;
    border-radius: 0;
  }
}
.case-page-b__client-text {
  position: relative;
  padding: 0 0 0 40px;
  margin: 0 0 20px;
  line-height: 1.4;
  font-size: 19px;
}
@media (max-width: 1300px) {
  .case-page-b__client-text {
    font-size: 15px;
  }
}
.case-page-b__client-text:before {
  content: '“';
  position: absolute;
  font-size: 60px;
  line-height: 1;
  opacity: 0.6;
  font-family: 'Georgia';
  left: 0;
  top: -5px;
}
.case-page-b__client-author {
  padding: 0 0 0 40px;
  font-style: italic;
  color: #666;
}
.case-page-b__client-author a {
  color: var(--color-accent);
}
.case-page-b__client-author a:hover {
  color: var(--color-hover);
}
.case-page-b__compare {
  border: 1px solid #ddd;
  margin: 0 -70px 60px;
}
@media (max-width: 1300px) {
  .case-page-b__compare {
    margin: 0 -48px 50px;
  }
}
@media (max-width: 1000px) {
  .case-page-b__compare {
    margin: 0 -22px 40px;
    border: 0;
  }
}
.case-page-b__compare .twentytwenty-overlay {
  display: none;
}
.case-page-b__compare img {
  width: 100%;
  height: auto;
}
/* Product Page
------------------------------
 */
.product-page__title {
  font-size: 40px;
  margin: 0;
  padding: 0;
  font-weight: 500;
  line-height: 1.2;
}
@media (max-width: 1000px) {
  .product-page__title {
    font-size: 28px;
  }
  .product-page__title br {
    display: none;
  }
}
.product-page__title_h1 {
  margin-bottom: 40px;
  color: #1a68bf;
  font-weight: bold;
}
@media (max-width: 1000px) {
  .product-page__title_h1 {
    margin-bottom: 25px;
  }
}
.product-page__title_h2 {
  margin-bottom: 40px;
}
@media (max-width: 1000px) {
  .product-page__title_h2 {
    margin-bottom: 24px;
  }
}
.product-page__title_h3 {
  margin-bottom: 32px;
  font-size: 26px;
}
.product-page__title_h3-medium {
  font-size: 32px;
}
@media (max-width: 1000px) {
  .product-page__title_h3 {
    font-size: 20px;
    margin-bottom: 16px;
  }
}
.product-page__title_h2.product-page__title_middle {
  margin-bottom: 16px;
}
.product-page__title_middle {
  text-align: center;
}
.product-page__title_fixwidth {
  margin-left: auto;
  margin-right: auto;
  max-width: 600px;
}
p ~ .product-page__title {
  margin-top: 64px;
}
@media (max-width: 1000px) {
  p ~ .product-page__title {
    margin-top: 40px;
  }
}
blockquote ~ .product-page__title {
  margin-top: 64px;
}
@media (max-width: 1000px) {
  blockquote ~ .product-page__title {
    margin-top: 40px;
  }
}
.product-page__grid {
  gap: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 0 32px;
}
@media (max-width: 1000px) {
  .product-page__grid {
    gap: 12px;
    grid-template-columns: repeat(1, 1fr);
    margin: 0 0 24px;
  }
}
.product-page__grid_pays {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1000px) {
  .product-page__grid_pays {
    grid-template-columns: repeat(2, 1fr);
  }
  .product-page__grid_pays img {
    height: 60px;
  }
}
.product-page__item {
  border: 1px solid #d5dfe4;
  border-radius: 8px;
  padding: 16px 16px 24px 16px;
  font-size: 13px;
  line-height: 1.4;
}
.product-page__item img {
  display: block;
  margin: 0 0 16px;
}
.product-page__item small {
  display: block;
  color: #56656e;
  font-size: 12px;
  line-height: 1.3;
  margin: 4px 0 0;
}
a.product-page__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  padding: 16px;
}
a.product-page__item p {
  margin: 0;
  padding: 0;
}
a.product-page__item:hover {
  color: #1a68bf;
  -webkit-box-shadow: 0 16px 24px 0 rgba(14,41,86,0.08);
          box-shadow: 0 16px 24px 0 rgba(14,41,86,0.08);
}
.product-page__grid_gray .product-page__item {
  border: 0;
  background: #f4f7f9;
}
.product-page__grid_inrow .product-page__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.product-page__grid_inrow .product-page__item img {
  width: 23px;
  height: auto;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  margin: 0;
}
.product-page__grid_pays .product-page__item img {
  margin: 0;
}
.product-page__tabs {
  margin: 0 0 24px;
  border-bottom: 2px solid #eee;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}
.product-page__tabs-item {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  padding: 0 0 14px;
  position: relative;
  color: #1a68bf;
  font-size: 18px;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
@media (max-width: 1000px) {
  .product-page__tabs-item {
    font-size: 16px;
  }
}
.product-page__tabs-item:hover {
  color: #e6726e;
}
.product-page__tabs-item_current {
  color: #1b242b;
}
.product-page__tabs-item_current:hover {
  color: #1b242b;
}
.product-page__tabs-item_current:after {
  content: '';
  width: 100%;
  height: 4px;
  background: #e6726e;
  position: absolute;
  left: 0;
  bottom: -2px;
}
.product-page__content {
  display: none;
}
.product-page__content_show {
  display: block;
}
.product-page__count {
  color: #0d64f5;
  font-size: 24px;
  font-weight: bold;
  margin: 0 0 8px;
  padding: 0 0 8px;
  border-bottom: 1px solid #d5dfe4;
}
.product-page__note {
  font-size: 20px;
  line-height: 1.6;
  margin: 0 0 40px;
}
@media (max-width: 1000px) {
  .product-page__note {
    margin: 0 0 25px;
    font-size: 18px;
    line-height: 1.5;
  }
  .product-page__note br {
    display: none;
  }
}
.product-page__note_middle {
  text-align: center;
}
.product-page__crm {
  border-radius: 8px;
  margin: 0 0 40px;
  padding: 64px 77px 96px 77px;
  color: #fff;
}
@media (max-width: 1000px) {
  .product-page__crm {
    padding: 24px 20px 35px;
  }
}
.product-page__crm .product-page__title {
  color: #fff;
  margin: 0 0 16px;
}
@media (max-width: 1000px) {
  .product-page__crm .product-page__title {
    font-size: 24px;
    margin: 0 0 12px;
  }
}
.product-page__crm .product-page__note {
  margin: 0 0 32px;
}
@media (max-width: 1000px) {
  .product-page__crm .product-page__note {
    margin: 0 0 16px;
    font-size: 16px;
  }
}
.product-page__crm .product-page__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.product-page__crm .product-page__button .button {
  max-width: 438px;
  width: 100%;
}
.product-page__table {
  margin: 0 0 32px;
  gap: 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 1000px) {
  .product-page__table {
    gap: 12px;
    grid-template-columns: repeat(1, 1fr);
  }
}
.product-page__table-column {
  padding: 24px;
  border: 1px solid #d5dfe4;
  border-radius: 8px;
  font-size: 16px;
  line-height: 1.5;
}
.product-page__who {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  border-radius: 8px;
  padding: 32px 24px;
  background: #f4f7f9;
  margin: 0 0 32px;
  font-size: 16px;
  line-height: 1.5;
}
.product-page__who_margin {
  margin: 0 0 64px;
}
@media (max-width: 1000px) {
  .product-page__who {
    padding: 24px 16px;
    display: block;
  }
}
.product-page__who-column {
  width: 50%;
}
@media (max-width: 1000px) {
  .product-page__who-column {
    width: 100%;
  }
}
.product-page__who-column_about {
  border-left: 1px solid #d5dfe4;
  padding: 0px 0px 0px 24px;
}
@media (max-width: 1000px) {
  .product-page__who-column_about {
    border-left: 0;
    border-top: 1px solid #d5dfe4;
    padding: 24px 0 0;
    margin: 24px 0 0;
  }
}
.product-page__who-column_about strong {
  margin: 0 0 24px;
}
.product-page__who-column_about ul li {
  margin: 0 0 16px;
}
.product-page__who-column_about ul li:last-child {
  margin: 0;
}
.product-page__who .product-page__title {
  margin: 0 0 16px;
}
.product-page__why {
  margin: 64px 0;
  gap: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 1000px) {
  .product-page__why {
    grid-template-columns: repeat(1, 1fr);
  }
}
.product-page__why-logo {
  margin-top: 48px;
}
@media (max-width: 1000px) {
  .product-page__why-logo {
    margin: 24px 0 0;
  }
}
.product-page__why-logo img {
  max-width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 1000px) {
  .product-page__why-logo img {
    max-width: 240px;
  }
}
.product-page__why-sticky {
  position: sticky;
  top: 24px;
}
.product-page__why-sticky img {
  max-width: 100%;
  height: auto;
}
.product-page__why-quote {
  margin: 24px 0 0;
  padding: 16px;
  font-size: 14px;
  line-height: 1.7;
  border-radius: 4px;
  background: #fff5d7;
}
.product-page__why-item {
  margin: 0 0 24px;
  font-size: 15px;
  line-height: 1.6;
  color: #56656e;
}
.product-page__why-item strong {
  display: block;
  margin: 0 0 8px;
  font-size: 16px;
  color: #1b242b;
  font-weight: 700;
}
.product-page__why-item:last-child {
  margin: 0;
}
.product-page__why-list_second .product-page__why-item strong {
  color: var(--color-accent);
}
.product-page__steps {
  margin: 64px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}
@media (max-width: 1000px) {
  .product-page__steps {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.product-page__steps-content {
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
}
.product-page__steps-pic {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  width: 40%;
}
@media (max-width: 1000px) {
  .product-page__steps-pic {
    width: 100%;
  }
}
.product-page__steps-pic img {
  border-radius: 8px;
  width: 100%;
  height: auto;
}
.product-page__steps-list {
  counter-reset: element;
}
.product-page__steps-item {
  position: relative;
  margin: 0 0 16px;
  padding: 0 0 0 40px;
}
.product-page__steps-item:before {
  counter-increment: element;
  content: counter(element);
  position: absolute;
  top: 3px;
  left: 0;
  width: 24px;
  height: 24px;
  padding: 2px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  border: 1px solid #d5dfe4;
  font-size: 14px;
  font-weight: 500;
  color: #56656e;
}
@media (max-width: 1000px) {
  .product-page__steps-item:before {
    top: 0;
  }
}
.product-page__steps-item small {
  display: block;
  margin: 4px 0 0;
  font-size: 14px;
  color: #8d9195;
}
.product-page__steps-item:last-child {
  margin: 0;
}
.product-page__steps .product-page__title {
  margin: 0 0 32px;
}
@media (max-width: 1000px) {
  .product-page__steps .product-page__title {
    margin: 0 0 24px;
  }
}
.product-page__order {
  border: 1px solid #d5dfe4;
  border-radius: 8px;
  padding: 32px 154px 48px 154px;
  -webkit-box-shadow: 0 1px 2px 0 rgba(188,195,199,0.56);
          box-shadow: 0 1px 2px 0 rgba(188,195,199,0.56);
  position: relative;
}
@media (max-width: 1000px) {
  .product-page__order {
    padding: 32px 24px;
  }
}
.product-page__order-label {
  position: absolute;
  top: 32px;
  right: 0;
}
.product-page__order-label img {
  -webkit-filter: drop-shadow(0 16px 24px rgba(14,41,87,0.2));
          filter: drop-shadow(0 16px 24px rgba(14,41,87,0.2));
}
@media (max-width: 1000px) {
  .product-page__order-label {
    top: 0;
  }
  .product-page__order-label img {
    height: 90px;
  }
}
.product-page__order-form {
  max-width: 438px;
  margin: 0 auto;
  width: 100%;
}
.product-page__order-form .input-text {
  margin: 0 0 16px;
}
.product-page__order-form .button {
  margin: 8px 0 0;
  width: 100%;
}
.product-page__order .product-page__title {
  margin: 0 0 24px;
  font-weight: bold;
}
@media (max-width: 1000px) {
  .product-page__order .product-page__title {
    margin: 0 0 16px;
  }
}
.product-page__order .product-page__note {
  margin: 0 auto 24px;
  max-width: 592px;
}
.product-page__section {
  margin: 64px 0 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}
@media (max-width: 1000px) {
  .product-page__section {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 48px 0 64px;
  }
}
.product-page__section_reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media (max-width: 1000px) {
  .product-page__section_reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.product-page__section-pic {
  width: 40%;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.product-page__section-pic img {
  max-width: 100%;
  height: auto;
}
@media (max-width: 1000px) {
  .product-page__section-pic {
    width: 100%;
  }
}
.product-page__section .product-page__title {
  margin: 0 0 16px;
  font-size: 32px;
  font-weight: 500;
}
.product-page__box {
  margin: 0 0 64px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 64px;
  gap: 40px;
  border-radius: 8px;
  background: #f4f7f9;
}
@media (max-width: 1000px) {
  .product-page__box {
    padding: 24px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
  }
  .product-page__box-pic img {
    max-width: 150px;
    height: auto;
  }
}
.product-page__box-about .product-page__title {
  margin: 0 0 16px;
  font-weight: bold;
}
.product-page__box-about .product-page__note {
  max-width: 516px;
  margin: 0 0 32px;
}
.product-page__button {
  display: table;
}
.product-page__button .button {
  padding: 0 24px;
}
@media (max-width: 1000px) {
  .product-page__button {
    display: block;
  }
}
.product-page__compare {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  margin: 48px 0 64px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media (max-width: 1000px) {
  .product-page__compare {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 32px 0 48px;
  }
}
.product-page__compare-column {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 24px 16px;
  border: 1px solid #d5dfe4;
  border-radius: 8px;
}
@media (max-width: 1000px) {
  .product-page__compare-column {
    -webkit-box-flex: initial;
        -ms-flex: initial;
            flex: initial;
    width: 100%;
  }
}
.product-page__compare-title {
  margin: 0 0 16px;
  font-weight: bold;
}
.product-page__compare-label {
  margin: 0 0 12px;
  font-size: 12px;
  color: #8d9195;
}
.product-page__compare-count {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 0 16px;
  gap: 4px;
}
.product-page__compare-value input {
  display: none;
}
.product-page__compare-value input + label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #f4f7f9;
  height: 32px;
  padding: 4px 8px 0;
  border-radius: 4px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  color: var(--color-accent);
  font-size: 14px;
}
.product-page__compare-value input + label:hover {
  background: #efefef;
}
.product-page__compare-value input:checked + label {
  color: #fff;
  background: var(--color-accent);
}
.product-page__compare-list ul {
  margin: 0;
}
.product-page__compare-list ul li {
  font-size: 14px;
  margin: 0 0 8px;
}
.product-page__compare-list ul li:last-child {
  margin: 0;
}
.product-page__compare-bottom {
  padding: 16px 0 0;
  margin: 16px 0 0;
  border-top: 1px solid #d5dfe4;
}
.product-page__compare-bottom .product-page__compare-label {
  margin: 0 0 8px;
}
.product-page__compare-price {
  font-size: 24px;
  font-weight: 500;
}
.code-list-b {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 1000px) {
  .code-list-b {
    grid-template-columns: repeat(1, 1fr);
  }
}
.code-list-b__block {
  background: #f5f8fa;
  border-radius: 10px;
  overflow: hidden;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 1000px) {
  .code-list-b__block:hover {
    -webkit-box-shadow: 0px 20px 23px 0px rgba(56,77,144,0.08), 0px 8px 13px -3px rgba(41,57,109,0.1);
            box-shadow: 0px 20px 23px 0px rgba(56,77,144,0.08), 0px 8px 13px -3px rgba(41,57,109,0.1);
    -webkit-transform: translateY(-4px);
            transform: translateY(-4px);
  }
}
.code-list-b__preview {
  display: block;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
}
.code-list-b__preview img {
  width: 100%;
  height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
}
.code-list-b__about {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 16px 16px 24px;
  gap: 16px;
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
}
.code-list-b__title {
  font-size: 18px;
  display: block;
  font-weight: 600;
}
.code-list-b__count {
  color: #666;
  font-size: 13px;
  margin: auto 0 0;
}
.example-code-b {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
}
.example-code-b__header {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 9;
  width: 100%;
  background: #fff;
  -webkit-box-shadow: 0 5px 15px rgba(0,0,0,0.05);
          box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.example-code-b__header .max-width {
  max-width: 1620px;
}
.example-code-b__header-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 60px;
  position: relative;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 1000px) {
  .example-code-b__header-grid {
    height: 50px;
  }
}
@media (max-width: 1000px) {
  .example-code-b__logo .aside__logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 8px;
  }
  .example-code-b__logo .aside__logo-icon {
    width: 28px;
    height: 28px;
    margin: 0;
  }
  .example-code-b__logo .aside__logo-icon img {
    width: 10px;
  }
  .example-code-b__logo .aside__logo-title {
    font-size: 15px;
  }
}
.example-code-b__back .button {
  height: 40px;
  padding: 0 16px;
  font-size: 16px;
}
@media (max-width: 1000px) {
  .example-code-b__back .button {
    height: 32px;
    padding: 0 12px;
    font-size: 14px;
  }
}
.example-code-b__select {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 5;
}
@media (max-width: 1000px) {
  .example-code-b__select {
    position: fixed;
    bottom: 20px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    top: initial;
    border-radius: 35px;
    padding: 0 20px;
    -webkit-box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    background: #fff;
    z-index: 3;
    height: 42px;
    gap: 0;
  }
}
.example-code-b__label {
  font-size: 18px;
  font-weight: 600;
}
@media (max-width: 1000px) {
  .example-code-b__label {
    font-size: 15px;
    padding: 0 12px 0 0;
    margin: 0 12px 0 0;
    border-right: 1px solid #eee;
  }
}
.example-code-b__dropdown {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  min-width: 220px;
}
@media (max-width: 1000px) {
  .example-code-b__dropdown {
    min-width: initial;
    position: initial;
  }
}
.example-code-b__dropdown-value {
  height: 40px;
  padding: 0 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border: 1px solid #eee;
  border-radius: 8px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  gap: 12px;
  width: 100%;
}
@media (max-width: 1000px) {
  .example-code-b__dropdown-value {
    width: initial;
    white-space: nowrap;
    padding: 0;
    height: initial;
    border: 0;
    border-radius: 35px;
    gap: 6px;
    font-size: 14px;
  }
}
.example-code-b__dropdown-value:hover {
  border-color: var(--color-accent);
}
.example-code-b__dropdown-value img {
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
@media (max-width: 1000px) {
  .example-code-b__dropdown-value img {
    height: 12px;
    width: auto;
  }
}
.example-code-b__dropdown-value_active {
  border-color: var(--color-accent);
}
.example-code-b__dropdown-value_active img {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.example-code-b__dropdown-list {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  width: 100%;
  white-space: nowrap;
  padding: 6px 0;
  background: #fff;
  border-radius: 8px;
  border: 1px solid #eee;
  z-index: 3;
  display: none;
  max-height: 300px;
  overflow-y: auto;
  overflow-x: hidden;
}
@media (max-width: 1000px) {
  .example-code-b__dropdown-list {
    top: initial;
    bottom: calc(100% + 5px);
    padding: 12px 0;
    border-radius: 16px;
  }
}
.example-code-b__dropdown-links {
  display: block;
  padding: 8px 16px;
}
.example-code-b__dropdown-links:hover {
  background: #f5f5f5;
}
.example-code-b__dropdown-links_current {
  background: #e0ecff !important;
}
.example-code-b__frame {
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
  position: relative;
}
.example-code-b__frame iframe {
  width: 100%;
  height: calc(100vh - 66px);
  display: block;
}
.example-code-b__frame_tablet {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 22px;
}
.example-code-b__frame_tablet iframe {
  height: calc(100vh - 104px);
}
.example-code-b__frame_mobile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 22px;
}
.example-code-b__frame_mobile iframe {
  height: calc(100vh - 104px);
}
.example-code-b__frame_tablet .example-code-b__page {
  overflow: hidden;
  max-width: 767px;
  width: 100%;
  background: #fff;
  -webkit-box-shadow: 0 5px 15px rgba(0,0,0,0.05);
          box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  border-radius: 16px;
}
.example-code-b__frame_mobile .example-code-b__page {
  overflow: hidden;
  max-width: 414px;
  width: 100%;
  background: #fff;
  -webkit-box-shadow: 0 5px 15px rgba(0,0,0,0.05);
          box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  border-radius: 16px;
}
.example-code-b__tabs {
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 8px;
  position: relative;
}
@media (max-width: 1000px) {
  .example-code-b__tabs {
    display: none;
  }
}
.example-code-b__tabs-item {
  border: 1px solid #eee;
  border-right: 0;
  padding: 0 12px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  margin: 0 -1px 0 0;
}
.example-code-b__tabs-item:hover {
  background: #f5f5f5;
}
.example-code-b__tabs-item_active {
  border-color: #e0ecff;
  background: #e0ecff !important;
}
.example-code-b__tabs-item:first-child {
  border-radius: 8px 0 0 8px;
}
.example-code-b__tabs-item:last-child {
  border-right: 1px solid #eee;
  border-radius: 0 8px 8px 0;
}

/* Slider */
.slick-slider
{
    position: relative;

    display: block;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}

.aside {
  width: 320px;
  height: 100vh;
  background: #f5f8fa;
  padding: 50px 30px 30px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow-y: auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  position: sticky;
  top: 0;
}
@media (max-width: 1000px) {
  .aside {
    position: fixed;
    top: 0;
    left: 0;
    min-height: initial;
    height: calc(var(--vh, 1vh) * 100);
    width: 320px;
    padding: 30px 20px 40px 20px;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    z-index: 100;
    -webkit-transition: 0.15s linear;
    transition: 0.15s linear;
  }
  .wrapper_open .aside {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.aside__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-transform: uppercase;
  font-size: 22px;
  letter-spacing: 1.99px;
  font-weight: 600;
  color: #0a6af1;
}
@media (max-width: 1000px) {
  .aside__logo {
    display: none;
  }
}
.aside__logo-icon {
  width: 45px;
  height: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 13px 2px 0;
  border-radius: 100%;
  border: 2px solid #0a6af1;
}
.aside__logo-icon img {
  display: block;
}
.aside__reviews {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 2px 0 40px 54px;
}
@media (max-width: 1000px) {
  .aside__reviews {
    padding: 0 0 0 24px;
  }
}
.aside__reviews-stars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 600;
  color: #eca71f;
  margin: -2px 0 0;
  font-size: 13px;
}
.aside__reviews-stars span {
  margin: 2px 4px 0 0;
  display: block;
}
.aside__reviews-stars img {
  display: block;
}
.aside__reviews-note {
  color: #5f717a;
  font-size: 13px;
  -webkit-transition: 0.15s linear;
  transition: 0.15s linear;
}
.aside__reviews:hover .aside__reviews-note {
  color: var(--color-hover);
}
.aside__login {
  border: 1px solid #ddd;
  height: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 5px;
}
@media (max-width: 1000px) {
  .aside__login {
    display: none;
  }
}
.aside__login:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}
.aside__middle {
  margin: 50px 0;
}
.aside__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
.aside__menu-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 42px;
  font-size: 17px;
  margin: 0 0 5px;
  gap: 12px;
}
.aside__menu-links svg {
  fill: var(--color-accent);
  -webkit-transition: 0.15s linear;
  transition: 0.15s linear;
  -webkit-transform: translateX(-5px);
          transform: translateX(-5px);
  opacity: 0;
}
.aside__menu-links:hover {
  color: var(--color-accent) !important;
}
.aside__menu-links:hover svg {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
}
.aside__menu-links_current {
  color: var(--color-accent) !important;
  border: 0 !important;
}
.aside__menu-links_current svg {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
}
.aside__menu-links:last-child {
  margin: 0;
}
.aside__menu-inner {
  border-left: 3px solid rgba(0,0,0,0.07);
  padding: 0 0 0 16px;
  margin: 0 0 10px 20px;
}
.aside__menu-inner .aside__menu-links {
  height: initial;
  font-size: 15px;
  margin: 0 0 15px;
}
.aside__menu-inner .aside__menu-links:last-child {
  margin: 0;
}
.aside__menu-toggle {
  position: relative;
  padding-left: 24px;
}
.aside__menu-toggle:before {
  content: '';
  top: 0;
  height: calc(100% - 30px);
  left: 5px;
  background: #bcc3cc;
  width: 1px;
  position: absolute;
}
.aside__menu-toggle .aside__menu-links {
  position: relative;
}
.aside__menu-toggle .aside__menu-links:before {
  width: 8px;
  height: 8px;
  border-left: 1px solid #bcc3cc;
  border-bottom: 1px solid #bcc3cc;
  content: '';
  border-radius: 0 0 0 4px;
  position: absolute;
  left: -19px;
  top: calc(50% - 5px);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.aside__submenu {
  padding: 24px 0 0 24px;
  border-top: 1px solid #ddd;
  margin-top: 14px;
}
.aside__submenu-links {
  display: block;
  margin: 0 0 15px;
  font-size: 14px;
}
.aside__submenu-links:last-child {
  margin: 0;
}
.aside__submenu-links:hover {
  color: var(--color-accent);
}
.aside__submenu-links_current {
  color: var(--color-accent);
}
.aside__bottom {
  margin: auto 0 0;
}
.aside__phone {
  padding-left: 24px;
}
.aside__phone-links {
  color: #111e2d;
  display: block;
  font-size: 17px;
  margin: 0 0 1px;
}
.aside__phone-links:hover {
  color: var(--color-hover);
}
.aside__phone-note {
  color: #5f717a;
  font-size: 12px;
}
.catalog-b {
  padding: 10px 0 70px;
  position: relative;
}
@media (max-width: 1000px) {
  .catalog-b {
    padding: 10px 0 40px;
  }
}
.catalog-b__list {
  width: 100%;
  margin: 0 0 52px 15px;
  display: table;
}
@media (max-width: 1300px) {
  .catalog-b__list {
    margin-left: 0;
  }
}
@media (max-width: 1000px) {
  .catalog-b__list {
    margin: 0 0 35px;
    padding: 0;
    width: initial;
  }
}
.catalog-b__title {
  margin: 0 0 16px;
  color: #1c2832;
  font-size: 28px;
  line-height: 1.3;
}
@media (max-width: 1000px) {
  .catalog-b__title {
    font-size: 20px;
  }
}
.catalog-b__comment {
  color: #4d4f4e;
  padding: 0 0 0 15px;
  font-size: 15px;
  line-height: 21px;
}
@media (max-width: 1000px) {
  .catalog-b__comment {
    padding: 0;
    font-size: 13px;
    line-height: 1.4;
  }
}
.catalog-module {
  border-radius: 6px;
  background-color: #f5f8fa;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 0 12px;
  position: relative;
  padding: 24px 37px 36px;
}
@media (max-width: 1000px) {
  .catalog-module {
    padding: 20px 17px;
  }
}
.catalog-module__popular {
  position: absolute;
  top: -7px;
  right: -8px;
}
.catalog-module__popular span {
  -webkit-transform: rotate(45deg) translate(44px, 16px);
          transform: rotate(45deg) translate(44px, 16px);
  text-transform: uppercase;
  font-size: 11px;
  position: absolute;
  letter-spacing: 1.1px;
  color: #34373b;
  font-weight: 600;
}
@media (max-width: 1000px) {
  .catalog-module__popular {
    top: -6px;
    right: -6px;
  }
  .catalog-module__popular span {
    font-size: 9px;
    -webkit-transform: rotate(45deg) translate(27px, 15px);
            transform: rotate(45deg) translate(27px, 15px);
  }
  .catalog-module__popular .icon__lenta {
    width: 82px;
    height: 82px;
  }
}
.catalog-module__picture {
  width: 100px;
  margin: -5px 0 0;
}
@media (max-width: 1000px) {
  .catalog-module__picture {
    width: 50px;
    margin: -1px 0 0;
  }
}
.catalog-module__picture img {
  width: 100px;
  height: 125px;
}
@media (max-width: 1000px) {
  .catalog-module__picture img {
    width: 50px;
    height: 63px;
  }
}
.catalog-module__about {
  width: calc(100% - 131px);
}
@media (max-width: 1000px) {
  .catalog-module__about {
    width: calc(100% - 70px);
  }
}
.catalog-module__title {
  color: #1c2832;
  font-size: 22px;
  line-height: 28px;
  font-weight: bold;
  margin: 0 0 7px;
}
@media (max-width: 1000px) {
  .catalog-module__title {
    font-size: 20px;
    line-height: 1.3;
  }
}
.catalog-module__link {
  color: #1c2832;
  border-bottom: 1px solid rgba(23,23,23,0.2);
}
.catalog-module__link:hover {
  color: #fc5252;
  border-color: #fecccc;
}
.catalog-module__text {
  font-size: 17px;
  line-height: 26px;
  color: #212426;
  padding: 0 0 19px;
  max-width: 660px;
}
@media (max-width: 1000px) {
  .catalog-module__text {
    font-size: 15px;
    line-height: 1.4;
  }
}
.catalog-module__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1000px) {
  .catalog-module__actions {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.catalog-module__download {
  padding: 0 0 0 15px;
  color: #171818;
  letter-spacing: 1.3px;
  font-size: 12px;
  text-transform: uppercase;
}
@media (max-width: 1000px) {
  .catalog-module__download {
    padding: 10px 0 0;
  }
}
.catalog-module__sale {
  font-size: 14px;
  color: #ee2525;
  margin: 10px 0 -6px;
  font-style: italic;
}
@media (max-width: 1000px) {
  .catalog-module__sale {
    margin: 10px 0 0;
  }
}
.header-b {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  background: #fff;
  z-index: 99;
  -webkit-box-shadow: 0 5px 15px rgba(0,0,0,0.05);
          box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  display: none;
}
@media (max-width: 1000px) {
  .header-b {
    display: block;
  }
}
.header-b .max-width {
  position: relative;
}
.header-b__grid {
  height: 65px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}
.header-b__logo {
  position: relative;
}
.header-b__logo-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-transform: uppercase;
  font-size: 21px;
  letter-spacing: 1.99px;
  font-weight: 600;
  color: #0a6af1;
}
.header-b__logo-circle {
  width: 36px;
  height: 36px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 8px 2px 0;
  border-radius: 100%;
  border: 2px solid #0a6af1;
}
.header-b__logo-circle img {
  display: block;
  height: 20px;
}
.header-b__logo-name {
  padding-top: 4px;
}
.header-b__auth {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.header-b__auth-links {
  display: block;
  text-align: center;
}
.header-b__auth-links img {
  display: table;
  margin: 0 auto;
}
.header-b__auth-links p {
  color: #5f717a;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 6px 0 0;
}
.header-b__burger {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: none;
}
@media (max-width: 1000px) {
  .header-b__burger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .header-b__burger i {
    background: #111;
    width: 25px;
    display: block;
    margin: 3px 0;
    height: 2px;
    -webkit-transition: width 0.1s linear;
    transition: width 0.1s linear;
  }
  .header-b__burger i:first-child {
    top: 0;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    position: relative;
    -webkit-transition: top 0.2s linear, -webkit-transform 0.2s linear;
    transition: top 0.2s linear, -webkit-transform 0.2s linear;
    transition: transform 0.2s linear, top 0.2s linear;
    transition: transform 0.2s linear, top 0.2s linear, -webkit-transform 0.2s linear;
  }
  .header-b__burger i:nth-child(2) {
    opacity: 1;
    -webkit-transition: opacity 0.2s linear;
    transition: opacity 0.2s linear;
  }
  .header-b__burger i:nth-child(3) {
    position: relative;
    top: 0;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    -webkit-transition: top 0.2s linear, -webkit-transform 0.2s linear;
    transition: top 0.2s linear, -webkit-transform 0.2s linear;
    transition: transform 0.2s linear, top 0.2s linear;
    transition: transform 0.2s linear, top 0.2s linear, -webkit-transform 0.2s linear;
  }
  .header-b__burger_active {
    pointer-events: none;
  }
  .header-b__burger_active i:first-child {
    top: 8px;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    -webkit-transition: top 0.2s linear, -webkit-transform 0.2s linear;
    transition: top 0.2s linear, -webkit-transform 0.2s linear;
    transition: transform 0.2s linear, top 0.2s linear;
    transition: transform 0.2s linear, top 0.2s linear, -webkit-transform 0.2s linear;
  }
  .header-b__burger_active i:nth-child(2) {
    opacity: 0;
    -webkit-transition: opacity 0.2s linear;
    transition: opacity 0.2s linear;
  }
  .header-b__burger_active i:nth-child(3) {
    top: -8px;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
    -webkit-transition: top 0.2s linear, -webkit-transform 0.2s linear;
    transition: top 0.2s linear, -webkit-transform 0.2s linear;
    transition: transform 0.2s linear, top 0.2s linear;
    transition: transform 0.2s linear, top 0.2s linear, -webkit-transform 0.2s linear;
  }
}
.how-b {
  margin: 0 0 168px;
}
@media (max-width: 1000px) {
  .how-b {
    height: auto;
    margin: 0 0 75px;
  }
}
.how-b-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.how-b-grid.sticky {
  top: 100px;
  position: sticky;
}
.how-b__content {
  width: 55%;
}
@media (max-width: 1300px) {
  .how-b__content {
    width: 100%;
  }
}
.how-b__list {
  margin: 35px 0 0;
}
@media (max-width: 1300px) {
  .how-b__list {
    margin: 0;
  }
}
.how-b__item {
  position: relative;
  padding: 0 0 20px 50px;
  font-size: 22px;
  line-height: 33px;
}
@media (max-width: 1300px) {
  .how-b__item {
    font-size: 16px;
    line-height: 24px;
  }
}
.how-b__dot {
  z-index: 9;
  position: absolute;
  left: 0;
  top: 22px;
  width: 22px;
  border-radius: 100%;
  height: 22px;
  border: solid 2px #e6e7e8;
  background-color: #fff;
}
.how-b__dot--active {
  left: -2px;
  top: -2px;
  background: #1771f1;
  border-color: #1771f1;
  -webkit-transform: scale(0);
          transform: scale(0);
  z-index: 11;
}
.how-b__dot--done {
  left: -2px;
  top: -2px;
  background: #bcbec0;
  border-color: #bcbec0;
  -webkit-transform: scale(0);
          transform: scale(0);
  z-index: 10;
}
@media (max-width: 1300px) {
  .how-b__dot {
    top: 0;
  }
}
.how-b__line {
  width: 2px;
  left: 10px;
  height: 100%;
  position: absolute;
  top: 22px;
  background: #e6e7e8;
  z-index: 1;
}
.how-b__line--active {
  left: 0;
  top: 0;
  height: 0;
  z-index: 2;
  background: #bcbec0;
}
@media (max-width: 1300px) {
  .how-b__line {
    top: 0;
  }
}
.how-b__item:last-child .how-b__line {
  display: none;
}
.how-b__sidebar {
  margin: 10px 0 0;
  width: 40%;
}
@media (max-width: 1300px) {
  .how-b__sidebar {
    display: none;
  }
}
.how-b__sidebar img {
  max-width: 100%;
  height: auto;
}
.need-b {
  margin: 0 0 160px;
}
@media (max-width: 1000px) {
  .need-b {
    margin: 0 0 85px;
  }
}
.need-b-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 1000px) {
  .need-b-grid {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
}
.need-b__item {
  width: 29%;
}
.need-b__item_2 {
  margin: 44px 0 0;
}
.need-b__item_3 {
  margin: 88px 0 0;
}
@media (max-width: 1000px) {
  .need-b__item {
    margin: 0 0 40px;
    width: 100%;
  }
  .need-b__item:last-child {
    margin: 0;
  }
}
.need-b__pic {
  position: relative;
}
.need-b__pic svg {
  width: 100%;
  height: auto;
  max-width: 304px;
}
.need-b__title {
  margin: 18px 0 7px;
  font-weight: 700;
  font-size: 26px;
}
@media (max-width: 1300px) {
  .need-b__title {
    margin: 5px 0 2px;
    font-size: 21px;
  }
}
@media (max-width: 1000px) {
  .need-b__title {
    margin: 10px 0 7px;
    font-size: 24px;
  }
}
.need-b__text {
  font-size: 18px;
  line-height: 1.4;
  max-width: 86%;
}
@media (max-width: 1300px) {
  .need-b__text {
    font-size: 14px;
  }
}
@media (max-width: 1000px) {
  .need-b__text {
    font-size: 16px;
    line-height: 24px;
    max-width: 100%;
  }
}
.footer-b {
  background: linear-gradient(180deg, #0f172a 0%, #111e2d 100%);
  padding: 80px 0 48px;
  margin-top: 80px;
  color: rgba(226, 232, 240, 0.85);
}
@media (max-width: 1200px) {
  .footer-b {
    padding: 70px 0 40px;
    margin-top: 60px;
  }
}
@media (max-width: 768px) {
  .footer-b {
    padding: 64px 0 36px;
    margin-top: 40px;
  }
}
.footer-b a {
  color: rgba(226, 232, 240, 0.9);
  transition: color 0.2s ease;
}
.footer-b a:hover {
  color: #38bdf8;
}
.footer-b__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(200px, 1fr));
  gap: 42px;
}
@media (max-width: 1200px) {
  .footer-b__grid {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
    gap: 36px;
  }
}
@media (max-width: 640px) {
  .footer-b__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.footer-b__column {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.footer-b__column--brand {
  gap: 20px;
}
.footer-b__logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.footer-b__logo-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 2px solid rgba(248, 250, 252, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(248, 250, 252, 0.08);
}
.footer-b__logo-icon img {
  width: 18px;
  height: auto;
  filter: brightness(0) invert(1);
  display: block;
}
.footer-b__logo-text {
  text-transform: uppercase;
  font-size: 22px;
  letter-spacing: 1.9px;
  font-weight: 600;
  color: #f8fafc;
}
.footer-b__tagline {
  margin: 0;
  font-size: 15px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(226, 232, 240, 0.6);
}
.footer-b__contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-b__label {
  font-size: 13px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(226, 232, 240, 0.5);
}
.footer-b__link {
  font-size: 16px;
}
.footer-b__link--accent {
  font-weight: 600;
}
.footer-b__socials {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-b__social-icons {
  display: flex;
  gap: 14px;
}
.footer-b__social-icons a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(56, 189, 248, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.footer-b__social-icons a:hover {
  background: rgba(56, 189, 248, 0.25);
}
.footer-b__heading {
  margin: 0;
  font-size: 15px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(226, 232, 240, 0.6);
}
.footer-b__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-b__list li {
  line-height: 1.5;
}
.footer-b__text {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(226, 232, 240, 0.72);
}
.footer-b__payments {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 6px;
}
.footer-b__payments img {
  display: block;
  height: 16px;
  width: auto;
}
.footer-b__payment {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 32px;
  border-radius: 8px;
  background: rgba(148, 163, 184, 0.18);
  color: #f8fafc;
  font-size: 20px;
}
.footer-b__payment i {
  display: block;
}
.footer-b__column--legal .footer-b__list {
  gap: 8px;
}
.footer-b__column--legal .footer-b__list a {
  font-size: 15px;
}
.footer-b__rules {
  margin: 0 0 26px;
}
@media (max-width: 320px) {
  .footer-b__rules {
    margin: 0 0 16px;
  }
}
.footer-b__rules-toggle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  -webkit-transition: 0.15s linear;
  transition: 0.15s linear;
}
.footer-b__rules-toggle span {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  display: block;
  margin: 0 0 0 5px;
}
.footer-b__rules-toggle svg {
  -webkit-transition: 0.15s linear;
  transition: 0.15s linear;
}
@media (min-width: 1000px) {
  .footer-b__rules-toggle:hover {
    color: #fc5252;
  }
  .footer-b__rules-toggle:hover svg {
    fill: #fc5252;
  }
}
.footer-b__rules-content {
  max-width: 600px;
  padding: 17px 0 44px;
  display: none;
}
@media (max-width: 1000px) {
  .footer-b__rules-content {
    padding: 0 0 50px;
  }
}
.footer-b__rules-content ol {
  margin: 0 0 9px 17px;
  list-style: upper-alpha;
}
.footer-b__rules-content ol li {
  margin: 0 0 8px;
  font-size: 15px;
  padding-left: 7px;
  line-height: 24px;
  color: rgba(17,30,45,0.7);
  font-family: 'Open Sans', Arial, sans-serif;
}
@media (max-width: 1000px) {
  .footer-b__rules-content ol li {
    font-size: 14px;
    line-height: 24px;
  }
}
@media (max-width: 320px) {
  .footer-b__rules-content ol li {
    font-size: 12px;
    line-height: 16px;
  }
}
.footer-b__rules-content ol li:last-child {
  margin: 0;
}
.footer-b__rules-content p {
  margin: 0 0 8px;
  font-size: 15px;
  line-height: 24px;
  color: rgba(17,30,45,0.7);
  font-family: 'Open Sans', Arial, sans-serif;
}
@media (max-width: 1000px) {
  .footer-b__rules-content p {
    font-size: 14px;
    line-height: 24px;
  }
}
@media (max-width: 320px) {
  .footer-b__rules-content p {
    font-size: 12px;
    line-height: 16px;
  }
}
.footer-b__rules-content a {
  color: #1568f0;
}
.footer-b__rules-content a:hover {
  color: #fc5252;
}
.footer-b__rules-content a.button {
  color: #fff !important;
}
.footer-b__rules-title {
  margin: 0 0 28px;
  font-weight: 600;
  font-size: 30px;
  line-height: 35px;
}
@media (max-width: 1000px) {
  .footer-b__rules-title {
    display: none;
  }
}
.footer-b__rules-label {
  margin: 20px 0 7px;
  color: #000;
  font-size: 17px;
}
@media (max-width: 1000px) {
  .footer-b__rules-label {
    font-size: 16px;
    line-height: 22px;
  }
}
@media (max-width: 320px) {
  .footer-b__rules-label {
    font-size: 14px;
    line-height: 18px;
    margin: 15px 0 4px;
  }
}
.footer-b__form {
  padding: 66px 0 0;
}
@media (max-width: 1000px) {
  .footer-b__form {
    padding-top: 32px;
  }
}
.footer-b__form .button {
  margin: 0 0 13px;
}
.footer-b__form .online-b {
  margin: 0;
}
.footer-b__copy {
  color: rgba(28,40,50,0.5);
  font-size: 11px;
}
@media (max-width: 1000px) {
  .footer-b__copy {
    font-size: 10px;
  }
}
.footer-b__copy a {
  color: rgba(28,40,50,0.5);
  padding: 0 0 1px;
  border-bottom: 1px solid rgba(28,40,50,0.15);
}
@media (max-width: 1000px) {
  .footer-b__copy a {
    border: 0;
    padding: 0;
  }
}
.footer-b__copy a:hover {
  border-bottom: 1px solid rgba(28,40,50,0.3);
}
.footer-b__copy img {
  display: inline-block;
  vertical-align: middle;
  margin: 0 0 2px 11px;
}
@media (max-width: 1000px) {
  .footer-b__copy img {
    display: block;
    margin: 5px 0 0;
  }
}

/* Cookie Notice
-------------------
 */
.cookie-notice {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10000;
  background: #ffffff;
  color: #666666;
  padding: 16px 24px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15), 0 2px 8px rgba(0, 0, 0, 0.1);
  display: none;
  animation: slideUp 0.3s ease-out;
  max-width: 1300px;
  width: calc(100% - 96px);
  margin: 0 auto;
}

@keyframes slideUp {
  from {
    transform: translateX(-50%) translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
}

.cookie-notice__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
}

.cookie-notice__text {
  flex: 1;
  font-size: 14px;
  line-height: 1.5;
  color: #888888;
}

.cookie-notice__button {
  flex-shrink: 0;
  padding: 10px 24px;
  background: #f0f0f0;
  color: #666666;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.cookie-notice__button:hover {
  background: #e8e8e8;
  border-color: #d0d0d0;
  color: #555555;
}

.cookie-notice__button:active {
  background: #e0e0e0;
}

@media (max-width: 1440px) {
  .cookie-notice {
    width: calc(100% - 44px);
  }
}

@media (max-width: 768px) {
  .cookie-notice {
    bottom: 16px;
    padding: 14px 18px;
    width: calc(100% - 32px);
  }

  .cookie-notice__container {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }

  .cookie-notice__text {
    font-size: 13px;
    text-align: center;
  }

  .cookie-notice__button {
    width: 100%;
    padding: 10px 20px;
  }
}

@media (max-width: 480px) {
  .cookie-notice {
    bottom: 12px;
    padding: 12px 16px;
    width: calc(100% - 24px);
    border-radius: 8px;
  }

  .cookie-notice__container {
    gap: 12px;
  }

  .cookie-notice__text {
    font-size: 12px;
  }

  .cookie-notice__button {
    padding: 10px 18px;
    font-size: 13px;
  }
}

/* Popup Review
-------------------
 */
.modal-b {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  pointer-events: none;
  opacity: 0;
  color: #000;
  text-align: left;
}
.modal-b:after {
  content: '';
  z-index: 1;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(5,45,102,0.3);
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
  -webkit-transition: 0.05s linear;
  transition: 0.05s linear;
  opacity: 0;
}
@media (max-width: 1000px) {
  .modal-b:after {
    -webkit-backdrop-filter: blur(8px);
            backdrop-filter: blur(8px);
    background-color: rgba(0,70,148,0.7);
  }
}
.modal-b::-webkit-scrollbar {
  display: none;
}
.modal-b_show {
  opacity: 1;
  pointer-events: auto;
}
.modal-b_show:after {
  opacity: 1;
}
.modal-b__inner {
  padding: 72px 0 0;
  min-height: 100%;
  position: relative;
  z-index: 2;
}
@media (max-width: 1000px) {
  .modal-b__inner {
    padding-top: 28px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
.modal-b__block {
  margin: 0 auto;
  width: 100%;
  max-width: 980px;
  border-radius: 15px;
  -webkit-box-shadow: 0 0 20px 0 rgba(22,37,55,0.33);
          box-shadow: 0 0 20px 0 rgba(22,37,55,0.33);
  background-color: #fff;
  overflow: hidden;
  -webkit-transition: 0.1s linear;
  transition: 0.1s linear;
  opacity: 0;
}
@media (max-width: 1000px) {
  .modal-b__block {
    border-radius: 15px 15px 0 0;
    -webkit-box-shadow: none;
            box-shadow: none;
    -webkit-transform: translateY(100%) scale(0.8);
            transform: translateY(100%) scale(0.8);
    -webkit-transition: 0.3s linear;
    transition: 0.3s linear;
  }
}
.modal-b_show .modal-b__block {
  opacity: 1;
}
@media (max-width: 1000px) {
  .modal-b_show .modal-b__block {
    -webkit-transform: translateY(0) scale(1);
            transform: translateY(0) scale(1);
  }
}
@media (max-width: 1000px) {
  .popup-review {
    padding: 20px 20px 28px;
  }
}
.popup-review .slick-prev {
  display: none !important;
}
.popup-review__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 1000px) {
  .popup-review__grid {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.popup-review__sidebar {
  padding: 26px 34px 50px 30px;
  width: 259px;
  background: #f5f8fa;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (max-width: 1000px) {
  .popup-review__sidebar {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    padding: 16px 17px 30px;
    border-radius: 15px;
    width: 100%;
  }
}
.popup-review__sidebar-field {
  margin: 0 0 18px;
  font-size: 15px;
  position: relative;
}
@media (max-width: 1000px) {
  .popup-review__sidebar-field {
    font-size: 16px;
    line-height: 22px;
    padding-left: 36px;
  }
  .popup-review__sidebar-field_left-mobile {
    padding-left: 0;
  }
  .popup-review__sidebar-field_hide-mobile {
    display: none;
  }
}
.popup-review__sidebar-field:last-child {
  margin: 0 0 34px;
}
.popup-review__sidebar-icon {
  position: absolute;
  left: 0;
  top: 6px;
  display: none;
}
@media (max-width: 1000px) {
  .popup-review__sidebar-icon {
    display: block;
  }
}
.popup-review__sidebar-icon img {
  display: block;
  width: 25px;
  height: 32px;
}
.popup-review__sidebar-label {
  font-weight: 600;
  font-size: 22px;
  line-height: 34px;
}
.popup-review__sidebar-label_mobile {
  display: none;
}
@media (max-width: 1000px) {
  .popup-review__sidebar-label {
    line-height: 22px;
    font-size: 16px;
  }
  .popup-review__sidebar-label_desktop {
    display: none;
  }
  .popup-review__sidebar-label_mobile {
    display: block;
  }
}
.popup-review__sidebar-bottom .online-b__line {
  display: none;
}
@media (max-width: 1000px) {
  .popup-review__sidebar-bottom .online-b__line {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
    margin: 10px 0 0;
    font-size: 14px !important;
  }
}
.popup-review__sidebar .button {
  width: 100%;
  height: 41px;
  font-size: 15px;
}
@media (max-width: 1000px) {
  .popup-review__sidebar .button {
    height: 51px;
    font-size: 16px;
  }
}
.popup-review .online-b__line {
  font-size: 15px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.popup-review .online-b__line span {
  width: 8px;
  height: 8px;
  margin-right: 7px;
}
.popup-review__content {
  width: calc(100% - 259px);
  padding: 30px 73px 53px 33px;
  position: relative;
}
@media (max-width: 1000px) {
  .popup-review__content {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
    padding: 0;
    margin: 0 0 54px;
    width: 100%;
  }
}
.popup-review__stars span {
  font-size: 22px;
  line-height: 34px;
  color: #111e2d;
  margin-right: 8px !important;
}
.popup-review__stars img {
  height: 18px;
  width: auto;
  margin: 0;
}
.popup-review__count {
  margin: 0 0 27px;
  opacity: 0.5;
  font-size: 14px;
}
.popup-review__slider {
  margin: 0 -73px 0 -33px;
  overflow: hidden;
  position: relative;
}
.popup-review__item {
  padding: 0 73px 0 33px;
  display: none;
}
.popup-review__item.active {
  display: block;
}
.popup-review__text {
  font-size: 15px;
  line-height: 24px;
  font-family: 'Open Sans', Arial, sans-serif;
}
@media (max-width: 320px) {
  .popup-review__text {
    font-size: 13px;
    line-height: 19px;
  }
}
.popup-review__text p {
  margin: 0 0 10px;
}
.popup-review__text p:last-child {
  margin: 0;
}
.popup-review__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 0 20px;
}
@media (max-width: 1000px) {
  .popup-review__top {
    margin: 0 0 40px;
  }
}
@media (max-width: 320px) {
  .popup-review__top {
    margin: 0 0 20px;
  }
}
.popup-review__author {
  position: relative;
  display: block;
  padding-left: 49px;
  min-height: 36px;
  font-size: 15px;
  line-height: 22px;
  padding-right: 25px;
  margin-right: 25px;
}
.popup-review__author:after {
  content: '';
  height: 35px;
  width: 1px;
  background: #d8d8d8;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (max-width: 1000px) {
  .popup-review__author:after {
    display: none;
    padding-right: 0;
    margin-right: 0;
  }
}
.popup-review__author-ava {
  position: absolute;
  left: 0;
  top: 1px;
  width: 36px;
  height: 36px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: 100%;
}
.popup-review__author-name {
  margin-bottom: -1px;
}
@media (max-width: 320px) {
  .popup-review__author-name {
    font-size: 14px;
    margin-bottom: -4px;
  }
}
.popup-review__author-whois {
  color: rgba(28,40,50,0.5);
}
@media (max-width: 320px) {
  .popup-review__author-whois {
    font-size: 12px;
  }
}
@media (max-width: 1000px) {
  .popup-review__top .popup-review__author {
    display: none;
  }
}
.popup-review__bottom {
  display: none;
}
@media (max-width: 1000px) {
  .popup-review__bottom {
    display: block;
    margin: 26px 0 0;
  }
}
.popup-review__next_mobile {
  display: none;
}
@media (max-width: 1000px) {
  .popup-review__next_mobile {
    display: block;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    padding: 18px 0 0;
  }
}
.popup-review__next-links {
  font-size: 15px;
  color: #1568f0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  white-space: nowrap;
}
@media (max-width: 1000px) {
  .popup-review__next-links {
    font-size: 14px;
    color: #1c2832 !important;
    display: none;
  }
}
.popup-review__next-links svg {
  fill: #1568f0;
  -webkit-transition: 0.15s linear;
  transition: 0.15s linear;
  margin: -1px 0 0 8px;
}
@media (max-width: 1000px) {
  .popup-review__next-links svg {
    fill: #1c2832 !important;
    width: 8px;
    height: auto;
    margin-left: 5px;
  }
}
.popup-review__next-links:hover {
  color: #fc5252;
}
.popup-review__next-links:hover svg {
  fill: #fc5252;
}
.popup-review__next_mobile .popup-review__next-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  opacity: 0.5;
}
.popup-review__close {
  position: absolute;
  opacity: 0.5;
  top: 20px;
  right: 20px;
  cursor: pointer;
  -webkit-transition: 0.15s linear;
  transition: 0.15s linear;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  z-index: 2;
}
@media (max-width: 1000px) {
  .popup-review__close {
    opacity: 1;
    top: 0;
    right: 0;
    width: 36px;
    height: 36px;
    border-radius: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background-color: rgba(247,248,250,0.78);
  }
}
.popup-review__close img {
  display: block;
  width: 14px;
  height: 14px;
}
.popup-review__close i {
  display: block;
  font-size: 18px;
  color: #000;
}
@media (max-width: 1000px) {
  .popup-review__close img {
    width: 12px;
    height: 12px;
  }
  .popup-review__close i {
    font-size: 16px;
  }
}
.popup-review__close:hover {
  opacity: 1;
}
.order-b {
  border-radius: 6px;
  border: solid 1px #e6e7e8;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 1300px) {
  .order-b {
    margin: 0 -22px;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
  }
}
.order-b_gray {
  margin: 94px 0 43px;
}
.order-b__links {
  color: #fff;
  border: 0;
}
.order-b__links:hover {
  color: #fff;
}
.order-b__content {
  width: 61%;
  padding: 50px 40px;
}
.order-b__content .title {
  font-size: 34px;
  margin: 0 0 20px;
}
@media (max-width: 1300px) {
  .order-b__content {
    padding: 41px 25px 62px;
    width: 100%;
  }
}
.order-b__note {
  margin: 0 0 30px;
  font-size: 20px;
  line-height: 1.4;
}
@media (max-width: 1300px) {
  .order-b__note {
    font-size: 16px;
    line-height: 24px;
  }
}
.order-b__field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 0 22px;
}
.order-b__field:last-child {
  margin: 0;
}
@media (max-width: 1300px) {
  .order-b__field {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.order-b__label {
  width: 144px;
  font-size: 18px;
}
@media (max-width: 1300px) {
  .order-b__label {
    width: 100%;
    margin: 0 0 4px;
  }
}
.order-b__input {
  width: calc(100% - 144px);
}
@media (max-width: 1300px) {
  .order-b__input {
    width: 100%;
  }
}
.order-b__result {
  display: none;
}
@media (max-width: 1300px) {
  .order-b__result {
    margin: -15px 0 0;
  }
}
.order-b__name {
  margin: 0 0 2px;
  font-size: 24px;
  line-height: 33px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.order-b__name svg {
  margin: 0 6px 0 0;
}
@media (max-width: 1300px) {
  .order-b__name svg {
    margin: -1px 7px 0 0;
  }
}
@media (max-width: 1300px) {
  .order-b__name {
    margin: 0 0 10px;
    font-size: 20px;
    line-height: 24px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.order-b__text {
  font-size: 18px;
  line-height: 1.5;
  max-width: 350px;
}
@media (max-width: 1300px) {
  .order-b__text {
    font-size: 16px;
  }
}
.order-b__photo {
  width: 39%;
  position: relative;
}
@media (max-width: 1300px) {
  .order-b__photo {
    display: none;
  }
}
.order-b__photo img {
  height: 100%;
  width: 100%;
  border-radius: 0 6px 6px 0;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.order-b__contacts {
  position: absolute;
  bottom: 30px;
  left: 30px;
  color: #fff;
}
@media (max-width: 1300px) {
  .order-b__contacts {
    bottom: 44px;
    left: 20px;
  }
}
.order-b__phone {
  font-size: 20px;
  line-height: 33px;
  margin: 0 0 2px;
  font-weight: 500;
}
.order-b__time {
  opacity: 0.8;
}
.order-b .button {
  width: 100%;
}
.reviews-b {
  margin: 0 0 170px;
}
@media (max-width: 1000px) {
  .reviews-b {
    margin: 0 0 130px;
  }
}
.reviews-b__links {
  color: #212426;
  border-bottom: 1px solid rgba(33,36,38,0.3);
}
.reviews-b__links:hover {
  color: #212426;
  border-color: rgba(33,36,38,0.7);
}
.reviews-b__list {
  margin: 85px 0 0;
}
@media (max-width: 1000px) {
  .reviews-b__list {
    margin: 35px 0 0;
  }
}
.reviews-b__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 0 92px;
  position: relative;
}
@media (max-width: 1000px) {
  .reviews-b__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0 0 40px;
  }
}
.reviews-b__item:last-child {
  margin: 0;
}
.reviews-b__photo {
  margin: 10px 0 0;
}
@media (max-width: 1000px) {
  .reviews-b__photo {
    position: absolute;
    left: 0;
    top: 13px;
    margin: 0;
  }
}
.reviews-b__photo img {
  width: 300px;
  height: 300px;
}
@media (max-width: 1000px) {
  .reviews-b__photo img {
    width: 75px;
    height: 75px;
  }
}
.reviews-b__about {
  width: calc(100% - 394px);
  font-size: 22px;
  line-height: 33px;
}
@media (max-width: 1000px) {
  .reviews-b__about {
    width: 100%;
    margin: 10px 0 0;
    font-size: 16px;
    line-height: 24px;
  }
}
.reviews-b__item:nth-child(2n) .reviews-b__photo {
  -webkit-box-ordinal-group: 1;
      -ms-flex-order: 0;
          order: 0;
}
.reviews-b__item:nth-child(2n) .reviews-b__about {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.reviews-b__name {
  font-size: 36px;
  line-height: 42px;
  font-weight: 600;
}
@media (max-width: 1000px) {
  .reviews-b__name {
    margin: 0 0 0 95px;
    font-size: 22px;
    line-height: 28px;
    font-weight: 700;
  }
}
.reviews-b__position {
  opacity: 0.8;
  margin: 9px 0 22px;
}
@media (max-width: 1000px) {
  .reviews-b__position {
    min-height: 45px;
    margin: 6px 0 15px 95px;
  }
}

/* Two-column layout for about page */
.about-page-title {
    margin-bottom: 30px;
}

.about-certificates-title {
    margin: 40px 0 20px 0;
    font-size: 28px;
    font-weight: 600;
    line-height: 1.2;
    color: #1b242b;
}

.about-certificates-title:first-child { margin-top: 0 }

.about-two-columns {
    position: relative;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.about-two-columns__left {
    flex: 0 0 700px;
    max-width: 700px;
}

.about-two-columns__right {
    flex: 1;
    min-width: 0;
}

.about-two-columns__right img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
}

/* Gallery layout */
.about-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.about-gallery__main {
    grid-column: 1 / -1;
}

.about-gallery__main img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}

.about-gallery__secondary img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    object-fit: cover;
}

@media (max-width: 768px) {
    .about-gallery {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .about-gallery__main {
        grid-column: 1;
    }
}

/* Certificates preview block */
.certificates-preview {
    display: flex;
    align-items: center;
    gap: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.certificates-preview:hover .certificates-preview__item img {
    transform: scale(1.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.certificates-preview:hover .certificates-preview__more {
    color: #0056b3;
    transform: translateX(5px);
}

.certificates-preview__items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.certificates-preview__item {
    flex: 0 0 auto;
}

.certificates-preview__item img {
    height: 140px;
    width: auto;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: block;
}

.certificates-preview__more {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #007bff;
    gap: 10px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.certificates-preview__more i {
    font-size: 28px;
}

.certificates-preview__more-text {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.3;
    white-space: nowrap;
}

@media (max-width: 1200px) {
    .certificates-preview__item img {
        height: 120px;
    }
}

@media (max-width: 1024px) {
    .certificates-preview {
        gap: 20px;
    }

    .certificates-preview__items {
        gap: 15px;
    }

    .certificates-preview__item img {
        height: 110px;
    }

    .certificates-preview__more i {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .certificates-preview {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .certificates-preview__items {
        display: flex;
        flex-direction: row;
        gap: 15px;
        justify-content: center;
    }

    .certificates-preview__item img {
        height: 100px;
    }

    .certificates-preview__more {
        flex-direction: row;
        gap: 10px;
        align-items: center;
        justify-content: center;
    }

    .certificates-preview__more i {
        font-size: 20px;
    }
}

/* About Facts Block */
.about-facts {
    margin-top: 0;
}

.about-facts__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.about-facts .facts__item {
    padding: 20px 16px;
}

.about-facts .facts__header {
    gap: 8px;
    margin-bottom: 8px;
}

.about-facts .facts__icon {
    width: 44px;
    height: 44px;
    font-size: 24px;
}

.about-facts .facts__value {
    font-size: 28px;
}

.about-facts .facts__value--text {
    font-size: 24px;
}

.about-facts .facts__label {
    font-size: 14px;
    line-height: 1.4;
}

@media (max-width: 1200px) {
    .about-facts__grid {
        gap: 14px;
    }

    .about-facts .facts__item {
        padding: 18px 14px;
    }

    .about-facts .facts__icon {
        width: 40px;
        height: 40px;
        font-size: 22px;
    }

    .about-facts .facts__value {
        font-size: 26px;
    }
}

@media (max-width: 1024px) {
    .about-facts__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .about-facts__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .about-facts .facts__item {
        padding: 16px 12px;
    }

    .about-facts .facts__icon {
        width: 36px;
        height: 36px;
        font-size: 20px;
    }

    .about-facts .facts__value {
        font-size: 24px;
    }

    .about-facts .facts__label {
        font-size: 13px;
    }
}

/* Tech Stack Block */
.about-tech-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tech-stack__category {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 3px solid #007bff;
}

.tech-stack__category-title {
    font-size: 16px;
    font-weight: 600;
    color: #007bff;
    margin: 0 0 8px 0;
    line-height: 1.2;
}

.tech-stack__category-text {
    font-size: 14px;
    color: #5f717a;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 1200px) {
    .about-tech-stack {
        gap: 16px;
    }

    .tech-stack__category {
        padding: 18px;
    }

    .tech-stack__category-title {
        font-size: 15px;
    }

    .tech-stack__category-text {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .about-tech-stack {
        gap: 14px;
    }

    .tech-stack__category {
        padding: 16px;
    }

    .tech-stack__category-title {
        font-size: 14px;
    }

    .tech-stack__category-text {
        font-size: 12px;
        line-height: 1.5;
    }
}

/* Certificates Page */
.certificates-page {
    margin-top: 40px;
}

.certificates-page__featured {
    margin-bottom: 50px;
}

.certificates-page__item--main {
    width: 100%;
}

.certificates-page__grid {
    column-count: 3;
    column-gap: 30px;
}

.certificates-page__item {
    position: relative;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    break-inside: avoid;
    page-break-inside: avoid;
    margin-bottom: 30px;
    display: inline-block;
    width: 100%;
}

.certificates-page__item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.certificates-page__image {
    width: 100%;
    height: auto;
    display: block;
    cursor: pointer;
}

.certificates-page__small {
    margin-top: 50px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.certificates-page__small-item {
    flex: 0 0 auto;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.certificates-page__small-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.certificates-page__small-image {
    height: 180px;
    width: auto;
    display: block;
    cursor: pointer;
}

@media (max-width: 1024px) {
    .certificates-page {
        margin-top: 30px;
    }

    .certificates-page__featured {
        margin-bottom: 40px;
    }

    .certificates-page__grid {
        column-count: 3;
        column-gap: 25px;
    }

    .certificates-page__item {
        margin-bottom: 25px;
    }

    .certificates-page__small {
        margin-top: 40px;
        gap: 18px;
    }

    .certificates-page__small-image {
        height: 160px;
    }
}

@media (max-width: 768px) {
    .certificates-page__featured {
        margin-bottom: 30px;
    }

    .certificates-page__grid {
        column-count: 2;
        column-gap: 20px;
    }

    .certificates-page__item {
        margin-bottom: 20px;
    }

    .certificates-page__small {
        margin-top: 30px;
        gap: 15px;
    }

    .certificates-page__small-image {
        height: 140px;
    }
}

@media (max-width: 480px) {
    .certificates-page__grid {
        column-count: 1;
        column-gap: 0;
    }

    .certificates-page__item {
        margin-bottom: 20px;
    }

    .certificates-page__small {
        margin-top: 25px;
        gap: 12px;
    }

    .certificates-page__small-image {
        height: 120px;
    }
}

/* Requisites Table */
.requisites-table {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.requisites-section {
    padding: 0;
}

.requisites-section__title {
    font-size: 20px;
    font-weight: 600;
    color: #1b242b;
    margin: 0 0 16px 0;
    padding-bottom: 10px;
    border-bottom: 1px solid #e0e0e0;
}

.requisites-section__content {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.requisites-row {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 20px;
    align-items: baseline;
}

.requisites-row__label {
    font-size: 15px;
    color: #6c757d;
    font-weight: 500;
}

.requisites-row__value {
    font-size: 15px;
    color: #1b242b;
    font-weight: 400;
}

@media (max-width: 768px) {
    .requisites-table {
        gap: 25px;
    }

    .requisites-section__title {
        font-size: 18px;
        margin-bottom: 14px;
        padding-bottom: 8px;
    }

    .requisites-section__content {
        gap: 12px;
    }

    .requisites-row {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .requisites-row__label {
        font-size: 13px;
        color: #6c757d;
    }

    .requisites-row__value {
        font-size: 14px;
        font-weight: 500;
    }
}

/* Documents List */
.documents-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.document-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    text-decoration: none;
    transition: all 0.3s ease;
}

.document-item__icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.document-item__icon i {
    font-size: 24px;
    color: #dc3545;
}

.document-item__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.document-item__name {
    font-size: 16px;
    font-weight: 400;
    color: #1b242b;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.document-item:hover .document-item__name {
    color: #007bff;
}

.document-item__size {
    font-size: 13px;
    color: #6c757d;
}

@media (max-width: 768px) {
    .documents-list {
        gap: 18px;
    }

    .document-item {
        gap: 8px;
    }

    .document-item__icon {
        width: 32px;
        height: 32px;
    }

    .document-item__icon i {
        font-size: 20px;
    }

    .document-item__name {
        font-size: 15px;
    }

    .document-item__size {
        font-size: 12px;
    }
}

/* About Services Section */
.about-services {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    margin-top: 60px;
}

.about-services__column {
    background: #ffffff;
    padding: 35px 30px;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.about-services__column:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.about-services__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    gap: 20px;
}

.about-services__title {
    font-size: 24px;
    font-weight: 600;
    color: #007bff;
    margin: 0;
    line-height: 1.3;
}

.about-services__logo {
    height: 30px;
    width: auto;
    flex-shrink: 0;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.about-services__logo--small {
    height: 22px;
}

.about-services__column:hover .about-services__logo {
    opacity: 1;
}

.about-services__list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.about-services__list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 14px;
    font-size: 16px;
    line-height: 1.6;
    color: #1b242b;
}

.about-services__list li:last-child {
    margin-bottom: 0;
}

.about-services__list li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 8px;
    height: 8px;
    background: #007bff;
    border-radius: 50%;
}

.about-services__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    padding: 14px 28px;
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.about-services__btn:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

@media (max-width: 1024px) {
    .about-services {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 40px;
    }

    .about-services__column {
        padding: 30px 25px;
    }

    .about-services__title {
        font-size: 22px;
    }

    .about-services__logo {
        height: 36px;
    }
}

@media (max-width: 768px) {
    .about-services {
        gap: 25px;
        margin-top: 30px;
    }

    .about-services__column {
        padding: 25px 20px;
    }

    .about-services__header {
        margin-bottom: 16px;
    }

    .about-services__title {
        font-size: 20px;
    }

    .about-services__logo {
        height: 32px;
    }

    .about-services__list li {
        font-size: 15px;
        margin-bottom: 12px;
        padding-left: 22px;
    }

    .about-services__list li:before {
        width: 7px;
        height: 7px;
        top: 8px;
    }

    .about-services__btn {
        margin-top: 20px;
        padding: 12px 24px;
        font-size: 15px;
    }
}

@media (max-width: 1200px) {
    .about-two-columns {
        gap: 40px;
    }

    .about-two-columns__left {
        flex: 0 0 600px;
        max-width: 600px;
    }
}

@media (max-width: 1024px) {
    .about-certificates-title {
        font-size: 24px;
        margin-top: 40px;
        margin-bottom: 15px;
    }

    .about-two-columns {
        flex-direction: column;
        gap: 30px;
    }

    .about-two-columns__left {
        flex: 1;
        max-width: 100%;
    }

    .about-two-columns__right {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .about-certificates-title {
        font-size: 22px;
    }
}

.text-container {
  max-width: 700px;
}

.text-content {
  font-size: 18px;
  line-height: 1.5;
}

.text-content img {
  border-radius: 12px;
  height: auto;
  max-width: 100%;
}

@media (max-width: 1300px) {
  .text-content {
    font-size: 16px;
    line-height: 1.4;
  }
}

.text-content p {
  font-size: 18px;
  line-height: 1.7;
  margin: 0 0 1em;
}

@media (max-width: 1300px) {
  .text-content p {
    font-size: 16px;
    line-height: 1.5;
    margin: 0 0 15px;
  }
}

.text-content p:last-child {
  margin-bottom: 0;
}

.text-content h2 {
  margin: 32px 0 10px;
  font-weight: 600;
  font-size: 23px;
  line-height: 1.3;
}

@media (max-width: 1300px) {
  .text-content h2 {
    font-size: 20px;
    line-height: 1.3;
  }
}

.text-content h3 {
  margin: 22px 0 6px;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.4;
}

@media (max-width: 1300px) {
  .text-content h3 {
    font-size: 16px;
  }
}

.text-content blockquote {
  margin: 20px 0;
  padding: 0 0 0 25px;
  font-style: italic;
  font-size: 18px;
  line-height: 1.6;
  border-left: solid 3px rgba(183,200,212,0.3);
}

@media (max-width: 1300px) {
  .text-content blockquote {
    margin: 15px 0;
    font-size: 16px;
    line-height: 1.5;
    padding-left: 20px;
    border-left-width: 2px;
  }
}

.text-content strong,
.text-content b {
  font-weight: bold;
}

.text-content ul {
  list-style: none;
  margin: 0 0 20px 0;
  padding: 0;
}

.text-content ul li {
  margin: 0 0 9px;
  font-size: 18px;
  line-height: 1.7;
  position: relative;
  padding-left: 28px;
}

@media (max-width: 1300px) {
  .text-content ul li {
    font-size: 16px;
    line-height: 1.5;
    margin: 0 0 6px;
    padding-left: 24px;
  }
}

.text-content ul li:last-child {
  margin: 0;
}

.text-content ul li:before {
  content: '';
  background: currentColor;
  left: 7px;
  top: 10px;
  border-radius: 50%;
  width: 6px;
  height: 6px;
  position: absolute;
}

.text-content ol {
  counter-reset: item;
  margin: 0 0 20px 15px;
  padding: 0;
}

.text-content ol li {
  display: block;
  margin: 0 0 9px;
  font-size: 18px;
  line-height: 1.7;
}

@media (max-width: 1300px) {
  .text-content ol li {
    font-size: 16px;
    line-height: 1.5;
    margin: 0 0 6px;
  }
}

.text-content ol li:last-child {
  margin: 0;
}

.text-content ol li:before {
  content: counters(item, ".") ". ";
  counter-increment: item;
  margin-right: 4px;
}

.text-content ol li ol {
  margin-top: 10px;
}

/* ========================================
   Custom Styles for main-new.html
   ======================================== */

.top-header {
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.top-header__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.top-header__logo {
    flex-shrink: 0;
}

.top-header__logo-link {
    display: flex;
    align-items: center;
    gap: 13px;
    text-decoration: none;
}

.top-header__logo-icon {
    width: 41px;
    height: 41px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    border: 2px solid #0a6af1;
    padding: 8px;
    box-sizing: border-box;
}

.top-header__logo-icon img {
    display: block;
    width: 100%;
    height: 100%;
}

.top-header__logo-text {
    text-transform: uppercase;
    font-size: 22px;
    letter-spacing: 1.99px;
    font-weight: 600;
    color: #0a6af1;
}

.top-header__nav {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-grow: 1;
}

.top-header__nav-link {
    text-decoration: none;
    color: #333;
    font-size: 18px;
    font-weight: 400;
    transition: color 0.3s;
}

.top-header__nav-link:hover {
    color: #007bff;
}

.top-header__nav-link--active {
    color: #007bff;
    position: relative;
}

.top-header__nav-link--active::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    right: 0;
    height: 2px;
    background: #007bff;
}

.top-header__reviews {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
    cursor: pointer;
    gap: 8px;
}

.top-header__reviews-stars {
    display: flex;
    align-items: center;
    font-weight: 600;
    color: #eca71f;
    font-size: 13px;
    gap: 2px;
}

.top-header__reviews-stars span {
    margin-right: 4px;
    display: block;
}

.top-header__reviews-stars img {
    display: block;
}

.top-header__reviews-note {
    color: #5f717a;
    font-size: 13px;
    font-weight: 400;
    transition: 0.15s linear;
}

.top-header__reviews:hover .top-header__reviews-note {
    color: #0a6af1;
}

.top-header__phone {
    flex-shrink: 0;
}

.top-header__phone-link {
    text-decoration: none;
    color: #333;
    font-size: 15px;
    font-weight: 600;
    white-space: nowrap;
}

.top-header__login {
    flex-shrink: 0;
	display: flex;
	align-items: center;
	gap: 16px;
}

.top-header__phone {
	display: inline-flex;
	align-items: center;
	color: #333;
	text-decoration: none;
	font-size: 16px;
	white-space: nowrap;
	transition: color 0.3s;
}

.top-header__phone:hover {
	color: #007bff;
}

.top-header__phone i {
	margin-right: 8px;
}

.top-header__login-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    transition: background-color 0.3s;
    white-space: nowrap;
}

.top-header__login-btn:hover {
    background-color: #0056b3;
}

.top-header__login-btn i {
    margin-right: 5px;
}

.submenu {
    padding: 0;
}

.submenu__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.submenu__link {
    display: inline-block;
    padding: 16px 0;
    text-decoration: none;
    color: #5f717a;
    font-size: 16px;
    font-weight: 400;
    transition: color 0.3s;
    position: relative;
}

.submenu__link:hover {
    color: #007bff;
}

.submenu__link--active {
    color: #1b242b;
}

.submenu__link--active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #007bff;
}

@media (max-width: 1024px) {
    .submenu__container {
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        gap: 25px;
    }

    .submenu__container::-webkit-scrollbar {
        display: none;
    }

    .submenu__link {
        white-space: nowrap;
        font-size: 15px;
        padding: 14px 0;
    }
}

@media (max-width: 768px) {
    .submenu {
        padding: 0;
    }

    .submenu__container {
        padding: 0 15px;
        gap: 20px;
    }

    .submenu__link {
        font-size: 14px;
        padding: 12px 0;
    }
}

.block {
    padding: 0;
    margin: 30px 0 90px;
}

.rules {
    padding: 40px 0 10px;
    background: transparent;
}

.rules-title {
    margin: 0;
    font-weight: 600;
    font-size: 42px;
    line-height: 1.2;
    color: #0f172a;
}

.rules-list {
    margin-top: 28px;
    column-count: 2;
    column-gap: 42px;
}

.rules-item {
    border: 0;
    padding: 0;
    margin: 0 0 26px;
    break-inside: avoid;
    -webkit-column-break-inside: avoid;
            page-break-inside: avoid;
}

.rules-label {
    font-size: 20px;
    line-height: 1.3;
    font-weight: 600;
    color: #0f172a;
    margin: 0 0 12px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 12px;
    text-transform: none;
    letter-spacing: -0.01em;
}

.rules-label:before {
    content: '';
    width: 34px;
    height: 3px;
    border-radius: 999px;
    background: var(--color-accent);
    display: block;
}

.rules-item p,
.rules-item ol {
    color: #4b5965;
    line-height: 1.55;
    margin: 0 0 10px;
}

.rules-item p:last-child,
.rules-item ol:last-child {
    margin-bottom: 0;
}

.rules-item ol {
    padding-left: 20px;
    list-style: decimal;
}

.rules-item ol li {
    margin-bottom: 6px;
}

.rules-item ol li:last-child {
    margin-bottom: 0;
}

@media (max-width: 1100px) {
    .rules {
        padding: 35px 0 15px;
    }

    .rules-list {
        column-count: 1;
        column-gap: 0;
    }
}

@media (max-width: 768px) {
    .rules {
        padding: 25px 0 15px;
    }

    .rules-title {
        font-size: 32px;
    }

    .rules-label {
        font-size: 18px;
    }
}

.popup-review__next-links i {margin-left: 0.25em}

/* Hero Block Styles */
.hero-block {
    display: flex;
    gap: 40px;
    align-items: center;
}

.hero-block__left {
    flex: 0 0 calc(60% - 24px);
}

.hero-block__right {
    flex: 0 0 calc(40% - 16px);
}

.hero-block__title {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.2;
    margin: 0 0 20px;
    color: #1b242b;
}

.hero-block__subtitle {
    font-size: 20px;
    line-height: 1.5;
    color: #5f717a;
    margin: 0 0 40px;
}

.hero-block__buttons {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
}

.hero-block__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    white-space: nowrap;
}

.hero-block__btn--primary {
    background-color: #007bff;
    color: #fff;
    border: 2px solid #007bff;
}

.hero-block__btn--primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

.hero-block__messengers {
    display: flex;
    gap: 15px;
}

.hero-block__messenger-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s;
    border: 2px solid #e0e0e0;
    background-color: #fff;
}

.hero-block__messenger-icon i {
    font-size: 28px;
}

.hero-block__messenger-icon i {
    color: #0088cc;
}

.hero-block__image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    font-weight: 600;
}

/* Services Block Styles */
.services-block {
    display: flex;
    gap: 60px;
    align-items: baseline;
}

.services-block__left {
    flex: 0 0 auto;
    min-width: 0;
}

.services-block__right {
    flex: 1;
}

.services-block__title {
    font-size: 36px;
    font-weight: 600;
    line-height: 1.2;
    margin: 0;
    color: #1b242b;
    white-space: nowrap;
}

.services-block__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.services-block__item {
    padding: 0 20px;
    border-bottom: 1px solid #e0e0e0;
}

.services-block__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    text-decoration: none;
    color: #1b242b;
    transition: all 0.3s ease;
}

.services-block__text {
    font-size: 20px;
    line-height: 1.8;
}

.services-block__link i {
    font-size: 16px;
    color: #007bff;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.services-block__link:hover {
    color: #007bff;
    background-color: #f8f9fa;
    padding: 16px 20px;
    margin-left: -20px;
    margin-right: -20px;
    border-radius: 8px;
}

.services-block__link:hover i {
    opacity: 1;
    transform: translateX(3px);
}

.software-block {
	display: block;
}

.software-block__title {
	font-size: 36px;
	font-weight: 600;
	line-height: 1.2;
	margin: 0 0 40px 0;
	color: #1b242b;
	text-align: left;
}

.software-block__list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
}

.software-block__item {
	padding: 0;
}

.software-block__link {
	display: block;
	text-decoration: none;
	color: inherit;
}

.software-block__content {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 16px;
}

.software-block__logo {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	gap: 12px;
	height: 60px;
}

.software-block__logo-img {
	height: 40px;
	width: auto;
	object-fit: contain;
}

.software-block__logo-text {
	font-size: 20px;
	font-weight: 600;
	line-height: 1.4;
	color: #1b242b;
	white-space: nowrap;
}

.software-block__logo i {
	font-size: 32px;
	color: #1b242b;
}

.software-block__logo--wide {
	width: 100%;
	max-width: 200px;
	height: 60px;
}

.software-block__logo--wide .software-block__logo-img {
	width: auto;
	max-width: 200px;
	height: 40px;
	object-fit: contain;
}

.software-block__text {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.software-block__description {
	font-size: 16px;
	line-height: 1.6;
	color: #666;
	margin: 0;
}

.software-block__registry {
	font-size: 12px;
	line-height: 1.5;
	color: #999;
	margin: 8px 0 0 0;
}

/* Services Split Block Styles */

.services-split {
    padding: 60px 0;
}

.services-split__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.services-split__column {
    display: flex;
    flex-direction: column;
}

.services-split__title {
    font-size: 36px;
    font-weight: 600;
    line-height: 1.2;
    margin: 0 0 30px 0;
    color: #1b242b;
    text-align: center;
}

.services-split__content {
    width: 100%;
}

/* Work Stages Block Styles */

.work-stages__title {
    font-size: 36px;
    font-weight: 600;
    line-height: 1.2;
    margin: 0 0 20px 0;
    color: #1b242b;
    text-align: left;
}

.work-stages__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.work-stages__item {
    display: flex;
    align-items: flex-start;
    text-align: left;
    padding: 25px 30px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    gap: 25px;
}

.work-stages__item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.work-stages__number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
    flex-shrink: 0;
}

.work-stages__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.work-stages__item-title {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
    color: #1b242b;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.work-stages__description {
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    color: #6c757d;
}

.work-stages__duration {
    display: inline-block;
    background: linear-gradient(135deg, #4A90E2 0%, #5BA3F5 100%);
    color: #fff;
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 13px;
    font-weight: 600;
    margin: 0;
    box-shadow: 0 2px 8px rgba(74, 144, 226, 0.2);
    transition: all 0.3s ease;
    align-self: flex-start;
}

.work-stages__duration:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
}

/* Certificates Block Styles */
.certificates__container {
    max-width: 1200px;
    margin: 0 auto;
}

.certificates__title {
    font-size: 36px;
    font-weight: 600;
    line-height: 1.2;
    margin: 0 0 20px 0;
    color: #1b242b;
    text-align: left;
}

.certificates__scroll {
    overflow-x: auto;
    overflow-y: visible;
    padding: 20px 0;
    -webkit-overflow-scrolling: touch;
}

.certificates__scroll::-webkit-scrollbar {
    height: 6px;
}

.certificates__scroll::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.certificates__scroll::-webkit-scrollbar-thumb {
    background: #007bff;
    border-radius: 3px;
}

.certificates__scroll::-webkit-scrollbar-thumb:hover {
    background: #0056b3;
}

.certificates__list {
    display: flex;
    gap: 20px;
    min-width: max-content;
}

.certificates__item {
    flex: 0 0 auto;
}

.certificates__image {
    height: 200px;
    width: auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.certificates__image:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* Clients Block */
.clients__container {
    max-width: 1200px;
    margin: 0 auto;
}

.clients__title {
    font-size: 36px;
    font-weight: 600;
    line-height: 1.2;
    margin: 0;
    color: #1b242b;
    text-align: left;
}

.clients__slider {
    overflow: hidden;
    padding: 20px 0;
}

.clients__slider .swiper-wrapper {
    transition-timing-function: linear !important;
}

.clients__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
}

.clients__logo img {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.swiper-clients .swiper-slide {
    width: auto;
    height: auto;
}

@media (max-width: 1024px) {
    .clients__title {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .clients__logo {
        height: 70px;
    }

    .clients__logo img {
        max-height: 70px;
    }
}

@media (max-width: 768px) {
    .clients__title {
        font-size: 28px;
        margin-bottom: 25px;
    }

    .clients__logo {
        height: 60px;
    }

    .clients__logo img {
        max-height: 60px;
    }
}

/* Industries Block */
.industries__container {
    max-width: 1200px;
    margin: 0 auto;
}

.industries__title {
    font-size: 36px;
    font-weight: 600;
    line-height: 1.2;
    margin: 0 0 40px 0;
    color: #1b242b;
    text-align: left;
}

.industries__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 24px;
}

.industries__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px 16px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    text-align: center;
}

.industries__item:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.industries__icon {
    margin-bottom: 12px;
    font-size: 40px;
    line-height: 1;
    color: #007bff;
}

.industries__icon i {
    display: block;
}

.industries__name {
    font-size: 15px;
    font-weight: 500;
    color: #1b242b;
    line-height: 1.4;
}

@media (max-width: 1024px) {
    .industries__title {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .industries__grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 20px;
    }

    .industries__item {
        padding: 20px 12px;
    }

    .industries__icon {
        font-size: 36px;
        margin-bottom: 10px;
    }

    .industries__name {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .industries__title {
        font-size: 28px;
        margin-bottom: 25px;
    }

    .industries__grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 16px;
    }

    .industries__item {
        padding: 18px 10px;
    }

    .industries__icon {
        font-size: 32px;
        margin-bottom: 8px;
    }

    .industries__name {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .industries__grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 12px;
    }

    .industries__item {
        padding: 16px 8px;
    }

    .industries__icon {
        font-size: 28px;
        margin-bottom: 6px;
    }

    .industries__name {
        font-size: 12px;
    }
}

.section-title,
.facts__title {
    font-size: 36px;
    font-weight: 600;
    line-height: 1.2;
    margin: 0 0 32px 0;
    color: #1b242b;
    text-align: left;
}

.facts__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

.facts__item {
    position: relative;
    padding: 28px 24px;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 12px 35px rgba(15, 23, 42, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    overflow: hidden;
}

.facts__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.facts__icon {
    font-size: 30px;
    line-height: 0;
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    padding-bottom: 2px;
}

.facts__item::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 16px;
    border: 1px solid rgba(13, 110, 253, 0.1);
    pointer-events: none;
}

.facts__item:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
}

/* Цветные круги для разных emoji */
.facts__item:nth-child(1) .facts__icon {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.5) 0%, rgba(255, 237, 78, 0.5) 100%);
}

.facts__item:nth-child(2) .facts__icon {
    background: linear-gradient(135deg, rgba(74, 222, 128, 0.5) 0%, rgba(34, 197, 94, 0.5) 100%);
}

.facts__item:nth-child(3) .facts__icon {
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.5) 0%, rgba(59, 130, 246, 0.5) 100%);
}

.facts__item:nth-child(4) .facts__icon {
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.5) 0%, rgba(139, 92, 246, 0.5) 100%);
}

.facts__item:nth-child(5) .facts__icon {
    background: linear-gradient(135deg, rgba(248, 113, 113, 0.5) 0%, rgba(239, 68, 68, 0.5) 100%);
}

.facts__item:nth-child(6) .facts__icon {
    background: linear-gradient(135deg, rgba(251, 146, 60, 0.5) 0%, rgba(249, 115, 22, 0.5) 100%);
}

.facts__item:nth-child(7) .facts__icon {
    background: linear-gradient(135deg, rgba(129, 140, 248, 0.5) 0%, rgba(99, 102, 241, 0.5) 100%);
}

.facts__item:nth-child(8) .facts__icon {
    background: linear-gradient(135deg, rgba(52, 211, 153, 0.5) 0%, rgba(16, 185, 129, 0.5) 100%);
}

.facts__item:nth-child(9) .facts__icon {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.5) 0%, rgba(245, 158, 11, 0.5) 100%);
}

.facts__item:nth-child(10) .facts__icon {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.5) 0%, rgba(219, 39, 119, 0.5) 100%);
}

.facts__value {
    display: block;
    font-size: 34px;
    font-weight: 700;
    color: #0d6efd;
    margin-bottom: 0;
    letter-spacing: 0.5px;
}

.facts__value--text {
    font-size: 28px;
    letter-spacing: 1.5px;
}

.facts__label {
    display: block;
    font-size: 16px;
    line-height: 1.5;
    color: #1b242b;
}

/* Золотой факт - особый стиль */
.facts__item--golden {
    border: 0;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    text-align: center;
    padding: 32px 24px;
}

.facts__item--golden .facts__label {
    font-size: 18px;
    font-weight: 600;
    color: #1b242b;
    margin: 0;
    line-height: 1.4;
}

.facts__logo {
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
}

.facts__logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.facts__item--golden:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(255, 193, 7, 0.4);
}

/* Сброс order для десктопной версии */
@media (min-width: 769px) {
    .facts__item--golden {
        order: 0;
    }
}

/* Стили для страницы кейсов */
.cases-categories {
    display: flex;
    gap: 8px;
    margin-top: 20px;
}

.cases-category {
    padding: 8px 16px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    color: #495057;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cases-category:hover {
    background: #e9ecef;
    color: #212529;
}

.cases-category--active {
    background: #007bff;
    color: #fff;
    border-color: #007bff;
}

.cases-category--active:hover {
    background: #0056b3;
    border-color: #0056b3;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    grid-auto-flow: dense;
    gap: 30px;
    margin-top: 40px;
}

@media (min-width: 1024px) {
    .cases-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.case-item {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    opacity: 1;
    transform: scale(1);
    min-height: 460px;
}

.case-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.case-item--featured {
    grid-column: span 2;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px solid #007bff;
}

/* Featured кейс с картинкой слева */
.case-item--featured-left {
    grid-column: span 2;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px solid #007bff;
}

.case-item--featured-left .case-item__link {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    height: 100%;
}

.case-item--featured-left .case-item__image {
    flex: 0 0 50%;
    height: auto;
    border-radius: 0;
    overflow: hidden;
}

.case-item--featured-left .case-item__content {
    flex: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.case-item--featured-left .case-item__text-content {
    flex: 1;
}

.case-item--featured-left .case-item__categories {
    margin-top: auto;
}

/* Featured кейс с картинкой справа */
.case-item--featured-right {
    grid-column: span 2;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px solid #007bff;
}

.case-item--featured-right .case-item__link {
    display: flex;
    flex-direction: row-reverse;
    align-items: stretch;
    height: 100%;
}

.case-item--featured-right .case-item__image {
    flex: 0 0 50%;
    height: auto;
    border-radius: 0;
    overflow: hidden;
}

.case-item--featured-right .case-item__content {
    flex: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.case-item--featured-right .case-item__text-content {
    flex: 1;
}

.case-item--featured-right .case-item__categories {
    margin-top: auto;
}

.case-item--featured:hover,
.case-item--featured-left:hover,
.case-item--featured-right:hover {
    box-shadow: 0 12px 40px rgba(0, 123, 255, 0.2);
}

/* Кейс-логотип */
.case-item--logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    min-height: 460px;
    position: relative;
    overflow: hidden;
}

.case-item--logo:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.case-item--logo .case-item__logo {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.case-item--logo .case-item__logo img {
    max-width: 100%;
    max-height: 140px;
    object-fit: contain;
    filter: grayscale(0%);
    transition: all 0.3s ease;
}

.case-item--logo:hover .case-item__logo img {
    transform: scale(1.05);
}

.case-item--logo .case-item__content {
    text-align: center;
    padding: 0;
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    padding: 8px 12px;
    backdrop-filter: blur(10px);
}

.case-item--logo .case-item__title {
    font-weight: 600;
    color: #333;
    margin: 0;
    line-height: 1.3;
}

.case-item--logo .case-item__description {
    color: #666;
    margin: 4px 0 0 0;
    line-height: 1.2;
}

.case-item--logo .case-item__categories {
    margin-top: 8px;
    display: flex;
    gap: 4px;
    justify-content: center;
    flex-wrap: wrap;
}

.case-item--logo .case-item__category {
  background: rgba(255, 255, 255, 0.1);
    color: var(--case-text);
    padding: 2px 6px;
}

/* Плитка портфолио */
.case-item--logo.case-item--portfolio {
    padding: 0;
    background: var(--case-bg, #f8f9fa);
    border: none;
    color: var(--case-text, #1b242b);
    min-height: 460px;
}

.case-item--portfolio .case-item__link {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.case-item--portfolio .case-item__logo {
    flex: 1 1 auto;
    padding: 32px 0 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.case-item--portfolio .case-item__logo img {
    max-height: 400px;
    width: 100%;
    object-fit: contain;
    filter: none;
}

.case-item--portfolio .case-item__content {
    flex: 0 0 auto;
    padding: 16px 24px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: transparent;
    border: none;
    border-radius: 0;
    backdrop-filter: none;
    color: inherit;
}

.case-item--portfolio .case-item__title,
.case-item--portfolio .case-item__description {
    color: inherit;
}

.case-item--portfolio .case-item__description {
    margin-top: 8px;
    opacity: 0.85;
}

.case-item--portfolio .case-item__categories {
    margin-top: 20px;
    justify-content: center;
    gap: 8px;
}
/*
.case-item--portfolio .case-item__category {
    background: var(--case-chip-bg, rgba(255, 255, 255, 0.2));
    border: 1px solid var(--case-chip-border, rgba(255, 255, 255, 0.45));
    color: inherit;
    font-size: 12px;
    text-transform: none;
}
*/
.case-item__link {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.case-item__image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.case-item--featured .case-item__image {
    height: 250px;
}

.case-item__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.case-item:hover .case-item__image img {
    transform: scale(1.05);
}

.case-item__content {
    padding: 24px;
}

.case-item--featured .case-item__content {
    padding: 30px;
}

.case-item__title {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
    margin: 0 0 12px 0;
    color: #1b242b;
}

.case-item--featured .case-item__title {
    font-size: 24px;
    margin-bottom: 16px;
}

.case-item__description {
    font-size: 15px;
    line-height: 1.6;
    color: #495057;
    margin: 0 0 20px 0;
}

.case-item--featured .case-item__description {
    font-size: 16px;
    margin-bottom: 24px;
}

.case-item__categories {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.case-item__category {
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.case-item__category--bitrix24 {
    background: rgba(0, 123, 255, 0.1);
    color: #007bff;
}

.case-item__category--support {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

.case-item__category--crm {
    background: rgba(111, 66, 193, 0.1);
    color: #6f42c1;
}

.case-item__category--business {
    background: rgba(253, 126, 20, 0.1);
    color: #fd7e14;
}

.case-item__category--integration {
    background: rgba(32, 201, 151, 0.1);
    color: #20c997;
}

.case-item__category--migration {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

.case-item__category--layout {
    background: rgba(108, 117, 125, 0.1);
    color: #6c757d;
}

/* Скрытие кейсов при фильтрации */
.case-item.hidden {
    display: none;
}

/* Адаптивные стили для кейсов */
@media (max-width: 1024px) {
    .cases-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }

    .case-item--featured,
    .case-item--featured-left,
    .case-item--featured-right {
        grid-column: span 1;
    }

    .case-item--featured .case-item__image {
        height: 200px;
    }

    .case-item--featured .case-item__content {
        padding: 24px;
    }

    /* Адаптивность для новых featured вариантов */
    .case-item--featured-left .case-item__link,
    .case-item--featured-right .case-item__link {
        flex-direction: column;
    }

    .case-item--featured-left .case-item__image,
    .case-item--featured-right .case-item__image {
        flex: none;
        height: 200px;
        border-radius: 16px 16px 0 0;
    }

    .case-item--featured-left .case-item__content,
    .case-item--featured-right .case-item__content {
        padding: 24px;
    }

    .case-item--featured .case-item__title {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .case-item--featured .case-item__description {
        font-size: 15px;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .cases-categories {
        flex-wrap: wrap;
        gap: 6px;
        margin-top: 15px;
    }

    .cases-category {
        padding: 6px 12px;
        font-size: 13px;
    }

    .cases-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }

    .case-item__image {
        height: 180px;
    }

    .case-item__content {
        padding: 20px;
    }

    .case-item__title {
        font-size: 18px;
    }

    .case-item__description {
        font-size: 14px;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-block {
        flex-direction: column;
        padding: 20px 0;
    }

    .hero-block__left {
        flex: 0 0 100%;
        display: flex;
        flex-direction: column;
        order: 2;
    }

    .hero-block__right {
        flex: 0 0 100%;
        order: 1;
        margin-bottom: 30px;
        width: 100%;
        padding: 0;
    }

    .hero-block__title {
        font-size: 36px;
        order: 1;
    }

    .hero-block__subtitle {
        font-size: 18px;
        order: 2;
    }

    .hero-block__buttons {
        order: 3;
    }

    .services-block {
        flex-direction: column;
        gap: 30px;
        padding: 40px 0;
    }

    .services-block__left {
        flex: 0 0 100%;
    }

    .services-block__title {
        font-size: 32px;
    }

	.software-block__title {
		font-size: 32px;
		margin-bottom: 30px;
	}

	.software-block__list {
		grid-template-columns: repeat(2, 1fr);
		gap: 30px;
	}

	.services-split {
        padding: 50px 0;
    }

    .services-split__container {
        gap: 40px;
    }

    .services-split__title {
        font-size: 32px;
    }

    .work-stages {
        padding: 0;
    }

    .work-stages__title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .work-stages__list {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .work-stages__item {
        padding: 20px 20px;
        gap: 20px;
    }

    .work-stages__number {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .work-stages__item-title {
        font-size: 16px;
    }

    .work-stages__description {
        font-size: 13px;
    }

    .work-stages__duration {
        font-size: 12px;
        padding: 5px 10px;
    }

    .certificates__title {
        font-size: 32px;
    }

    .certificates__image {
        height: 180px;
    }


    .section-title,
    .facts__title {
        font-size: 32px;
    }

    .facts__grid {
        gap: 20px;
    }

    .facts__header {
        margin-bottom: 10px;
    }

    .facts__icon {
        font-size: 28px;
        width: 52px;
        height: 52px;
    }
}

@media (max-width: 768px) {
    .hero-block {
        padding: 15px 0;
    }

    .hero-block__title {
        font-size: 28px;
    }

    .hero-block__subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .hero-block__buttons {
        flex-direction: row;
        align-items: center;
        gap: 12px;
        flex-wrap: nowrap;
        width: 100%;
    }

    .hero-block__btn {
        padding: 12px 16px;
        font-size: 14px;
        flex: 1;
        min-width: 0;
    }

    .hero-block__messengers {
        display: flex;
        gap: 10px;
        flex-shrink: 0;
    }

    .hero-block__messenger-icon {
        width: 46px;
        height: 46px;
    }

    .hero-block__messenger-icon i {
        font-size: 24px;
    }

    .hero-block__image-placeholder {
        height: 300px;
        font-size: 20px;
        width: 100%;
        margin: 0;
        border-radius: 8px;
    }

    .services-block {
        padding: 30px 0;
        gap: 20px;
    }

    .services-block__title {
        font-size: 28px;
    }

    .services-block__text {
        font-size: 18px;
    }

    .services-block__link {
        padding: 14px 0;
    }

    .services-block__right {
        width: 100%;
    }

    .services-block__list {
        width: 100%;
    }

    .services-block__item {
        padding: 0;
        width: 100%;
    }

    .services-block__link {
        padding: 14px 0;
    }

	.software-block__title {
		font-size: 28px;
		margin-bottom: 30px;
	}

	.software-block__list {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.software-block__logo {
		height: 50px;
		gap: 10px;
	}

	.software-block__logo-img {
		height: 32px;
	}

	.software-block__logo-text {
		font-size: 18px;
	}

	.software-block__logo i {
		font-size: 28px;
	}

	.software-block__logo--wide {
		height: 50px;
		max-width: 160px;
	}

	.software-block__logo--wide .software-block__logo-img {
		height: 32px;
		max-width: 160px;
	}

	.software-block__description {
		font-size: 14px;
	}

	.software-block__registry {
		font-size: 11px;
	}

    .services-block__link:hover {
        padding: 14px 0;
        margin-left: 0;
        margin-right: 0;
    }

    .services-split {
        padding: 40px 0;
    }

    .services-split__container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .services-split__title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .work-stages__title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .work-stages__list {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .work-stages__item {
        padding: 18px 15px;
        gap: 15px;
    }

    .work-stages__number {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .work-stages__item-title {
        font-size: 15px;
    }

    .work-stages__description {
        font-size: 12px;
    }

    .work-stages__duration {
        font-size: 11px;
        padding: 4px 8px;
    }

    .certificates__title {
        font-size: 28px;
    }

    .certificates__image {
        height: 150px;
    }

    .certificates__list {
        gap: 15px;
    }

    .section-title,
    .facts__title {
        font-size: 26px;
        text-align: left;
    }

    .facts__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .facts__item--golden {
        grid-column: 1 / -1;
        order: -1;
    }

    .facts__item {
        padding: 24px 20px;
        text-align: center;
    }

    .facts__header {
        justify-content: center;
        gap: 10px;
    }

    .facts__icon {
        font-size: 26px;
        width: 48px;
        height: 48px;
    }

    .facts__value {
        font-size: 30px;
    }

    .facts__value--text {
        font-size: 26px;
        letter-spacing: 1px;
    }

    .facts__item--golden {
        padding: 28px 20px;
    }

    .facts__item--golden .facts__label {
        font-size: 16px;
    }

    .facts__logo-img {
        height: 32px;
    }
}

/* Белый фон */
.wrapper {
    background: #fff !important;
}

/* Блок "Наш подход к работе" */
.approach-section {
    padding: 0;
    background: #ffffff;
}

.approach__title {
    font-size: 36px;
    font-weight: 600;
    line-height: 1.2;
    margin: 0 0 50px 0;
    color: #1b242b;
    text-align: left;
}

.approach__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.approach__item {
    padding: 30px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.approach__item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.approach__content {
    width: 100%;
}

.approach__item-title {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
    margin: 0 0 15px 0;
    color: #1b242b;
}

.approach__description {
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    color: #495057;
}

/* Адаптивные стили для блока подхода */
@media (max-width: 1024px) {
    .approach__title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .approach__grid {
        gap: 25px;
    }

    .approach__item {
        padding: 25px;
    }

    .approach__item-title {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .approach__description {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
  .approach-section {
    margin-top: -30px;
  }
    .approach__title {
        font-size: 28px;
        margin-bottom: 35px;
    }

    .approach__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .approach__item {
        padding: 20px;
    }

    .approach__item-title {
        font-size: 17px;
        margin-bottom: 10px;
    }

.approach__description {
    font-size: 14px;
}
}

/* Кейсы CRM и интеграций */
.crm-cases {
    padding: 80px 0;
    margin-bottom: 0px;
    background: linear-gradient(135deg, #f5f7fb 0%, #ffffff 100%);
}

.crm-cases__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.crm-cases__head .section-title {
    margin: 0;
}

.crm-cases__caption {
    margin: 0;
    max-width: 540px;
    font-size: 16px;
    line-height: 1.6;
    color: #495057;
}

.crm-cases__scroller {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding: 0 20px 80px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #d0d7f2 transparent;
}

.crm-cases__scroller::-webkit-scrollbar {
    height: 8px;
}

.crm-cases__scroller::-webkit-scrollbar-track {
    background: transparent;
}

.crm-cases__scroller::-webkit-scrollbar-thumb {
    background: #d0d7f2;
    border-radius: 8px;
}

.crm-case-card {
    flex: 0 0 360px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 20px 45px rgba(18, 38, 63, 0.08);
    border: 1px solid rgba(18, 38, 63, 0.08);
    display: flex;
    flex-direction: column;
    scroll-snap-align: start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.crm-case-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 60px rgba(18, 38, 63, 0.12);
}

.crm-case-card__image {
    height: 200px;
    border-radius: 18px 18px 0 0;
    overflow: hidden;
}

.crm-case-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.crm-case-card__content {
    padding: 24px 24px 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.crm-case-card__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	align-items: center;
}

.crm-case-card__tag {
	display: inline-flex;
	align-items: center;
	width: fit-content;
	padding: 4px 10px;
	border-radius: 999px;
	font-size: 11px;
	font-weight: 600;
	color: #0b63ce;
	background: rgba(0, 123, 255, 0.12);
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.crm-case-card__tag--integration {
    color: #b26a00;
    background: rgba(255, 193, 7, 0.2);
}

.crm-case-card__title {
    margin: 0;
    font-size: 20px;
    line-height: 1.4;
    color: #1b242b;
}

.crm-case-card__description {
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
    color: #495057;
}

.crm-cases__cta {
    margin-top: -60px;
    text-align: center;
}

.crm-cases__link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 999px;
    border: 2px solid #0b63ce;
    color: #0b63ce;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.crm-cases__link:hover {
    background: #0b63ce;
    color: #fff;
    box-shadow: 0 12px 30px rgba(11, 99, 206, 0.3);
}

@media (max-width: 1024px) {
    .crm-cases {
        padding: 70px 0;
    }

    .crm-case-card {
        flex: 0 0 320px;
    }
}

@media (max-width: 768px) {
    .crm-cases {
        padding: 60px 0;
    }

    .crm-cases__head {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .crm-cases__caption {
        max-width: none;
    }

    .crm-case-card {
        flex: 0 0 320px;
    }
}

@media (max-width: 480px) {
    .crm-case-card {
        flex: 0 0 320px;
    }

    .crm-case-card__title {
        font-size: 18px;
    }
}

/* Адаптивная версия для мобильных */
@media (max-width: 1024px) {
    .top-header__container {
        flex-wrap: wrap;
        gap: 15px;
    }

	.top-header__login {
		order: 2;
		display: contents;
	}

	.top-header__phone {
		order: 2;
		margin-left: auto;
	}

	.top-header__login-btn {
		order: 4;
	}

	.top-header__reviews {
		order: 3;
		flex-basis: 100%;
	}

	.top-header__nav {
		order: 5;
		width: 100%;
		flex-basis: 100%;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding-bottom: 5px;
    }

    .top-header__nav::-webkit-scrollbar {
        display: none;
    }

    .top-header__nav-link {
        white-space: nowrap;
    }
}

@media (max-width: 768px) {
    .top-header {
        padding: 10px 0;
    }

    .top-header__container {
        padding: 0 15px;
        gap: 10px;
    }

    .top-header__logo-text {
        font-size: 18px;
        letter-spacing: 1.5px;
    }

    .top-header__nav {
        gap: 20px;
    }

    .top-header__nav-link {
        font-size: 16px;
    }

    .top-header__phone-link {
        font-size: 14px;
    }

    .top-header__reviews-stars {
        font-size: 12px;
    }

    .top-header__reviews-note {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .top-header__logo-text {
        font-size: 16px;
    }

    .top-header__reviews {
        font-size: 11px;
    }

    .top-header__phone-link {
        font-size: 13px;
    }
}

/* Стили для блока отзывов внутри clients-b__title */
.clients-b__title {
    display: flex !important;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
    flex-wrap: wrap;
    font-size: 36px;
    font-weight: 600;
    line-height: 1.2;
    color: #1b242b;
}

.clients-b__title .top-header__reviews {
    margin: 0;
    display: flex;
    align-items: center;
}

/* Hero Banner Styles */
.hero-banner {
    position: relative;
    width: 100%;
    min-height: 450px;
    background: linear-gradient(135deg, #fceabb 0%, #f8b500 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    overflow: hidden;
}

.hero-banner::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: rgba(255, 234, 187, 0.55);
    border-radius: 50%;
    z-index: 0;
}

.hero-banner::after {
    content: "";
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: rgba(248, 181, 0, 0.35);
    border-radius: 50%;
    z-index: 0;
}

.hero-banner__content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    color: #fff;
}

.hero-banner__title {
    font-size: 56px;
    font-weight: 600;
    line-height: 1.2;
    margin: 0 0 20px;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.hero-banner__subtitle {
    font-size: 22px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 40px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.hero-banner__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 40px;
    background-color: #fff;
    color: #0a6af1;
    text-decoration: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.hero-banner__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
    background-color: #f8f9fa;
}

@media (max-width: 1024px) {
    .hero-banner {
        min-height: 400px;
        padding: 50px 30px;
    }

    .hero-banner__title {
        font-size: 42px;
    }

    .hero-banner__subtitle {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .hero-banner {
        min-height: 350px;
        padding: 40px 20px;
        border-radius: 12px;
    }

    .hero-banner__title {
        font-size: 32px;
    }

    .hero-banner__subtitle {
        font-size: 18px;
        margin-bottom: 30px;
    }

    .hero-banner__btn {
        padding: 16px 32px;
        font-size: 16px;
    }
}

/* Contacts page styles */
.contacts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
}

.contacts-grid::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: #d0d0d0;
    transform: translateX(-50%);
}

.contact-block {
    padding: 50px 40px;
    text-align: center;
}

.contact-block__title {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 30px;
}

.contact-block__phone {
    display: inline-block;
    font-size: 42px;
    font-weight: 700;
    color: #0066ff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-block__phone:hover {
    color: #0052cc;
}

.contact-block__link {
    display: inline-block;
    font-size: 28px;
    font-weight: 600;
    color: #0066ff;
    text-decoration: none;
    padding: 20px 40px;
    border: 2px solid #0066ff;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-block__link:hover {
    background: #0066ff;
    color: white;
}

.contact-block__icon {
    font-size: 48px;
    color: #0066ff;
    margin-bottom: 20px;
}

.contact-block__messengers,
.contact-block__email {
    margin-top: 20px;
    font-size: 16px;
    color: #666;
}

.contact-block__messenger-link {
    color: #0066ff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-block__messenger-link:hover {
    color: #0052cc;
}

.contact-block__messenger-link i {
    font-size: 18px;
}

.contact-block__email a {
    color: #0066ff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-block__email a:hover {
    color: #0052cc;
    text-decoration: underline;
}

.map-section {
    margin-top: 60px;
    width: 100%;
}

.map-section__title {
    font-size: 32px;
    font-weight: 600;
    color: #333;
    margin-bottom: 30px;
    text-align: left;
}

.map-container {
  font-size: 0px;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.map-container iframe {
  border: 0 !important;
}

@media (max-width: 768px) {
    .contacts-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contacts-grid::before {
        left: 0;
        right: 0;
        top: 50%;
        bottom: auto;
        width: auto;
        height: 1px;
        transform: translateY(-50%);
    }

    .contact-block {
        padding: 30px 20px;
    }

    .contact-block__phone {
        font-size: 32px;
    }

    .contact-block__link {
        font-size: 20px;
        padding: 15px 30px;
    }

    .map-container {
        height: 350px;
    }
}

/* Hero CRM Block */
.hero-crm {
    padding: 60px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.hero-crm__container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.hero-crm__image {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-crm__image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.hero-crm__caption {
    font-size: 24px;
    line-height: 1.5;
    color: #333;
    font-weight: 500;
    margin: 0;
    padding: 0 20px;
}

@media (max-width: 768px) {
    .hero-crm {
        padding: 40px 0 60px;
    }

    .hero-crm__caption {
        font-size: 18px;
        padding: 0 10px;
    }

    .hero-crm__image img {
        border-radius: 8px;
    }
}

.no-padding-bottom {
  padding-bottom: 0 !important
}

.no-padding-top {
  padding-top: 0 !important
}

/* Apps Filter Styles */
.apps-filter {
    margin: 40px 0 60px 0;
    text-align: center;
}

.apps-filter__container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    max-width: 800px;
    margin: 0 auto;
}

.apps-filter__btn {
    padding: 12px 24px;
    background: #fff;
    border: 2px solid #e9ecef;
    border-radius: 25px;
    color: #666;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.apps-filter__btn:hover {
    border-color: #4A90E2;
    color: #4A90E2;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.15);
}

.apps-filter__btn.active {
    background: linear-gradient(135deg, #4A90E2 0%, #5BA3F5 100%);
    border-color: #4A90E2;
    color: #fff;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
}

.apps-filter__btn.active:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.4);
}

/* Responsive Design for Apps Filter */
@media (max-width: 768px) {
    .apps-filter {
        margin: 30px 0 40px 0;
    }

    .apps-filter__container {
        gap: 8px;
    }

    .apps-filter__btn {
        padding: 10px 18px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .apps-filter__container {
        flex-direction: column;
        align-items: center;
        gap: 6px;
    }

    .apps-filter__btn {
        width: 100%;
        max-width: 280px;
        padding: 12px 20px;
    }
}

/* Marketplace Apps Styles */
.marketplace-title {
    font-size: 42px;
    font-weight: 700;
    color: #1b242b;
    margin: 0 0 20px 0;
    text-align: center;
}

.marketplace-subtitle {
    font-size: 18px;
    color: #666;
    text-align: center;
    margin: 0 0 60px 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.apps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.app-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.app-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    border-color: #4A90E2;
}

.app-card__logo {
    width: 220px;
    height: 220px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.app-card__logo img {
    max-width: 200px;
    max-height: 200px;
    object-fit: contain;
}

.app-card__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.app-card__title {
    font-size: 20px;
    font-weight: 600;
    color: #1b242b;
    margin: 0 0 15px 0;
    line-height: 1.3;
}

.app-card__description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0 0 25px 0;
    flex: 1;
}

.app-card__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #4A90E2 0%, #5BA3F5 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: auto;
}

.app-card__button:hover {
    background: linear-gradient(135deg, #5BA3F5 0%, #4A90E2 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
}

.app-card__button i {
    font-size: 12px;
}

.error-message {
    text-align: center;
    color: #dc3545;
    font-size: 16px;
    padding: 40px;
    background: #f8d7da;
    border-radius: 8px;
    border: 1px solid #f5c6cb;
}

/* Responsive Design for Marketplace */
@media (max-width: 768px) {
    .marketplace-title {
        font-size: 32px;
    }

    .marketplace-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .apps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .app-card {
        padding: 25px 20px;
    }

    .app-card__logo {
        width: 90px;
        height: 90px;
        margin-bottom: 20px;
    }

    .app-card__logo img {
        max-width: 70px;
        max-height: 70px;
    }

    .app-card__title {
        font-size: 18px;
    }

    .app-card__description {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .marketplace-title {
        font-size: 28px;
    }

    .apps-grid {
        gap: 15px;
    }

    .app-card {
        padding: 20px 15px;
    }

    .app-card__logo {
        width: 80px;
        height: 80px;
    }

    .app-card__logo img {
        max-width: 60px;
        max-height: 60px;
    }
}

/* CRM for Roles Block */
.crm-for-roles {
    background: #fff;
}

.crm-for-roles__title {
    font-size: 36px;
    font-weight: 600;
    color: #333;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.4;
}

.role-tab {
    cursor: pointer;
    color: #0066CC;
    border-bottom: 1px dotted #0066CC;
    transition: all 0.3s ease;
    display: inline-block;
    padding-bottom: 2px;
}

.role-tab:hover {
    color: #004499;
    border-bottom-color: #004499;
}

.role-tab.active {
    color: #FF6B00;
    border-bottom: 2px solid #FF6B00;
    font-weight: 600;
}

.role-content {
    display: none;
}

.role-content.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.role-content__table {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.role-content__column h3 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid #0066CC;
}

.role-content__column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.role-content__column li {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.role-content__column li::before {
    content: "•";
    position: absolute;
    left: 10px;
    color: #0066CC;
    font-size: 24px;
    line-height: 1.2;
}

.role-content__bottom {
    display: flex;
    gap: 30px;
    align-items: stretch;
}

.role-content__result {
    background: linear-gradient(135deg, #f0f7ff 0%, #e6f2ff 100%);
    padding: 40px;
    border-radius: 12px;
    border-left: 5px solid #0066CC;
    flex: 1;
}

.role-content__result h3 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.role-content__result ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.role-content__result li {
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 12px;
    padding-left: 35px;
    position: relative;
    font-weight: 500;
}

.role-content__result li::before {
    content: "✓";
    position: absolute;
    left: 10px;
    color: #00AA00;
    font-size: 20px;
    font-weight: bold;
}

.role-content__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 320px;
    flex-shrink: 0;
}

.role-content__cta-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 30px 35px;
    background: linear-gradient(135deg, #4A90E2 0%, #5BA3F5 100%);
    border-radius: 12px;
    text-decoration: none;
    color: #fff;
    width: 100%;
    height: 100%;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.2);
    transition: all 0.3s ease;
    text-align: center;
}

.role-content__cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.3);
    background: linear-gradient(135deg, #5BA3F5 0%, #4A90E2 100%);
}

.role-content__cta-icon {
    font-size: 36px;
    line-height: 1;
}

.role-content__cta-text {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
}

.no-padding-top {
    padding-top: 0 !important;
}

@media (max-width: 1024px) {
    .crm-for-roles__title {
        font-size: 28px;
    }

    .role-content__table {
        gap: 30px;
    }

    .role-content__column h3 {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .crm-for-roles__title {
        font-size: 22px;
        margin-bottom: 40px;
    }

    .role-tab {
        display: inline;
    }

    .role-content__table {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 40px;
    }

    .role-content__column h3 {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .role-content__column li {
        font-size: 15px;
        margin-bottom: 12px;
    }

    .role-content__bottom {
        flex-direction: column;
        gap: 20px;
    }

    .role-content__result {
        padding: 30px 20px;
    }

    .role-content__result h3 {
        font-size: 20px;
    }

    .role-content__result li {
        font-size: 16px;
    }

    .role-content__cta {
        width: 100%;
    }

    .role-content__cta-btn {
        padding: 25px 30px;
    }

    .role-content__cta-icon {
        font-size: 32px;
    }

    .role-content__cta-text {
        font-size: 16px;
    }
}

.consultation-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.consultation-section .b24-form-header-padding, .consultation-section .b24-form-padding-side, .consultation-section .b24-form-content {
  padding: 0 !important;
}

.consultation-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.consultation-title {
    font-size: 42px;
    font-weight: 700;
    color: #1b242b;
    margin-bottom: 25px;
    line-height: 1.2;
}

.consultation-subtitle {
    font-size: 20px;
    color: #495057;
    margin-bottom: 40px;
    line-height: 1.5;
    font-weight: 500;
}

.consultation-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.consultation-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    transition: all 0.3s ease;
    border-left: none;
}

.consultation-item:hover {
    transform: none;
    box-shadow: none;
    border-left-color: transparent;
}

.consultation-item__icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 123, 255, 0.3);
}

.consultation-item__icon i {
    font-size: 14px;
}

.consultation-item__text {
    font-size: 15px;
    color: #495057;
    line-height: 1.5;
    margin: 0;
    font-weight: 400;
}

.consultation-form {
    display: flex;
    align-items: center;
    justify-content: center;
}
/* Consultation Responsive */
@media (max-width: 1200px) {
    .consultation-content {
        gap: 60px;
    }

    .consultation-title {
        font-size: 36px;
    }
}

@media (max-width: 992px) {
    .consultation-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .consultation-title {
        font-size: 32px;
        text-align: left;
    }

    .consultation-subtitle {
        text-align: left;
    }

    .consultation-form {
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .consultation-section {
        padding: 30px 0;
    }

    .consultation-title {
        font-size: 28px;
    }

    .consultation-subtitle {
        font-size: 18px;
    }

    .consultation-item {
        padding: 0;
        gap: 12px;
    }

    .consultation-item__icon {
        width: 28px;
        height: 28px;
    }

    .consultation-item__text {
        font-size: 14px;
    }

    .consultation-form {
        padding: 30px;
        min-height: 350px;
    }
}

@media (max-width: 480px) {
    .consultation-section {
        padding: 30px 0;
    }

    .consultation-title {
        font-size: 24px;
    }

    .consultation-subtitle {
        font-size: 16px;
    }

    .consultation-item {
        padding: 0;
        flex-direction: row;
        text-align: left;
        gap: 12px;
    }

    .consultation-item__icon {
        align-self: flex-start;
        width: 24px;
        height: 24px;
    }

    .consultation-form {
        padding: 20px;
        min-height: 300px;
    }
}

.why-bitrix24__title {
    margin-bottom: 50px;
}

.why-bitrix24__tabs {
    max-width: 1200px;
    margin: 0 auto;
}

.why-bitrix24__tabs-nav {
    display: flex;
    gap: 10px;
    margin-bottom: 40px;
    border-bottom: 2px solid #e0e0e0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.why-bitrix24__tab-btn {
    flex: 1;
    min-width: fit-content;
    padding: 18px 30px;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    font-size: 16px;
    font-weight: 600;
    color: #6c757d;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.why-bitrix24__tab-btn:hover {
    color: #0066cc;
    background: rgba(0, 102, 204, 0.05);
}

.why-bitrix24__tab-btn.active {
    color: #0066cc;
    border-bottom-color: #0066cc;
}

.why-bitrix24__tabs-content {
    position: relative;
    min-height: 350px;
}

.why-bitrix24__tab-panel {
    display: none;
    opacity: 0;
    transform: translateY(10px);
    animation: fadeInUp 0.4s ease forwards;
}

.why-bitrix24__tab-panel.active {
    display: block;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.why-bitrix24__panel-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.why-bitrix24__panel-content {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.why-bitrix24__panel-image {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 12px;
}

.why-bitrix24__panel-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.why-bitrix24__text {
    font-size: 18px;
    line-height: 1.8;
    color: #2c3e50;
    margin-bottom: 0;
}

.why-bitrix24__list {
    list-style: none;
    padding: 0;
    margin: 20px 0 0 0;
}

.why-bitrix24__list li {
    position: relative;
    padding-left: 30px;
    font-size: 18px;
    line-height: 1.8;
    color: #2c3e50;
    margin-bottom: 12px;
}

.why-bitrix24__list li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: #0066cc;
    font-weight: bold;
}

/* Responsive */
@media (max-width: 992px) {
    .why-bitrix24__panel-grid {
        gap: 40px;
    }

    .why-bitrix24__tabs-nav {
        gap: 5px;
    }

    .why-bitrix24__tab-btn {
        padding: 15px 20px;
        font-size: 15px;
    }

    .why-bitrix24__text,
    .why-bitrix24__list li {
        font-size: 17px;
    }
}

@media (max-width: 768px) {
    .why-bitrix24__title {
        margin-bottom: 35px;
    }

    .why-bitrix24__panel-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .why-bitrix24__panel-image {
        order: -1;
    }

    .why-bitrix24__tabs-nav {
        margin-bottom: 30px;
        gap: 0;
    }

    .why-bitrix24__tab-btn {
        padding: 12px 15px;
        font-size: 14px;
    }

    .why-bitrix24__text,
    .why-bitrix24__list li {
        font-size: 16px;
    }

    .why-bitrix24__list li {
        padding-left: 25px;
    }
}

@media (max-width: 480px) {
    .why-bitrix24__title {
        font-size: 24px;
        margin-bottom: 25px;
    }

    .why-bitrix24__panel-grid {
        gap: 25px;
    }

    .why-bitrix24__tab-btn {
        padding: 10px 12px;
        font-size: 13px;
    }

    .why-bitrix24__text,
    .why-bitrix24__list li {
        font-size: 15px;
        line-height: 1.6;
    }

    .why-bitrix24__tabs-content {
        min-height: 200px;
    }
}

/* Automation Areas Section */
.automation-areas {
    background: #ffffff;
}

.automation-areas__title {
    margin-bottom: 50px;
}

.automation-areas__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.automation-area-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 1px solid #e0e5eb;
    border-radius: 16px;
    padding: 30px 28px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.automation-area-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0066cc 0%, #0099ff 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.automation-area-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.15);
    border-color: #0066cc;
}

.automation-area-card:hover::before {
    transform: scaleX(1);
}

.automation-area-card__header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.automation-area-card__icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #0066cc 0%, #0099ff 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 22px;
    color: #ffffff;
    transition: transform 0.3s ease;
}

.automation-area-card:hover .automation-area-card__icon {
    transform: scale(1.1) rotate(5deg);
}

.automation-area-card__title {
    font-size: 19px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.3;
}

.automation-area-card__description {
    font-size: 17px;
    line-height: 1.7;
    color: #1a1a1a;
    margin: 0;
}

/* Responsive */
@media (max-width: 1200px) {
    .automation-areas__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .automation-area-card {
        padding: 28px 25px;
    }

    .automation-area-card__title {
        font-size: 18px;
    }

    .automation-area-card__description {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .automation-areas__title {
        margin-bottom: 35px;
    }

    .automation-areas__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .automation-area-card {
        padding: 25px 22px;
    }

    .automation-area-card__header {
        gap: 12px;
        margin-bottom: 12px;
    }

    .automation-area-card__icon {
        width: 44px;
        height: 44px;
        font-size: 20px;
        border-radius: 10px;
    }

    .automation-area-card__title {
        font-size: 17px;
    }

    .automation-area-card__description {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .automation-areas__title {
        font-size: 24px;
        margin-bottom: 25px;
    }

    .automation-area-card {
        padding: 22px 18px;
    }

    .automation-area-card__header {
        gap: 10px;
    }

    .automation-area-card__icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
        border-radius: 8px;
    }

    .automation-area-card__title {
        font-size: 16px;
    }

    .automation-area-card__description {
        font-size: 14px;
        line-height: 1.6;
    }
}

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

.cta-section .role-content__cta-btn {
    max-width: 800px;
    width: 100%;
    flex-direction: row;
    gap: 20px;
    padding: 30px 40px;
}

.cta-section .role-content__cta-icon {
    flex-shrink: 0;
}

.cta-section .role-content__cta-text {
    white-space: nowrap;
}

@media (max-width: 992px) {
    .cta-section .role-content__cta-btn {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .cta-section {
        padding: 40px 0;
    }

    .cta-section .role-content__cta-btn {
        flex-direction: column;
        padding: 25px 30px;
    }

    .cta-section .role-content__cta-text {
        white-space: normal;
    }
}

@media (max-width: 480px) {
    .cta-section {
        padding: 30px 0;
    }

    .cta-section .role-content__cta-btn {
        padding: 20px 25px;
    }
}

/* Apps Showcase Section */
.apps-showcase__title {
    margin-bottom: 0px;
}

.apps-showcase__scroller-wrapper {
    width: 100%;
}

.apps-showcase__scroller {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding: 30px 20px 40px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #d0d7f2 transparent;
}

.apps-showcase__scroller::-webkit-scrollbar {
    height: 8px;
}

.apps-showcase__scroller::-webkit-scrollbar-track {
    background: transparent;
}

.apps-showcase__scroller::-webkit-scrollbar-thumb {
    background: #d0d7f2;
    border-radius: 8px;
}

.apps-showcase__scroller .app-card {
    flex: 0 0 320px;
    margin: 0;
}

@media (max-width: 768px) {
    .apps-showcase__title {
        margin-bottom: 30px;
    }

    .apps-showcase__scroller {
        padding: 0 20px 30px;
        gap: 20px;
    }

    .apps-showcase__scroller .app-card {
        flex: 0 0 280px;
    }
}

@media (max-width: 480px) {
    .apps-showcase__scroller .app-card {
        flex: 0 0 260px;
    }
}

.portfolio-viewer {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

.portfolio-viewer__header {
	border-bottom: 1px solid #eee;
	padding: 12px 0;
	position: sticky;
	top: 72px;
	z-index: 999;
	background: #fff;
	transform: translateZ(0);
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
}

.portfolio-viewer__controls {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 15px;
	flex-wrap: wrap;
}

.portfolio-viewer__project {
	display: flex;
	align-items: center;
	gap: 15px;
	flex-wrap: wrap;
}

.portfolio-viewer__title {
	font-size: 20px;
	font-weight: 600;
	margin: 0;
	color: #1b242b;
}

.portfolio-viewer__select {
	font: 14px/1.3 'IBM Plex Sans', sans-serif;
	padding: 8px 35px 8px 12px;
	border: 1px solid #ddd;
	border-radius: 5px;
	background: #fff;
	color: #1b242b;
	cursor: pointer;
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%231b242b' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 10px center;
	transition: border-color 0.15s linear;
}

.portfolio-viewer__select:hover {
	border-color: #1568f0;
}

.portfolio-viewer__select:focus {
	outline: none;
	border-color: #1568f0;
}

.portfolio-viewer__device-switcher {
	display: flex;
	gap: 8px;
	background: #f5f5f5;
	padding: 4px;
	border-radius: 8px;
}

.portfolio-viewer__device-btn {
	font: 14px/1.3 'IBM Plex Sans', sans-serif;
	padding: 8px 16px;
	border: none;
	background: transparent;
	color: #666;
	cursor: pointer;
	border-radius: 5px;
	transition: all 0.15s linear;
	display: flex;
	align-items: center;
	gap: 6px;
}

.portfolio-viewer__device-btn:hover {
	color: #1b242b;
	background: rgba(255, 255, 255, 0.5);
}

.portfolio-viewer__device-btn--active {
	background: #fff;
	color: #1b242b;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.portfolio-viewer__frame-wrapper {
	flex: 1;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	padding: 0;
	overflow: auto;
}

.portfolio-viewer__frame-wrapper[data-device="tablet"] {
	padding: 22px;
}

.portfolio-viewer__frame-wrapper[data-device="mobile"] {
	padding: 22px;
}

.portfolio-viewer__frame-container {
	width: 100%;
	height: calc(100vh - 100px);
	position: relative;
}

.portfolio-viewer__frame-wrapper[data-device="desktop"] .portfolio-viewer__frame-container {
	max-width: 100%;
}

.portfolio-viewer__frame-wrapper[data-device="tablet"] .portfolio-viewer__frame-container {
	max-width: 768px;
	width: 100%;
	background: #fff;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	border-radius: 16px;
	overflow: hidden;
}

.portfolio-viewer__frame-wrapper[data-device="mobile"] .portfolio-viewer__frame-container {
	max-width: 414px;
	width: 100%;
	background: #fff;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	border-radius: 16px;
	overflow: hidden;
}

.portfolio-viewer__iframe {
	width: 100%;
	height: 100%;
	border: none;
	display: block;
}

@media (max-width: 768px) {
	.portfolio-viewer__header {
		top: 98px;
	}

	.portfolio-viewer__controls {
		flex-direction: column;
		align-items: stretch;
	}

	.portfolio-viewer__project {
		flex-direction: column;
		align-items: stretch;
	}

	.portfolio-viewer__device-switcher {
    display: none;
	}

	.portfolio-viewer__device-btn {
		flex: 1;
		justify-content: center;
	}
}
