/* Brand */
/* Layout */
/* Spacing */
/* Typography */
/* Transitions */
/* Breakpoints */
/* Z-index scale */
/* Forms */
/* Minimal base reset for consistent rendering */
html {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
*,
*:before,
*:after {
  box-sizing: inherit;
}
body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  color: #121212;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
html,
body {
  overflow-x: hidden;
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #f97316;
  text-decoration: none;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
a:hover {
  color: #d85f10;
}
.colored {
  color: #f97316;
}
button,
input,
textarea,
select {
  font-family: 'Poppins', sans-serif;
}
button {
  border: 0;
  background: none;
}
.wrap {
  max-width: 1520px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
@media all and (min-width: 768px) and (max-width: 989px), all and (max-width: 767px) {
  .wrap {
    padding-left: 10px;
    padding-right: 10px;
  }
}
/* Utility */
.u-hidden {
  display: none !important;
}
.u-visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  padding-top: 23px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.site-header.is-sticky {
  position: fixed;
  padding-top: 10px;
  padding-bottom: 10px;
  background: rgba(4, 11, 17, 0.95);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
.site-header.is-sticky .site-header__inner {
  min-height: 0;
}
.site-header.is-sticky .site-header__logo {
  width: 140px;
}
.site-header.is-sticky .site-header__nav {
  top: 50%;
  transform: translateY(-50%);
}
.site-header__inner {
  position: relative;
  min-height: 87px;
}
.site-header__logo {
  display: block;
  width: 191px;
  color: #ffffff;
}
.site-header__logo:hover {
  color: #ffffff;
}
.site-header__logo-image {
  display: block;
  width: 100%;
  height: auto;
}
.site-header__toggle {
  display: none;
}
.site-header__nav {
  position: absolute;
  top: 32px;
  right: 0;
}
.site-header__menu {
  font-size: 0;
}
.site-header__item {
  display: inline-block;
  margin-left: 10px;
  vertical-align: top;
}
.site-header__item:first-child {
  margin-left: 0;
}
.site-header__link {
  display: block;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 500;
  line-height: 20px;
  text-transform: uppercase;
  color: #ffffff;
  border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
}
.site-header__link:hover {
  color: #ffffff;
  background: rgba(249, 115, 22, 0.22);
}
.site-header__link--active {
  background: #f97316;
}
.site-header__link--active:hover {
  background: #f97316;
}
@media all and (min-width: 768px) and (max-width: 989px), all and (max-width: 767px) {
  .site-header {
    padding-top: 16px;
    -webkit-transition: none;
    transition: none;
  }
  .site-header.is-sticky {
    -webkit-transition: none;
    transition: none;
  }
  .site-header__inner {
    min-height: 64px;
  }
  .site-header__logo {
    position: relative;
    z-index: 2001;
    width: 154px;
  }
  .site-header__toggle {
    position: absolute;
    top: 6px;
    right: 0;
    z-index: 2001;
    display: block;
    width: 54px;
    height: 54px;
    padding: 0;
    background: #f97316;
    border: 0;
    cursor: pointer;
    border-radius: 10px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
  }
  .site-header__toggle-line {
    display: block;
    position: absolute;
    left: 14px;
    right: 14px;
    height: 2px;
    background: #ffffff;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .site-header__toggle-line:nth-child(1) {
    top: 18px;
  }
  .site-header__toggle-line:nth-child(2) {
    top: 26px;
  }
  .site-header__toggle-line:nth-child(3) {
    top: 34px;
  }
  body.is-menu-open .site-header__toggle-line:nth-child(1) {
    top: 26px;
    transform: rotate(45deg);
  }
  body.is-menu-open .site-header__toggle-line:nth-child(2) {
    opacity: 0;
  }
  body.is-menu-open .site-header__toggle-line:nth-child(3) {
    top: 26px;
    transform: rotate(-45deg);
  }
  body.is-menu-open {
    overflow: hidden;
  }
  body.is-menu-open .site-header {
    position: fixed;
  }
  .site-header__nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    background: rgba(4, 11, 17, 0.96);
    border-radius: 0;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    -webkit-transition: all 0.35s ease;
    -moz-transition: all 0.35s ease;
    -ms-transition: all 0.35s ease;
    transition: all 0.35s ease;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  body.is-menu-open .site-header__nav {
    opacity: 1;
    visibility: visible;
  }
  .site-header__menu {
    text-align: center;
  }
  .site-header__item {
    display: block;
    margin-left: 0;
    margin-top: 0;
  }
  .site-header__link {
    display: block;
    padding: 16px 30px;
    font-size: 22px;
    font-weight: 600;
    text-align: center;
    border-radius: 10px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
  }
  .site-header__link:hover {
    color: #f97316;
    background: none;
  }
  .site-header__link--active {
    color: #f97316;
    background: none;
  }
  .site-header__link--active:hover {
    background: none;
  }
}
.site-footer {
  position: relative;
  padding: 38px 0 42px;
  background: linear-gradient(180deg, rgba(4, 11, 17, 0.2) 0%, rgba(4, 11, 17, 0.3) 100%), url('../images/footer-bg.jpg') center center / cover no-repeat;
  background-color: #07131d;
  background-blend-mode: multiply, normal;
}
.site-footer:before,
.site-footer:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 4px;
}
.site-footer:before {
  top: 0;
  background: linear-gradient(90deg, #000000 0%, #ff7000 100%);
}
.site-footer:after {
  bottom: 0;
  background: linear-gradient(90deg, #ff7000 0%, #000000 100%);
}
.site-footer__top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 28px;
}
.site-footer__menu {
  font-size: 0;
}
.site-footer__item {
  display: inline-block;
  margin-left: 8px;
  vertical-align: top;
}
.site-footer__item:first-child {
  margin-left: 0;
}
.site-footer__link {
  display: block;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 500;
  line-height: 20px;
  text-transform: uppercase;
  color: #ffffff;
  border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.site-footer__link:hover {
  color: #ffffff;
  background: rgba(249, 115, 22, 0.22);
}
.site-footer__link--active {
  background: #f97316;
}
.site-footer__link--active:hover {
  background: #f97316;
}
.site-footer__contact {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 28px;
}
.site-footer__phone {
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
}
a.site-footer__phone {
  text-decoration: none;
  color: #ffffff;
}
a.site-footer__phone:hover {
  text-decoration: none;
  color: #ffffff;
}
.site-footer__email {
  font-size: 14px;
  font-weight: 500;
  color: #f97316;
  text-decoration: underline;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.site-footer__email:hover {
  color: #ff8a1f;
}
.site-footer__divider {
  border: 0;
  border-top: 1px solid #f97316;
  margin: 0 0 28px;
}
.site-footer__bottom {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.site-footer__brand {
  width: 160px;
}
.site-footer__logo {
  display: block;
  width: 100%;
  height: auto;
}
.site-footer__legal {
  text-align: center;
}
.site-footer__address {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  color: #ffffff;
}
.site-footer__copy {
  margin-top: 4px;
  font-size: 12px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.4);
}
.site-footer__social {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
}
.site-footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  font-size: 16px;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  -moz-border-radius: 999px;
  -webkit-border-radius: 999px;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.site-footer__social-link:hover {
  color: #ffffff;
  background: #f97316;
  border-color: #f97316;
}
@media all and (min-width: 768px) and (max-width: 989px) {
  .site-footer__top {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    gap: 20px;
  }
  .site-footer__contact {
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 14px;
  }
  .site-footer__bottom {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }
  .site-footer__brand {
    margin: 0 auto;
  }
  .site-footer__social {
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
@media all and (max-width: 767px) {
  .site-footer {
    padding: 30px 0 34px;
  }
  .site-footer__top {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    gap: 18px;
    margin-bottom: 22px;
  }
  .site-footer__menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px;
  }
  .site-footer__item {
    margin-left: 0;
  }
  .site-footer__link {
    padding: 6px 10px;
    font-size: 12px;
  }
  .site-footer__contact {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
  }
  .site-footer__divider {
    margin-bottom: 22px;
  }
  .site-footer__bottom {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  .site-footer__brand {
    width: 130px;
  }
  .site-footer__social {
    gap: 10px;
  }
  .site-footer__social-link {
    width: 34px;
    height: 34px;
    font-size: 14px;
  }
}
.btn {
  text-decoration: none !important;
  display: inline-block;
  padding: 10px 18px;
  color: #ffffff !important;
  background-color: #f97316 !important;
  border: thin solid transparent;
  cursor: pointer;
  font-size: 15px;
  line-height: 1.2;
  border-radius: 9999px;
  -moz-border-radius: 9999px;
  -webkit-border-radius: 9999px;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  transition: all 0.2s ease;
  min-width: 220px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-align: center;
}
.btn:hover {
  background-color: #d85f10 !important;
  color: #ffffff !important;
}
.btn--primary {
  background-color: #f97316 !important;
}
.btn--primary:hover {
  background-color: #d85f10 !important;
}
a.button,
.page-content__main a.button {
  display: inline-block;
  align-self: flex-start;
  padding: 10px 36px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #ffffff;
  text-decoration: none !important;
  background: #111111;
  border-radius: 6px;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -ms-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
a.button:hover,
.page-content__main a.button:hover {
  background: #f97316;
  color: #ffffff;
  text-decoration: none !important;
}
@media all and (max-width: 767px) {
  a.button,
  .page-content__main a.button {
    padding: 14px 34px;
    font-size: 14px;
  }
}
.site-form {
  position: relative;
  z-index: 2;
}
.site-form__title {
  margin-bottom: 18px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.15;
  color: #ffffff;
}
.site-form__title span {
  color: #f97316;
}
.site-form__intro {
  max-width: 500px;
  margin-bottom: 30px;
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.8);
}
.site-form__field {
  margin-bottom: 15px;
}
.site-form__input {
  display: block;
  width: 100%;
  height: 50px;
  padding: 0 18px;
  color: #ffffff;
  font-weight: 700;
  background: #2B2A29;
  border: 1px solid transparent;
  border-radius: 8px;
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.site-form__input ::-webkit-input-placeholder {
  color: #ffffff;
}
.site-form__input :-moz-placeholder {
  color: #ffffff;
  opacity: 1;
}
.site-form__input ::-moz-placeholder {
  color: #ffffff;
  opacity: 1;
}
.site-form__input :-ms-input-placeholder {
  color: #ffffff;
}
.site-form__input::-webkit-input-placeholder {
  color: #ffffff;
  font-weight: 700;
}
.site-form__input:-moz-placeholder {
  color: #ffffff;
  opacity: 1;
  font-weight: 700;
}
.site-form__input::-moz-placeholder {
  color: #ffffff;
  opacity: 1;
  font-weight: 700;
}
.site-form__input:-ms-input-placeholder {
  color: #ffffff;
  font-weight: 700;
}
.site-form__input:focus {
  outline: 0;
  border-color: #f97316;
}
.site-form__input::-ms-clear {
  display: none;
}
.site-form__submit {
  display: block;
  width: 100%;
  min-width: 0;
  height: 50px;
  padding-top: 0;
  padding-bottom: 0;
  border-radius: 8px;
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
}
.site-form .wpcf7-form-control-wrap {
  display: block;
  position: relative;
}
.site-form .wpcf7-not-valid {
  border-color: #E84949;
}
.site-form .wpcf7-not-valid-tip {
  position: absolute;
  right: 14px;
  bottom: 8px;
  display: block;
  max-width: calc(100% - 28px);
  padding: 2px 8px;
  font-size: 13px;
  line-height: 1.2;
  text-align: right;
  color: #FFD3D3;
  background: rgba(7, 19, 29, 0.92);
  pointer-events: none;
  border-radius: 6px;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.site-form .wpcf7-not-valid-tip.is-hidden {
  opacity: 0;
}
.site-form .wpcf7-response-output {
  margin: 24px 0 0;
  padding: 14px 18px;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  border-radius: 8px;
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
}
.site-form .wpcf7 form.invalid .wpcf7-response-output,
.site-form .wpcf7 form.unaccepted .wpcf7-response-output,
.site-form .wpcf7 form.payment-required .wpcf7-response-output {
  color: #FFD3D3;
  border-color: rgba(232, 73, 73, 0.85) !important;
  background: rgba(232, 73, 73, 0.12);
}
.site-form .wpcf7 form.sent .wpcf7-response-output {
  color: #D9FFE7;
  border-color: rgba(39, 174, 96, 0.85) !important;
  background: rgba(39, 174, 96, 0.14);
}
.site-form .wpcf7-spinner {
  display: none;
}
.cc-nb-okagree,
.cc-nb-reject,
.cc-cp-foot-save {
  background-color: #f97316 !important;
  color: #ffffff !important;
  border: none !important;
}
.cc-nb-okagree:hover,
.cc-nb-reject:hover,
.cc-cp-foot-save:hover {
  background-color: #d85f10 !important;
}
.cc-pc-head-lang-select,
.cc-pc-head-lang-select:focus,
.cc-pc-head-lang-select:active {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  -moz-box-shadow: none !important;
  -webkit-box-shadow: none !important;
}
.cc-cp-foot {
  padding: 20px;
  display: block;
  *zoom: 1;
}
.cc-cp-foot:before,
.cc-cp-foot:after {
  content: "";
  display: table;
}
.cc-cp-foot:after {
  clear: both;
}
.cc-cp-foot-save:focus {
  box-shadow: none !important;
  -moz-box-shadow: none !important;
  -webkit-box-shadow: none !important;
}
.freeprivacypolicy-com---pc-dialog div.cc-cp-foot-byline {
  display: none !important;
}
/* Pages */
@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero {
  position: relative;
  min-height: 980px;
  padding-top: 250px;
  padding-bottom: 120px;
  overflow: hidden;
  background-color: #04111C;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  border-top: 4px solid #f97316;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero__video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.hero__badge {
  animation: heroFadeUp 0.8s ease both;
  animation-delay: 0.1s;
}
.hero__title {
  animation: heroFadeUp 0.8s ease both;
  animation-delay: 0.3s;
}
.hero__text {
  animation: heroFadeUp 0.8s ease both;
  animation-delay: 0.5s;
}
.hero__form {
  animation: heroFadeUp 0.8s ease both;
  animation-delay: 0.7s;
}
.hero:before,
.hero:after {
  content: "";
  position: absolute;
  left: 0;
  z-index: 1;
  width: 100%;
}
.hero:before {
  top: 0;
  bottom: 0;
  opacity: 0;
  background: linear-gradient(180deg, rgba(4, 11, 17, 0.58) 0%, rgba(4, 11, 17, 0.72) 42%, rgba(4, 11, 17, 0.82) 100%);
  background-position: center top;
}
.hero:after {
  display: none;
}
.hero__inner {
  position: relative;
  z-index: 2;
  min-height: 610px;
}
.hero__content {
  position: relative;
  width: 50.99%;
  padding-top: 118px;
}
.hero__badge {
  position: absolute;
  top: 34px;
  right: -72px;
  width: 90px;
}
.hero__badge-image {
  display: block;
  width: 100%;
  height: auto;
}
.hero__title {
  margin-bottom: 24px;
  font-size: 60px;
  font-weight: 700;
  line-height: 70px;
  color: #ffffff;
}
.hero__text {
  max-width: 729px;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.84);
}
.hero__form {
  position: absolute;
  top: 0;
  right: 0;
  width: 33.16%;
  max-width: 504px;
}
.hero__form .site-form {
  padding-top: 0;
}
.site-form__body {
  width: 100%;
  max-width: 495px;
  padding: 29px 31px 30px;
  background: rgba(2, 7, 11, 0.8);
  border-radius: 20px;
  -moz-border-radius: 20px;
  -webkit-border-radius: 20px;
}
.hero--inner {
  min-height: 860px;
  padding-top: 216px;
  padding-bottom: 88px;
}
.hero--inner .hero__inner {
  min-height: 556px;
}
.hero--inner .hero__content {
  padding-top: 92px;
}
.hero--contact .hero__content--contact {
  width: 42%;
  padding-top: 132px;
}
.hero-contact {
  margin-top: 30px;
}
.hero-contact__phone {
  margin-top: 10px;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
  color: #ffffff;
}
.hero-contact__phone:first-child {
  margin-top: 0;
}
.hero-contact__phone a {
  color: #ffffff;
  text-decoration: none;
}
.hero-contact__phone a:hover {
  color: #f97316;
}
.hero-contact__mail {
  margin-top: 18px;
  font-size: 17px;
  line-height: 1.35;
}
.hero-contact__mail a {
  color: #f97316;
  text-decoration: underline;
}
.hero-contact__mail a:hover {
  color: #ff8a1f;
}
.hero-contact__meta {
  margin-top: 24px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
  color: #ffffff;
}
.hero--404 {
  min-height: 640px;
  padding-top: 176px;
  padding-bottom: 88px;
}
.hero__inner--404 {
  min-height: 0;
}
.hero__content--404 {
  width: 100%;
  padding-top: 0;
}
.hero__content--404 .hero__badge {
  top: -24px;
  right: auto;
  left: 50%;
  transform: translateX(-50%);
}
.hero-404__card {
  max-width: 880px;
  margin: 0 auto;
  padding: 72px 80px;
  text-align: center;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 32px 80px rgba(8, 16, 24, 0.16);
  border-radius: 28px;
  -moz-border-radius: 28px;
  -webkit-border-radius: 28px;
}
.hero-404__title {
  margin-bottom: 22px;
  font-size: 64px;
  font-weight: 700;
  line-height: 0.98;
  color: #081018;
}
.hero-404__text {
  max-width: 620px;
  margin: 0 auto 30px;
  font-size: 21px;
  line-height: 1.55;
  color: #3F4651;
}
.hero-404__card .button {
  align-self: center;
}
@media all and (min-width: 768px) and (max-width: 989px) {
  .hero {
    min-height: 0;
    padding-top: 150px;
    padding-bottom: 80px;
  }
  .hero__content {
    width: 100%;
    padding-top: 74px;
    text-align: center;
  }
  .hero__badge {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    width: 82px;
    margin: 0 auto 20px;
  }
  .hero__title {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    font-size: 52px;
    line-height: 1.12;
  }
  .hero__text {
    margin-left: auto;
    margin-right: auto;
  }
  .hero__form {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    max-width: none;
    margin-top: 56px;
  }
  .hero__form .site-form {
    width: 100%;
    max-width: none;
  }
  .site-form__title,
  .site-form__intro {
    text-align: center;
    max-width: none;
  }
  .site-form__body {
    display: block;
    width: 100%;
    max-width: none;
    margin: 0 auto;
  }
  .hero--inner {
    min-height: 0;
    padding-top: 136px;
    padding-bottom: 72px;
  }
  .hero--inner .hero__content {
    padding-top: 52px;
  }
  .hero--contact .hero__content--contact {
    width: 100%;
    padding-top: 52px;
  }
  .hero-contact {
    max-width: none;
    text-align: center;
  }
  .hero-contact__meta {
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
  }
  .hero--404 {
    min-height: 0;
    padding-top: 150px;
    padding-bottom: 72px;
  }
  .hero__content--404 .hero__badge {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    transform: none;
    margin: 0 auto 20px;
  }
  .hero-404__card {
    padding: 54px 36px;
  }
  .hero-404__title {
    font-size: 50px;
  }
  .hero-404__text {
    font-size: 18px;
  }
}
@media all and (max-width: 767px) {
  .hero {
    min-height: 0;
    padding-top: 118px;
    padding-bottom: 60px;
  }
  .hero:before {
    background-size: 70px 70px, 70px 70px;
  }
  .hero__content {
    width: 100%;
    padding-top: 72px;
    text-align: center;
  }
  .hero__badge {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    width: 68px;
    margin: 0 auto 16px;
  }
  .hero__title {
    font-size: 44px;
    line-height: 1.12;
  }
  .hero__text {
    font-size: 15px;
  }
  .hero__form {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    max-width: none;
    margin-top: 44px;
  }
  .hero__form .site-form {
    width: 100%;
    max-width: none;
  }
  .site-form__title,
  .site-form__intro {
    text-align: center;
    max-width: none;
  }
  .site-form__body {
    display: block;
    width: 100%;
    max-width: none;
    padding: 22px 18px 22px;
  }
  .site-form__title {
    font-size: 26px;
  }
  .hero--inner {
    min-height: 0;
    padding-top: 108px;
    padding-bottom: 48px;
  }
  .hero--inner .hero__content {
    padding-top: 48px;
  }
  .hero--contact .hero__content--contact {
    width: 100%;
    padding-top: 48px;
  }
  .hero-contact {
    text-align: center;
  }
  .hero-contact__phone,
  .hero-contact__mail {
    font-size: 16px;
  }
  .hero-contact__meta {
    font-size: 13px;
  }
  .hero--404 {
    min-height: 0;
    padding-top: 128px;
    padding-bottom: 52px;
  }
  .hero__content--404 {
    padding-top: 0;
  }
  .hero__content--404 .hero__badge {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    transform: none;
    width: 68px;
    margin: 0 auto 16px;
  }
  .hero-404__card {
    padding: 40px 20px;
    border-radius: 20px;
    -moz-border-radius: 20px;
    -webkit-border-radius: 20px;
  }
  .hero-404__title {
    margin-bottom: 18px;
    font-size: 38px;
    line-height: 1.04;
  }
  .hero-404__text {
    margin-bottom: 24px;
    font-size: 16px;
    line-height: 1.6;
  }
}
.benefits-strip {
  position: relative;
  overflow: hidden;
  background: #f97316 url('../images/cta-bg.jpg') center center / cover no-repeat;
}
.benefits-strip:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 4;
  height: 4px;
  background: linear-gradient(90deg, #ff7000 0%, #000000 100%);
}
.benefits-strip__grid {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.benefits-strip__item {
  position: relative;
  width: 33.3333%;
  min-height: 220px;
  padding: 32px 30px 20px;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(0, 0, 0, 0.05) 100%), linear-gradient(115deg, rgba(255, 255, 255, 0.08) 0%, transparent 18%, transparent 82%, rgba(255, 255, 255, 0.05) 100%);
}
.benefits-strip--count-1 .benefits-strip__item {
  width: 100%;
}
.benefits-strip--count-2 .benefits-strip__item {
  width: 50%;
}
.benefits-strip--count-3 .benefits-strip__item {
  width: 33.3333%;
}
.benefits-strip--count-4 .benefits-strip__item {
  width: 25%;
}
.benefits-strip__item--voice {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.12) 100%), linear-gradient(115deg, rgba(255, 255, 255, 0.06) 0%, transparent 18%, transparent 82%, rgba(255, 255, 255, 0.035) 100%);
}
.benefits-strip__item--stats {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.06) 0%, rgba(0, 0, 0, 0.18) 100%), linear-gradient(115deg, rgba(255, 255, 255, 0.05) 0%, transparent 18%, transparent 82%, rgba(255, 255, 255, 0.025) 100%);
}
.benefits-strip__icon {
  position: relative;
  z-index: 2;
  height: 112px;
  margin-bottom: 20px;
}
.benefits-strip__icon-image {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 112px;
  margin: 0 auto;
  height: auto;
}
.benefits-strip__icon--deploy .benefits-strip__icon-image {
  width: 132px;
}
.benefits-strip__icon--voice .benefits-strip__icon-image {
  width: 150px;
}
.benefits-strip__icon--stats .benefits-strip__icon-image {
  width: 146px;
}
.benefits-strip__title {
  position: relative;
  z-index: 2;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.08;
  color: #ffffff;
}
@media all and (min-width: 768px) and (max-width: 989px) {
  .benefits-strip__item {
    min-height: 198px;
    padding: 28px 14px 20px;
  }
  .benefits-strip--count-4 .benefits-strip__item {
    width: 50%;
  }
  .benefits-strip__icon {
    height: 96px;
  }
  .benefits-strip__icon--deploy .benefits-strip__icon-image {
    width: 116px;
  }
  .benefits-strip__icon--voice .benefits-strip__icon-image {
    width: 128px;
  }
  .benefits-strip__icon--stats .benefits-strip__icon-image {
    width: 126px;
  }
  .benefits-strip__title {
    font-size: 16px;
  }
  .benefits-strip--count-4 .benefits-strip__item {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media all and (max-width: 767px) {
  .benefits-strip__item {
    width: 100%;
    min-height: 182px;
    padding: 26px 18px 20px;
  }
  .benefits-strip--count-1 .benefits-strip__item,
  .benefits-strip--count-2 .benefits-strip__item,
  .benefits-strip--count-3 .benefits-strip__item,
  .benefits-strip--count-4 .benefits-strip__item {
    width: 100%;
  }
  .benefits-strip__icon {
    height: 92px;
  }
  .benefits-strip__icon--deploy .benefits-strip__icon-image {
    width: 108px;
  }
  .benefits-strip__icon--voice .benefits-strip__icon-image {
    width: 118px;
  }
  .benefits-strip__icon--stats .benefits-strip__icon-image {
    width: 118px;
  }
  .benefits-strip__title {
    font-size: 22px;
  }
}
.feature-intro {
  padding: 84px 0 86px;
  background: linear-gradient(90deg, #cbcbcb 0%, #fafafa 100%);
}
.feature-intro__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.feature-intro__media {
  width: 50.53%;
}
.feature-intro__media-frame {
  position: relative;
  min-height: 432px;
  overflow: hidden;
  background-color: #0B1720;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
  border-radius: 20px;
  -moz-border-radius: 20px;
  -webkit-border-radius: 20px;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -ms-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.feature-intro__media-frame--clickable {
  cursor: pointer;
}
.feature-intro__media-frame--static {
  cursor: default;
}
.feature-intro__media-frame:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(180deg, rgba(4, 11, 17, 0.08) 0%, rgba(4, 11, 17, 0.18) 100%);
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -ms-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.feature-intro__media-frame:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0);
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -ms-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.feature-intro__play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 60px;
  height: 60px;
  margin-top: -30px;
  margin-left: -30px;
  background: rgba(255, 255, 255, 0.95);
  cursor: pointer;
  border-radius: 999px;
  -moz-border-radius: 999px;
  -webkit-border-radius: 999px;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -ms-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.feature-intro__play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-46%, -50%);
  font-size: 22px;
  color: #121212;
  cursor: pointer;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -ms-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.feature-intro__media-frame:hover {
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16);
  -webkit-box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16);
}
.feature-intro__media-frame:hover:before {
  background: linear-gradient(180deg, rgba(4, 11, 17, 0.12) 0%, rgba(4, 11, 17, 0.28) 100%);
}
.feature-intro__media-frame:hover:after {
  background: rgba(249, 115, 22, 0.12);
}
.feature-intro__media-frame:hover .feature-intro__play,
.feature-intro__play:focus-visible {
  background: #f97316;
  -webkit-transform: translateY(-2px) scale(1.06);
  -ms-transform: translateY(-2px) scale(1.06);
  transform: translateY(-2px) scale(1.06);
}
.feature-intro__media-frame:hover .feature-intro__play-icon,
.feature-intro__play:focus-visible .feature-intro__play-icon {
  color: #ffffff;
}
.feature-intro__play:focus-visible {
  outline: 0;
}
.feature-intro__content {
  width: 44.21%;
  padding-top: 24px;
}
.feature-intro__title {
  margin-bottom: 34px;
  font-size: 50px;
  font-weight: 700;
  line-height: 1;
  color: #070C12;
}
.feature-intro__title span {
  color: #f97316;
}
.feature-intro__text {
  color: #23282F;
}
.feature-intro__text p {
  margin-top: 12px;
  font-size: 16px;
  line-height: 1.62;
}
.feature-intro__text p:first-child {
  margin-top: 0;
}
.video-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 3000;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.video-modal.is-active {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.video-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  cursor: pointer;
}
.video-modal__inner {
  position: relative;
  width: 90vw;
  max-width: 960px;
  z-index: 1;
}
.video-modal__close {
  position: absolute;
  top: -40px;
  right: 0;
  padding: 0 4px;
  font-size: 32px;
  line-height: 1;
  color: #FFFFFF;
  background: none;
  border: 0;
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.video-modal__close:hover {
  opacity: 0.7;
}
.video-modal__iframe-wrap {
  position: relative;
  height: 0;
  overflow: hidden;
  padding-bottom: 56.25%;
  border-radius: 20px;
  -moz-border-radius: 20px;
  -webkit-border-radius: 20px;
}
.video-modal__iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media all and (min-width: 768px) and (max-width: 989px) {
  .feature-intro {
    padding: 64px 0 70px;
  }
  .feature-intro__media,
  .feature-intro__content {
    width: 100%;
  }
  .feature-intro__content {
    padding-top: 34px;
    text-align: center;
  }
  .feature-intro__media-frame {
    min-height: 0;
    padding-top: 75%;
  }
  .feature-intro__title {
    font-size: 44px;
  }
  .video-modal__inner {
    width: 92vw;
  }
}
@media all and (max-width: 767px) {
  .feature-intro {
    padding: 46px 0 56px;
  }
  .feature-intro__media,
  .feature-intro__content {
    width: 100%;
  }
  .feature-intro__content {
    padding-top: 24px;
    text-align: center;
  }
  .feature-intro__media-frame {
    min-height: 0;
    padding-top: 75%;
    border-radius: 20px;
    -moz-border-radius: 20px;
    -webkit-border-radius: 20px;
  }
  .feature-intro__title {
    margin-bottom: 22px;
    font-size: 38px;
  }
  .feature-intro__text p {
    font-size: 15px;
    line-height: 1.58;
  }
  .video-modal__inner {
    width: 94vw;
  }
  .video-modal__close {
    top: -34px;
    font-size: 28px;
  }
}
.feature-details {
  overflow: hidden;
  background: #ffffff;
}
.feature-details__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
.feature-details__content {
  position: relative;
  width: 50%;
  box-sizing: border-box;
  padding: 84px 60px 86px max(20px, calc((100vw - 1520px) / 2 + 20px));
}
.feature-details__content h2 {
  margin-bottom: 22px;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.18;
  color: #070C12;
}
.feature-details__content h2 span {
  color: #f97316;
}
.feature-details__content ul {
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}
.feature-details__content ul li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 8px;
  font-size: 16px;
  line-height: 1.6;
  color: #23282F;
}
.feature-details__content ul li:before {
  content: "\00B7";
  position: absolute;
  left: 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  color: #23282F;
}
.feature-details__content p {
  margin-bottom: 36px;
  font-size: 15px;
  line-height: 1.6;
  color: #4f5b66;
}
.feature-details__bot {
  position: absolute;
  bottom: 0;
  right: 60px;
  width: 140px;
}
.feature-details__bot-image {
  display: block;
  width: 100%;
  height: auto;
}
.feature-details__media {
  width: 50%;
  min-height: 540px;
  background-color: #0B1720;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media all and (min-width: 768px) and (max-width: 989px) {
  .feature-details__inner {
    -webkit-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .feature-details__content {
    width: 100%;
    padding: 64px 10px 70px;
    text-align: center;
  }
  .feature-details__content ul li {
    padding-left: 0;
  }
  .feature-details__content ul li:before {
    position: static;
    margin-right: 4px;
  }
  .feature-details__media {
    width: 100%;
    min-height: 0;
    padding-top: 75%;
  }
  .feature-details__content h2 {
    font-size: 28px;
  }
  .feature-details__bot {
    position: relative;
    bottom: auto;
    right: auto;
    margin: 24px auto 0;
  }
}
@media all and (max-width: 767px) {
  .feature-details__inner {
    -webkit-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .feature-details__content {
    width: 100%;
    padding: 46px 10px 56px;
    text-align: center;
  }
  .feature-details__content ul li {
    padding-left: 0;
  }
  .feature-details__content ul li:before {
    position: static;
    margin-right: 4px;
  }
  .feature-details__media {
    width: 100%;
    min-height: 0;
    padding-top: 75%;
  }
  .feature-details__content h2 {
    font-size: 26px;
    margin-bottom: 18px;
  }
  .feature-details__content ul {
    margin-bottom: 22px;
  }
  .feature-details__content p {
    margin-bottom: 28px;
  }
  .feature-details__bot {
    position: relative;
    bottom: auto;
    right: auto;
    width: 110px;
    margin: 20px auto 0;
  }
}
.cta-band {
  position: relative;
  z-index: 3;
  padding: 52px 0 56px;
  background: #f97316 url('../images/cta-bg.jpg') center center / cover no-repeat;
  text-align: center;
}
.cta-band__inner {
  position: relative;
  z-index: 2;
}
.cta-band__inner p {
  max-width: 860px;
  margin: 0 auto 28px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  color: #ffffff;
}
.cta-band__inner a.button {
  display: inline-block;
  padding: 10px 36px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #ffffff;
  text-decoration: none;
  background: #111111;
  border-radius: 6px;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -ms-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.cta-band__bot {
  position: absolute;
  right: 54px;
  bottom: -102px;
  width: 96px;
  z-index: 3;
}
.cta-band__bot-image {
  display: block;
  width: 100%;
  height: auto;
}
.cta-band__inner a.button:hover {
  background: #000000;
  color: #ffffff;
  text-decoration: none;
}
@media all and (min-width: 768px) and (max-width: 989px) {
  .cta-band__bot {
    display: none;
  }
}
@media all and (max-width: 767px) {
  .cta-band {
    padding: 40px 0 44px;
  }
  .cta-band__inner p {
    font-size: 16px;
    margin-bottom: 22px;
  }
  .cta-band__inner a.button {
    padding: 14px 34px;
    font-size: 14px;
  }
  .cta-band__bot {
    display: none;
  }
}
.contact-split {
  overflow: hidden;
  background: #F0F0F0;
}
.contact-split__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
.contact-split__media {
  width: 50%;
  min-height: 440px;
  background-color: #0B1720;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.contact-split__content {
  position: relative;
  width: 50%;
  box-sizing: border-box;
  padding: 84px max(20px, calc((100vw - 1520px) / 2 + 20px)) 86px 60px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.contact-split__content p {
  margin-bottom: 34px;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
  color: #070C12;
}
.contact-split__content p span {
  color: #f97316;
}
.contact-split__btn {
  display: inline-block;
  align-self: flex-start;
  padding: 14px 36px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #ffffff;
  text-decoration: none;
  background: #f97316;
  border-radius: 6px;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -ms-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.contact-split__btn:hover {
  background: #d85f10;
  color: #ffffff;
  text-decoration: none;
}
.faq-accordion {
  padding: 76px 0 66px;
  background: #ffffff;
}
.faq-accordion__list {
  max-width: 1380px;
}
.faq-accordion__item {
  border-top: 1px solid transparent;
}
.faq-accordion__item.is-open {
  border-top-color: #f97316;
}
.faq-accordion__heading {
  margin: 0;
}
.faq-accordion__trigger {
  display: block;
  width: 100%;
  padding: 25px 0 23px;
  font-size: 31px;
  font-weight: 700;
  line-height: 1.18;
  text-align: left;
  color: #09111A;
  background: none;
  border: 0;
  cursor: pointer;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.faq-accordion__trigger:hover,
.faq-accordion__trigger:focus-visible,
.faq-accordion__item.is-open .faq-accordion__trigger {
  color: #f97316;
}
.faq-accordion__trigger:focus-visible {
  outline: 0;
}
.faq-accordion__panel {
  display: none;
  padding: 0 0 18px;
  border-bottom: 1px solid #f97316;
}
.faq-accordion__answer {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  color: #4f5b66;
}
.about-split {
  overflow: hidden;
  background: #ffffff;
}
.about-split__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
.about-split__content {
  width: 50%;
  box-sizing: border-box;
  padding-top: 94px;
  padding-bottom: 96px;
}
.about-split--story .about-split__content {
  padding-left: max(20px, calc((100vw - 1520px) / 2 + 24px));
  padding-right: 8.95%;
}
.about-split--philosophy .about-split__content {
  padding-left: 4.61%;
  padding-right: max(20px, calc((100vw - 1520px) / 2 + 24px));
  background: #F0F0F0;
}
.about-split__media {
  width: 50%;
  min-height: 650px;
  background-color: #0B1720;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.about-split__title {
  margin-bottom: 30px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.18;
  color: #0A1017;
}
.about-split__text h3 {
  margin-bottom: 30px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.18;
  color: #0A1017;
}
.about-split__text h3:not(:first-child) {
  margin-top: 32px;
}
.about-split__section-title {
  margin-bottom: 38px;
  font-size: 59px;
  font-weight: 700;
  line-height: 0.98;
  color: #000000;
}
.about-split__text h2 {
  margin-bottom: 38px;
  font-size: 59px;
  font-weight: 700;
  line-height: 0.98;
  color: #000000;
}
.about-split__text {
  max-width: 652px;
}
.about-split__text--wide {
  max-width: 640px;
}
.about-split__text p {
  margin-top: 24px;
  font-size: 16px;
  line-height: 1.55;
  color: #23282F;
}
.about-split__text p:first-child {
  margin-top: 0;
}
.about-split__highlight {
  max-width: 690px;
  margin-top: 32px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.14;
  color: #0A1017;
}
.about-split__statement {
  max-width: 720px;
  margin-top: 54px;
  font-size: 31px;
  font-weight: 700;
  line-height: 1.05;
  color: #000000;
}
.about-split__statement span {
  color: #f97316;
}
.page-content {
  padding: 120px 0 128px;
  background: linear-gradient(180deg, #f6f6f6 0%, #ffffff 100%);
}
.page-content__inner {
  max-width: 1110px;
  margin: 0 auto;
  padding: 72px 80px;
  background: #FFFFFF;
  border-radius: 20px;
  box-shadow: 0 32px 80px rgba(8, 16, 24, 0.08);
}
.page-content__main {
  color: #081018;
}
.page-content__main h1,
.page-content__main h2,
.page-content__main h3,
.page-content__main h4,
.page-content__main h5,
.page-content__main h6 {
  margin: 0 0 24px;
  font-weight: 600;
  line-height: 1.15;
  color: #081018;
}
.page-content__main h1,
.page-content__main h2 {
  font-size: 50px;
}
.page-content__main h3 {
  font-size: 32px;
}
.page-content__main p,
.page-content__main ul,
.page-content__main ol,
.page-content__main blockquote {
  margin: 0 0 24px;
  font-size: 18px;
  line-height: 1.8;
  color: #3F4651;
}
.page-content__main ul {
  margin: 0 0 24px;
  padding-left: 0;
  list-style: none;
}
.page-content__main ul li {
  position: relative;
  padding-left: 32px;
}
.page-content__main ul li:before {
  content: "";
  position: absolute;
  top: 13px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff7000 0%, #ff9f5a 100%);
  box-shadow: 0 0 0 4px rgba(255, 112, 0, 0.14);
  transform: translateY(-50%);
}
.page-content__main ol {
  margin: 0 0 24px;
  padding-left: 24px;
}
.page-content__main li + li {
  margin-top: 14px;
}
.page-content__main a {
  color: #f97316;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}
.page-content__main strong {
  color: #081018;
}
.assistant-capabilities {
  padding: 74px 0 84px;
  background: #F6F6F6;
}
.assistant-capabilities__grid {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px;
}
.assistant-capabilities__card {
  width: calc(33.3333% - 13.34px);
  min-height: 286px;
  padding: 34px 34px 30px;
  text-align: center;
  background: #FFFFFF;
  box-shadow: 0 18px 50px rgba(8, 16, 24, 0.08);
  border-radius: 24px;
  -moz-border-radius: 24px;
  -webkit-border-radius: 24px;
}
.assistant-capabilities__card--accent {
  background: #FFF8F2;
}
.assistant-capabilities__icon {
  margin-bottom: 26px;
}
.assistant-capabilities__icon-image {
  display: block;
  width: auto;
  max-width: 100%;
  height: 72px;
  margin: 0 auto;
}
.assistant-capabilities__title {
  margin-bottom: 14px;
  font-size: 31px;
  font-weight: 700;
  line-height: 1.08;
  color: #081018;
}
.assistant-capabilities__text {
  max-width: 360px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.58;
  color: #23282F;
}
.assistant-process {
  padding: 76px 0 70px;
  background-color: #FBF1EA;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.assistant-process__grid {
  position: relative;
  --assistant-process-line-offset: 82px;
  --assistant-process-column-gap: 20px;
  --assistant-process-line-bridge: 102px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: var(--assistant-process-column-gap);
  row-gap: 34px;
  align-items: stretch;
}
.assistant-process__item {
  position: relative;
  display: flex;
  flex-direction: column;
  z-index: 1;
}
.assistant-process__head {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 12px;
}
.assistant-process__number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 66px;
  min-width: 66px;
  height: 66px;
  font-size: 38px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  color: #ffffff;
  background: #f97316;
  border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
}
.assistant-process__title {
  max-width: 252px;
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.06;
  color: #081018;
}
.assistant-process__text {
  max-width: 310px;
  margin: 0 0 14px var(--assistant-process-line-offset);
  font-size: 14px;
  line-height: 1.7;
  color: #23282F;
}
.assistant-process__line {
  position: relative;
  margin-top: auto;
  margin-left: var(--assistant-process-line-offset);
  width: calc(100% - var(--assistant-process-line-offset));
  height: 14px;
}
.assistant-process__line:before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  width: 100%;
  border-top: 4px solid #f97316;
  border-radius: 999px;
  -moz-border-radius: 999px;
  -webkit-border-radius: 999px;
}
.assistant-process__line:after {
  content: "";
  position: absolute;
  top: 4px;
  right: calc(-1 * var(--assistant-process-line-bridge));
  width: var(--assistant-process-line-bridge);
  border-top: 4px dotted #f97316;
}
.assistant-process__item:nth-child(4) .assistant-process__line:after,
.assistant-process__item--final .assistant-process__line:after {
  display: none;
}
.assistant-process__bot {
  position: absolute;
  right: 98px;
  bottom: 16px;
  width: 230px;
  z-index: 0;
}
.assistant-process__bot-image {
  display: block;
  width: 100%;
  height: auto;
}
.assistant-business {
  padding: 74px 0 92px;
  background: #F6F6F6;
}
.assistant-business__headline {
  margin: 0 0 46px;
  font-size: 50px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  color: #081018;
}
.assistant-business__headline span {
  color: #f97316;
}
.assistant-business__grid {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 18px;
}
.assistant-business__card {
  width: calc(33.3333% - 12px);
  min-height: 288px;
  padding: 28px 34px 30px;
  text-align: center;
  background: #FFFFFF;
  box-shadow: 0 18px 50px rgba(8, 16, 24, 0.08);
  border-radius: 24px;
  -moz-border-radius: 24px;
  -webkit-border-radius: 24px;
}
.assistant-business__card--accent {
  background: #FFF8F2;
}
.assistant-business__icon {
  margin-bottom: 18px;
  font-size: 74px;
  line-height: 1;
  color: #f97316;
}
.assistant-business__icon-image {
  display: block;
  width: auto;
  max-width: 100%;
  height: 74px;
  margin: 0 auto;
}
.assistant-business__title {
  max-width: 380px;
  margin: 0 auto 12px;
  font-size: 31px;
  font-weight: 700;
  line-height: 1.02;
  color: #081018;
}
.assistant-business__text {
  max-width: 380px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.6;
  color: #23282F;
}
.assistant-cms {
  overflow: hidden;
  background: #FFFFFF;
}
.assistant-cms__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
.assistant-cms__media {
  width: 52.1%;
  min-height: 664px;
  background-color: #0B1720;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.assistant-cms__content {
  width: 47.9%;
  box-sizing: border-box;
  padding: 88px max(20px, calc((100vw - 1520px) / 2 + 24px)) 86px 74px;
}
.assistant-cms__eyebrow {
  margin-bottom: 18px;
  font-size: 31px;
  font-weight: 700;
  line-height: 1.05;
  color: #081018;
}
.assistant-cms__title {
  max-width: 690px;
  margin-bottom: 34px;
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  color: #f97316;
}
.assistant-cms__wysiwyg {
  color: #23282F;
}
.assistant-cms__wysiwyg > *:first-child {
  margin-top: 0;
}
.assistant-cms__wysiwyg > *:last-child {
  margin-bottom: 0;
}
.assistant-cms__wysiwyg ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.assistant-cms__wysiwyg li {
  margin-top: 28px;
  font-size: 16px;
  line-height: 1.55;
  color: #23282F;
}
.assistant-cms__wysiwyg li:first-child {
  margin-top: 0;
}
.assistant-cms__wysiwyg strong {
  font-weight: 700;
  color: #081018;
}
.assistant-compare {
  padding: 78px 0 110px;
  background-color: #FBF1EA;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.assistant-compare__heading {
  max-width: 980px;
  margin: 0 auto 54px;
  text-align: center;
}
.assistant-compare__eyebrow {
  margin-bottom: 12px;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.08;
  color: #081018;
}
.assistant-compare__title {
  max-width: 760px;
  margin: 0 auto;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.08;
  color: #f97316;
}
.assistant-compare__grid {
  max-width: 950px;
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 28px;
}
.assistant-compare__card {
  width: calc(50% - 14px);
  min-height: 366px;
  padding: 42px 42px 36px;
  border-radius: 24px;
  -moz-border-radius: 24px;
  -webkit-border-radius: 24px;
}
.assistant-compare__card--default {
  background: #E4E4E4;
}
.assistant-compare__card--accent {
  background: #f97316;
}
.assistant-compare__card-head {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 18px;
}
.assistant-compare__card-title {
  margin-bottom: 26px;
  font-size: 31px;
  font-weight: 700;
  line-height: 1.06;
  color: #081018;
}
.assistant-compare__card--accent .assistant-compare__card-title {
  color: #ffffff;
}
.assistant-compare__icon {
  width: 82px;
  min-width: 82px;
}
.assistant-compare__icon img {
  display: block;
  width: 100%;
  height: auto;
}
.assistant-compare__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.assistant-compare__list li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 14px;
  margin-top: 18px;
  font-size: 16px;
  line-height: 1.45;
}
.assistant-compare__list li:first-child {
  margin-top: 0;
}
.assistant-compare__list i {
  margin-top: 2px;
  font-size: 30px;
  line-height: 1;
}
.assistant-compare__list--default li,
.assistant-compare__list--default i {
  color: #081018;
}
.assistant-compare__list--accent li,
.assistant-compare__list--accent i {
  color: #ffffff;
}
@media all and (max-width: 1440px) {
  .assistant-process__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 20px;
    row-gap: 26px;
  }
  .assistant-process__item,
  .assistant-process__item:nth-child(5),
  .assistant-process__item:nth-child(6),
  .assistant-process__item:nth-child(7) {
    min-height: 0;
  }
  .assistant-process__title {
    max-width: 260px;
    font-size: 26px;
  }
  .assistant-process__text {
    max-width: none;
    margin-left: 82px;
  }
  .assistant-process__item:nth-child(2) .assistant-process__line:after,
  .assistant-process__item:nth-child(4) .assistant-process__line:after,
  .assistant-process__item:nth-child(6) .assistant-process__line:after,
  .assistant-process__item--final .assistant-process__line:after {
    display: none;
  }
  .assistant-process__bot {
    position: relative;
    right: auto;
    bottom: auto;
    width: 180px;
    margin: 0 auto;
  }
  .assistant-cms__eyebrow {
    font-size: 25px;
  }
  .assistant-cms__title {
    max-width: 620px;
    margin-bottom: 30px;
    font-size: 28px;
    line-height: 1;
  }
  .assistant-compare__title {
    max-width: 700px;
    font-size: 31px;
  }
}
@media all and (min-width: 768px) and (max-width: 989px) {
  .assistant-capabilities {
    padding: 58px 0 68px;
  }
  .assistant-capabilities__grid {
    gap: 18px;
  }
  .assistant-capabilities__card {
    width: calc(50% - 9px);
    min-height: 0;
    padding: 30px 24px 28px;
  }
  .assistant-capabilities__card:last-child {
    width: 100%;
  }
  .assistant-capabilities__title {
    font-size: 28px;
  }
  .assistant-process {
    padding: 60px 0 56px;
  }
  .assistant-business {
    padding: 60px 0 72px;
  }
  .assistant-business__headline {
    margin-bottom: 38px;
    font-size: 44px;
  }
  .assistant-business__card {
    width: calc(50% - 9px);
    min-height: 0;
    padding: 26px 22px 28px;
  }
  .assistant-business__card:last-child {
    width: 100%;
  }
  .assistant-business__title {
    font-size: 28px;
  }
  .assistant-cms__inner {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .assistant-cms__media,
  .assistant-cms__content {
    width: 100%;
  }
  .assistant-cms__media {
    min-height: 0;
    padding-top: 75%;
  }
  .assistant-cms__content {
    padding: 62px 10px 68px;
    text-align: center;
  }
  .assistant-cms__eyebrow {
    margin-bottom: 16px;
    font-size: 25px;
  }
  .assistant-cms__title {
    max-width: none;
    margin-bottom: 32px;
    font-size: 26px;
    line-height: 1;
  }
  .assistant-cms__wysiwyg li {
    margin-top: 20px;
  }
  .assistant-compare {
    padding: 62px 0 76px;
  }
  .assistant-compare__heading {
    margin-bottom: 40px;
  }
  .assistant-compare__eyebrow {
    font-size: 31px;
  }
  .assistant-compare__title {
    max-width: 620px;
    font-size: 28px;
  }
  .assistant-compare__grid {
    max-width: none;
    gap: 20px;
  }
  .assistant-compare__card {
    width: calc(50% - 10px);
    min-height: 0;
    padding: 32px 24px 30px;
  }
  .assistant-compare__card-title {
    margin-bottom: 22px;
    font-size: 28px;
  }
  .assistant-compare__icon {
    width: 68px;
    min-width: 68px;
  }
  .assistant-compare__list li {
    gap: 12px;
    margin-top: 16px;
  }
  .assistant-compare__list i {
    font-size: 26px;
  }
  .page-content {
    padding: 80px 0 88px;
  }
  .page-content__inner {
    padding: 48px 32px;
  }
  .contact-split__media {
    width: 100%;
    min-height: 0;
    padding-top: 75%;
  }
  .contact-split__content {
    width: 100%;
    padding: 64px 10px 70px;
    text-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .contact-split__content p {
    font-size: 26px;
  }
  .contact-split__btn {
    align-self: center;
  }
  .faq-accordion {
    padding: 58px 0 52px;
  }
  .faq-accordion__trigger {
    padding: 22px 0 20px;
    font-size: 26px;
  }
  .about-split__inner {
    -webkit-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .about-split--philosophy .about-split__inner {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .about-split__content,
  .about-split__media {
    width: 100%;
  }
  .about-split__content,
  .about-split--story .about-split__content,
  .about-split--philosophy .about-split__content {
    padding: 64px 10px 70px;
    text-align: center;
  }
  .about-split__media {
    min-height: 0;
    padding-top: 75%;
  }
  .about-split__title {
    margin-bottom: 24px;
    font-size: 25px;
  }
  .about-split__text h3 {
    margin-bottom: 24px;
    font-size: 25px;
  }
  .about-split__text h3:not(:first-child) {
    margin-top: 28px;
  }
  .about-split__section-title {
    margin-bottom: 28px;
    font-size: 50px;
  }
  .about-split__text h2 {
    margin-bottom: 28px;
    font-size: 50px;
  }
  .about-split__text,
  .about-split__text--wide,
  .about-split__highlight,
  .about-split__statement {
    max-width: none;
  }
  .about-split__highlight {
    margin-top: 28px;
    font-size: 24px;
  }
  .about-split__statement {
    margin-top: 40px;
    font-size: 25px;
    line-height: 1.12;
  }
}
@media all and (max-width: 767px) {
  .assistant-capabilities {
    padding: 44px 0 54px;
  }
  .assistant-capabilities__grid {
    gap: 16px;
  }
  .assistant-capabilities__card,
  .assistant-capabilities__card:last-child {
    width: 100%;
    min-height: 0;
    padding: 28px 18px 26px;
  }
  .assistant-capabilities__icon {
    margin-bottom: 20px;
  }
  .assistant-capabilities__icon-image {
    height: 56px;
  }
  .assistant-capabilities__title {
    margin-bottom: 12px;
    font-size: 24px;
  }
  .assistant-capabilities__text {
    font-size: 15px;
    line-height: 1.52;
  }
  .assistant-process {
    padding: 44px 0 46px;
  }
  .assistant-business {
    padding: 46px 0 56px;
  }
  .assistant-business__headline {
    margin-bottom: 28px;
    font-size: 38px;
    line-height: 1;
  }
  .assistant-business__card,
  .assistant-business__card:last-child {
    width: 100%;
    min-height: 0;
    padding: 24px 18px 26px;
  }
  .assistant-business__icon {
    margin-bottom: 16px;
    font-size: 58px;
  }
  .assistant-business__icon-image {
    height: 58px;
  }
  .assistant-business__title {
    font-size: 24px;
  }
  .assistant-business__text {
    font-size: 15px;
    line-height: 1.55;
  }
  .assistant-cms__inner {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .assistant-cms__media,
  .assistant-cms__content {
    width: 100%;
  }
  .assistant-cms__media {
    min-height: 0;
    padding-top: 75%;
  }
  .assistant-cms__content {
    padding: 46px 10px 54px;
    text-align: center;
  }
  .assistant-cms__eyebrow {
    margin-bottom: 14px;
    font-size: 23px;
  }
  .assistant-cms__title {
    max-width: none;
    margin-bottom: 26px;
    font-size: 24px;
    line-height: 1;
  }
  .assistant-cms__wysiwyg li {
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.5;
  }
  .assistant-compare {
    padding: 46px 0 58px;
  }
  .assistant-compare__heading {
    margin-bottom: 28px;
  }
  .assistant-compare__eyebrow {
    margin-bottom: 10px;
    font-size: 24px;
  }
  .assistant-compare__title {
    max-width: none;
    font-size: 24px;
    line-height: 1.12;
  }
  .assistant-compare__grid {
    gap: 16px;
  }
  .assistant-compare__card {
    width: 100%;
    min-height: 0;
    padding: 26px 18px 24px;
  }
  .assistant-compare__card-head {
    gap: 14px;
  }
  .assistant-compare__card-title {
    margin-bottom: 18px;
    font-size: 24px;
  }
  .assistant-compare__icon {
    width: 56px;
    min-width: 56px;
  }
  .assistant-compare__list li {
    gap: 10px;
    margin-top: 14px;
    font-size: 15px;
  }
  .assistant-compare__list i {
    font-size: 22px;
  }
  .assistant-process__grid {
    grid-template-columns: 1fr;
    row-gap: 22px;
  }
  .assistant-process__item,
  .assistant-process__item:nth-child(5),
  .assistant-process__item:nth-child(6),
  .assistant-process__item:nth-child(7) {
    min-height: 0;
  }
  .assistant-process__head {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    column-gap: 14px;
    row-gap: 0;
    align-items: start;
    margin-bottom: 12px;
  }
  .assistant-process__number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    min-width: 54px;
    height: 54px;
    font-size: 30px;
  }
  .assistant-process__title {
    max-width: none;
    font-size: 22px;
    line-height: 1.08;
  }
  .assistant-process__text {
    max-width: none;
    margin: 0 0 14px 68px;
    font-size: 15px;
    line-height: 1.5;
  }
  .assistant-process__line {
    margin-left: 68px;
    width: calc(100% - 68px);
  }
  .assistant-process__line:after {
    display: none;
  }
  .assistant-process__bot {
    position: relative;
    right: auto;
    bottom: auto;
    width: 148px;
    margin: 6px auto 0;
  }
  .page-content {
    padding: 60px 0 68px;
  }
  .page-content__inner {
    padding: 36px 20px;
    border-radius: 16px;
  }
  .page-content__main p,
  .page-content__main ul,
  .page-content__main ol,
  .page-content__main blockquote {
    font-size: 16px;
    line-height: 1.75;
  }
  .page-content__main h1,
  .page-content__main h2 {
    font-size: 34px;
  }
  .page-content__main h3 {
    font-size: 26px;
  }
  .contact-split__media {
    width: 100%;
    min-height: 0;
    padding-top: 75%;
  }
  .contact-split__content {
    width: 100%;
    padding: 46px 10px 56px;
    text-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .contact-split__content p {
    font-size: 22px;
    margin-bottom: 26px;
  }
  .contact-split__btn {
    align-self: center;
    padding: 12px 28px;
  }
  .faq-accordion {
    padding: 44px 0 40px;
  }
  .faq-accordion__trigger {
    padding: 18px 0 17px;
    font-size: 22px;
    line-height: 1.22;
  }
  .faq-accordion__answer {
    font-size: 15px;
    line-height: 1.5;
  }
  .about-split__inner {
    -webkit-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .about-split--philosophy .about-split__inner {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .about-split__content,
  .about-split__media {
    width: 100%;
  }
  .about-split__content,
  .about-split--story .about-split__content,
  .about-split--philosophy .about-split__content {
    padding: 46px 10px 56px;
    text-align: center;
  }
  .about-split__media {
    min-height: 0;
    padding-top: 75%;
  }
  .about-split__title {
    margin-bottom: 22px;
    font-size: 23px;
  }
  .about-split__text h3 {
    margin-bottom: 22px;
    font-size: 23px;
  }
  .about-split__text h3:not(:first-child) {
    margin-top: 24px;
  }
  .about-split__section-title {
    margin-bottom: 24px;
    font-size: 40px;
    line-height: 1;
  }
  .about-split__text h2 {
    margin-bottom: 24px;
    font-size: 40px;
    line-height: 1;
  }
  .about-split__text,
  .about-split__text--wide,
  .about-split__highlight,
  .about-split__statement {
    max-width: none;
  }
  .about-split__text p {
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.5;
  }
  .about-split__highlight {
    margin-top: 24px;
    font-size: 22px;
    line-height: 1.16;
  }
  .about-split__statement {
    margin-top: 34px;
    font-size: 22px;
    line-height: 1.08;
  }
}
