@charset "UTF-8";
/* stylelint-disable */
/* ---------- example ---------- */
/*
.selector {
  // только в промежутке tablet..desktop
  @include media-between(tablet, desktop) { ... }

  // ровно «только tablet» (1024..1239)
  @include media-only(tablet) { ... }

  // ≥ 1440
  @include for-desktop { ... }

  // ≤ 767
  @include small-tablet { ... }
}
*/
/* ---------- helpers ---------- */
/* Min-width */
/* Max-width */
/* stylelint-disable */
@keyframes ticker-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc((var(--ticker-size, 100%) + var(--ticker-gap, 0px)) * -1));
  }
}
@keyframes ticker-right {
  from {
    transform: translateX(calc((var(--ticker-size, 100%) + var(--ticker-gap, 0px)) * -1));
  }
  to {
    transform: translateX(0);
  }
}
@keyframes ticker-top {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(calc((var(--ticker-size, 100%) + var(--ticker-gap, 0px)) * -1));
  }
}
@keyframes ticker-bottom {
  from {
    transform: translateY(calc((var(--ticker-size, 100%) + var(--ticker-gap, 0px)) * -1));
  }
  to {
    transform: translateY(0);
  }
}
.section-editor {
  padding: 6rem 0 8rem;
  position: relative;
  z-index: 1;
}
.section-editor#quote {
  background: linear-gradient(180deg, #34373c 65%, #34373c 65%, #F6F8FA 50%, #F6F8FA 100%);
  margin-top: calc(var(--header-height) * -1);
  padding-top: calc(var(--header-height) + 6rem);
}
.section-editor#quote .section-editor__inner {
  display: grid;
  grid-template-columns: 100%;
  max-width: 110rem;
  margin: 0 auto;
}
.section-editor#quote .section-editor__inner .main-form .placeholder, .section-editor#quote .section-editor__inner .main-form .option-text {
  text-align: start;
}
.section-editor#quote .section-editor__inner .main-form .btn-accent {
  max-width: 37.2rem;
}
.section-editor#quote .editor .h1, .section-editor#quote .editor .h2, .section-editor#quote .editor .h3, .section-editor#quote .editor .h4, .section-editor#quote .editor .h5, .section-editor#quote .editor .h6, .section-editor#quote .editor h1, .section-editor#quote .editor h2, .section-editor#quote .editor h3, .section-editor#quote .editor h4, .section-editor#quote .editor h5, .section-editor#quote .editor h6 {
  color: #fefefe;
}
.section-editor .logos-sliders {
  display: flex;
  align-items: center;
  flex-direction: column;
  --ticker-gap: clamp(44px, 4vw, 9.2rem);
  gap: var(--ticker-gap);
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.section-editor .logos-sliders:before, .section-editor .logos-sliders:after {
  top: 0;
  bottom: 0;
  width: 8.5rem;
  display: flex;
  position: absolute;
  background: linear-gradient(90deg, var(--section-bg) 0%, rgba(255, 255, 255, 0) 100%);
  content: "";
  z-index: 10;
}
.section-editor .logos-sliders:before {
  left: 0;
}
.section-editor .logos-sliders:after {
  right: 0;
  transform: scaleX(-1);
}
.section-editor .logos-sliders li {
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: -0.7rem;
}
.section-editor .logos-sliders li:nth-child(even) .logos-sliders__line {
  white-space: nowrap;
  animation: ticker-right 120s linear infinite;
}
.section-editor .logos-sliders li:nth-child(odd) .logos-sliders__line {
  white-space: nowrap;
  animation: ticker-left 120s linear infinite;
}
.section-editor .logos-sliders__line {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: var(--ticker-gap);
}
.section-editor .logos-sliders__line .logo-slide {
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  position: static;
  max-width: none;
  flex: 0 0 auto;
  box-sizing: content-box;
}
.section-editor .logos-sliders__line .logo-slide img, .section-editor .logos-sliders__line .logo-slide svg {
  position: static;
  padding-right: clamp(44px, 4vw, 9.2rem);
  max-width: none;
  flex: 0 0 auto;
  box-sizing: content-box;
  -o-object-fit: contain;
     object-fit: contain;
  max-height: 25.8rem;
}
.section-editor .editor ul[data-column="2"] {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.82);
}
.section-editor ol:not([class]) {
  list-style: none;
  counter-reset: list-counter;
  padding: 0;
  display: flex;
  flex-direction: column;
  margin: 0;
}
.section-editor ol:not([class]) li {
  counter-increment: list-counter;
  display: inline;
  align-items: start;
  gap: 1rem;
  padding: 1.4rem 0 1.4rem 4rem;
  border-bottom: 1px solid rgba(52, 55, 60, 0.1);
  position: relative;
  color: var(--cl-e);
  font-family: var(--font-family);
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.77;
}
.section-editor ol:not([class]) li::before {
  content: counter(list-counter, decimal-leading-zero) ".";
  position: absolute;
  left: 0;
  top: 1.6rem;
  color: #34373c;
  font-family: var(--font-title);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
}
.section-editor ol:not([class]) li:first-child {
  padding-top: 0;
}
.section-editor ol:not([class]) li:first-child:before {
  top: 0.2rem;
}
.section-editor ol:not([class]) li br {
  display: none;
}
.section-editor ol:not([class]) li::before {
  color: #34373c;
}
.section-editor ol:not([class]) li::after {
  color: var(--color-accent);
}
.section-editor ol:not([class]) p {
  margin: 0;
}
.section-editor .privacy-contact {
  margin-top: 0.6rem;
  padding: 2rem;
  border: 0.1rem solid rgba(52, 55, 60, 0.1);
  background: transparent;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.2rem;
  position: relative;
  z-index: 1;
}
.section-editor .privacy-contact .h3 {
  margin: 0;
  font-size: 3.2rem;
}
.section-editor .privacy-contact__copy p:not([class]) {
  margin: 2.4rem 0 0;
}
.section-editor .privacy-contact__meta {
  list-style: none;
  margin: 0;
  padding: 2rem;
  background: #ffffff;
  display: grid;
  gap: 1.6rem;
}
.section-editor .privacy-contact__meta li {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.section-editor .privacy-contact__meta img, .section-editor .privacy-contact__meta svg {
  width: 2rem;
  height: 2rem;
  color: var(--color-accent);
  flex-shrink: 0;
}
.section-editor .privacy-contact__meta a:not([class]),
.section-editor .privacy-contact__meta span {
  color: rgba(52, 55, 60, 0.72) !important;
  text-decoration: none;
  line-height: normal;
  font-size: 1.8rem;
}
.section-editor .privacy-contact__meta a:hover, .section-editor .privacy-contact__meta a:focus-visible {
  color: var(--color-accent) !important;
}
.section-editor .main-form .btn-accent.full-row svg {
  padding: 13px;
}
.section-editor__inner {
  position: relative;
  overflow: visible;
  display: grid;
  z-index: 1;
  grid-template-columns: clamp(850px, 64.573vw, 105.9rem) minmax(0, 1fr);
  gap: 6.4rem;
  align-items: start;
}
.section-editor__inner .editor {
  gap: 2.4rem;
}
.section-editor__inner .editor a:not([class]) {
  color: var(--color-accent);
}
.section-editor__inner .editor a:not([class]):hover {
  text-decoration-color: transparent;
}
.section-editor__inner .editor .h2, .section-editor__inner .editor h2, .section-editor__inner .editor .h3, .section-editor__inner .editor h3 {
  margin-top: 1.6rem;
}
.section-editor__inner .editor .h2:first-of-type, .section-editor__inner .editor h2:first-of-type, .section-editor__inner .editor .h3:first-of-type, .section-editor__inner .editor h3:first-of-type {
  margin: 0;
}
.section-editor__inner > .grid-cols {
  grid-template-columns: 100%;
}
.section-editor__inner > .grid-cols .grid-cols__row > .cols-6 {
  grid-column: initial;
}
.section-editor .sp-toc {
  border: 0.1rem solid rgba(52, 55, 60, 0.1);
  background: #fefefe;
  padding: 3.6rem 2.8rem 2.8rem;
  position: sticky;
  top: var(--header-height);
  align-self: start;
}
.section-editor .sp-toc .sp-toc__item--has-children .sp-toc__sublist {
  display: flex;
  flex-direction: column;
}
.section-editor .sp-toc .sp-toc__toggle {
  width: 9px;
  flex-shrink: 0;
  height: 9px;
  position: relative;
  z-index: 1;
}
.section-editor .sp-toc .sp-toc__toggle:before, .section-editor .sp-toc .sp-toc__toggle:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  background: var(--cl-e);
  transition: all 0.3s;
}
.section-editor .sp-toc .sp-toc__toggle:before {
  width: 100%;
  height: 1px;
}
.section-editor .sp-toc .sp-toc__toggle:after {
  width: 1px;
  height: 100%;
}
.section-editor .sp-toc .sp-toc__toggle.active:after {
  opacity: 0;
}
.section-editor .sp-toc .sp-toc__parent-wrapper {
  width: 100%;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
}
.section-editor .sp-toc__title {
  font-size: 2.8rem;
  color: var(--color-text-main);
  font-family: var(--font-title);
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}
.section-editor .sp-toc .sp-toc__item.sp-toc__item--child .sp-toc__link {
  padding: 0.4rem 0 0.4rem 2rem;
  color: #34373C;
  font-family: var(--font-family);
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 400;
  line-height: 177%;
  text-transform: capitalize;
}
.section-editor .sp-toc .sp-toc__content {
  grid-column: 1/-1;
}
.section-editor .sp-toc > .sp-toc__list {
  list-style: none;
  counter-reset: toc;
  margin: 3.6rem 0 0;
  padding: 0 0 0 2rem;
  display: grid;
  position: relative;
  --toc-progress: 0%;
}
.section-editor .sp-toc > .sp-toc__list::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0.2rem;
  background: #d6dbe1;
}
.section-editor .sp-toc > .sp-toc__list::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0.2rem;
  height: var(--toc-progress);
  background: var(--color-accent);
  transition: height 0.22s ease;
}
.section-editor .sp-toc > .sp-toc__list > .sp-toc__item {
  counter-increment: toc;
  display: grid;
  grid-template-columns: 2rem 1fr;
  padding: 1.2rem 0;
  font-size: 1.8rem;
}
.section-editor .sp-toc > .sp-toc__list > .sp-toc__item::before {
  content: counter(toc) ".";
  color: var(--color-accent);
  font-family: var(--font-title);
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1.77;
  flex: 0 0 auto;
}
.section-editor .sp-toc > .sp-toc__list > .sp-toc__item a {
  color: #34373c;
  text-decoration: none;
  font-family: var(--font-title);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.35;
  text-transform: capitalize;
}
.section-editor .sp-toc > .sp-toc__list > .sp-toc__item a:hover, .section-editor .sp-toc > .sp-toc__list > .sp-toc__item a:focus-visible {
  color: var(--color-accent);
}
.section-editor .sp-toc > .sp-toc__list > .sp-toc__item a.is-active {
  color: #34373c;
}
.section-editor .wpcf7 {
  width: 100%;
}
.section-editor .main-form {
  --gap: 1.6rem;
  gap: 2rem var(--gap);
  position: relative;
}
.section-editor .main-form .wpcf7-response-output {
  display: none;
}
.section-editor .main-form .btn {
  min-width: 34.6rem;
  height: 6.8rem;
  display: flex;
  align-items: center;
  margin: 0;
  justify-content: space-between;
  gap: 1.8rem;
  font-size: 1.6rem;
  padding-right: 1.7rem;
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
  padding-left: 4.1rem;
  background-color: var(--color-accent);
}
.section-editor .main-form .btn svg {
  background: rgba(254, 254, 254, 0.2);
  box-sizing: content-box;
  width: 5.6rem;
  height: 5.6rem;
  display: block;
}
.section-editor .main-form__footer {
  display: flex;
  align-items: center;
  gap: 3.2rem;
}
.section-editor .main-form__footer p:not([class]) {
  color: var(--color-text-main);
  opacity: 0.6;
  font-size: 1.6rem;
  line-height: 1.35;
  text-align: left;
}
.section-editor .main-form__services {
  margin: 0.8rem 0 0;
  position: relative;
  padding: 2.1rem 1.6rem 1.6rem 1.9rem;
  border: 0.1rem solid rgba(52, 55, 60, 0.2);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem 2.8rem;
  grid-column: 1/-1;
}
.section-editor .main-form__services .wpcf7-list-item {
  display: flex;
  align-items: center;
}
.section-editor .main-form__services > .wpcf7-form-control-wrap {
  display: contents;
}
.section-editor .main-form__services .wpcf7-form-control {
  display: contents;
}
.section-editor .main-form__services legend {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
  margin: 0;
  width: -moz-max-content;
  width: max-content;
  max-width: calc(100% - 3.2rem);
  line-height: 1;
  padding: 0 1.4rem;
  background: #F6F8FA;
  color: var(--color-text-main);
  font-family: var(--font-title);
  font-size: 1.6rem;
  font-weight: 700;
  white-space: nowrap;
  text-transform: uppercase;
  display: block;
  text-align: center;
  letter-spacing: 0.02rem;
}
.section-editor .main-form__services label {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1.25;
  cursor: pointer;
}
.section-editor .main-form__services input[type=radio] {
  margin: 0;
  width: 1.6rem;
  height: 1.6rem;
  accent-color: var(--color-accent);
}
.section-editor .main-form > label {
  position: relative;
  display: flex;
  padding: 2.1rem 1.6rem;
  align-items: center;
  gap: 0.9rem;
  border: 0.1rem solid var(--color-border-light);
  background: var(--color-white);
}
.section-editor .main-form > label:has(.wpcf7-validates-as-required):after {
  content: "*";
  color: var(--color-accent);
  font-size: 3.2rem;
  width: 2.4rem;
  bottom: -0.7rem;
  position: relative;
  height: -moz-fit-content;
  height: fit-content;
  display: block;
}
.section-editor .main-form > label:not([class]) {
  grid-column: span 6;
}
.section-editor .main-form > label span {
  flex-grow: 1;
}
.section-editor .main-form > label img {
  width: 2.4rem;
  height: 2.4rem;
}
.section-editor .main-form > label img.areas-field__required-icon {
  -o-object-fit: contain;
     object-fit: contain;
}
.section-editor .main-form > label:has(textarea) {
  align-items: flex-start;
}
.section-editor .main-form > label:has(textarea) > span {
  margin-top: 0.2rem;
}
.section-editor .main-form > label svg {
  color: rgba(52, 55, 60, 0.3);
  width: 2.4rem;
  height: 2.4rem;
  flex-shrink: 0;
  -o-object-fit: contain;
     object-fit: contain;
}
.section-editor .main-form > label textarea, .section-editor .main-form > label input {
  width: 100%;
  border: none;
  background: transparent;
  color: #3a3f47;
  font-family: var(--font-family);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1;
}
.section-editor .main-form > label textarea::-moz-placeholder, .section-editor .main-form > label input::-moz-placeholder {
  color: #9d9fa5;
}
.section-editor .main-form > label textarea::placeholder, .section-editor .main-form > label input::placeholder {
  color: #9d9fa5;
}
.section-editor .main-form > label textarea:focus, .section-editor .main-form > label input:focus {
  outline: none;
}
.section-editor .main-form .wpcf7-not-valid-tip {
  position: absolute !important;
  bottom: 0;
  color: var(--color-accent);
  transform: translateY(calc(100% + 0.5rem));
  font-family: var(--font-family);
  font-size: 1.3rem;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
}
.section-editor textarea {
  height: 15rem;
}
@media (min-width: 767px){
  .section-editor .editor ul[data-column="2"] {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 2.2rem 2.6rem !important;
  }
}
@media (min-width: 1024px){
  .section-editor__inner .sp-toc {
    top: 3.2rem;
    margin-top: -15.5rem;
  }
}
@media (max-width: 1440px){
  .section-editor__inner {
    grid-template-columns: 2.5fr 1.5fr;
  }
}
@media (max-width: 1199.98px){
  .section-editor ol:not([class]) li::before {
    font-size: 2.3rem;
  }
  .section-editor .privacy-contact {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 1024px){
  .section-editor__inner {
    gap: 24px;
    display: flex;
    flex-direction: column-reverse;
  }
  .section-editor .sp-toc {
    position: relative;
    top: auto;
    width: 100%;
  }
}
@media (max-width: 1023.98px){
  .section-editor .logos-sliders__line .logo-slide img, .section-editor .logos-sliders__line .logo-slide svg {
    max-height: 160px;
  }
  .section-editor__inner .sp-toc {
    margin-top: -90px;
    position: relative;
    top: initial;
  }
  .section-editor {
    padding-bottom: 88px;
  }
  .section-editor .main-form .btn {
    min-width: 0;
    width: 100%;
    max-width: 42rem;
  }
}
@media (max-width: 766.98px){
  .section-editor .main-form__footer {
    flex-direction: column;
    align-items: flex-start;
  }
  .section-editor .main-form__services {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .section-editor .cols-6 {
    grid-column: 1/-1;
  }
}
@media (max-width: 575.98px){
  .section-editor .logos-sliders li {
    margin-bottom: -3px;
  }
  .section-editor .logos-sliders__line .logo-slide img, .section-editor .logos-sliders__line .logo-slide svg {
    max-height: 80px;
  }
}
/*# sourceMappingURL=section-editor.css.map */