@charset "UTF-8";
:root {
  --color-f-black: #000000;
  --color-black: #111010;
  --color-white: #ffffff;
  --color-gray-100: #f0eded;
  --color-gray-200: #f1f1f1;
  --color-gray-400: #9a9a9a;
  --color-gray-600: #6b6b6b;
  --color-brand: #f82427;
  --color-bw-100: #101111;
  --color-bw-80: #303535;
  --color-red: #f82427;
  --color-red-darken: #ce2222;
  --color-gray-1: #f4f5f5;
  --color-gray-2: #f5f5f5;
  --color-ink: #0b0910;
  --color-ink-fade: #0c0911;
  --color-surface-80: #303535;
  --color-surface-slot: #6c6c6c;
  --color-muted: #929292;
  --color-brand-hero: #e23e35;
  --color-brand-header: #f82427;
  --container-max: 2150px;
  --gutter-desktop: 64px;
  --gutter-tablet: 32px;
  --gutter-mobile: 16px;
  --header-height-mobile: 58px;
  --header-offset: var(--header-height-mobile);
  --header-padding-desktop: 40px 64px 20px;
  --footer-padding-desktop: 52px 64px 40px;
  --footer-gap: 40px;
  --font-family: "Rooftop", system-ui, -apple-system, sans-serif;
  --font-family-wide: "Rooftop Wide", system-ui, -apple-system, sans-serif;
  --font-family-caption: "Montserrat", system-ui, -apple-system, sans-serif;
  --transition-base: 0.2s ease;
}

@font-face {
  font-style: normal;
  font-weight: 400;
  font-family: "Rooftop";
  font-display: swap;
  src: url("../fonts/Rooftop%20-Book-Web.woff2?v=2") format("woff2"), url("../fonts/Rooftop%20-Book-Web.woff?v=2") format("woff"), url("../fonts/Rooftop%20-Book-Web.ttf?v=2") format("truetype");
}
@font-face {
  font-style: normal;
  font-weight: 500;
  font-family: "Rooftop";
  font-display: swap;
  src: url("../fonts/Rooftop%20-Medium-Web.woff2?v=2") format("woff2"), url("../fonts/Rooftop%20-Medium-Web.woff?v=2") format("woff"), url("../fonts/Rooftop%20-Medium-Web.ttf?v=2") format("truetype");
}
@font-face {
  font-style: normal;
  font-weight: 500;
  font-family: "Rooftop Wide";
  font-display: swap;
  src: url("../fonts/Rooftop%20Wide-Medium-Web.woff2?v=2") format("woff2"), url("../fonts/Rooftop%20Wide-Medium-Web.woff?v=2") format("woff"), url("../fonts/Rooftop%20Wide-Medium-Web.ttf?v=2") format("truetype");
}
@font-face {
  font-style: normal;
  font-weight: 500;
  font-family: "Montserrat";
  font-display: swap;
  src: url("../fonts/Montserrat-Medium-cyrillic.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-style: normal;
  font-weight: 500;
  font-family: "Montserrat";
  font-display: swap;
  src: url("../fonts/Montserrat-Medium-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
.ui-button {
  display: inline-flex;
  box-sizing: border-box;
  height: 40px;
  padding: 7px 16px;
  align-items: center;
  justify-content: center;
  gap: 2px;
  color: var(--color-white);
  font-weight: 500;
  font-size: 16px;
  font-family: var(--font-family);
  line-height: 20px;
  white-space: nowrap;
  text-decoration: none;
  background: var(--color-bw-100);
  border: none;
  border-radius: 0;
  transition: background-color var(--transition-base), border-color var(--transition-base), color var(--transition-base);
  cursor: pointer;
}
.ui-button > span {
  padding: 2px 4px;
}
.ui-button img,
.ui-button svg {
  display: block;
  width: 24px;
  height: 24px;
  flex: none;
}
.ui-button:hover {
  background: var(--color-bw-80);
}

.ui-button--red {
  background: var(--color-red);
}
.ui-button--red:hover {
  background: var(--color-red-darken);
}

.ui-button--ghost {
  color: var(--color-bw-100);
  background: var(--color-white);
}
.ui-button--ghost:hover {
  background: var(--color-gray-2);
}

.ui-button--outline {
  color: var(--color-bw-100);
  background: transparent;
  border: 1px solid var(--color-bw-80);
}
.ui-button--outline:hover {
  background: var(--color-gray-2);
}

.ui-button--outline-white {
  color: var(--color-white);
  background: transparent;
  border: 2px solid var(--color-gray-1);
}
.ui-button--outline-white:hover {
  color: var(--color-bw-100);
  background: var(--color-gray-2);
}

.ui-button--32 {
  height: 32px;
  padding: 7px 14px;
  font-size: 14px;
}
.ui-button--32 > span {
  padding: 0 4px;
}
.ui-button--32 img,
.ui-button--32 svg {
  width: 20px;
  height: 20px;
}

.ui-icon-button {
  display: inline-flex;
  box-sizing: border-box;
  width: 40px;
  height: 40px;
  padding: 0;
  align-items: center;
  justify-content: center;
  color: var(--color-bw-100);
  background: var(--color-white);
  border: none;
  border-radius: 6px;
  transition: background-color var(--transition-base), color var(--transition-base);
  cursor: pointer;
}
.ui-icon-button img,
.ui-icon-button svg {
  display: block;
  width: 24px;
  height: 24px;
}
.ui-icon-button:hover {
  background: var(--color-gray-2);
}

.ui-icon-button--black {
  color: var(--color-white);
  background: var(--color-bw-100);
}
.ui-icon-button--black:hover {
  background: var(--color-bw-80);
}

.ui-icon-button--red {
  color: var(--color-white);
  background: var(--color-red);
}
.ui-icon-button--red:hover {
  background: var(--color-red-darken);
}

.ui-icon-button--ghost-white {
  color: var(--color-white);
  background: transparent;
}
.ui-icon-button--ghost-white:hover {
  background: rgba(255, 255, 255, 0.12);
}

.ui-icon-button--32 {
  width: 32px;
  height: 32px;
}
.ui-icon-button--32 img,
.ui-icon-button--32 svg {
  width: 20px;
  height: 20px;
}

.ui-button[disabled],
.ui-icon-button[disabled] {
  opacity: 0.4;
  pointer-events: none;
}

.ui-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ui-field__label {
  color: var(--color-bw-100);
  font-weight: 450;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.01em;
}

.ui-field__hint {
  color: #888888;
  font-size: 12px;
  line-height: 16px;
}

.ui-input,
.ui-textarea {
  box-sizing: border-box;
  width: 100%;
  height: 40px;
  padding: 10px 12px;
  color: var(--color-bw-100);
  font-weight: 450;
  font-size: 15px;
  font-family: var(--font-family);
  line-height: 20px;
  background: #f9fafa;
  border: 1px solid transparent;
  border-radius: 0;
  transition: background-color var(--transition-base), border-color var(--transition-base);
}
.ui-input::placeholder,
.ui-textarea::placeholder {
  color: var(--color-muted);
}
.ui-input:hover,
.ui-textarea:hover {
  background: var(--color-gray-1);
}
.ui-input:focus,
.ui-textarea:focus {
  background: var(--color-white);
  border-color: var(--color-bw-80);
  outline: none;
}
.ui-input[aria-invalid=true], .ui-input.is-error,
.ui-textarea[aria-invalid=true],
.ui-textarea.is-error {
  border-color: var(--color-red);
}

.ui-textarea {
  height: auto;
  min-height: 96px;
  resize: vertical;
}

.ui-checkbox {
  position: relative;
  display: inline-flex;
  width: 24px;
  height: 24px;
  flex: none;
  margin: 0;
  align-items: center;
  justify-content: center;
  appearance: none;
  background: var(--color-white);
  border: 1px solid #dddbda;
  border-radius: 0;
  transition: background-color var(--transition-base), border-color var(--transition-base);
  cursor: pointer;
}
.ui-checkbox:hover {
  border-color: var(--color-surface-slot);
}
.ui-checkbox:checked {
  background: var(--color-f-black);
  border-color: var(--color-f-black);
}
.ui-checkbox:checked::after {
  width: 12px;
  height: 6px;
  border-bottom: 2px solid var(--color-white);
  border-left: 2px solid var(--color-white);
  transform: translateY(-1px) rotate(-45deg);
  content: "";
}
.ui-checkbox:focus-visible {
  outline: 2px solid var(--color-bw-80);
  outline-offset: 2px;
}

@media (min-width: 768px) and (max-width: 1023px) {
  :root {
    --header-offset: 72px;
  }
}
@media (min-width: 1024px) {
  :root {
    --header-offset: 80px;
  }
}
@media (min-width: 1440px) {
  :root {
    --header-offset: 80px;
  }
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.site-header.is-menu-open {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  background: var(--color-white);
  border-bottom: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  overflow: hidden;
}

.site-header.is-menu-open .site-header__burger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.is-menu-open .site-header__burger-line:nth-child(2) {
  opacity: 0;
}

.site-header.is-menu-open .site-header__burger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-header.is-menu-open .site-header__inner {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  background: var(--color-white);
  border-bottom: none;
}

.site-header.is-menu-open .site-header__inner::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 100vw;
  border-bottom: 1px solid var(--color-gray-100);
  transform: translateX(-50%);
  pointer-events: none;
  content: "";
}

.site-header.is-menu-open .site-header__menu {
  display: block;
}

.site-header.is-menu-open .site-header__overlay {
  display: block;
}

.site-header.is-solutions-open .site-header__mobile-nav {
  display: none;
}

.site-header.is-solutions-open .site-header__mega {
  display: none;
}

.site-header.is-solutions-open .site-header__solutions-view {
  display: block;
}

@media (max-width: 767px) {
  .site-header:has(.site-header__menu).is-menu-open .site-header__menu {
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }
  .site-header:has(.site-header__menu).is-menu-open .site-header__mega {
    display: flex;
    min-height: 0;
    flex: 1;
    flex-direction: column;
    gap: 20px;
  }
  .site-header:has(.site-header__menu).is-solutions-open .site-header__mega {
    display: flex;
  }
  .site-header:has(.site-header__menu).is-solutions-open .site-header__solutions-view {
    display: none !important;
  }
  .site-header:has(.site-header__menu).is-solutions-open .site-header__mobile-nav {
    display: none !important;
  }
  .site-header:has(.site-header__menu) .site-header__mobile-nav {
    display: none !important;
  }
  .site-header:has(.site-header__menu) .site-header__solutions-view {
    display: none !important;
  }
  .site-header:has(.site-header__menu) .site-header__mega-group,
  .site-header:has(.site-header__menu) .site-header__mega-column:first-child {
    display: contents;
  }
  .site-header:has(.site-header__menu) .site-header__mega-column--solutions {
    order: 1;
  }
  .site-header:has(.site-header__menu) .site-header__mega-group .site-header__mega-column:first-child .site-header__mega-title {
    order: 2;
    margin-top: 20px;
    margin-bottom: 0;
  }
  .site-header:has(.site-header__menu) .site-header__mega-group .site-header__mega-column:first-child .site-header__mega-links {
    order: 3;
  }
  .site-header:has(.site-header__menu) .site-header__mega-group .site-header__mega-column:nth-child(2) {
    margin-top: 20px;
    order: 4;
  }
  .site-header:has(.site-header__menu) .site-header__mega-contact {
    display: flex;
    margin-top: 20px;
    flex-direction: column;
    gap: 0;
    order: 5;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .site-header:has(.site-header__menu).is-menu-open .site-header__menu {
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }
  .site-header:has(.site-header__menu).is-menu-open .site-header__mega {
    display: flex;
    min-height: 0;
    flex: 1;
    flex-direction: column;
    align-content: start;
    gap: 40px;
  }
  .site-header:has(.site-header__menu) .site-header__mega-group {
    display: flex;
    align-items: flex-start;
    gap: 60px;
  }
  .site-header:has(.site-header__menu) .site-header__mega-contact {
    display: flex;
    margin-top: 40px;
    flex-direction: column;
    gap: 0;
  }
  .site-header:has(.site-header__menu).is-solutions-open .site-header__mega {
    display: flex;
  }
  .site-header:has(.site-header__menu).is-solutions-open .site-header__solutions-view {
    display: none !important;
  }
  .site-header:has(.site-header__menu).is-solutions-open .site-header__mobile-nav {
    display: none !important;
  }
  .site-header:has(.site-header__menu) .site-header__mobile-nav {
    display: none !important;
  }
  .site-header:has(.site-header__menu) .site-header__solutions-view {
    display: none !important;
  }
  .site-header:has(.site-header__menu) .site-header__mega-column--solutions {
    order: -1;
  }
  .site-header:has(.site-header__menu) .site-header__mega-column:first-child {
    display: flex;
    flex-direction: column;
  }
}
@media (min-width: 1024px) {
  .site-header.is-menu-open .site-header__menu {
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }
  .site-header.is-menu-open .site-header__mega {
    display: flex;
    min-height: 0;
    flex: 1;
    flex-direction: column;
    align-content: start;
    gap: 40px;
  }
  .site-header__mega-group {
    display: flex;
    align-items: flex-start;
    gap: 60px;
  }
  .site-header__mega-column--solutions {
    order: -1;
  }
  .site-header__mega-contact {
    display: flex;
    margin-top: 40px;
    flex-direction: column;
    gap: 0;
  }
  .site-header.is-solutions-open .site-header__mega {
    display: none;
  }
  .site-header.is-solutions-open .site-header__solutions-view {
    display: flex;
    min-height: 0;
    flex: 1;
    flex-direction: column;
  }
  .site-header.is-menu-open .site-header__overlay {
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }
}
@media (min-width: 1440px) {
  .site-header:has(.site-header__menu).is-menu-open {
    top: 0;
    right: 0;
    bottom: auto;
    left: 0;
    z-index: 200;
    display: block;
    height: auto;
    background: var(--color-white);
    border-bottom: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    pointer-events: none;
    overflow: visible;
  }
  .site-header:has(.site-header__menu).is-menu-open .site-header__inner {
    background: var(--color-white);
  }
  .site-header:has(.site-header__menu).is-menu-open .site-header__inner::after {
    display: none;
  }
  .site-header:has(.site-header__menu).is-menu-open .site-header__menu,
  .site-header:has(.site-header__menu).is-menu-open .site-header__inner,
  .site-header:has(.site-header__menu).is-menu-open .site-header__nav,
  .site-header:has(.site-header__menu).is-menu-open .site-header__actions,
  .site-header:has(.site-header__menu).is-menu-open .site-header__burger {
    pointer-events: auto;
  }
  .site-header:has(.site-header__menu).is-services-dropdown-open {
    z-index: 200;
    overflow: visible;
  }
  .site-header:has(.site-header__menu).is-services-dropdown-open .site-header__inner,
  .site-header:has(.site-header__menu).is-services-dropdown-open .site-header__nav,
  .site-header:has(.site-header__menu).is-services-dropdown-open .site-header__actions {
    pointer-events: auto;
  }
  .site-header:has(.site-header__menu).is-menu-open .site-header__backdrop {
    display: block;
  }
  .site-header:has(.site-header__menu).is-menu-open .site-header__mega {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 101px;
  }
  .site-header:has(.site-header__menu) .site-header__mega-group {
    display: flex;
    width: 421px;
    min-height: 388px;
    flex-shrink: 0;
    justify-content: space-between;
    align-items: stretch;
    gap: 0;
  }
  .site-header:has(.site-header__menu) .site-header__mega-column--solutions {
    flex: 1;
    min-width: 0;
    order: 0;
  }
  .site-header:has(.site-header__menu) .site-header__mega-contact {
    display: flex;
    margin-top: auto;
    padding-top: 40px;
    flex-direction: column;
    gap: 0;
  }
}
.site-header__inner {
  display: flex;
  height: 58px;
  padding-inline: var(--gutter-mobile);
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .site-header__inner {
    width: 100%;
    max-width: var(--container-max);
    height: auto;
    min-height: 72px;
    margin-inline: auto;
    padding: 16px var(--gutter-tablet);
    gap: 24px;
  }
}
@media (min-width: 1024px) {
  .site-header__inner {
    height: auto;
    min-height: 0;
    width: 100%;
    max-width: var(--container-max);
    margin-inline: auto;
    padding: 20px 64px;
    gap: 24px;
  }
}

@media (min-width: 1440px) {
  .site-header:has(.site-header__menu) .site-header__inner {
    position: relative;
    z-index: 151;
  }
  .site-header:has(.site-header__menu).is-menu-open.is-services-dropdown-open .site-header__inner {
    z-index: 160;
  }
}
.site-header__logo {
  display: inline-flex;
  flex-shrink: 0;
  line-height: 0;
}

.site-header__logo img {
  display: none;
  height: auto;
}

.site-header__logo img.site-header__logo-image--dark-mark {
  display: block;
  width: 28px;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .site-header__logo img.site-header__logo-image--dark-mark {
    display: none;
  }
  .site-header__logo img.site-header__logo-image--dark {
    display: block;
    width: 160px;
  }
}
@media (min-width: 1024px) {
  .site-header__logo img.site-header__logo-image--dark-mark {
    display: none;
  }
  .site-header__logo img.site-header__logo-image--dark {
    display: block;
  }
}
@media (min-width: 1024px) and (max-width: 1439px) {
  .site-header__logo img.site-header__logo-image--dark {
    width: 186px;
  }
}
@media (min-width: 1440px) {
  .site-header__logo img.site-header__logo-image--dark {
    width: 200px;
  }
}
.site-header__nav {
  display: none;
}
@media (min-width: 1440px) {
  .site-header__nav {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: flex-end;
    gap: 32px;
    padding-right: 100px;
  }
}

.site-header__nav-trigger {
  display: none;
}

@media (min-width: 1440px) {
  .site-header:has(.site-header__menu) .site-header__nav-trigger {
    display: inline-flex;
    padding: 0;
    align-items: center;
    gap: 6px;
    color: #303535;
    font-weight: 400;
    font-size: 14px;
    font-family: inherit;
    text-transform: none;
    line-height: 20px;
    white-space: nowrap;
    letter-spacing: 0;
    background: none;
    border: none;
    transition: color var(--transition-base);
    cursor: pointer;
  }
  .site-header:has(.site-header__menu) .site-header__nav-trigger:hover,
  .site-header:has(.site-header__menu) .site-header__nav-trigger.is-active {
    color: var(--color-brand);
  }
  .site-header:has(.site-header__menu) .site-header__nav-chevron {
    width: 8px;
    height: 8px;
    margin-top: -2px;
    border-right: 1.5px solid currentcolor;
    border-bottom: 1.5px solid currentcolor;
    transform: rotate(45deg);
    transition: transform var(--transition-base);
  }
  .site-header:has(.site-header__menu) .site-header__nav-services {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 2px;
    cursor: pointer;
  }
  .site-header:has(.site-header__menu) .site-header__nav-services::before {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    height: 18px;
    content: "";
  }
  .site-header:has(.site-header__menu) .site-header__nav-services-label {
    display: flex;
    height: 18px;
    align-items: center;
    line-height: 1;
    transition: color var(--transition-base);
  }
  .site-header:has(.site-header__menu) .site-header__nav-services-toggle {
    display: inline-flex;
    width: 13px;
    height: 18px;
    padding: 0;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    line-height: 0;
    background: none;
    border: none;
    transition: color var(--transition-base);
    cursor: inherit;
    pointer-events: none;
  }
  .site-header:has(.site-header__menu) .site-header__nav-chevron-icon {
    display: block;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: all 0.3s ease;
    transform: scaleY(1);
  }
  .site-header:has(.site-header__menu) .site-header__nav-chevron-icon * {
    fill: #303535;
  }
  .site-header:has(.site-header__menu).is-services-dropdown-open .site-header__nav-chevron-icon {
    transform: scaleY(-1);
  }
  .site-header:has(.site-header__menu).is-services-dropdown-open .site-header__nav-chevron-icon * {
    fill: var(--color-brand);
  }
  .site-header:has(.site-header__menu) .site-header__nav-chevron-icon--up {
    display: none;
  }
  .site-header:has(.site-header__menu).is-services-dropdown-open .site-header__nav-services-label.site-header__link {
    color: #f82427;
  }
  .site-header:has(.site-header__menu).is-services-dropdown-open .site-header__nav-chevron-icon--down {
    display: none;
  }
  .site-header:has(.site-header__menu).is-services-dropdown-open .site-header__nav-chevron-icon--up {
    display: block;
  }
  .site-header:has(.site-header__menu) .site-header__services-dropdown {
    position: absolute;
    top: calc(100% + 35px);
    left: 0;
    z-index: 160;
    width: 500px;
    padding: 0;
    background: rgba(16, 17, 17, 0.1);
    border-radius: 0;
    box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-base), visibility 0s linear var(--transition-base);
    pointer-events: none;
  }
  .site-header:has(.site-header__menu).is-services-dropdown-open .site-header__services-dropdown {
    opacity: 1;
    visibility: visible;
    transition: opacity var(--transition-base), visibility 0s;
    pointer-events: auto;
  }
  .site-header:has(.site-header__menu) .site-header__services-list {
    display: flex;
    margin: 0;
    padding: 0;
    flex-direction: column;
    gap: 1px;
    list-style: none;
  }
  .site-header:has(.site-header__menu) .site-header__services-item {
    display: grid;
    min-height: 86px;
    padding: 0 16px 0 0;
    gap: 16px;
    grid-template-columns: 86px 1fr;
    color: inherit;
    text-decoration: none;
    background: var(--color-white);
    border-radius: 0;
    transition: background-color var(--transition-base);
  }
  .site-header:has(.site-header__menu) .site-header__services-item:hover,
  .site-header:has(.site-header__menu) .site-header__services-item:focus-visible {
    background: #f4f5f5;
  }
  .site-header:has(.site-header__menu) .site-header__services-item:hover .site-header__services-item-icon,
  .site-header:has(.site-header__menu) .site-header__services-item:focus-visible .site-header__services-item-icon {
    background: #e8eaea;
  }
  .site-header:has(.site-header__menu) .site-header__services-item-icon {
    display: flex;
    width: auto;
    height: auto;
    align-self: stretch;
    align-items: center;
    justify-content: center;
    background: #f4f5f5;
    border-radius: 0;
  }
  .site-header:has(.site-header__menu) .site-header__services-item-icon img {
    display: block;
    width: 60px;
    height: 60px;
    object-fit: contain;
  }
  .site-header:has(.site-header__menu) .site-header__services-item-body {
    display: flex;
    min-width: 0;
    padding-block: 12px;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
  }
  .site-header:has(.site-header__menu) .site-header__services-item-title {
    color: #101111;
    font-weight: 500;
    font-size: 16px;
    font-family: var(--font-family);
    line-height: 20px;
    letter-spacing: 0;
  }
  .site-header:has(.site-header__menu) .site-header__services-item-text {
    color: #6c6c6c;
    font-weight: 450;
    font-size: 14px;
    font-family: var(--font-family);
    line-height: 20px;
    letter-spacing: 0;
  }
}
@media (min-width: 1440px) {
  .site-header__link {
    color: #303535;
    font-weight: 400;
    font-size: 14px;
    text-transform: none;
    line-height: 20px;
    white-space: nowrap;
    letter-spacing: 0;
    transition: color var(--transition-base);
  }
}

@media (min-width: 1440px) {
  .site-header__link:hover,
  .site-header__link--active {
    color: var(--color-brand);
  }
}
.site-header__actions {
  display: none;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .site-header__actions {
    display: flex;
    margin-left: auto;
    flex-shrink: 0;
    align-items: center;
    gap: 32px;
  }
}
@media (min-width: 1024px) {
  .site-header__actions {
    display: flex;
    margin-left: auto;
    flex-shrink: 0;
    align-items: center;
    gap: 32px;
  }
}
@media (min-width: 1440px) {
  .site-header__actions {
    margin-left: 0;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .site-header__phone-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }
}
@media (min-width: 1024px) {
  .site-header__phone-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }
}
@media (min-width: 1440px) {
  .site-header__phone-wrap {
    align-items: flex-end;
  }
}

.site-header__phone-label {
  display: none;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .site-header__phone-label {
    color: var(--color-gray-600);
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0;
  }
}
@media (min-width: 1024px) {
  .site-header__phone-label {
    color: var(--color-gray-600);
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0;
  }
}
@media (min-width: 1440px) {
  .site-header__phone-label {
    font-weight: 500;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .site-header__phone {
    color: #303535;
    font-weight: 500;
    font-size: 14px;
    font-family: var(--font-family-wide);
    line-height: 20px;
    white-space: nowrap;
    transition: color var(--transition-base);
  }
}
@media (min-width: 1024px) {
  .site-header__phone {
    color: #303535;
    font-weight: 500;
    font-size: 14px;
    font-family: var(--font-family-wide);
    line-height: 20px;
    white-space: nowrap;
    transition: color var(--transition-base);
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .site-header__phone:hover {
    color: var(--color-brand);
  }
}
@media (min-width: 1024px) {
  .site-header__phone:hover {
    color: var(--color-brand);
  }
}

.site-header__cta {
  display: none;
  font-size: 14px;
  line-height: 1.3;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .site-header__cta {
    display: inline-flex;
  }
}
@media (min-width: 1024px) {
  .site-header__cta {
    display: inline-flex;
  }
}

.site-header__backdrop {
  display: none;
}

@media (min-width: 1440px) {
  .site-header:has(.site-header__menu) .site-header__backdrop {
    position: fixed;
    top: var(--header-offset);
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 150;
    background: rgba(17, 16, 16, 0.48);
    pointer-events: auto;
  }
}
.site-header__burger {
  position: relative;
  z-index: 1;
  display: flex;
  width: 40px;
  height: 40px;
  padding: 10px;
  flex-shrink: 0;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  border-radius: 6px;
}

.site-header__burger-line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-black);
  border-radius: 1px;
  transition: transform var(--transition-base), opacity var(--transition-base);
}

.site-header__menu {
  display: none;
  min-height: 0;
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background: var(--color-white);
}

@media (min-width: 1440px) {
  .site-header:has(.site-header__menu) .site-header__menu {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    z-index: 151;
    max-height: calc(100vh - var(--header-offset));
    flex: none;
    background: var(--color-white);
    border-bottom-right-radius: 24px;
    border-bottom-left-radius: 24px;
    box-shadow: 0 24px 48px rgba(17, 16, 16, 0.12);
  }
}
.site-header__menu-inner {
  padding: 28px var(--gutter-mobile) 40px;
}
@media (max-width: 767px) {
  .site-header__menu-inner {
    display: flex;
    min-height: 0;
    padding: 28px var(--gutter-mobile) 40px;
    flex: 1;
    flex-direction: column;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .site-header__menu-inner {
    display: flex;
    width: 100%;
    max-width: var(--container-max);
    min-height: 0;
    margin-inline: auto;
    padding: 40px 32px;
    flex: 1;
    flex-direction: column;
  }
}
@media (min-width: 1024px) {
  .site-header__menu-inner {
    display: flex;
    width: 100%;
    max-width: var(--container-max);
    min-height: 0;
    margin-inline: auto;
    padding: 40px 64px;
    flex: 1;
    flex-direction: column;
  }
}

@media (min-width: 1440px) {
  .site-header:has(.site-header__menu) .site-header__menu-inner {
    width: 100%;
    max-width: var(--container-max);
    margin-inline: auto;
    padding: 64px 60px;
  }
}
.site-header__mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (min-width: 1024px) {
  .site-header__mobile-nav {
    display: none;
  }
}

@media (min-width: 1440px) {
  .site-header:has(.site-header__menu) .site-header__mobile-nav {
    display: none !important;
  }
}
.site-header__mobile-link {
  color: #6c6c6c;
  font-weight: 400;
  font-size: 32px;
  line-height: 42px;
  letter-spacing: 0;
  transition: color var(--transition-base);
}

.site-header__mobile-link:hover,
.site-header__mobile-link--active {
  color: var(--color-brand);
}

.site-header__mobile-link--trigger {
  display: block;
  width: 100%;
  padding: 0;
  color: #6c6c6c;
  font-weight: 400;
  font-size: 32px;
  font-family: var(--font-family);
  text-align: left;
  line-height: 42px;
  letter-spacing: 0;
  background: none;
  border: none;
  transition: color var(--transition-base);
  cursor: pointer;
}

.site-header__mobile-link--trigger:hover {
  color: var(--color-brand);
}

.site-header__mega {
  display: none;
}

.site-header__solutions-view {
  display: none;
}

@media (min-width: 1024px) {
  .site-header.is-solutions-open .site-header__solutions-view {
    display: flex;
    min-height: 0;
    flex: 1;
    flex-direction: column;
  }
}
@media (min-width: 1440px) {
  .site-header:has(.site-header__menu) .site-header__solutions-view {
    display: none !important;
  }
}
.site-header__solutions-back {
  display: inline-flex;
  margin-bottom: 24px;
  padding: 0;
  align-items: center;
  gap: 8px;
  color: #6c6c6c;
  font-weight: 400;
  font-size: 32px;
  font-family: var(--font-family);
  line-height: 42px;
  letter-spacing: 0;
  background: none;
  border: none;
  cursor: pointer;
}
@media (max-width: 767px) {
  .site-header__solutions-back {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .site-header__solutions-back {
    display: none !important;
  }
}
@media (min-width: 1024px) {
  .site-header__solutions-back {
    display: none !important;
  }
}

.site-header__solutions-back-icon {
  font-size: 28px;
  line-height: 1;
}

.site-header__mega-title {
  margin-bottom: 20px;
  color: #6c6c6c;
  font-weight: 500;
  font-size: 16px;
  font-family: var(--font-family);
  line-height: 20px;
  letter-spacing: 0;
}

.site-header__mega-solutions-head .site-header__mega-title {
  margin-bottom: 0;
}

.site-header__mega-links {
  display: flex;
  margin: 0;
  padding: 0;
  flex-direction: column;
  gap: 12px;
  list-style: none;
}
@media (min-width: 1440px) {
  .site-header__mega-links {
    gap: 16px;
  }
}

.site-header__mega-link {
  color: var(--color-black);
  font-weight: 500;
  font-size: 16px;
  font-family: var(--font-family);
  line-height: 20px;
  transition: color var(--transition-base);
}
@media (min-width: 768px) and (max-width: 1023px) {
  .site-header__mega-link {
    font-weight: 400;
  }
}
@media (min-width: 1024px) {
  .site-header__mega-link {
    font-weight: 400;
  }
}
@media (min-width: 1440px) {
  .site-header__mega-link {
    font-weight: 500;
    font-size: 14px;
  }
}

.site-header__mega-link:hover,
.site-header__mega-link--active {
  color: var(--color-brand);
}

.site-header__mega-contact {
  display: none;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .site-header__mega-contact {
    display: flex;
    margin-top: auto;
    padding-top: 32px;
    flex-direction: column;
    gap: 4px;
  }
}
@media (min-width: 1024px) {
  .site-header__mega-contact {
    display: flex;
    margin-top: 48px;
    flex-direction: column;
    gap: 4px;
  }
}

@media (min-width: 1440px) {
  .site-header:has(.site-header__menu) .site-header__mega-contact {
    display: flex;
    margin-top: auto;
    padding-top: 48px;
    flex-direction: column;
    gap: 4px;
  }
}
.site-header__mega-phone {
  font-weight: 500;
  font-size: 28px;
  line-height: 36px;
  letter-spacing: 0.28px;
  white-space: nowrap;
}

.site-header__mega-phone-label {
  color: var(--color-gray-600);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}

.site-header__mega-solutions-head {
  display: flex;
  margin-bottom: 20px;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}

.site-header__mega-more {
  color: #ce2222;
  font-weight: 500;
  font-size: 14px;
  font-family: var(--font-family);
  line-height: 20px;
  white-space: nowrap;
  letter-spacing: 0;
  transition: opacity var(--transition-base);
}

.site-header__mega-more:hover {
  opacity: 0.88;
}

.site-header__mega-cards {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 12px;
  list-style: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media (max-width: 767px) {
  .site-header__mega-cards {
    gap: 8px;
  }
}

.site-header__mega-cards--stacked {
  grid-template-columns: 1fr;
}

@media (min-width: 1440px) {
  .site-header:has(.site-header__menu) .site-header__mega-column {
    display: flex;
    min-height: 100%;
    flex-direction: column;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .site-header__mega-column--solutions {
    grid-column: 1/-1;
  }
}
@media (min-width: 1024px) {
  .site-header__mega-column--solutions {
    grid-column: 1/-1;
  }
}

@media (min-width: 1440px) {
  .site-header:has(.site-header__menu) .site-header__mega-column--solutions {
    grid-column: auto;
  }
}
.site-header__mega-card-link {
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: inherit;
  transition: opacity var(--transition-base);
}
@media (max-width: 767px) {
  .site-header__mega-card-link {
    gap: 8px;
  }
}

.site-header__mega-card-link:hover {
  opacity: 0.92;
}

.site-header__mega-card-media-wrap {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  background: #f1f1f1;
  overflow: hidden;
}
@media (min-width: 1440px) {
  .site-header__mega-card-media-wrap {
    aspect-ratio: 196.67/210;
  }
}

.site-header__mega-card-arrow {
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
}
@media (max-width: 767px) {
  .site-header__mega-card-arrow {
    width: 32px;
    height: 32px;
  }
}
@media (min-width: 1440px) {
  .site-header__mega-card-arrow {
    width: 72px;
    height: 72px;
  }
}

.site-header__mega-card-media {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 62%;
  height: 62%;
  object-fit: contain;
  transform: translate(-50%, -50%);
}

.site-header__mega-card-title {
  color: var(--color-black);
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
}
@media (max-width: 767px) {
  .site-header__mega-card-title {
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0.12px;
  }
}

.site-header__scroll-sentinel {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
  opacity: 0;
}

body:has(.page-hero, .main-title__section, .about-hero, .main-hero) .site-header {
  background-color: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

body:has(.page-hero, .main-title__section, .about-hero, .main-hero) .site-header.is-scrolled:not(.is-menu-open),
body:has(.page-hero, .main-title__section, .about-hero, .main-hero) .site-header.is-services-dropdown-open:not(.is-menu-open) {
  background-color: rgba(11, 9, 16, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

body:has(.page-hero, .main-title__section, .about-hero, .main-hero) .site-header__inner {
  position: relative;
}

body:has(.page-hero, .main-title__section, .about-hero, .main-hero) .site-header:has(.site-header__menu).is-menu-open .site-header__link,
body:has(.page-hero, .main-title__section, .about-hero, .main-hero) .site-header:has(.site-header__menu).is-menu-open .site-header__nav-trigger,
body:has(.page-hero, .main-title__section, .about-hero, .main-hero) .site-header:has(.site-header__menu).is-menu-open .site-header__phone {
  color: var(--color-black);
}

body:has(.page-hero, .main-title__section, .about-hero, .main-hero) .site-header:has(.site-header__menu).is-menu-open .site-header__nav-chevron-icon path,
body:has(.page-hero, .main-title__section, .about-hero, .main-hero) .site-header:has(.site-header__menu).is-menu-open .site-header__nav-chevron-icon * {
  fill: var(--color-black);
}

body:has(.page-hero, .main-title__section, .about-hero, .main-hero) .site-header:has(.site-header__menu).is-menu-open .site-header__burger-line {
  background: var(--color-black);
}

body:has(.page-hero, .main-title__section, .about-hero, .main-hero) .site-header:has(.site-header__menu) .site-header__nav-trigger,
body:has(.page-hero, .main-title__section, .about-hero, .main-hero) .site-header__link {
  color: var(--color-white);
}

body:has(.page-hero, .main-title__section, .about-hero, .main-hero) .site-header:has(.site-header__menu) .site-header__nav-trigger:hover,
body:has(.page-hero, .main-title__section, .about-hero, .main-hero) .site-header:has(.site-header__menu) .site-header__nav-trigger.is-active,
body:has(.page-hero, .main-title__section, .about-hero, .main-hero) .site-header__link:hover,
body:has(.page-hero, .main-title__section, .about-hero, .main-hero) .site-header__link--active {
  color: var(--color-brand-hero);
}

body:has(.page-hero, .main-title__section, .about-hero, .main-hero) .site-header__nav-chevron-icon path,
body:has(.page-hero, .main-title__section, .about-hero, .main-hero) .site-header:has(.site-header__menu) .site-header__nav-chevron-icon * {
  fill: var(--color-white);
}

body:has(.page-hero, .main-title__section, .about-hero, .main-hero) .site-header:has(.site-header__menu).is-services-dropdown-open .site-header__nav-chevron-icon path,
body:has(.page-hero, .main-title__section, .about-hero, .main-hero) .site-header:has(.site-header__menu).is-services-dropdown-open .site-header__nav-chevron-icon * {
  fill: var(--color-brand-hero);
}

body:has(.page-hero, .main-title__section, .about-hero, .main-hero) .site-header:has(.site-header__menu).is-services-dropdown-open .site-header__nav-chevron-icon {
  transform: scaleY(-1);
}

body:has(.page-hero, .main-title__section, .about-hero, .main-hero) .site-header:has(.site-header__menu).is-services-dropdown-open .site-header__nav-services-label.site-header__link {
  color: var(--color-brand-hero);
}

body:has(.page-hero, .main-title__section, .about-hero, .main-hero) .site-header__phone {
  color: var(--color-white);
}

body:has(.page-hero, .main-title__section, .about-hero, .main-hero) .site-header__phone:hover {
  color: var(--color-brand-hero);
}

body:has(.page-hero, .main-title__section, .about-hero, .main-hero) .site-header__burger-line {
  background: var(--color-white);
}

@media (min-width: 1440px) {
  .site-header__nav {
    position: absolute;
    top: 50%;
    left: 50%;
    flex: none;
    gap: 28px;
    transform: translate(-50%, -50%);
  }
  .site-header__actions {
    margin-left: auto;
  }
  body:has(.page-hero, .main-title__section, .about-hero, .main-hero) .site-header:has(.site-header__menu) .site-header__services-dropdown {
    background: rgba(16, 17, 17, 0.2);
  }
  body:has(.page-hero, .main-title__section, .about-hero, .main-hero) .site-header:has(.site-header__menu) .site-header__services-item {
    background: var(--color-surface-80);
  }
  body:has(.page-hero, .main-title__section, .about-hero, .main-hero) .site-header:has(.site-header__menu) .site-header__services-item:hover,
  body:has(.page-hero, .main-title__section, .about-hero, .main-hero) .site-header:has(.site-header__menu) .site-header__services-item:focus-visible {
    background: #101111;
    opacity: 1;
  }
  body:has(.page-hero, .main-title__section, .about-hero, .main-hero) .site-header:has(.site-header__menu) .site-header__services-item-icon {
    background: var(--color-surface-slot);
  }
  body:has(.page-hero, .main-title__section, .about-hero, .main-hero) .site-header:has(.site-header__menu) .site-header__services-item-title {
    color: var(--color-white);
  }
  body:has(.page-hero, .main-title__section, .about-hero, .main-hero) .site-header:has(.site-header__menu) .site-header__services-item-text {
    color: var(--color-gray-100);
  }
}
.site-header__overlay {
  display: none;
  min-height: 0;
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background: rgba(255, 255, 255, 0.9);
}

.site-header__overlay-inner {
  padding: 32px var(--gutter-mobile) 48px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .site-header__overlay-inner {
    padding-inline: var(--gutter-tablet);
  }
}
@media (min-width: 1024px) {
  .site-header__overlay-inner {
    display: flex;
    width: 100%;
    max-width: var(--container-max);
    min-height: 0;
    margin-inline: auto;
    padding: 24px var(--gutter-desktop) 32px;
    flex: 1;
    flex-direction: column;
  }
}
@media (min-width: 1440px) {
  .site-header__overlay-inner {
    padding-block: 24px 32px;
    padding-inline: var(--gutter-desktop);
  }
}

.site-header__overlay-nav--mobile {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (min-width: 1024px) {
  .site-header__overlay-nav--mobile {
    display: none;
  }
}

.site-header__overlay-link {
  color: #6c6c6c;
  font-weight: 400;
  font-size: 32px;
  line-height: 42px;
  letter-spacing: 0;
  transition: color var(--transition-base);
}

.site-header__overlay-link:hover,
.site-header__overlay-link--active {
  color: var(--color-brand);
}

.site-header__overlay-sidebar-link {
  color: #6c6c6c;
  font-weight: 400;
  font-size: 32px;
  line-height: 42px;
  letter-spacing: 0;
  transition: color var(--transition-base);
}

.site-header__overlay-sidebar-link:hover,
.site-header__overlay-sidebar-link--active {
  color: var(--color-brand);
}

.site-header__overlay-link--trigger {
  display: block;
  width: 100%;
  padding: 0;
  color: #6c6c6c;
  font-weight: 400;
  font-size: 32px;
  font-family: var(--font-family);
  text-align: left;
  line-height: 42px;
  letter-spacing: 0;
  background: none;
  border: none;
  transition: color var(--transition-base);
  cursor: pointer;
}

.site-header__overlay-link--trigger:hover {
  color: var(--color-brand);
}

.site-header__overlay-back {
  display: none;
  margin-bottom: 24px;
  padding: 0;
  align-items: center;
  gap: 8px;
  color: #6c6c6c;
  font-weight: 400;
  font-size: 32px;
  font-family: var(--font-family);
  line-height: 42px;
  letter-spacing: 0;
  background: none;
  border: none;
  cursor: pointer;
}
@media (min-width: 1024px) {
  .site-header__overlay-back {
    display: none !important;
  }
}

.site-header__overlay-back-icon {
  font-size: 28px;
  line-height: 1;
}

.site-header__overlay-desktop {
  display: none;
}
@media (min-width: 1024px) {
  .site-header__overlay-desktop {
    display: grid;
    min-height: 0;
    flex: 1;
    grid-template-columns: 220px 1fr;
    align-items: stretch;
    gap: 64px;
  }
}
@media (min-width: 1440px) {
  .site-header__overlay-desktop {
    grid-template-columns: 260px 1fr;
    gap: 80px;
  }
}

.site-header__overlay-heading {
  margin: 0 0 24px;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.3;
}
@media (min-width: 1024px) {
  .site-header__overlay-heading {
    margin-bottom: 16px;
    flex-shrink: 0;
  }
}

.site-header__overlay-cards {
  display: flex;
  margin: 0;
  padding: 0;
  flex-direction: column;
  gap: 16px;
  list-style: none;
}
@media (min-width: 1024px) {
  .site-header__overlay-cards {
    min-height: 0;
    flex: 1;
    gap: 12px;
  }
}

@media (min-width: 1024px) {
  .site-header__overlay-card {
    display: flex;
    min-height: 0;
    flex: 1;
  }
}

.site-header__overlay-card-link {
  display: grid;
  padding: 24px;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 8px;
  color: inherit;
  background: var(--color-gray-100);
  border-radius: 12px;
  transition: opacity var(--transition-base);
}
@media (min-width: 1024px) {
  .site-header__overlay-card-link {
    min-height: 0;
    padding: 16px 20px;
    flex: 1;
    align-items: center;
    overflow: hidden;
  }
}

.site-header__overlay-card-link:hover {
  opacity: 0.92;
}

.site-header__overlay-card--featured .site-header__overlay-card-link {
  color: var(--color-white);
  background: #383838;
}

.site-header__overlay-card-body {
  min-width: 0;
  align-self: start;
}

.site-header__overlay-card-media {
  width: auto;
  max-width: 213px;
  height: auto;
  max-height: 201px;
  flex-shrink: 0;
  object-fit: contain;
  object-position: bottom right;
}
@media (min-width: 1024px) {
  .site-header__overlay-card-media {
    max-width: 120px;
    max-height: 100%;
  }
}

.site-header__overlay-card--featured .site-header__overlay-card-media {
  max-height: 201px;
}
@media (min-width: 1024px) {
  .site-header__overlay-card--featured .site-header__overlay-card-media {
    max-height: 100%;
  }
}

.site-header__overlay-card-title {
  margin: 0 0 16px;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  line-height: 18px;
  letter-spacing: 0.01em;
}
@media (min-width: 1024px) {
  .site-header__overlay-card-title {
    margin-bottom: 8px;
  }
}

.site-header__overlay-card-list {
  display: flex;
  margin: 0;
  padding: 0;
  flex-direction: column;
  gap: 4px;
  color: var(--color-gray-600);
  font-weight: 400;
  font-size: 13px;
  line-height: 18px;
  list-style: none;
}
@media (min-width: 1024px) {
  .site-header__overlay-card-list {
    gap: 2px;
    font-size: 12px;
    line-height: 16px;
  }
}

.site-header__overlay-card--featured .site-header__overlay-card-list {
  color: rgba(255, 255, 255, 0.72);
}

.site-header__overlay-more {
  display: inline-block;
  margin-top: 24px;
  color: var(--color-gray-600);
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  transition: color var(--transition-base);
}
@media (min-width: 1024px) {
  .site-header__overlay-more {
    margin-top: 16px;
    flex-shrink: 0;
  }
}

.site-header__overlay-more:hover {
  color: var(--color-brand);
}

.site-header__overlay-more--right {
  display: block;
  text-align: right;
}

@media (min-width: 1024px) {
  .site-header__overlay-sidebar {
    display: flex;
    min-height: 0;
    flex-direction: column;
    gap: 32px;
  }
}

@media (min-width: 1024px) {
  .site-header__overlay-sidebar-contact {
    display: flex;
    margin-top: auto;
    padding-top: 48px;
    flex-direction: column;
    gap: 4px;
  }
}

@media (min-width: 1024px) {
  .site-header__overlay-sidebar-phone {
    font-weight: 600;
    font-size: 18px;
  }
}

@media (min-width: 1024px) {
  .site-header__overlay-sidebar-note {
    color: var(--color-gray-600);
    font-size: 13px;
  }
}

@media (min-width: 1024px) {
  .site-header__overlay-content {
    display: flex;
    height: 100%;
    min-height: 0;
    align-items: stretch;
    justify-content: flex-end;
  }
}

@media (min-width: 1024px) {
  .site-header__overlay-solutions-view {
    display: flex;
    width: min(100%, 520px);
    height: 100%;
    min-height: 0;
    flex-direction: column;
  }
}

@media (min-width: 1024px) {
  .site-header__overlay-solutions {
    display: flex;
    height: 100%;
    min-height: 0;
    flex-direction: column;
  }
}

.site-footer {
  background: #f9fafa;
}

.site-footer__inner {
  display: flex;
  padding-block: 42px 34px;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 1024px) {
  .site-footer__inner {
    padding-block: 64px 32px;
    gap: 48px;
  }
}

.site-footer__main {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 1024px) {
  .site-footer__main {
    gap: 32px;
  }
}

.site-footer__top {
  display: grid;
  width: 100%;
  grid-template-areas: "logo social" "office office";
  grid-template-columns: auto auto;
  justify-content: space-between;
  align-items: center;
  row-gap: 24px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .site-footer__top {
    grid-template-areas: "office logo" "social logo";
    align-items: start;
    row-gap: 10px;
  }
}
@media (min-width: 1024px) {
  .site-footer__top {
    grid-template-areas: "office logo" "social logo";
    align-items: start;
    row-gap: 10px;
  }
}

.site-footer__office {
  display: flex;
  grid-area: office;
  flex-direction: column;
  gap: 4px;
}

.site-footer__office .site-footer__phone {
  color: #101111;
  font-weight: 500;
  font-size: 24px;
  font-family: var(--font-family-wide);
  line-height: 1.2;
  transition: color var(--transition-base);
}
@media (min-width: 1024px) {
  .site-footer__office .site-footer__phone {
    font-size: 32px;
  }
}

.site-footer__office .site-footer__phone:hover {
  color: var(--color-brand);
}

.site-footer__office .site-footer__address {
  max-width: none;
  margin: 0;
  color: #6c6c6c;
  font-weight: 400;
  font-size: 16px;
  font-family: var(--font-family);
  line-height: 24px;
}
@media (min-width: 1024px) {
  .site-footer__office .site-footer__address {
    font-size: 18px;
    line-height: 28px;
  }
}

.site-footer__social {
  display: flex;
  grid-area: social;
  margin-bottom: 0;
  padding-top: 0;
  gap: 16px;
  align-items: center;
  justify-self: end;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .site-footer__social {
    justify-self: start;
  }
}
@media (min-width: 1024px) {
  .site-footer__social {
    justify-self: start;
  }
}

.site-footer__logo {
  display: flex;
  grid-area: logo;
  align-items: center;
}

.site-footer__logo-wide {
  display: none;
  width: 346px;
  height: 52px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .site-footer__logo-wide {
    display: block;
  }
}
@media (min-width: 1024px) {
  .site-footer__logo-wide {
    display: block;
  }
}

.site-footer__logo-mark {
  display: block;
  width: 51px;
  height: 46px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .site-footer__logo-mark {
    display: none;
  }
}
@media (min-width: 1024px) {
  .site-footer__logo-mark {
    display: none;
  }
}

.site-footer__info {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 1024px) and (max-width: 1439px) {
  .site-footer__info {
    flex-direction: row;
    justify-content: space-between;
    gap: 48px;
  }
}
@media (min-width: 1440px) {
  .site-footer__info {
    flex-direction: row;
    justify-content: space-between;
  }
}

.site-footer__contacts {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .site-footer__contacts {
    flex-direction: row;
  }
}
@media (min-width: 1024px) {
  .site-footer__contacts {
    width: 345px;
    padding-right: 32px;
    gap: 20px;
    border-right: 1px solid #dddbda;
  }
}

.site-footer__contact-item {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.site-footer__contact-label,
.site-footer__contact-label__with-heart {
  display: flex;
  margin: 0;
  gap: 6px;
  align-items: center;
  color: #6c6c6c;
  font-weight: 400;
  font-size: 18px;
  font-family: var(--font-family);
  line-height: 28px;
}
@media (min-width: 1024px) {
  .site-footer__contact-label,
  .site-footer__contact-label__with-heart {
    font-size: 16px;
    line-height: 24px;
  }
}

.site-footer__contact-icon {
  display: block;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  object-fit: contain;
}

.site-footer__email,
.site-footer__phone {
  width: fit-content;
  color: #303535;
  font-weight: 400;
  font-size: 18px;
  font-family: var(--font-family);
  line-height: 26px;
  transition: color var(--transition-base);
}
@media (min-width: 1024px) {
  .site-footer__email,
  .site-footer__phone {
    font-size: 20px;
    line-height: 28px;
  }
}

.site-footer__email:hover,
.site-footer__phone:hover {
  color: var(--color-brand);
}

.site-footer__columns {
  display: grid;
  padding-top: 40px;
  padding-bottom: 0;
  grid-template-columns: 1fr;
  justify-items: start;
  gap: 32px;
  border-top: 1px solid #dddbda;
}
@media (min-width: 1024px) {
  .site-footer__columns {
    padding-top: 0;
    border-top: none;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .site-footer__columns {
    grid-template-columns: repeat(3, auto);
    justify-items: start;
    gap: 64px;
  }
}
@media (min-width: 1024px) and (max-width: 1439px) {
  .site-footer__columns {
    grid-template-columns: repeat(3, auto);
    justify-items: start;
    gap: 64px;
  }
}
@media (min-width: 1440px) {
  .site-footer__columns {
    grid-template-columns: repeat(3, auto);
    justify-items: start;
    gap: 90px;
  }
}

.site-footer__column-title {
  margin: 0 0 12px;
  color: #6c6c6c;
  font-weight: 400;
  font-size: 18px;
  font-family: var(--font-family);
  line-height: 28px;
}
@media (min-width: 1024px) {
  .site-footer__column-title {
    font-size: 16px;
    line-height: 24px;
  }
}

.site-footer__links {
  display: flex;
  margin: 0;
  padding: 0;
  flex-direction: column;
  gap: 4px;
  list-style: none;
}
@media (min-width: 1024px) {
  .site-footer__links {
    gap: 6px;
  }
}

.site-footer__link {
  color: #101111;
  font-weight: 400;
  font-size: 18px;
  font-family: var(--font-family);
  line-height: 28px;
  letter-spacing: 0%;
  transition: color var(--transition-base);
}

.site-footer__link:hover {
  color: var(--color-brand);
}

/* ── Нижняя полоса ── */
.site-footer__bottom {
  display: flex;
  padding-bottom: 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
@media (min-width: 1024px) and (max-width: 1439px) {
  .site-footer__bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}
@media (min-width: 1440px) {
  .site-footer__bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.site-footer__note {
  margin: 0;
  color: #929292;
  font-weight: 400;
  font-size: 16px;
  font-family: var(--font-family);
  line-height: 24px;
}
@media (min-width: 1024px) {
  .site-footer__note {
    font-size: 14px;
    line-height: 20px;
  }
}

.site-footer__privacy {
  color: #929292;
  font-weight: 400;
  font-size: 16px;
  font-family: var(--font-family);
  line-height: 24px;
  text-decoration: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-underline-offset: 2px;
  letter-spacing: 0%;
  transition: color var(--transition-base);
}
@media (min-width: 1024px) {
  .site-footer__privacy {
    font-size: 14px;
    line-height: 20px;
  }
}

.site-footer__privacy:hover {
  color: var(--color-brand);
}

:root {
  --breadcrumbs-offset: 18px;
  --breadcrumbs-offset-bottom: 8px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  :root {
    --breadcrumbs-offset: 16px;
    --breadcrumbs-offset-bottom: 16px;
  }
}
@media (min-width: 1024px) {
  :root {
    --breadcrumbs-offset: 24px;
    --breadcrumbs-offset-bottom: 24px;
  }
}

.site-breadcrumbs {
  display: flex;
  padding: var(--breadcrumbs-offset) 0 var(--breadcrumbs-offset-bottom);
  align-items: center;
  gap: 6px;
  color: #262626;
  font-weight: 400;
  font-size: 14px;
  font-family: var(--font-family);
  line-height: 20px;
  letter-spacing: 0%;
}

.site-breadcrumbs span {
  color: #acacac;
}

.site-breadcrumbs a {
  transition: color var(--transition-base);
}

.site-breadcrumbs a:hover {
  color: var(--color-brand);
}

.site-breadcrumbs a + *::before {
  margin-right: 6px;
  color: #262626;
  content: "/";
}

.callback-form {
  position: relative;
  background-color: #f9fafa;
  border-bottom: 1px solid #dae0df;
  overflow: hidden;
}

.callback-form__inner {
  position: relative;
  display: flex;
  min-height: 526px;
  max-width: var(--container-max);
  margin-inline: auto;
  padding: 57px 60px;
  gap: 154px;
  align-items: center;
}

.callback-form__intro {
  position: relative;
  z-index: 1;
  display: flex;
  width: 751px;
  max-width: 100%;
  flex-direction: column;
  gap: 32px;
}

.callback-form__title {
  max-width: 573px;
  margin: 0;
  color: #101111;
  font-weight: 500;
  font-size: 42px;
  font-family: var(--font-family);
  line-height: 50px;
}

.callback-form__text {
  max-width: 609px;
  margin: 0;
  color: #6c6c6c;
  font-weight: 400;
  font-size: 20px;
  font-family: var(--font-family);
  line-height: 28px;
}

.callback-form__audit-btn {
  display: inline-flex;
  width: 378px;
  max-width: 100%;
  height: 52px;
  padding: 12px 20px;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-weight: 500;
  font-size: 18px;
  font-family: var(--font-family-wide);
  line-height: 24px;
  background: var(--color-red);
  border: none;
  cursor: pointer;
  transition: background-color var(--transition-base);
}
.callback-form__audit-btn:hover {
  background: var(--color-red-darken);
}

.callback-form__sphere {
  position: absolute;
  top: calc(50% + 15px);
  right: 278px;
  width: 0;
  height: 0;
  pointer-events: none;
}

.callback-form__sphere-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: var(--sphere-layer);
  max-width: none;
  height: var(--sphere-layer);
  margin: calc(var(--sphere-layer) / -2) 0 0 calc(var(--sphere-layer) / -2);
}

.callback-form__sphere-layer--1 {
  --sphere-layer: 384px;
  --sphere-orbit: 10px;
  mix-blend-mode: color-burn;
  filter: saturate(1.4) hue-rotate(-4deg);
  animation: callback-sphere-spin 26s linear infinite, callback-sphere-orbit 19s ease-in-out infinite;
}

.callback-form__sphere-layer--2 {
  --sphere-layer: 322px;
  --sphere-orbit: 16px;
  mix-blend-mode: color-burn;
  filter: saturate(1.4) hue-rotate(-4deg);
  animation: callback-sphere-spin-back 18s linear infinite, callback-sphere-orbit 23s ease-in-out infinite;
  animation-delay: 0s, -6s;
}

.callback-form__sphere-layer--3 {
  --sphere-layer: 320px;
  --sphere-orbit: 22px;
  animation: callback-sphere-spin 32s linear infinite, callback-sphere-orbit 15s ease-in-out infinite;
  animation-delay: 0s, -3s;
}

.callback-form__sphere-layer--mark {
  --sphere-layer: 122px;
  display: block;
  background-color: #f82427;
  mask: url("/template/images/footer-sphere-mark.svg") no-repeat center/contain;
  -webkit-mask: url("/template/images/footer-sphere-mark.svg") no-repeat center/contain;
  animation: callback-sphere-mark-fade 5.9s ease-in-out infinite;
}

@keyframes callback-sphere-spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes callback-sphere-spin-back {
  to {
    transform: rotate(-360deg);
  }
}
@keyframes callback-sphere-orbit {
  0% {
    translate: var(--sphere-orbit) 0;
  }
  25% {
    translate: 0 var(--sphere-orbit);
  }
  50% {
    translate: calc(var(--sphere-orbit) * -1) 0;
  }
  75% {
    translate: 0 calc(var(--sphere-orbit) * -1);
  }
  100% {
    translate: var(--sphere-orbit) 0;
  }
}
@supports not ((mask-image: url("/template/images/footer-sphere-mark.svg")) or (-webkit-mask-image: url("/template/images/footer-sphere-mark.svg"))) {
  .callback-form__sphere-layer--mark {
    background-color: transparent;
  }
}
@keyframes callback-sphere-mark-fade {
  0%, 13% {
    background-color: #feb1ba;
  }
  35%, 60% {
    background-color: #f82427;
  }
  87%, 100% {
    background-color: #feb1ba;
  }
}
@media (prefers-reduced-motion: reduce) {
  .callback-form__sphere-layer {
    animation: none;
  }
}
@media (max-width: 1439px) {
  .callback-form__inner {
    min-height: 440px;
    padding: 48px 40px;
    gap: 40px;
  }
  .callback-form__title {
    font-size: 34px;
    line-height: 42px;
  }
  .callback-form__text {
    font-size: 18px;
    line-height: 26px;
  }
  .callback-form__sphere {
    right: 200px;
  }
  .callback-form__sphere-layer--1 {
    --sphere-layer: 300px;
  }
  .callback-form__sphere-layer--2 {
    --sphere-layer: 252px;
  }
  .callback-form__sphere-layer--3 {
    --sphere-layer: 250px;
  }
  .callback-form__sphere-layer--mark {
    --sphere-layer: 95px;
  }
}
@media (max-width: 1023px) {
  .callback-form__inner {
    min-height: 0;
    padding: 40px var(--gutter-tablet);
    gap: 32px;
  }
  .callback-form__intro {
    width: 100%;
    gap: 24px;
  }
  .callback-form__title {
    font-size: 28px;
    line-height: 36px;
  }
  .callback-form__sphere {
    top: 50%;
    right: 40px;
    opacity: 0.55;
  }
  .callback-form__sphere-layer--1 {
    --sphere-layer: 240px;
  }
  .callback-form__sphere-layer--2 {
    --sphere-layer: 202px;
  }
  .callback-form__sphere-layer--3 {
    --sphere-layer: 200px;
  }
  .callback-form__sphere-layer--mark {
    --sphere-layer: 76px;
  }
}
@media (max-width: 767px) {
  .callback-form__inner {
    padding: 32px var(--gutter-mobile) 40px;
  }
  .callback-form__title {
    font-size: 24px;
    line-height: 32px;
  }
  .callback-form__text {
    font-size: 16px;
    line-height: 24px;
  }
  .callback-form__audit-btn {
    width: 100%;
  }
  .callback-form__sphere {
    display: none;
  }
}
.callback-form__form {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .callback-form__form {
    gap: 20px;
  }
}
@media (min-width: 1024px) and (max-width: 1439px) {
  .callback-form__form {
    gap: 24px;
  }
}
@media (min-width: 1440px) {
  .callback-form__form {
    gap: 24px;
  }
}

.callback-form__fields {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .callback-form__fields {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
}
@media (min-width: 1024px) and (max-width: 1439px) {
  .callback-form__fields {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px 24px;
  }
}
@media (min-width: 1440px) {
  .callback-form__fields {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px 20px;
  }
}

.callback-form__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .callback-form__field--name,
  .callback-form__field--comment {
    grid-column: 1/-1;
  }
}

.callback-form__label {
  color: #111010;
  font-weight: 500;
  font-size: 12px;
  font-family: var(--font-family);
  line-height: 16px;
  letter-spacing: 1%;
}

.callback-form__label:has(+ .callback-form__input[required])::after,
.callback-form__label:has(+ .callback-form__phone [required])::after {
  color: var(--color-brand);
  content: " *";
}

.callback-form__input {
  box-sizing: border-box;
  width: 100%;
  padding: 14px 12px;
  color: var(--color-bw-100);
  font: inherit;
  font-size: 15px;
  font-family: var(--font-family);
  line-height: 20px;
  background-color: #f9fafa;
  border: 1px solid transparent;
  border-radius: 0;
  transition: background-color var(--transition-base), border-color var(--transition-base);
}

.callback-form__input:hover {
  background-color: var(--color-gray-1);
}

.callback-form__input:focus {
  background-color: var(--color-white);
  border-color: var(--color-bw-80);
  outline: none;
}

.callback-form__input::placeholder {
  color: var(--color-muted);
}

.callback-form__phone {
  display: flex;
  align-items: stretch;
  background-color: #f5f5f5;
  border-radius: 4px;
  transition: border-color var(--transition-base);
  overflow: hidden;
}
@media (min-width: 1024px) and (max-width: 1439px) {
  .callback-form__phone {
    border-radius: 6px;
  }
}
@media (min-width: 1440px) {
  .callback-form__phone {
    border-radius: 6px;
  }
}

.callback-form__phone:focus-within {
  box-shadow: inset 0 -1px 0 var(--color-gray-400);
}

.callback-form__phone-prefix {
  display: flex;
  padding: 14px 0 14px 16px;
  flex-shrink: 0;
  align-items: center;
  color: var(--color-gray-400);
  font-size: 15px;
  font-family: var(--font-family);
  line-height: 20px;
}

.callback-form__input--phone {
  padding-left: 8px;
  background-color: transparent;
  border-bottom: none;
  box-shadow: none;
}

.callback-form__textarea {
  min-height: 120px;
  resize: vertical;
}
@media (min-width: 1024px) and (max-width: 1439px) {
  .callback-form__textarea {
    min-height: 140px;
  }
}
@media (min-width: 1440px) {
  .callback-form__textarea {
    min-height: 140px;
  }
}

.callback-form__field--comment {
  grid-column: 1/-1;
}

.callback-form__actions {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .callback-form__actions {
    gap: 20px;
  }
}
@media (min-width: 1024px) and (max-width: 1439px) {
  .callback-form__actions {
    flex-direction: row;
    justify-content: space-between;
  }
}
@media (min-width: 1440px) {
  .callback-form__actions {
    flex-direction: row;
    justify-content: space-between;
  }
}

.callback-form__file {
  cursor: pointer;
}
@media (max-width: 767px) {
  .callback-form__file {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .callback-form__file {
    display: none;
  }
}

.callback-form__file.audit-file {
  display: block;
}

.callback-form__file-text,
.callback-form__file-name {
  color: #111010;
  font-weight: 500;
  font-size: 14px;
  font-family: var(--font-family);
  text-decoration: underline;
  text-decoration-style: solid;
  text-decoration-thickness: 0%;
  text-decoration-skip-ink: auto;
  text-underline-offset: 2px;
  line-height: 20px;
  letter-spacing: 0%;
  transition: color var(--transition-base);
}
.callback-form__file-text:hover,
.callback-form__file-name:hover {
  color: var(--color-brand);
}

.callback-form__file-name {
  margin-left: 8px;
}

.callback-form__file:has(.callback-form__file-name:not(:empty)) .callback-form__file-text {
  display: none;
}

.callback-form__file:has(.callback-form__file-name:not(:empty)) .callback-form__file-name {
  margin-left: 0;
}

.callback-form__file-input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.callback-form__consent {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 10px;
  color: #444444;
  font-weight: 400;
  font-size: 13px;
  font-family: var(--font-family);
  line-height: 20px;
  letter-spacing: 0%;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .callback-form__consent {
    width: 100%;
    max-width: none;
  }
}
@media (min-width: 1024px) and (max-width: 1439px) {
  .callback-form__consent {
    flex: 0 1 auto;
  }
}
@media (min-width: 1440px) {
  .callback-form__consent {
    flex: 0 1 auto;
  }
}

.callback-form__consent input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--color-brand);
}

.callback-form__consent a {
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--transition-base);
}

.callback-form__consent a:hover {
  color: var(--color-brand);
}

.callback-form__submit {
  display: inline-flex;
  width: 100%;
  height: 48px;
  padding: 12px 16px;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-weight: 500;
  font-size: 16px;
  font-family: var(--font-family);
  text-transform: none;
  line-height: 20px;
  letter-spacing: 0%;
  background: var(--color-brand);
  border: none;
  border-radius: 6px;
  transition: opacity var(--transition-base);
  cursor: pointer;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .callback-form__submit {
    width: auto;
    min-width: 200px;
    padding: 12px 32px;
    flex-shrink: 0;
    align-self: flex-start;
  }
}
@media (min-width: 1024px) {
  .callback-form__submit {
    width: 309px;
    flex-shrink: 0;
  }
}
@media (min-width: 1024px) and (max-width: 1439px) {
  .callback-form__submit {
    width: auto;
    min-width: 200px;
    margin-left: auto;
    padding: 12px 32px;
  }
}
@media (min-width: 1440px) {
  .callback-form__submit {
    width: auto;
    min-width: 200px;
    margin-left: auto;
    padding: 12px 32px;
  }
}

.callback-form__submit:hover {
  opacity: 0.88;
}

.callback-form__error {
  position: absolute;
  z-index: 5;
  top: calc(100% + 10px);
  right: 0;
  left: 0;
  display: none;
  color: var(--color-brand);
  font-size: 13px;
  line-height: 1.4;
  pointer-events: none;
}
.callback-form__error.callback-form__error--visible {
  display: block;
  animation: callback-form-error-in 0.25s ease forwards;
}

.callback-form__form:has(.callback-form__error--visible) {
  margin-bottom: 44px;
}

@keyframes callback-form-error-in {
  from {
    opacity: 0;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  padding-top: calc(var(--header-offset) + 20px);
  color: var(--color-black);
  font-size: 16px;
  font-family: var(--font-family);
  line-height: 1.5;
  background: var(--color-white);
}

body:has(.site-breadcrumbs, .breadcrumbs) {
  padding-top: var(--header-offset);
}

body:has(.page-hero, .main-title__section, .about-hero, .main-hero) {
  padding-top: 0;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button {
  padding: 0;
  font: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--gutter-mobile);
}

@media (min-width: 768px) and (max-width: 1023px) {
  .container {
    padding-inline: var(--gutter-tablet);
  }
}
@media (min-width: 1024px) {
  :root {
    --gutter-desktop: 64px;
  }
  .container {
    padding-inline: var(--gutter-desktop);
  }
}
@media (min-width: 1440px) {
  :root {
    --gutter-desktop: 64px;
  }
  .container {
    padding-inline: var(--gutter-desktop);
  }
}

/*# sourceMappingURL=main.css.map */
