/**
 * Modern CSS Reset Tweaks
 * ==================================================
 * A collection of modern CSS reset and normalization styles
 * to ensure consistent behavior across browsers, OS and devices.
 */
/* Ensure consistent font resizing on mobile devices */
html {
  -webkit-text-size-adjust: 100%;
}
html:focus-within {
  scroll-behavior: smooth;
}

/* Basic body setup for layout and text rendering optimization */
body {
  text-size-adjust: 100%;
  position: relative;
  width: 100%;
  min-height: 100dvh;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeSpeed;
}

/* Apply box-sizing globally for consistent element sizing */
*,
::after,
::before {
  box-sizing: border-box;
}

/* Style unclassed links for better accessibility */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/**
 * CSS Reset Tweaks
 * Based on Eric Meyer's CSS Reset v2.0-modified (public domain)
 * URL: http://meyerweb.com/eric/tools/css/reset/
 */
a,
abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
big,
blockquote,
body,
br,
button,
canvas,
caption,
center,
cite,
code,
col,
colgroup,
data,
datalist,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
head,
header,
hgroup,
hr,
html,
i,
iframe,
img,
input,
ins,
kbd,
label,
legend,
li,
link,
main,
map,
mark,
menu,
meta,
meter,
nav,
noscript,
object,
ol,
optgroup,
option,
output,
p,
param,
picture,
pre,
progress,
q,
rb,
rp,
rt,
ruby,
s,
samp,
script,
section,
select,
small,
source,
span,
strong,
style,
svg,
sub,
summary,
sup,
table,
tbody,
td,
template,
textarea,
tfoot,
th,
thead,
time,
title,
tr,
track,
tt,
u,
ul,
var,
video,
wbr {
  font: inherit;
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
}

/* Add focus styles to improve accessibility */
:focus {
  outline: 0;
}

/* Normalize HTML5 elements for older browsers */
article,
aside,
details,
embed,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
object,
section {
  display: block;
}

canvas,
iframe {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Remove default list styling */
ol,
ul {
  list-style: none;
}

/* Normalize quote styling */
blockquote,
q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before,
q:after {
  content: none;
}

/* Reset and normalize form inputs */
input:required,
input {
  box-shadow: none;
}

/* Autofill styling for better compatibility */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px white inset;
}

/* Improve appearance of search inputs */
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  -webkit-appearance: none;
  -moz-appearance: none;
}

input[type=search] {
  -webkit-appearance: none;
  -moz-appearance: none;
  box-sizing: content-box;
}

textarea {
  overflow: auto;
  vertical-align: top;
  resize: vertical;
}

input:focus {
  outline: none;
}

video {
  background: #000;
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address styling not present in IE 7/8/9, Firefox 3, and Safari 4.
 */
[hidden] {
  display: none !important;
}

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: none;
}

/**
 * Make media easier to work with
 */
audio,
img,
picture,
svg,
video {
  max-width: 100%;
  display: inline-block;
  vertical-align: middle;
  height: auto;
}

/**
 * Address Firefox 3+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
button,
input {
  line-height: normal;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Chrome, Safari 5+, and IE 6+.
 * Correct `select` style inheritance in Firefox 4+ and Opera.
 */
button,
select {
  text-transform: none;
}

button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button;
  cursor: pointer;
  border: 0;
  background: transparent;
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}

/* Additional attribute handling for accessibility */
[disabled],
[disabled=true],
[aria-disabled=true] {
  pointer-events: none;
}

/**
 * Address box sizing set to content-box in IE 8/9.
 */
input[type=checkbox],
input[type=radio] {
  padding: 0;
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
 *    (include `-moz` to future-proof).
 */
input[type=search] {
  -webkit-appearance: textfield;
  box-sizing: content-box;
}

/**
 * Remove inner padding and search cancel button in Safari 5 and Chrome
 * on OS X.
 */
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Remove inner padding and border in Firefox 3+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

button {
  border: 0;
  background: transparent;
}

textarea {
  overflow: auto;
  vertical-align: top;
  resize: vertical;
}

/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
  text-indent: 0;
}

/**
 * Based on normalize.css v8.0.1
 * github.com/necolas/normalize.css
 */
hr {
  box-sizing: content-box;
  overflow: visible;
  background: #000;
  border: 0;
  height: 1px;
  line-height: 0;
  margin: 0;
  padding: 0;
  page-break-after: always;
  width: 100%;
}

/**
 * Correct the inheritance and scaling of font size in all browsers.
 */
pre {
  font-family: monospace, monospace;
  font-size: 100%;
}

/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  text-decoration: none;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 75%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -5px;
}

sup {
  top: -5px;
}

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1;
  margin: 0;
  padding: 0;
}

/**
 * Show the overflow in IE and Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
  outline: 0;
}

legend {
  color: inherit;
  white-space: normal;
  display: block;
  border: 0;
  max-width: 100%;
  width: 100%;
}

fieldset {
  min-width: 0;
}

body:not(:-moz-handler-blocked) fieldset {
  display: block;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
   ========================================================================== */
template {
  display: none;
}

@font-face {
  font-family: "Verdana Custom";
  src: url("/resources/websites/parallel-ai/fonts/Verdana.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Verdana Custom";
  src: url("/resources/websites/parallel-ai/fonts/Verdana-Italic.ttf") format("truetype");
  font-style: italic;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Verdana Custom";
  src: url("/resources/websites/parallel-ai/fonts/Verdana-Bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "Verdana Custom";
  src: url("/resources/websites/parallel-ai/fonts/Verdana-BoldItalic.ttf") format("truetype");
  font-style: italic;
  font-weight: 700;
  font-display: swap;
}
:root {
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #0f0f0f;
  min-width: 360px;
}
body.body--menu-open, body.body--filter-open, body.body--modal-open {
  overflow: hidden;
}

main {
  overflow: hidden;
}

img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.ymaps3--controls {
  display: none !important;
}

.ymaps3--main-engine-container {
  filter: grayscale(100%) !important;
}

:root {
  font-family: "Verdana Custom", Arial, sans-serif;
}

html {
  font-size: 14px;
}

body {
  color: #ffffff;
}

a {
  color: #ffffff;
  text-decoration: none;
  text-underline-offset: 3px;
  transition: color 0.3s ease;
}

b {
  font-weight: 700;
}

h1, .h1,
h2, .h2 {
  font-size: 25px;
  font-weight: 700;
}

h3, .h3 {
  font-size: 20px;
  font-weight: 700;
}

.pretitle {
  display: block;
  margin-bottom: 20px;
  color: #cf68ff;
  font-size: 18px;
  text-transform: uppercase;
}
.pretitle--dark {
  color: #7109aa;
}

.subtitle {
  padding-top: 20px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
  h1, .h1,
  h2, .h2 {
    font-size: 35px;
  }
}
@media (min-width: 1024px) {
  h1, .h1,
  h2, .h2 {
    font-size: 45px;
  }
}
.container {
  max-width: 1290px;
  width: 100%;
  margin: 0 auto;
  padding-right: 10px;
  padding-left: 10px;
}
.container--narrow {
  max-width: 1070px;
}

@media (min-width: 576px) {
  .container {
    padding-right: 20px;
    padding-left: 20px;
  }
}
@media (min-width: 1330px) {
  .container {
    padding-right: 0;
    padding-left: 0;
  }
}
.color-black {
  color: #0f0f0f !important;
}

.color-white {
  color: #ffffff !important;
}

.color-grey-light {
  color: #f4f4f4 !important;
}

.color-grey {
  color: #a2a2a2 !important;
}

.color-grey-dark {
  color: #1a1a1a !important;
}

.color-primary {
  color: #7109aa !important;
}

.color-secondary {
  color: #cf68ff !important;
}

.w-100 {
  inline-size: 100% !important;
}

.w-auto {
  inline-size: auto !important;
}

.w-250 {
  inline-size: 250px !important;
}

.header {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: #0f0f0f;
}
.header__top, .header__bar {
  background: #0f0f0f;
  border-bottom: 1px solid #a2a2a2;
}
.header__top {
  display: none;
}
.header__bar {
  height: 63px;
  display: flex;
  align-items: center;
}
.header__content {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
}
.header__menu {
  position: fixed;
  top: 63px;
  right: 0;
  left: 0;
  height: calc(100dvh - 63px);
  display: none;
  border-bottom: 1px solid rgba(207, 104, 255, 0.35);
  background: #0f0f0f;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}
.header__menu.is-open {
  display: block;
}
.header__menu > .container {
  height: 100%;
}
.header__menu-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 40px 0;
}
.header__menu-nav {
  padding-bottom: 40px;
}
.header__menu-footer {
  border-top: 1px solid #ffffff;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: auto;
  padding-top: 40px;
}
.header__menu-contacts {
  display: flex;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 16px;
}
.header__menu-contacts .header__contact-link {
  font-weight: 400;
  line-height: 1.4;
}
.header__menu-contacts .header__contact-link::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.header__menu-contacts .header__contact-link.header__contact-link--phone::before {
  background-image: url("/resources/websites/parallel-ai/images/icons/phone-secondary.svg");
}
.header__menu-contacts .header__contact-link.header__contact-link--email::before {
  background-image: url("/resources/websites/parallel-ai/images/icons/email-secondary.svg");
}
.header__logo {
  height: 32px;
}
.header__logo-image {
  display: block;
  width: auto;
}
.header__navigation {
  display: none;
}
.header__contacts {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  text-align: center;
}
.header__contacts .header__contact-link {
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 5px;
}
.header__contacts .header__contact-link:hover {
  color: #cf68ff;
}
.header__contact-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.header a:focus-visible,
.header button:focus-visible {
  outline: 2px solid #cf68ff;
  outline-offset: 4px;
}
.header__callback-button {
  color: #ffffff;
  font-size: 10px;
  text-decoration: underline;
  text-decoration-thickness: 0;
  text-decoration-skip-ink: auto;
}
.header__callback-button:hover {
  color: #cf68ff;
}
.header__burger {
  display: flex;
  align-items: center;
  justify-content: center;
}
.header__burger-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.header__burger-line {
  position: absolute;
  left: 9px;
  width: 26px;
  height: 2px;
  border-radius: 999px;
  background: #cf68ff;
  transition: transform 0.2s ease, opacity 0.2s ease, top 0.2s ease;
}
.header__burger-line:nth-child(1) {
  top: 12px;
}
.header__burger-line:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.header__burger-line:nth-child(3) {
  top: 30px;
}
.header__burger-button.is-active .header__burger-line:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.header__burger-button.is-active .header__burger-line:nth-child(2) {
  opacity: 0;
}
.header__burger-button.is-active .header__burger-line:nth-child(3) {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

@media (prefers-reduced-motion: reduce) {
  .header__burger-line {
    transition: none;
  }
}
@media (min-width: 576px) {
  .header__callback-button {
    max-width: 250px;
  }
}
@media (min-width: 1024px) {
  .header {
    top: -60px;
  }
  .header__top {
    display: block;
    height: 60px;
  }
  .header__top-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .header__top-left {
    width: 436px;
    font-size: 12px;
  }
  .header__top-button {
    color: #ffffff;
    font-size: 14px;
  }
  .header__top-button:hover {
    color: #cf68ff;
  }
  .header__bar {
    height: 81px;
  }
  .header__navigation {
    display: block;
  }
  .header__contacts {
    text-align: right;
  }
  .header__contact-link {
    margin-left: auto;
    font-size: 14px;
  }
  .header__callback-button {
    margin-left: auto;
    font-size: 12px;
  }
  .header__menu, .header__burger {
    display: none !important;
  }
}
@media (min-width: 1330px) {
  .header__logo {
    height: 40px;
  }
  .header__top-button {
    font-size: 16px;
  }
  .header__contact-link {
    font-size: 18px;
  }
  .header__callback-button {
    font-size: 14px;
  }
}
.footer {
  border-top: 1px solid #7109aa;
}
.footer__section {
  padding-top: 60px;
  padding-bottom: 60px;
}
.footer__section-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
.footer__nav-groups {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
.footer__nav-group {
  width: 100%;
}
.footer__nav-title {
  font-size: 18px;
  letter-spacing: 5%;
  text-transform: uppercase;
  margin-bottom: 30px;
}
.footer__nav-link {
  display: block;
  width: fit-content;
  margin-bottom: 15px;
}
.footer__nav-link:hover {
  color: #cf68ff;
}
.footer__nav-link:last-child {
  margin-bottom: 0;
}
.footer__nav-link--phone, .footer__nav-link--email, .footer__nav-link--address {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.footer__nav-link--phone::before, .footer__nav-link--email::before, .footer__nav-link--address::before {
  content: "";
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.footer__nav-link--phone::before {
  background-image: url("/resources/websites/parallel-ai/images/icons/phone.svg");
}
.footer__nav-link--email::before {
  background-image: url("/resources/websites/parallel-ai/images/icons/email.svg");
}
.footer__nav-link--address::before {
  background-image: url("/resources/websites/parallel-ai/images/icons/location.svg");
}
.footer__legal {
  background-color: #1a1a1a;
  padding-top: 60px;
  padding-bottom: 60px;
}
.footer__legal-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.footer__legal-link {
  font-weight: 700;
  color: #a2a2a2;
}
.footer__legal-link:hover {
  color: #cf68ff;
}
.footer__copyright {
  font-size: 12px;
  color: #a2a2a2;
}
.footer__copyright-line {
  display: block;
}
.footer__copyright-line:first-child {
  margin-bottom: 10px;
}
.footer__logo {
  width: 190px;
  margin-bottom: 20px;
}

@media (min-width: 576px) {
  .footer__nav-group {
    width: calc(50% - 20px);
  }
}
@media (min-width: 1024px) {
  .footer__nav-groups {
    gap: 30px;
  }
  .footer__nav-group {
    width: calc(33.33333% - 30px);
    order: 0;
  }
  .footer__nav-group--contacts {
    order: 1;
  }
  .footer__legal {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .footer__legal-content {
    flex-wrap: nowrap;
    gap: 30px;
  }
  .footer__legal-item {
    order: 1;
  }
  .footer__legal-link {
    font-size: 14px;
  }
  .footer__copyright {
    order: 0;
  }
  .footer__copyright-line:first-child {
    margin-bottom: 0;
  }
}
@media (min-width: 1330px) {
  .footer__section-content {
    flex-wrap: nowrap;
    gap: 30px;
  }
  .footer__company {
    flex: 0 0 190px;
    width: 190px;
    font-size: 14px;
  }
  .footer__logo {
    width: 100%;
    margin-bottom: 45px;
  }
  .footer__nav-groups {
    flex-wrap: nowrap;
    gap: 30px;
  }
  .footer__nav-group {
    width: 190px;
  }
  .footer__nav-link {
    font-size: 14px;
  }
  .footer__legal-content {
    align-items: center;
    justify-content: space-between;
  }
  .footer__copyright {
    width: 518px;
  }
}
.btn {
  display: inline-flex;
  box-sizing: border-box;
  align-items: center;
  justify-content: center;
  gap: 8px;
  block-size: 37px;
  padding: 12px 18px;
  border: 2px solid transparent;
  border-radius: 5px;
  font: inherit;
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}
.btn:focus-visible {
  outline: 2px solid #cf68ff;
  outline-offset: 2px;
}
.btn:disabled, .btn.is-disabled {
  opacity: 0.5;
  pointer-events: none;
}

.btn-fluid {
  inline-size: 100%;
}

.btn-filter-control {
  min-block-size: 40px;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 14px;
  line-height: 1.2;
  white-space: nowrap;
}

.btn-icon {
  inline-size: 40px;
  block-size: 40px;
  padding: 0;
  border-radius: 50%;
  flex-shrink: 0;
}

.btn-icon-arrow::before {
  content: "";
  inline-size: 24px;
  min-inline-size: 24px;
  block-size: 15px;
  order: 1;
  flex-shrink: 0;
  background-color: currentColor;
  -webkit-mask: center/contain no-repeat url("/resources/websites/parallel-ai/images/icons/button-arrow.svg");
  mask: center/contain no-repeat url("/resources/websites/parallel-ai/images/icons/button-arrow.svg");
}

.btn-primary {
  background: #7109aa;
  border-color: #7109aa;
  color: #ffffff;
}

.btn-secondary {
  background: #cf68ff;
  border-color: #cf68ff;
  color: #0f0f0f;
}

.btn-cta {
  block-size: 53px;
  border: 0;
  background: #cf68ff;
  color: #0f0f0f;
  font-weight: 700;
}
.btn-cta:hover, .btn-cta:focus-visible {
  background: #ffffff;
  color: #0f0f0f;
}

.btn-outline-primary,
.btn-primary-outline {
  background: transparent;
  border-color: transparent;
  box-shadow: inset 0 0 0 1px #7109aa;
  color: #7109aa;
}
.btn-outline-primary:hover,
.btn-primary-outline:hover {
  border-color: #7109aa;
  box-shadow: none;
  opacity: 1;
}

.btn-outline-secondary,
.btn-secondary-outline {
  background: transparent;
  border-color: transparent;
  box-shadow: inset 0 0 0 1px #cf68ff;
  color: #cf68ff;
}
.btn-outline-secondary:hover,
.btn-secondary-outline:hover {
  border-color: #cf68ff;
  box-shadow: none;
  opacity: 1;
}

.btn-outline-white,
.btn-white-outline {
  background: transparent;
  border-color: transparent;
  box-shadow: inset 0 0 0 1px #ffffff;
  color: #ffffff;
}
.btn-outline-white:hover,
.btn-white-outline:hover {
  border-color: #ffffff;
  box-shadow: none;
  opacity: 1;
}

.btn-icon.btn-primary:hover {
  background: #cf68ff;
  border-color: #cf68ff;
  color: #ffffff;
}

.btn-icon.btn-secondary:hover {
  background: #7109aa;
  border-color: #7109aa;
  color: #0f0f0f;
}

.btn-icon.btn-outline-secondary:hover,
.btn-icon.btn-secondary-outline:hover {
  border-color: #ffffff;
  color: #ffffff;
}

.btn-icon.btn-outline-primary:hover,
.btn-icon.btn-primary-outline:hover {
  border-color: #cf68ff;
  color: #cf68ff;
}

.link {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.link-primary {
  color: #7109aa;
}

.link-secondary {
  color: #cf68ff;
}
.link-secondary:hover {
  color: #ffffff;
}

.link-white {
  color: #ffffff;
}
.link-white:hover {
  color: #cf68ff;
}

.link-muted {
  color: #a2a2a2;
}

.link-underline {
  text-decoration: underline;
}

.link-circle-arrow {
  --link-circle-arrow-color: #ffffff;
  --link-circle-arrow-hover-color: #cf68ff;
  display: inline-flex;
  align-items: center;
  position: relative;
  width: fit-content;
  min-block-size: 40px;
  padding-right: 50px;
  color: var(--link-circle-arrow-color);
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}
.link-circle-arrow:hover, .link-circle-arrow:focus-visible {
  color: var(--link-circle-arrow-hover-color);
  opacity: 1;
}
.link-circle-arrow:focus-visible {
  outline: 2px solid var(--link-circle-arrow-hover-color);
  outline-offset: 4px;
  border-radius: 5px;
}
.link-circle-arrow::before, .link-circle-arrow::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}
.link-circle-arrow::before {
  inline-size: 40px;
  block-size: 40px;
  border-radius: 50%;
  box-shadow: inset 0 0 0 2px currentColor;
}
.link-circle-arrow::after {
  inline-size: 24px;
  block-size: 15px;
  right: 8px;
  background-color: currentColor;
  -webkit-mask: center/contain no-repeat url("/resources/websites/parallel-ai/images/icons/button-arrow.svg");
  mask: center/contain no-repeat url("/resources/websites/parallel-ai/images/icons/button-arrow.svg");
}
.link-circle-arrow--secondary {
  --link-circle-arrow-color: #cf68ff;
  --link-circle-arrow-hover-color: #ffffff;
}

.tag {
  display: inline-block;
  padding: 7px 10px;
  border: 1px solid #ffffff;
  border-radius: 5px;
  background-color: #ffffff;
  font-size: 12px;
  line-height: 14px;
  color: #a2a2a2;
  text-decoration: none;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.tag:hover, .tag:focus-visible {
  color: #cf68ff;
  border-color: #cf68ff;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #cf68ff;
  background-position: center;
  background-repeat: no-repeat;
}
.social-link:hover {
  background-color: #7109aa;
}
.social-link--max {
  background-image: url("/resources/websites/parallel-ai/images/icons/max.svg");
}
.social-link--vk {
  background-image: url("/resources/websites/parallel-ai/images/icons/vk.svg");
}

@media (min-width: 1024px) {
  .btn:not(.btn-icon):not(.btn-filter-control):not(.btn-cta) {
    block-size: 57px;
  }
  .link-circle-arrow {
    min-block-size: 40px;
    padding-right: 50px;
  }
  .link-circle-arrow::before {
    inline-size: 40px;
    block-size: 40px;
  }
  .link-circle-arrow::after {
    right: 8px;
  }
  .tag {
    font-size: 14px;
    line-height: 17px;
  }
}
.breadcrumbs {
  max-width: 1290px;
  width: 100%;
  margin: 0 auto;
  padding-right: 10px;
  padding-left: 10px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.breadcrumbs-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.95rem;
}

.breadcrumbs-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
}
.breadcrumbs-item:not(:last-child)::after {
  content: "";
  inline-size: 10px;
  block-size: 6px;
  flex-shrink: 0;
  background: center/contain no-repeat url("/resources/websites/parallel-ai/images/icons/breadcrumb-arrow.png");
}

.breadcrumbs-link {
  color: #cf68ff;
  text-decoration: none;
  opacity: 0.6;
}
.breadcrumbs-link:hover {
  opacity: 1;
}

.breadcrumbs-current {
  color: #cf68ff;
}

@media (min-width: 576px) {
  .breadcrumbs {
    padding-right: 20px;
    padding-left: 20px;
  }
}
@media (min-width: 1024px) {
  .breadcrumbs {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media (min-width: 1330px) {
  .breadcrumbs {
    padding-right: 0;
    padding-left: 0;
  }
}
.ui-check-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: inherit;
}
.ui-check-list__item {
  position: relative;
  padding-left: 25px;
  line-height: 1.3;
}
.ui-check-list__item::before {
  content: "";
  position: absolute;
  top: 0.35em;
  left: 0;
  width: 15px;
  height: 10px;
  background-color: #cf68ff;
  -webkit-mask: center/contain no-repeat url("/resources/websites/parallel-ai/images/icons/check.svg");
  mask: center/contain no-repeat url("/resources/websites/parallel-ai/images/icons/check.svg");
}

.ui-form {
  width: 100%;
}
.ui-form__fields {
  display: grid;
  gap: 30px;
  margin-bottom: 40px;
}
.ui-form__field {
  display: block;
}
.ui-form__field--full {
  grid-column: 1/-1;
}
.ui-form__field.is-error .ui-form__field-control {
  border-bottom-color: #e03616;
}
.ui-form__field:has(> .ui-form__error.jax-visible) .ui-form__field-control {
  border-bottom-color: #e03616;
}
.ui-form__field-control {
  width: 100%;
  padding: 0 0 12px 5px;
  border: 0;
  border-bottom: 1px solid #7109aa;
  color: #ffffff;
  background: transparent;
  line-height: 1.2;
}
.ui-form__field-control::placeholder {
  color: #a2a2a2;
}
.ui-form__field-control:not(:placeholder-shown) {
  border-bottom-color: #cf68ff;
}
.ui-form__field-control:-webkit-autofill, .ui-form__field-control:-webkit-autofill:hover, .ui-form__field-control:-webkit-autofill:focus, .ui-form__field-control:-webkit-autofill:active {
  -webkit-text-fill-color: #ffffff;
  caret-color: #ffffff;
  border-bottom-color: #cf68ff;
  -webkit-box-shadow: 0 0 0 30px #1a1a1a inset;
  box-shadow: 0 0 0 30px #1a1a1a inset;
}
.ui-form__field-control:focus-visible {
  outline: none;
  border-bottom-color: #cf68ff;
}
.ui-form__consents {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 30px;
}
.ui-form__consent {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  color: #ffffff;
  cursor: pointer;
}
.ui-form__consent-item.is-error .ui-form__consent-box {
  border-color: #e03616;
}
.ui-form__consent-item:has(> .ui-form__error.jax-visible) .ui-form__consent-box {
  border-color: #e03616;
}
.ui-form__consent-input {
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  margin: 0;
  opacity: 0;
  cursor: pointer;
}
.ui-form__consent-input:focus-visible + .ui-form__consent-box {
  outline: 1px solid #cf68ff;
  outline-offset: 2px;
}
.ui-form__consent-input:checked + .ui-form__consent-box::before {
  opacity: 1;
}
.ui-form__consent-box {
  position: relative;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  border: 1px solid #cf68ff;
  border-radius: 6px;
  background: transparent;
}
.ui-form__consent-box::before {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 14px;
  height: 9px;
  transform: translate(-50%, -50%);
  opacity: 0;
  background: center/contain no-repeat url("/resources/websites/parallel-ai/images/icons/check-secondary.svg");
  transition: opacity 0.2s ease;
}
.ui-form__consent-text {
  flex: 1 1 auto;
  font-size: 10px;
  line-height: 1.3;
}
.ui-form__consent-link {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.ui-form__consent-link:hover, .ui-form__consent-link:focus-visible {
  cursor: pointer;
  color: #cf68ff;
}
.ui-form__error {
  display: none;
  padding-top: 5px;
  color: #e03616;
  font-size: 10px;
  line-height: 1.3;
}
.ui-form__error.jax-visible {
  display: block;
}

@media (min-width: 768px) {
  .ui-form__fields {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .ui-form__field-control {
    padding: 0 0 20px 5px;
  }
  .ui-form__consent-text {
    font-size: 12px;
  }
}
.navigation__list, .navigation__sublist {
  margin: 0;
  padding: 0;
  list-style: none;
}
.navigation__list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.navigation__item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.navigation__item--has-children {
  gap: 20px;
}
.navigation__item--has-children.is-open .navigation__toggle {
  color: #cf68ff;
}
.navigation__item--has-children.is-open .navigation__chevron {
  transform: rotate(0deg);
}
.navigation__link, .navigation__sublink {
  color: #ffffff;
  text-decoration: none;
}
.navigation__link:focus-visible, .navigation__sublink:focus-visible, .navigation__toggle:focus-visible {
  outline: 2px solid #cf68ff;
  outline-offset: 4px;
}
.navigation__link {
  font-size: 14px;
}
.navigation__link.is-active {
  color: #cf68ff;
}
.navigation__link--label {
  display: inline-block;
}
.navigation__link:hover {
  color: #cf68ff;
}
.navigation__toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 0;
  border: 0;
  color: #ffffff;
  background: transparent;
  cursor: pointer;
  transition: color 0.2s ease;
}
.navigation__toggle:hover {
  color: #cf68ff;
}
.navigation__toggle .navigation__link--label {
  color: inherit;
}
.navigation__chevron {
  width: 10px;
  height: 6px;
  flex-shrink: 0;
  background-color: currentColor;
  -webkit-mask: center/contain no-repeat url("/resources/websites/parallel-ai/images/icons/chevron.svg");
  mask: center/contain no-repeat url("/resources/websites/parallel-ai/images/icons/chevron.svg");
  transform: rotate(180deg);
  transition: transform 0.2s ease, background-color 0.2s ease;
}
.navigation__sublist {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-left: 10px;
}
.navigation__sublist[hidden] {
  display: none;
}
.navigation__sublink {
  font-size: 12px;
  line-height: 1.4;
  color: #ffffff;
}
.navigation__sublink.is-active, .navigation__sublink:hover {
  color: #cf68ff;
}
.navigation--mobile {
  padding: 20px 0 24px;
}

@media (prefers-reduced-motion: reduce) {
  .navigation__toggle,
  .navigation__chevron {
    transition: none;
  }
}
@media (min-width: 1024px) {
  .navigation--desktop .navigation__list {
    flex-direction: row;
    align-items: center;
    gap: 15px;
  }
  .navigation--desktop .navigation__item {
    gap: 0;
  }
  .navigation--desktop .navigation__item--has-children {
    position: relative;
    gap: 0;
    padding-top: 15px;
    padding-bottom: 15px;
    margin-top: -15px;
    margin-bottom: -15px;
  }
  .navigation--desktop .navigation__item--has-children::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 20px;
  }
  .navigation--desktop .navigation__toggle {
    align-items: center;
  }
  .navigation--desktop .navigation__sublist {
    position: absolute;
    top: calc(100% + 20px);
    left: 0;
    z-index: 5;
    min-width: 220px;
    padding: 16px;
    background: #0f0f0f;
  }
  .navigation__link {
    font-size: 12px;
  }
}
@media (min-width: 1330px) {
  .navigation--desktop .navigation__list {
    gap: 30px;
  }
  .navigation__link, .navigation__sublink {
    font-size: 14px;
  }
}
.docs-card {
  position: relative;
}
.docs-card__line {
  display: block;
  width: 140px;
  height: 3px;
  border-radius: 999px;
  background-color: #ffccff;
  box-shadow: 0 0 4px 2px rgba(207, 104, 255, 0.75), 0 0 10px 4px rgba(113, 9, 170, 0.8), 0 4px 4px rgba(15, 15, 15, 0.25);
  position: absolute;
  top: -2px;
  left: 30px;
  z-index: 1;
}
.docs-card__content {
  position: relative;
  height: 100%;
  background-color: rgba(15, 15, 15, 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid #cf68ff;
  border-radius: 5px;
  padding: 40px 20px;
  z-index: 2;
}
.docs-card__title {
  color: #cf68ff;
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 18px;
  padding-left: 60px;
  text-transform: uppercase;
  min-height: 60px;
  margin-bottom: 20px;
}
.docs-card__title::before {
  content: "";
  position: absolute;
  left: 0;
  width: 40px;
  height: 60px;
  background: url("/resources/websites/parallel-ai/images/icons/pdf.svg") center/contain no-repeat;
}
.docs-card__link {
  display: block;
  width: fit-content;
  margin-top: 20px;
}

@media (min-width: 1024px) {
  .docs-card__title {
    font-size: 20px;
  }
}
.info-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.info-grid__row {
  display: contents;
}
.info-grid__item {
  flex: 0 0 100%;
  padding: 30px 20px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 5px;
}
.info-grid__dots {
  display: inline-grid;
  grid-template-rows: repeat(2, 12px);
  grid-auto-flow: column;
  grid-auto-columns: 12px;
  gap: 5px;
  margin-bottom: 65px;
}
.info-grid__dot {
  display: block;
  width: 12px;
  height: 12px;
  border: 1px solid #cf68ff;
  border-radius: 50%;
}
.info-grid__dot--fill {
  background-color: #cf68ff;
}
.info-grid__title {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 700;
}

.info-grid-section--bg .section__description {
  max-width: 630px;
}

@media (min-width: 768px) {
  .info-grid__item {
    flex: 0 0 calc((100% - 15px) / 2);
  }
}
@media (min-width: 1024px) {
  .info-grid {
    gap: 20px;
  }
  .info-grid__row {
    display: flex;
    flex: 0 0 100%;
    flex-wrap: wrap;
    gap: 20px;
  }
  .info-grid__row:first-child {
    justify-content: flex-start;
  }
  .info-grid__row:last-child {
    justify-content: flex-end;
  }
  .info-grid__item {
    flex: 0 0 310px;
  }
  .info-grid-8 .info-grid__row {
    display: contents;
  }
  .info-grid-8 .info-grid__item {
    flex: 0 0 calc((100% - 40px) / 3);
  }
  .info-grid-4 .info-grid__item {
    flex-basis: 400px;
  }
}
@media (min-width: 1330px) {
  .info-grid {
    gap: 60px;
  }
  .info-grid__row {
    gap: 60px;
  }
  .info-grid-4 .info-grid__item {
    flex-basis: 520px;
  }
  .info-grid-6 .info-grid__item {
    flex-basis: 330px;
  }
  .info-grid-8 {
    gap: 30px;
  }
  .info-grid-8 .info-grid__row {
    display: flex;
    gap: 30px;
  }
  .info-grid-8 .info-grid__item {
    flex-basis: 300px;
    padding-top: 35px;
    padding-bottom: 35px;
  }
  .info-grid-section {
    position: relative;
  }
  .info-grid-section::before {
    pointer-events: none;
    content: "";
    position: absolute;
    width: 399px;
    height: 399px;
    border-radius: 50%;
    background: url("/resources/websites/parallel-ai/images/radial-sm.svg");
    background-size: contain;
    background-position: center;
    bottom: -365px;
    left: -436px;
    z-index: 1;
  }
}
@media (min-width: 1330px) and (min-width: 1024px) {
  .info-grid-section::before {
    width: 999px;
    height: 999px;
    background: url("/resources/websites/parallel-ai/images/radial.svg");
  }
}
@media (min-width: 1330px) {
  .info-grid-section .container {
    position: relative;
    z-index: 1;
  }
}
.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal--open {
  display: flex;
}
.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.modal__window {
  position: relative;
  width: 100%;
  max-width: 690px;
  max-height: calc(100dvh - 40px);
  overflow-y: auto;
  background: #1a1a1a;
  border-radius: 5px;
  padding: 40px 20px 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}
.modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 20px;
  height: 20px;
  padding: 0;
  border: none;
  background: transparent;
  color: #cf68ff;
  cursor: pointer;
  transition: color 0.2s ease, opacity 0.2s ease;
}
.modal__close:hover {
  color: #ffffff;
}
.modal__close svg {
  display: block;
  width: 100%;
  height: 100%;
}
.modal__pretitle {
  display: block;
  margin-bottom: 20px;
  color: #cf68ff;
  font-size: 18px;
  text-transform: uppercase;
}
.modal__title {
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 50px;
}
.modal__subtitle {
  margin-bottom: 30px;
  color: #a2a2a2;
  line-height: 1.6;
}
.modal__actions {
  display: flex;
  justify-content: center;
  padding-top: 10px;
}

@media (min-width: 1024px) {
  .modal__window {
    padding: 60px 30px 30px;
  }
  .modal__close {
    top: 30px;
    right: 30px;
  }
  .modal__title {
    font-size: 35px;
  }
}
.modal--quiz {
  padding: 10px;
}
.modal--quiz .modal__window {
  max-width: 1080px;
  max-height: calc(100dvh - 20px);
  padding: 0;
  overflow-y: auto;
  background: #1a1a1a;
}
.modal--quiz .modal__close {
  z-index: 3;
  top: 32px;
  right: 18px;
  width: 22px;
  height: 22px;
}

.car-quiz__visual {
  position: relative;
  display: none;
  min-height: 620px;
  padding: 32px 28px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(15, 15, 15, 0.08) 0%, rgba(15, 15, 15, 0.88) 100%), center/cover no-repeat url("/resources/websites/parallel-ai/images/hero/car-selection-lg.webp");
}
.car-quiz__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(207, 104, 255, 0.22), transparent 50%);
  pointer-events: none;
}
.car-quiz__time, .car-quiz__visual-copy, .car-quiz__visual-meta {
  position: relative;
  z-index: 1;
}
.car-quiz__time {
  align-self: flex-start;
  width: fit-content;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 99px;
  background: rgba(15, 15, 15, 0.3);
  font-size: 12px;
  line-height: 1;
  backdrop-filter: blur(8px);
}
.car-quiz__visual-copy {
  margin-top: auto;
}
.car-quiz__visual-copy strong {
  display: block;
  max-width: 280px;
  font-size: 32px;
  line-height: 1.1;
}
.car-quiz__visual-kicker {
  display: block;
  margin-bottom: 12px;
  color: #cf68ff;
  font-size: 14px;
  text-transform: uppercase;
}
.car-quiz__visual-meta {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
}
.car-quiz__visual-meta span {
  color: #cf68ff;
  font-size: 26px;
  font-weight: 700;
}
.car-quiz__form {
  min-width: 0;
  padding: 30px 20px;
}
.car-quiz__progress {
  padding-right: 38px;
  margin-bottom: 36px;
}
.car-quiz__progress-copy {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
  color: #a2a2a2;
  font-size: 11px;
  text-transform: uppercase;
}
.car-quiz__progress-copy strong {
  color: #cf68ff;
}
.car-quiz__progress-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
}
.car-quiz__progress-track span {
  height: 3px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.14);
  transition: background-color 0.25s ease;
}
.car-quiz__progress-track span.is-complete {
  background: #cf68ff;
}
.car-quiz__step {
  animation: car-quiz-step-in 0.28s ease both;
}
.car-quiz__step[hidden] {
  display: none;
}
.car-quiz__eyebrow {
  display: block;
  margin-bottom: 12px;
  color: #cf68ff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.car-quiz__title {
  max-width: 680px;
  margin-bottom: 10px;
  padding-right: 20px;
  font-size: 25px;
  line-height: 1.15;
}
.car-quiz__title:focus {
  outline: none;
}
.car-quiz__hint, .car-quiz__description {
  color: #a2a2a2;
  line-height: 1.45;
}
.car-quiz__hint {
  margin-bottom: 24px;
  font-size: 13px;
}
.car-quiz__description {
  max-width: 670px;
  margin-bottom: 32px;
  font-size: 13px;
}
.car-quiz__options {
  display: grid;
  gap: 10px;
}
.car-quiz__option {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 54px;
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.035);
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}
.car-quiz__option:hover {
  border-color: rgba(207, 104, 255, 0.65);
  background: rgba(207, 104, 255, 0.07);
}
.car-quiz__option:has(input:checked) {
  border-color: #cf68ff;
  background: rgba(207, 104, 255, 0.12);
}
.car-quiz__option:has(input:focus-visible) {
  outline: 2px solid #cf68ff;
  outline-offset: 2px;
}
.car-quiz__option input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.car-quiz__option input[type=radio]:checked + .car-quiz__option-marker::before {
  opacity: 1;
  transform: scale(1);
}
.car-quiz__option input[type=checkbox] + .car-quiz__option-marker {
  border-radius: 5px;
}
.car-quiz__option input[type=checkbox]:checked + .car-quiz__option-marker {
  background: #cf68ff;
}
.car-quiz__option input[type=checkbox]:checked + .car-quiz__option-marker::before {
  width: 12px;
  height: 8px;
  border: 0;
  border-radius: 0;
  opacity: 1;
  transform: scale(1);
  background: center/contain no-repeat url("/resources/websites/parallel-ai/images/icons/check.svg");
}
.car-quiz__option-marker {
  position: relative;
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  margin-right: 12px;
  border: 1px solid #cf68ff;
  border-radius: 50%;
}
.car-quiz__option-marker::before {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.5);
  background: #cf68ff;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.car-quiz__option-label {
  line-height: 1.25;
}
.car-quiz__error {
  margin-top: 8px;
}
.car-quiz__actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 28px;
}
.car-quiz__actions--end {
  justify-content: flex-end;
}
.car-quiz__actions .btn {
  min-width: 118px;
}
.car-quiz__actions .btn:not(.btn-icon):not(.btn-filter-control):not(.btn-cta) {
  block-size: 53px;
}
.car-quiz__next, .car-quiz__submit {
  min-width: 145px !important;
}
.car-quiz__contact-fields {
  margin-bottom: 30px;
}
.car-quiz__consents {
  gap: 18px;
  margin-bottom: 0;
}

@keyframes car-quiz-step-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (min-width: 576px) {
  .modal--quiz .modal__close {
    top: 40px;
  }
  .car-quiz__form {
    padding: 38px 32px 30px;
  }
  .car-quiz__options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .car-quiz__title {
    font-size: 30px;
  }
}
@media (min-width: 1024px) {
  .modal--quiz {
    padding: 20px;
  }
  .modal--quiz .modal__window {
    max-height: calc(100dvh - 40px);
    overflow: hidden;
  }
  .modal--quiz .modal__close {
    top: 26px;
    right: 26px;
  }
  .car-quiz {
    display: grid;
    grid-template-columns: 330px minmax(0, 1fr);
  }
  .car-quiz__visual {
    display: flex;
    flex-direction: column;
  }
  .car-quiz__form {
    min-height: 620px;
    max-height: calc(100dvh - 40px);
    padding: 80px 42px 20px;
    overflow-y: auto;
  }
  .car-quiz__progress {
    margin-bottom: 48px;
    padding-right: 0;
  }
  .car-quiz__title {
    font-size: 34px;
  }
  .car-quiz__options--compact .car-quiz__option {
    min-height: 50px;
  }
  .car-quiz__actions {
    margin-top: 36px;
  }
}
@media (max-height: 720px) and (min-width: 1024px) {
  .car-quiz__visual, .car-quiz__form {
    min-height: 560px;
  }
  .car-quiz__progress {
    margin-bottom: 28px;
  }
}
.jax-progress-bar {
  background: linear-gradient(90deg, #7109aa 0%, #cf68ff 60%, #ffffff 100%);
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: block;
  opacity: 0;
  visibility: hidden;
  animation: loaderAppear 0s linear 200ms forwards;
}
.loader__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.loader__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.loader__logo {
  display: block;
  width: 160px;
  aspect-ratio: 123/40;
  background: linear-gradient(90deg, #cf68ff 0%, #ffffff 50%, #cf68ff 100%);
  background-size: 300% 100%;
  mask: url("/resources/websites/parallel-ai/images/logo.svg") center/contain no-repeat;
  -webkit-mask: url("/resources/websites/parallel-ai/images/logo.svg") center/contain no-repeat;
  animation: loaderShimmer 2.2s ease-in-out infinite;
}

@keyframes loaderAppear {
  to {
    opacity: 1;
    visibility: visible;
  }
}
@keyframes loaderShimmer {
  0% {
    background-position: 0 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0 50%;
  }
}
.listing-card {
  display: block;
  color: inherit;
}
.listing-card__info:hover .catalog-card__action, .listing-card__info:focus-visible .catalog-card__action {
  background: #cf68ff;
  border-color: #cf68ff;
  color: #ffffff;
}
.listing-card__info:focus-visible {
  outline: 2px solid #cf68ff;
  outline-offset: 4px;
  border-radius: 5px;
}
.listing-card__preview {
  display: block;
  aspect-ratio: 340/197;
  margin-bottom: 10px;
  border-radius: 5px;
  overflow: hidden;
}
.listing-card__preview:focus-visible {
  outline: 2px solid #cf68ff;
  outline-offset: 4px;
}
.listing-card__preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.listing-card__details {
  display: flex;
  align-items: stretch;
  gap: 10px;
}
.listing-card__thumbs {
  display: flex;
  flex: 0 0 70px;
  flex-direction: column;
  gap: 10px;
}
.listing-card__thumb {
  display: block;
  flex: 1 1 0;
  width: 100%;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 5px;
  background: transparent;
  overflow: hidden;
  cursor: pointer;
  appearance: none;
}
.listing-card__thumb:focus-visible {
  outline: 2px solid #cf68ff;
  outline-offset: 2px;
}
.listing-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.listing-card__info {
  flex: 1 1 auto;
  min-width: 0;
  padding: 16px;
  color: inherit;
  text-decoration: none;
}
.listing-card__head {
  align-items: flex-start;
}
.listing-card__footer {
  align-items: flex-end;
}
.listing-card .catalog-card__status {
  flex: 0 0 100%;
  margin-left: unset;
  text-align: left;
}
.listing-card .catalog-card__specs {
  line-height: 1.4;
}
.listing-card .catalog-card__price {
  font-size: 20px;
  line-height: 1.2;
}
.listing-card .catalog-card__action {
  margin-left: auto;
}

@media (min-width: 768px) {
  .listing-card__info {
    padding: 20px;
  }
}
@media (min-width: 1024px) {
  .listing-card__preview {
    margin-bottom: 20px;
  }
  .listing-card__details {
    gap: 20px;
  }
  .listing-card__thumbs {
    flex: 0 0 97px;
    gap: 20px;
  }
}
.cookie-notice {
  position: fixed;
  z-index: 1000;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 0 0 calc(10px + env(safe-area-inset-bottom));
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.cookie-notice[hidden] {
  display: none;
}
.cookie-notice.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.cookie-notice__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px;
  border-radius: 5px;
  background: rgba(26, 26, 26, 0.98);
  box-shadow: 0 8px 30px rgba(15, 15, 15, 0.35);
}
.cookie-notice__text {
  margin: 0;
  color: #ffffff;
  font-size: 14px;
  line-height: 1.5;
}
.cookie-notice__button {
  width: 100%;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .cookie-notice {
    padding-bottom: calc(20px + env(safe-area-inset-bottom));
  }
  .cookie-notice__content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 20px;
  }
  .cookie-notice__text {
    max-width: 880px;
    font-size: 15px;
  }
  .cookie-notice__button {
    width: auto;
    min-width: 130px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .cookie-notice {
    transition: none;
  }
}
.section {
  margin-bottom: 60px;
}
.section--bg {
  position: relative;
  max-width: 1440px;
  margin-right: auto;
  margin-bottom: 0;
  margin-left: auto;
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: linear-gradient(180deg, #0f0f0f 0%, rgba(15, 15, 15, 0) 5%, rgba(15, 15, 15, 0) 50%, rgba(15, 15, 15, 0) 95%, #0f0f0f 100%), url("/resources/websites/parallel-ai/images/section-bg.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.section--img {
  padding: 0 10px;
}
.section--img .section__container {
  position: relative;
  max-width: 1290px;
  margin-right: auto;
  margin-bottom: 0;
  margin-left: auto;
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("/resources/websites/parallel-ai/images/section-img.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 5px;
}
.section--img .section__header {
  text-align: center;
  gap: 30px;
}
.section--img .section__header, .section--img .section__content {
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}
.section--next-offset {
  margin-bottom: 0;
}
.section--next-offset + .section {
  padding-top: 60px;
}
.section__header {
  flex: 0 0 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}
.section__pretitle {
  flex: 0 0 100%;
  display: block;
  color: #cf68ff;
  font-size: 18px;
  text-transform: uppercase;
}
.section__title {
  display: block;
  flex: 0 0 100%;
}
.section__description {
  flex: 0 0 100%;
  margin-bottom: 0;
}

@media (min-width: 576px) {
  .section--img {
    padding: 0 20px;
  }
}
@media (min-width: 1024px) {
  .section {
    margin-bottom: 100px;
  }
  .section--bg {
    margin-bottom: 0;
    padding-top: 100px;
    padding-bottom: 100px;
    background-image: linear-gradient(90deg, #0f0f0f 0%, rgba(15, 15, 15, 0.9) 1%, rgba(15, 15, 15, 0.55) 3%, rgba(15, 15, 15, 0) 5%), linear-gradient(270deg, #0f0f0f 0%, rgba(15, 15, 15, 0.9) 1%, rgba(15, 15, 15, 0.55) 3%, rgba(15, 15, 15, 0) 5%), linear-gradient(180deg, #0f0f0f 0%, rgba(15, 15, 15, 0.2) 25%, rgba(15, 15, 15, 0) 50%, rgba(15, 15, 15, 0.2) 75%, #0f0f0f 100%), url("/resources/websites/parallel-ai/images/section-bg.webp");
  }
  .section--next-offset {
    margin-bottom: 0;
  }
  .section--next-offset + .section {
    padding-top: 100px;
  }
  .section__header {
    margin-bottom: 60px;
  }
}
@media (min-width: 1330px) {
  .section--img {
    padding: 0;
  }
}
.catalog {
  position: relative;
  background: #f4f4f4;
  padding-top: 60px;
  padding-bottom: 60px;
}
.catalog__header {
  margin-bottom: 30px;
}
.catalog__top {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 30px;
}
.catalog__presets {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.catalog__presets, .catalog__sorter {
  width: 100%;
}
.catalog__sorter {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}
.catalog__filters-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 21px;
  height: 20px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #7109aa;
  cursor: pointer;
  transition: color 0.2s ease;
}
.catalog__filters-button::before {
  content: "";
  width: 21px;
  height: 20px;
  background-color: currentColor;
  -webkit-mask: center/contain no-repeat url("/resources/websites/parallel-ai/images/icons/funnel.svg");
  mask: center/contain no-repeat url("/resources/websites/parallel-ai/images/icons/funnel.svg");
}
.catalog__filters-button:hover, .catalog__filters-button:focus-visible {
  color: #cf68ff;
}
.catalog__filters-button:focus-visible {
  outline: 2px solid #cf68ff;
  outline-offset: 2px;
}
.catalog__items {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
.catalog__empty {
  width: 100%;
  padding: 32px 24px;
  border-radius: 5px;
  background-color: #ffffff;
  color: #0f0f0f;
  text-align: center;
}
.catalog__more {
  padding-top: 40px;
}
.catalog__more-button {
  display: block;
  margin: 0 auto;
}

.catalog-sort {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  column-gap: 8px;
  row-gap: 6px;
  color: #0f0f0f;
}
.catalog-sort--open .catalog-sort__trigger {
  color: #7109aa;
}
.catalog-sort__label, .catalog-sort__trigger, .catalog-sort__option {
  line-height: 1.35;
}
.catalog-sort__label {
  color: #0f0f0f;
}
.catalog-sort__trigger {
  display: inline-flex;
  align-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: #7109aa;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  transition: color 0.2s ease;
  justify-self: start;
}
.catalog-sort__value {
  color: inherit;
}
.catalog-sort__dropdown {
  grid-column: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding-top: 2px;
}
.catalog-sort__option {
  display: block;
  width: auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: #0f0f0f;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s ease;
}
.catalog-sort__option--selected, .catalog-sort__option:hover, .catalog-sort__option:focus-visible {
  color: #7109aa;
}

.catalog-card {
  width: 100%;
  display: block;
  color: inherit;
  text-decoration: none;
}
.catalog-card:hover .catalog-card__action, .catalog-card:focus-visible .catalog-card__action {
  background: #cf68ff;
  border-color: #cf68ff;
  color: #ffffff;
}
.catalog-card:focus-visible {
  outline: 2px solid #cf68ff;
  outline-offset: 4px;
  border-radius: 5px;
}
.catalog-card__media {
  border-radius: 5px;
  aspect-ratio: 340/197;
  margin-bottom: 10px;
}
.catalog-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
}
.catalog-card__content {
  background-color: #ffffff;
  border-radius: 5px;
  color: #0f0f0f;
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.catalog-card__head, .catalog-card__meta, .catalog-card__footer {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.catalog-card__meta {
  color: #a2a2a2;
}
.catalog-card__head {
  align-items: center;
}
.catalog-card__status {
  flex: 0 0 auto;
  color: #7109aa;
  font-size: 14px;
}
.catalog-card__title {
  flex: 1 1 100%;
  min-width: 0;
}
.catalog-card__specs {
  width: 100%;
}
.catalog-card__country {
  position: relative;
  padding-left: 28px;
  line-height: 21px;
}
.catalog-card__country::before {
  content: "";
  background-image: url("/resources/websites/parallel-ai/images/icons/flag.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 18px;
  height: 21px;
  position: absolute;
  left: 0;
  top: 0;
}
.catalog-card__footer {
  align-items: center;
  justify-content: space-between;
  gap: 0;
}
.catalog-card__prices {
  display: flex;
  flex-wrap: wrap;
}
.catalog-card__action {
  pointer-events: none;
}
.catalog-card__price {
  font-size: 20px;
  font-weight: 700;
  width: 100%;
}
.catalog-card__old-price {
  color: #a2a2a2;
  font-size: 14px;
  width: 100%;
  text-decoration: line-through;
}

.catalog-filters {
  background-color: #ffffff;
  position: fixed;
  left: 0;
  top: 100px;
  bottom: 0;
  display: flex;
  flex-direction: column;
  height: auto;
  width: 100%;
  z-index: 999;
  overflow: hidden;
  border-radius: 24px 24px 0 0;
  box-shadow: 0 0 0 100vmax rgba(15, 15, 15, 0.55);
}
.catalog-filters__body {
  padding: 30px 20px 155px;
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
}
.catalog-filters__groups {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.catalog-filters__group {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  width: 100%;
}
.catalog-filters__group--collapsible .catalog-filters__title {
  width: auto;
}
.catalog-filters__group--open .catalog-filters__toggle::after {
  transform: rotate(180deg);
}
.catalog-filters__toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}
.catalog-filters__toggle::after {
  content: "";
  flex: 0 0 6px;
  width: 6px;
  height: 10px;
  transform: rotate(90deg);
  background-color: #7109aa;
  -webkit-mask: center/contain no-repeat url("/resources/websites/parallel-ai/images/icons/chevron.svg");
  mask: center/contain no-repeat url("/resources/websites/parallel-ai/images/icons/chevron.svg");
  transition: transform 0.2s ease;
}
.catalog-filters__toggle:focus-visible {
  outline: 2px solid #cf68ff;
  outline-offset: 4px;
}
.catalog-filters__title {
  width: 100%;
  color: #7109aa;
  font-size: 16px;
}
.catalog-filters__options {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.catalog-filters__option {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  width: fit-content;
  cursor: pointer;
}
.catalog-filters__checkbox {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}
.catalog-filters__checkbox:focus-visible + .catalog-filters__mark {
  outline: 2px solid #cf68ff;
  outline-offset: 2px;
}
.catalog-filters__checkbox:checked + .catalog-filters__mark::before {
  opacity: 1;
}
.catalog-filters__mark {
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  border: 1px solid #0f0f0f;
  border-radius: 4px;
  background-color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.catalog-filters__mark::before {
  content: "";
  width: 14px;
  height: 14px;
  opacity: 0;
  background: center/contain no-repeat url("/resources/websites/parallel-ai/images/icons/check.svg");
  transition: opacity 0.2s ease;
}
.catalog-filters__text {
  color: #0f0f0f;
  font-size: 16px;
  line-height: 1.2;
}
.catalog-filters__count {
  color: #a2a2a2;
}
.catalog-filters__footer {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 20px;
  border-top: 1px solid #a2a2a2;
  background-color: #ffffff;
}
.catalog-filters__show {
  margin-bottom: 20px;
}
.catalog-filters__reset {
  color: #7109aa;
  display: block;
  margin: 0 auto;
  width: fit-content;
}

.catalog-range {
  width: 100%;
}
.catalog-range__slider {
  position: relative;
  height: 24px;
  margin-bottom: 24px;
}
.catalog-range__track, .catalog-range__progress {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  height: 18px;
  border-radius: 999px;
}
.catalog-range__track {
  width: 98%;
  background-color: rgba(162, 162, 162, 0.45);
}
.catalog-range__progress {
  background-color: #7109aa;
}
.catalog-range__input {
  position: absolute;
  inset: 0;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  pointer-events: none;
  appearance: none;
  -webkit-appearance: none;
}
.catalog-range__input::-webkit-slider-runnable-track {
  height: 24px;
  background: transparent;
}
.catalog-range__input::-webkit-slider-thumb {
  width: 24px;
  height: 24px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  background-color: #7109aa;
  box-shadow: 0 4px 12px rgba(15, 15, 15, 0.12);
  cursor: pointer;
  pointer-events: auto;
  appearance: none;
  -webkit-appearance: none;
}
.catalog-range__input::-moz-range-track {
  height: 24px;
  background: transparent;
}
.catalog-range__input::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  background-color: #7109aa;
  box-shadow: 0 4px 12px rgba(15, 15, 15, 0.12);
  cursor: pointer;
  pointer-events: auto;
}
.catalog-range__input:focus-visible {
  outline: none;
}
.catalog-range__input--min {
  z-index: 2;
}
.catalog-range__input--max {
  z-index: 3;
}
.catalog-range__values {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.catalog-range__value {
  padding: 5px;
  border: 1px solid #a2a2a2;
  border-radius: 10px;
  background-color: #f4f4f4;
  color: #0f0f0f;
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  line-height: 1.2;
}
.catalog-range__value--placeholder {
  color: #a2a2a2;
}

.catalog-form {
  display: block;
}

@media (min-width: 768px) {
  .catalog__items {
    gap: 20px;
  }
  .catalog-card {
    width: calc(50% - 10px);
  }
}
@media (min-width: 1024px) {
  .catalog {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .catalog .container {
    position: relative;
  }
  .catalog .container:before {
    pointer-events: none;
    content: "";
    position: absolute;
    width: 399px;
    height: 399px;
    border-radius: 50%;
    background: url("/resources/websites/parallel-ai/images/radial-sm.svg");
    background-size: contain;
    background-position: center;
    bottom: -599px;
    left: -449px;
    z-index: 1;
  }
}
@media (min-width: 1024px) and (min-width: 1024px) {
  .catalog .container:before {
    width: 999px;
    height: 999px;
    background: url("/resources/websites/parallel-ai/images/radial.svg");
  }
}
@media (min-width: 1024px) {
  .catalog__top {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 24px;
  }
  .catalog-sort {
    gap: 12px;
  }
  .catalog-card__content {
    gap: 20px;
  }
}
@media (min-width: 1330px) {
  .catalog .container {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 30px;
  }
  .catalog__header {
    width: 100%;
    margin-bottom: 0;
  }
  .catalog__list {
    flex: 1 1 0;
    min-width: 0;
  }
  .catalog__top {
    gap: 20px;
  }
  .catalog__presets {
    flex: 1 1 auto;
    width: auto;
    max-width: 620px;
  }
  .catalog__sorter {
    flex: 0 0 auto;
    width: fit-content;
    margin-left: auto;
    justify-content: flex-end;
  }
  .catalog__items {
    gap: 30px;
  }
  .catalog__filters-button {
    display: none;
  }
  .catalog-form {
    display: flex;
    flex: 1 1 100%;
    align-items: flex-start;
    gap: 30px;
    min-width: 0;
  }
  .catalog-filters {
    position: static;
    flex: 0 0 310px;
    width: 310px;
    height: auto;
    top: auto;
    bottom: auto;
    z-index: auto;
    border-radius: 5px;
    box-shadow: none;
  }
  .catalog-filters__show {
    display: none;
  }
  .catalog-filters__body {
    padding: 30px 20px;
    overflow: visible;
  }
  .catalog-filters__footer {
    position: static;
    border-top: 0;
  }
  .catalog-card {
    width: calc(50% - 15px);
  }
}
.hero {
  position: relative;
  isolation: isolate;
  min-height: 640px;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
}
.hero--mini {
  min-height: unset;
  padding-bottom: 100px;
}
.hero--mini .hero__background::before {
  background: linear-gradient(270deg, #0f0f0f 0%, rgba(15, 15, 15, 0) 3.84%, rgba(15, 15, 15, 0) 50.85%, #0f0f0f 94.24%), linear-gradient(180deg, rgba(15, 15, 15, 0.8) 0%, rgba(15, 15, 15, 0.8) 100%);
}
.hero__background {
  position: absolute;
  pointer-events: none;
  inset: 0;
  background-image: var(--hero-image-sm, none);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: -1;
}
.hero__background::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 15, 15, 0.9) 28.98%, rgba(15, 15, 15, 0.5) 44.62%, rgba(15, 15, 15, 0) 54.44%, rgba(15, 15, 15, 0) 90.48%, #0f0f0f 100%);
}
.hero__background::after {
  pointer-events: none;
  content: "";
  position: absolute;
  width: 399px;
  height: 399px;
  border-radius: 50%;
  background: url("/resources/websites/parallel-ai/images/radial-sm.svg");
  background-size: contain;
  background-position: center;
}
@media (min-width: 1024px) {
  .hero__background::after {
    width: 999px;
    height: 999px;
    background: url("/resources/websites/parallel-ai/images/radial.svg");
  }
}
.hero__background::after {
  right: -160px;
  top: 320px;
}
.hero__breadcrumbs {
  position: relative;
  z-index: 1;
  min-height: 65px;
  padding-bottom: 10px;
}
.hero .container {
  position: relative;
  z-index: 1;
}
.hero__body {
  max-width: 660px;
}
.hero__title, .hero__subtitle {
  margin-bottom: 20px;
}
.hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}
.hero__button-form {
  min-width: 250px;
}
.hero__button-link {
  padding: 0;
  block-size: 17px;
}
.hero__footer {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.hero__benefits {
  flex: 0 0 100%;
  border: 1px solid #cf68ff;
  border-radius: 5px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  gap: 10px;
  padding: 20px;
  background: rgba(15, 15, 15, 0.6);
  backdrop-filter: blur(10px);
}
.hero__benefit span {
  display: block;
  margin-bottom: 5px;
  font-weight: 700;
}
.hero__benefit p {
  font-size: 12px;
}
.hero__benefit--border {
  flex: 0 0 1px;
  background-color: #a2a2a2;
}
.hero__from {
  flex: 0 0 100%;
  padding-bottom: 20px;
}
.hero__from-content {
  position: relative;
  width: 194px;
}
.hero__from-content:before {
  content: "";
  width: 60px;
  height: 1px;
  background-color: #cf68ff;
  position: absolute;
  left: 0;
  bottom: -10px;
}

@media (min-width: 576px) {
  .hero__background {
    background-image: var(--hero-image-md, var(--hero-image-sm, none));
  }
  .hero__benefits {
    flex: 0 0 512px;
    padding: 20px 30px;
  }
}
@media (min-width: 768px) {
  .hero__footer {
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
  }
  .hero__from {
    order: 1;
    flex: 1;
  }
  .hero__benefits {
    order: 2;
  }
}
@media (min-width: 1024px) {
  .hero {
    min-height: 760px;
    padding-top: 130px;
  }
  .hero--mini {
    min-height: unset;
  }
  .hero--mini .hero__background::before {
    background: linear-gradient(270deg, #0f0f0f 0%, rgba(15, 15, 15, 0) 3.84%, rgba(15, 15, 15, 0) 50.85%, #0f0f0f 94.24%), linear-gradient(180deg, rgba(15, 15, 15, 0.8) 0%, rgba(15, 15, 15, 0.8) 100%);
  }
  .hero--mini .hero__background:after {
    top: -500px;
    right: -397px;
    left: unset;
  }
  .hero__background {
    background-image: var(--hero-image-lg, var(--hero-image-md, var(--hero-image-sm, none)));
  }
  .hero__background::before {
    z-index: 1;
    background: linear-gradient(270deg, #0f0f0f 0%, rgba(15, 15, 15, 0) 3.84%, rgba(15, 15, 15, 0) 50.85%, #0f0f0f 94.24%), linear-gradient(180deg, rgba(15, 15, 15, 0) 68.42%, #0f0f0f 98.11%), linear-gradient(90deg, rgba(0, 0, 0, 0.8) 37.39%, rgba(0, 0, 0, 0) 67.15%);
  }
  .hero__background::after {
    left: -500px;
    top: 100px;
    z-index: 1;
  }
  .hero__breadcrumbs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding-bottom: 0;
  }
  .hero__body {
    max-width: 630px;
  }
  .hero__title, .hero__subtitle {
    margin-bottom: 40px;
  }
  .hero__benefits {
    max-width: unset;
    flex: 0 0 660px;
    border: 0;
    background-color: rgba(15, 15, 15, 0.3);
    gap: 45px;
    padding: 20px 54px;
  }
  .hero__benefit {
    flex: 1;
  }
  .hero__benefit--border {
    flex: 0 0 1px;
  }
  .hero__from-content {
    width: 156px;
    font-size: 16px;
  }
}
.suggestions__list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.suggestions__item {
  position: relative;
  display: block;
  width: 100%;
  color: inherit;
  text-decoration: none;
}
.suggestions__item:focus-visible {
  outline: 2px solid #cf68ff;
  outline-offset: 4px;
}
.suggestions__item-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 5px;
}
.suggestions__item-footer {
  display: flex;
  flex-direction: column;
  padding: 20px 20px 0;
}
.suggestions__item-title {
  margin-bottom: 20px;
}
.suggestions__item-text {
  margin-bottom: 20px;
  color: #a2a2a2;
}
.suggestions__item-action {
  align-self: flex-end;
  pointer-events: none;
}
.suggestions__item:hover .suggestions__item-action.btn-primary, .suggestions__item:focus-visible .suggestions__item-action.btn-primary {
  background: #cf68ff;
  border-color: #cf68ff;
  color: #ffffff;
}
.suggestions__item:hover .suggestions__item-action.btn-secondary, .suggestions__item:focus-visible .suggestions__item-action.btn-secondary {
  background: #7109aa;
  border-color: #7109aa;
  color: #0f0f0f;
}
.suggestions__item:hover .suggestions__item-action.btn-outline-secondary, .suggestions__item:hover .suggestions__item-action.btn-secondary-outline, .suggestions__item:focus-visible .suggestions__item-action.btn-outline-secondary, .suggestions__item:focus-visible .suggestions__item-action.btn-secondary-outline {
  border-color: #ffffff;
  color: #ffffff;
  box-shadow: none;
}
.suggestions__item:hover .suggestions__item-action.btn-outline-primary, .suggestions__item:hover .suggestions__item-action.btn-primary-outline, .suggestions__item:focus-visible .suggestions__item-action.btn-outline-primary, .suggestions__item:focus-visible .suggestions__item-action.btn-primary-outline {
  border-color: #cf68ff;
  color: #cf68ff;
  box-shadow: none;
}

@media (min-width: 576px) {
  .suggestions__item {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  .suggestions__item-image {
    display: block;
    height: unset;
    width: unset;
    flex: 0 0 50%;
    min-width: 0;
  }
  .suggestions__item-footer {
    padding: 0;
  }
}
@media (min-width: 1024px) {
  .suggestions .container {
    position: relative;
  }
  .suggestions .container:before {
    pointer-events: none;
    content: "";
    position: absolute;
    width: 399px;
    height: 399px;
    border-radius: 50%;
    background: url("/resources/websites/parallel-ai/images/radial-sm.svg");
    background-size: contain;
    background-position: center;
    left: -500px;
    top: 235px;
  }
}
@media (min-width: 1024px) and (min-width: 1024px) {
  .suggestions .container:before {
    width: 999px;
    height: 999px;
    background: url("/resources/websites/parallel-ai/images/radial.svg");
  }
}
@media (min-width: 1024px) {
  .suggestions__list {
    flex-wrap: nowrap;
    gap: 30px;
  }
  .suggestions__item {
    flex-wrap: wrap;
  }
  .suggestions__item-image {
    flex: 0 0 100%;
    min-width: 0;
  }
  .suggestions__item-footer {
    padding: 0 20px;
  }
}
.question-form__content {
  width: calc(100% - 20px);
  background-color: #1a1a1a;
  border-radius: 5px;
  padding: 60px 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.question-form__title {
  margin-bottom: 30px;
}
.question-form__header {
  display: block;
  flex: 0 1 auto;
  margin-bottom: 0;
}
.question-form__form {
  width: 100%;
}

@media (min-width: 768px) {
  .question-form__content {
    width: calc(100% - 40px);
  }
}
@media (min-width: 1024px) {
  .question-form__content {
    padding: 60px 30px;
    gap: 30px;
    flex-wrap: nowrap;
  }
  .question-form__header {
    max-width: 545px;
  }
}
@media (min-width: 1330px) {
  .question-form__header {
    flex: 0 0 630px;
    max-width: 630px;
  }
}
.lead-form__content {
  width: calc(100% - 20px);
  background-color: #1a1a1a;
  border-radius: 5px;
  padding: 60px 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.lead-form__title {
  margin-bottom: 30px;
}
.lead-form__header {
  display: block;
  flex: 0 1 auto;
  margin-bottom: 0;
}
.lead-form__form {
  width: 100%;
}

@media (min-width: 768px) {
  .lead-form__content {
    width: calc(100% - 40px);
  }
}
@media (min-width: 1024px) {
  .lead-form__content {
    padding: 60px 30px;
    gap: 30px;
    flex-wrap: nowrap;
  }
  .lead-form__header {
    max-width: 545px;
  }
}
@media (min-width: 1330px) {
  .lead-form__header {
    flex: 0 0 630px;
    max-width: 630px;
  }
}
@media (min-width: 1024px) {
  .lead-form .container {
    position: relative;
  }
  .lead-form .container:before {
    pointer-events: none;
    content: "";
    position: absolute;
    width: 399px;
    height: 399px;
    border-radius: 50%;
    background: url("/resources/websites/parallel-ai/images/radial-sm.svg");
    background-size: contain;
    background-position: center;
    right: -524px;
    top: -74px;
    z-index: -1;
  }
}
@media (min-width: 1024px) and (min-width: 1024px) {
  .lead-form .container:before {
    width: 999px;
    height: 999px;
    background: url("/resources/websites/parallel-ai/images/radial.svg");
  }
}
.catalog-offers {
  position: relative;
  margin-bottom: 0;
  padding-top: 60px;
  padding-bottom: 60px;
  background: #f4f4f4;
}
.catalog-offers__content {
  display: grid;
  gap: 30px;
}
.catalog-offers__bottom {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
.catalog-offers__catalog-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #7109aa;
  transition: color 0.2s ease;
}
.catalog-offers__catalog-link::after {
  content: "";
  width: 24px;
  height: 15px;
  background-color: currentColor;
  -webkit-mask: center/contain no-repeat url("/resources/websites/parallel-ai/images/icons/button-arrow.svg");
  mask: center/contain no-repeat url("/resources/websites/parallel-ai/images/icons/button-arrow.svg");
}
.catalog-offers__catalog-link:hover, .catalog-offers__catalog-link:focus-visible {
  color: #cf68ff;
}
.catalog-offers__catalog-link:focus-visible {
  outline: 2px solid #cf68ff;
  outline-offset: 4px;
  border-radius: 5px;
}

@media (min-width: 768px) {
  .catalog-offers__content {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .catalog-offers {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .catalog-offers__bottom {
    margin-top: 60px;
  }
}
.testimonials-slider {
  margin-bottom: 0;
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
  background-image: url("/resources/websites/parallel-ai/images/testimonials-bg.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

@media (min-width: 1024px) {
  .testimonials-slider {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
.product-form__content {
  width: calc(100% - 20px);
  background-color: #1a1a1a;
  border-radius: 5px;
  padding: 60px 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.product-form__title {
  margin-bottom: 30px;
}
.product-form__header {
  display: block;
  flex: 0 1 auto;
  margin-bottom: 0;
}
.product-form__form {
  width: 100%;
}

@media (min-width: 768px) {
  .product-form__content {
    width: calc(100% - 40px);
  }
}
@media (min-width: 1024px) {
  .product-form__content {
    padding: 60px 30px;
    gap: 30px;
    flex-wrap: nowrap;
  }
  .product-form__header {
    max-width: 545px;
  }
}
@media (min-width: 1330px) {
  .product-form__header {
    flex: 0 0 630px;
    max-width: 630px;
  }
}
.product-form__text {
  margin-bottom: 20px;
}

@media (min-width: 1024px) {
  .product-form .container {
    position: relative;
  }
  .product-form .container:before {
    pointer-events: none;
    content: "";
    position: absolute;
    width: 399px;
    height: 399px;
    border-radius: 50%;
    background: url("/resources/websites/parallel-ai/images/radial-sm.svg");
    background-size: contain;
    background-position: center;
    top: -675px;
    left: -420px;
  }
}
@media (min-width: 1024px) and (min-width: 1024px) {
  .product-form .container:before {
    width: 999px;
    height: 999px;
    background: url("/resources/websites/parallel-ai/images/radial.svg");
  }
}
.product-docs__items {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 15px;
}
.product-docs .docs-card {
  flex: 0 0 100%;
}
.product-docs__footer {
  position: relative;
}
.product-docs__footer-line {
  position: absolute;
  top: -2px;
  left: 32px;
  z-index: -1;
  display: block;
  width: 140px;
  height: 3px;
  border-radius: 999px;
  background-color: #ffccff;
  box-shadow: 0 0 4px 2px rgba(207, 104, 255, 0.75), 0 0 10px 4px rgba(113, 9, 170, 0.8), 0 4px 4px rgba(15, 15, 15, 0.25);
}
.product-docs__footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  background-color: #1a1a1a;
  padding: 30px 20px 20px;
  border-radius: 5px;
}
.product-docs__footer-car {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 188px;
  background-image: url("/resources/websites/parallel-ai/images/icons/docs-footer-car.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.product-docs__footer-summary-title {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 20px;
}
.product-docs__footer-more {
  width: 100%;
}
.product-docs__footer-more-button {
  width: 100%;
  height: 57px;
  padding-right: 45px;
  padding-left: 45px;
}
.product-docs__documents-action {
  display: flex;
  justify-content: center;
}
.product-docs__documents-button {
  width: 100%;
  max-width: 410px;
  height: 53px;
  font-weight: 700;
}
.product-docs__documents-button:hover, .product-docs__documents-button:focus-visible {
  background: #ffffff;
  border-color: #ffffff;
}
.product-docs__subfooter {
  background: rgb(26, 26, 26);
  border-radius: 5px;
  padding: 40px 20px;
  margin-top: 60px;
}
.product-docs__subfooter-title {
  display: block;
  text-transform: uppercase;
  color: #cf68ff;
  font-size: 20px;
  margin-bottom: 30px;
}
.product-docs__subfooter-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.product-docs__subfooter-item {
  border: 1px solid #cf68ff;
  background: #0f0f0f;
  padding: 20px;
  border-radius: 5px;
}

@media (min-width: 576px) {
  .product-docs__subfooter-items {
    display: inline-flex;
    flex-direction: row;
    gap: 20px;
  }
}
@media (min-width: 768px) {
  .product-docs .docs-card {
    flex: 0 0 calc((100% - 15px) / 2);
  }
}
@media (min-width: 1024px) {
  .product-docs .container {
    position: relative;
  }
  .product-docs .container:before {
    pointer-events: none;
    content: "";
    position: absolute;
    width: 399px;
    height: 399px;
    border-radius: 50%;
    background: url("/resources/websites/parallel-ai/images/radial-sm.svg");
    background-size: contain;
    background-position: center;
    left: -575px;
    top: -453px;
  }
}
@media (min-width: 1024px) and (min-width: 1024px) {
  .product-docs .container:before {
    width: 999px;
    height: 999px;
    background: url("/resources/websites/parallel-ai/images/radial.svg");
  }
}
@media (min-width: 1024px) {
  .product-docs__items {
    margin-bottom: 30px;
  }
  .product-docs__footer-content {
    flex-wrap: nowrap;
    align-items: center;
    padding: 30px;
  }
  .product-docs__footer-line {
    width: 360px;
  }
  .product-docs__footer-car {
    height: 151px;
    width: 185px;
    flex: 0 0 185px;
  }
  .product-docs__footer-summary {
    flex: 1 1 auto;
    min-width: 0;
  }
  .product-docs__footer-more {
    width: 274px;
    flex: 0 0 274px;
  }
  .product-docs__footer-more-button {
    padding-left: 20px;
    padding-right: 20px;
    width: 274px;
  }
  .product-docs__footer-more-button.btn:not(.btn-icon):not(.btn-filter-control):not(.btn-cta) {
    block-size: 78px;
  }
  .product-docs__subfooter {
    margin-top: 30px;
  }
  .product-docs__subfooter-items {
    gap: 30px;
  }
}
@media (min-width: 1330px) {
  .product-docs__items {
    flex-wrap: nowrap;
    gap: 30px;
  }
  .product-docs .docs-card {
    flex: 0 0 calc((100% - 90px) / 4);
  }
}
.product-summary__container {
  max-width: 1070px;
}
.product-summary__gallery {
  position: relative;
  border-radius: 5px;
  background: #0f0f0f;
  margin-bottom: 30px;
}
.product-summary__slide-media {
  aspect-ratio: 16/9;
  border-radius: 5px;
  overflow: hidden;
  background: #1a1a1a;
}
.product-summary__slide-media img {
  display: block;
  inline-size: 100%;
  block-size: 100%;
  object-fit: cover;
}
.product-summary__pagination {
  position: relative;
  z-index: 1;
  block-size: 3px;
  margin-top: 20px;
  background: rgba(255, 255, 255, 0.5);
  overflow: hidden;
}
.product-summary__pagination .swiper-pagination-progressbar-fill {
  background: linear-gradient(90deg, #7109aa 0%, #cf68ff 100%);
}
.product-summary__thumbs-wrap {
  position: relative;
  display: none;
  margin-top: 30px;
  align-items: center;
}
.product-summary__thumbs {
  flex: 1 1 auto;
  min-width: 0;
}
.product-summary__thumb {
  block-size: auto;
  opacity: 0.45;
  transition: opacity 0.2s ease;
}
.product-summary__thumb.swiper-slide-thumb-active {
  opacity: 1;
}
.product-summary__thumb-button {
  display: block;
  inline-size: 100%;
  padding: 0;
  border: 0;
  border-radius: 5px;
  overflow: hidden;
  background: transparent;
  cursor: pointer;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
  transition: box-shadow 0.2s ease, opacity 0.2s ease;
}
.product-summary__thumb-button:focus-visible {
  outline: 2px solid #cf68ff;
  outline-offset: 2px;
}
.product-summary__thumb-button img {
  display: block;
  inline-size: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.product-summary__thumb.swiper-slide-thumb-active .product-summary__thumb-button {
  box-shadow: inset 0 0 0 2px #cf68ff;
}
.product-summary__thumbs-nav {
  display: none;
  position: absolute;
  top: 50%;
  z-index: 1;
  transform: translateY(-50%);
  background: #1a1a1a;
  border-color: #1a1a1a;
  box-shadow: none;
  color: #a2a2a2;
  transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}
.product-summary__thumbs-nav:hover, .product-summary__thumbs-nav:focus-visible, .product-summary__thumbs-nav:active {
  background: #7109aa;
  border-color: #7109aa;
  box-shadow: none;
  color: #a2a2a2;
}
.product-summary__thumbs-nav.swiper-button-disabled {
  background: #1a1a1a;
  border-color: #1a1a1a;
  box-shadow: none;
  color: rgba(162, 162, 162, 0.45);
  opacity: 1;
  pointer-events: none;
}
.product-summary__thumbs-nav--prev {
  left: -70px;
}
.product-summary__thumbs-nav--next {
  right: -70px;
}
.product-summary__thumbs-nav--prev::before {
  transform: scaleX(-1);
}
.product-summary__data {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 30px;
}
.product-summary__header {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.product-summary__title {
  flex: 0 0 100%;
}
.product-summary__middle {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.product-summary__desc a {
  text-wrap: nowrap;
}
.product-summary__call {
  flex: 0 0 100%;
}
.product-summary__details {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.product-summary__detail {
  flex: 0 0 100%;
  background-color: #1a1a1a;
  border-radius: 5px;
  display: flex;
  align-items: center;
  padding: 10px 20px;
}
.product-summary__detail-label {
  color: #cf68ff;
  flex: 0 0 50%;
}
.product-summary__detail-value {
  font-weight: 700;
  flex: 0 0 50%;
  text-align: right;
}
.product-summary__tabs-nav {
  display: none;
}
.product-summary__tabs-btn {
  all: unset;
  cursor: pointer;
}
.product-summary__tabs-items {
  display: flex;
  flex-direction: column;
}
.product-summary__tabs-item {
  border-bottom: 1px solid #cf68ff;
  overflow: hidden;
}
.product-summary__tabs-item:first-child {
  border-top: 1px solid #cf68ff;
}
.product-summary__tabs-item-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 30px 0;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  user-select: none;
}
.product-summary__tabs-item-header::after {
  content: "";
  flex-shrink: 0;
  width: 20px;
  height: 11px;
  background: url("/resources/websites/parallel-ai/images/icons/accordion-arrow.svg") no-repeat center/contain;
  transition: transform 0.2s ease;
}
.is-active .product-summary__tabs-item-header::after {
  transform: rotate(180deg);
}
.product-summary__tabs-item-body {
  display: none;
  padding: 0 0 30px;
}
.is-active .product-summary__tabs-item-body {
  display: block;
}
.product-summary__equipments {
  column-count: 1;
  column-gap: 20px;
}
.product-summary__equipments-title {
  font-size: 18px;
  color: #cf68ff;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.product-summary__equipments-group {
  break-inside: avoid-column;
  margin-bottom: 20px;
}
.product-summary__equipments-group .ui-check-list__item {
  color: #a2a2a2;
}
.product-summary__spec {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  border-bottom: 1px solid #1a1a1a;
  padding: 20px;
}
.product-summary__spec:first-child {
  border-top: 1px solid #1a1a1a;
}
.product-summary__spec-label {
  flex: 0 0 50%;
  color: #a2a2a2;
}
.product-summary__spec-value {
  flex: 0 0 50%;
  font-weight: 700;
}

@media (min-width: 576px) {
  .product-summary__pagination {
    display: none;
  }
  .product-summary__thumbs-wrap {
    display: flex;
  }
}
@media (min-width: 768px) {
  .product-summary__header {
    flex-wrap: nowrap;
    gap: 20px;
    justify-content: space-between;
    width: 100%;
  }
  .product-summary__title {
    flex: 1;
  }
  .product-summary__price {
    flex-shrink: 0;
    white-space: nowrap;
  }
  .product-summary__middle {
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
  }
  .product-summary__desc {
    flex: 1;
  }
  .product-summary__call {
    flex-shrink: 0;
    white-space: nowrap;
    max-width: 244px;
  }
  .product-summary__details {
    gap: 20px;
  }
  .product-summary__detail {
    flex: 0 0 calc((100% - 20px) / 2);
  }
  .product-summary__equipments {
    column-count: 2;
  }
}
@media (min-width: 1024px) {
  .product-summary__gallery {
    margin-bottom: 60px;
  }
  .product-summary__data {
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
  }
  .product-summary__data:before {
    pointer-events: none;
    content: "";
    position: absolute;
    width: 399px;
    height: 399px;
    border-radius: 50%;
    background: url("/resources/websites/parallel-ai/images/radial-sm.svg");
    background-size: contain;
    background-position: center;
    top: -423px;
    left: -611px;
  }
}
@media (min-width: 1024px) and (min-width: 1024px) {
  .product-summary__data:before {
    width: 999px;
    height: 999px;
    background: url("/resources/websites/parallel-ai/images/radial.svg");
  }
}
@media (min-width: 1024px) {
  .product-summary__details {
    gap: 30px;
  }
  .product-summary__detail {
    flex: 0 0 calc((100% - 30px) / 2);
    padding: 0 20px;
    height: 58px;
  }
  .product-summary__tabs-nav {
    display: flex;
    border-bottom: 1px solid #ffffff;
  }
  .product-summary__tabs-btn {
    flex: 0 0 50%;
    padding: 12px 0;
    background: none;
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
    text-align: center;
    margin-bottom: -1px;
    border-bottom: 1px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease;
  }
  .product-summary__tabs-btn.is-active {
    color: #cf68ff;
    border-bottom-color: #cf68ff;
  }
  .product-summary__tabs-items {
    display: block;
  }
  .product-summary__tabs-item {
    background: none;
    border-bottom: 0;
  }
  .product-summary__tabs-item:first-child {
    border-top: 0;
  }
  .product-summary__tabs-item:not(.is-active) {
    display: none;
  }
  .product-summary__tabs-item-header {
    display: none;
  }
  .product-summary__tabs-item-body {
    display: block !important;
    padding: 60px 0 0;
  }
  .product-summary__equipments-group .ui-check-list {
    gap: 15px;
  }
  .product-summary__specs {
    display: flex;
    flex-wrap: wrap;
    gap: 0 30px;
  }
  .product-summary__spec {
    flex: 0 0 calc((100% - 30px) / 2);
  }
  .product-summary__spec:first-child, .product-summary__spec:nth-child(2) {
    border-top: 1px solid #1a1a1a;
  }
  .product-summary__spec-label {
    flex: 0 0 40%;
  }
  .product-summary__spec-value {
    flex: 0 0 60%;
  }
}
@media (min-width: 1330px) {
  .product-summary__thumbs-nav {
    display: inline-flex;
  }
  .product-summary__detail {
    flex: 0 0 calc((100% - 90px) / 4);
  }
  .product-summary__spec {
    flex: 0 0 calc((100% - 30px) / 2);
  }
  .product-summary__spec-label, .product-summary__spec-value {
    flex: 0 0 50%;
  }
}
.turnkey-conditions__header, .turnkey-conditions__included, .turnkey-conditions__extra {
  position: relative;
  z-index: 1;
}
.turnkey-conditions__included, .turnkey-conditions__extra-items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.turnkey-conditions__included .turnkey-conditions__price-item:nth-child(3), .turnkey-conditions__included .turnkey-conditions__price-item:nth-child(6) {
  grid-column: 1/-1;
}
.turnkey-conditions__extra-items {
  grid-template-columns: 1fr;
}
.turnkey-conditions__price-item {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 57px;
  padding: 20px;
  border: 1px solid #cf68ff;
  border-radius: 5px;
  background-color: #0f0f0f;
  font-size: 14px;
  line-height: 1.2;
}
.turnkey-conditions__price-item-line {
  position: absolute;
  z-index: -1;
  top: -2px;
  left: 18px;
  width: 62px;
  height: 3px;
  border-radius: 999px;
  background-color: #ffccff;
  box-shadow: 0 0 4px 2px rgba(207, 104, 255, 0.75), 0 0 10px 4px rgba(113, 9, 170, 0.8), 0 4px 4px rgba(15, 15, 15, 0.25);
}
.turnkey-conditions__extra {
  margin-top: 30px;
}
.turnkey-conditions__extra-title {
  margin-bottom: 15px;
  color: #cf68ff;
  font-size: 18px;
  text-transform: uppercase;
}

@media (min-width: 576px) {
  .turnkey-conditions__included .turnkey-conditions__price-item:nth-child(3), .turnkey-conditions__included .turnkey-conditions__price-item:nth-child(6) {
    grid-column: auto;
  }
  .turnkey-conditions__extra-items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .turnkey-conditions__extra-items .turnkey-conditions__price-item:last-child {
    grid-column: 1/-1;
  }
}
@media (min-width: 1024px) {
  .turnkey-conditions .container {
    position: relative;
  }
  .turnkey-conditions .container::before {
    pointer-events: none;
    content: "";
    position: absolute;
    width: 399px;
    height: 399px;
    border-radius: 50%;
    background: url("/resources/websites/parallel-ai/images/radial-sm.svg");
    background-size: contain;
    background-position: center;
    top: -108px;
    right: -490px;
  }
}
@media (min-width: 1024px) and (min-width: 1024px) {
  .turnkey-conditions .container::before {
    width: 999px;
    height: 999px;
    background: url("/resources/websites/parallel-ai/images/radial.svg");
  }
}
@media (min-width: 1024px) {
  .turnkey-conditions__included {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
  }
  .turnkey-conditions__extra {
    margin-top: 60px;
  }
  .turnkey-conditions__extra-title {
    margin-bottom: 60px;
    font-size: 20px;
  }
  .turnkey-conditions__extra-items {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
  }
  .turnkey-conditions__extra-items .turnkey-conditions__price-item:last-child {
    grid-column: auto;
  }
}
@media (min-width: 1330px) {
  .turnkey-conditions__included {
    grid-template-columns: 190px 206px 220px 160px 173px 190px;
  }
  .turnkey-conditions__extra-items {
    grid-template-columns: 190px 190px 300px;
  }
}
.to-whom__items {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.to-whom__item {
  background-color: #1a1a1a;
  border-radius: 5px;
  padding: 40px 20px 20px;
  flex: 0 0 100%;
}
.to-whom__item-header {
  margin-bottom: 40px;
}
.to-whom__item-icon {
  display: block;
  width: 60px;
  height: 60px;
}
.to-whom__item-title {
  display: block;
  margin-bottom: 10px;
}
.to-whom__item-desc {
  font-size: 14px;
}

@media (min-width: 768px) {
  .to-whom__items {
    justify-content: center;
  }
  .to-whom__item {
    flex: 0 0 calc(50% - 10px);
  }
}
@media (min-width: 1024px) {
  .to-whom .container {
    position: relative;
  }
  .to-whom .container::before {
    pointer-events: none;
    content: "";
    position: absolute;
    width: 399px;
    height: 399px;
    border-radius: 50%;
    background: url("/resources/websites/parallel-ai/images/radial-sm.svg");
    background-size: contain;
    background-position: center;
    top: 91px;
    right: -519px;
  }
}
@media (min-width: 1024px) and (min-width: 1024px) {
  .to-whom .container::before {
    width: 999px;
    height: 999px;
    background: url("/resources/websites/parallel-ai/images/radial.svg");
  }
}
@media (min-width: 1024px) {
  .to-whom__header {
    margin-bottom: 40px;
  }
  .to-whom__items {
    gap: 30px;
    justify-content: space-between;
  }
  .to-whom__item {
    flex: 0 0 calc((100% - 60px) / 3);
    padding-bottom: 40px;
  }
  .to-whom__item-header {
    margin-bottom: 60px;
  }
}
.contacts-form {
  padding-top: 30px;
}
.contacts-form__content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.contacts-form__header {
  flex: 0 0 100%;
  display: block;
  margin-bottom: 0;
}
.contacts-form__title {
  margin-bottom: 30px;
}
.contacts-form__text {
  margin-bottom: 30px;
}
.contacts-form__phone {
  font-weight: 700;
  font-size: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
}
.contacts-form__phone:before {
  content: "";
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("/resources/websites/parallel-ai/images/icons/phone.svg");
}
.contacts-form__socials {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.contacts-form__form {
  flex: 0 0 100%;
}

@media (min-width: 768px) {
  .contacts-form__socials {
    display: inline-flex;
    justify-content: unset;
  }
}
@media (min-width: 1024px) {
  .contacts-form__content {
    gap: 30px;
    flex-wrap: nowrap;
  }
  .contacts-form__header {
    flex: 0 0 45%;
  }
  .contacts-form__form {
    flex: 1;
  }
}
@media (min-width: 1330px) {
  .contacts-form__header {
    flex: 0 0 630px;
  }
}
.legal__item {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  border-bottom: 1px solid #1a1a1a;
  padding: 20px;
}
.legal__item--no-label {
  border-bottom: 0;
}
.legal__item--no-label .legal__item-value {
  flex: 0 0 100%;
}
.legal__item-label {
  flex: 0 0 40%;
  color: #a2a2a2;
}
.legal__item-value {
  flex: 0 0 60%;
  font-weight: 700;
}

@media (min-width: 1024px) {
  .legal .container {
    position: relative;
  }
  .legal .container:before {
    pointer-events: none;
    content: "";
    position: absolute;
    width: 399px;
    height: 399px;
    border-radius: 50%;
    background: url("/resources/websites/parallel-ai/images/radial-sm.svg");
    background-size: contain;
    background-position: center;
    top: 0;
    left: -669px;
  }
}
@media (min-width: 1024px) and (min-width: 1024px) {
  .legal .container:before {
    width: 999px;
    height: 999px;
    background: url("/resources/websites/parallel-ai/images/radial.svg");
  }
}
@media (min-width: 1024px) {
  .legal__items {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
  }
  .legal__items-group {
    flex: 0 0 calc((100% - 30px) / 2);
  }
  .legal__item {
    padding: 27px 20px;
  }
  .legal__item:first-child {
    border-top: 1px solid #1a1a1a;
  }
}
.dealers__header {
  margin-bottom: 20px;
}
.dealers__content {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.dealers__selector {
  flex: 0 0 100%;
  max-width: 100%;
}
.dealers__dropdown {
  position: relative;
  width: 100%;
}
.dealers__dropdown-trigger {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-radius: 5px;
  padding: 10px 44px 10px 20px;
  width: 100%;
  height: 65px;
  backdrop-filter: blur(10px);
  background: #1a1a1a;
  border: none;
  color: #ffffff;
  font: inherit;
  text-align: left;
  cursor: pointer;
  box-sizing: border-box;
}
.dealers__dropdown-title {
  font-weight: 700;
  color: #cf68ff;
}
.dealers__dropdown-address {
  color: #ffffff;
}
.dealers__dropdown-chevron {
  position: absolute;
  right: 16px;
  top: 50%;
  width: 15px;
  height: 8px;
  transform: translateY(-50%);
  pointer-events: none;
  transition: transform 0.2s;
  background-color: #cf68ff;
  mask: center/contain no-repeat url("/resources/websites/parallel-ai/images/icons/chevron-down.svg");
  -webkit-mask: center/contain no-repeat url("/resources/websites/parallel-ai/images/icons/chevron-down.svg");
}
.dealers__dropdown--open .dealers__dropdown-chevron {
  transform: translateY(-50%) rotate(180deg);
}
.dealers__dropdown-list {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 10;
  border-radius: 5px;
  backdrop-filter: blur(10px);
  background: #1a1a1a;
  margin-top: 4px;
  overflow: hidden;
}
.dealers__dropdown-option {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  padding: 10px 20px;
  border: none;
  background: none;
  font: inherit;
  text-align: left;
  cursor: pointer;
  box-sizing: border-box;
  transition: background 0.15s;
}
.dealers__dropdown-option:hover, .dealers__dropdown-option.active {
  background: rgba(255, 255, 255, 0.1);
}
.dealers__dropdown-option-title {
  font-weight: 700;
  font-size: 14px;
  color: #cf68ff;
}
.dealers__dropdown-option-address {
  font-size: 14px;
  color: #ffffff;
}
.dealers__contacts {
  flex: 0 0 100%;
}
.dealers__contacts-group {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.dealers__contact {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
}
.dealers__contact:last-child {
  flex: 0 0 100%;
}
.dealers__contact-title {
  flex: 0 0 50%;
  font-weight: 700;
}
.dealers__contact-data {
  flex: 0 0 50%;
}
.dealers__map {
  flex: 0 0 100%;
  height: 328px;
  border-radius: 5px;
  overflow: hidden;
}
.dealers__map-marker {
  width: 41px;
  height: 53px;
  background: center/contain no-repeat url("/resources/websites/parallel-ai/images/icons/map-point.svg");
  transform: translate(-50%, -100%);
}

@media (min-width: 1024px) {
  .dealers__content {
    gap: 40px;
  }
  .dealers__contacts-group {
    flex-direction: unset;
    justify-content: space-between;
    gap: 0;
  }
  .dealers__contact {
    border-left: 1px solid #cf68ff;
    padding-left: 20px;
    padding-right: 20px;
    flex-wrap: wrap;
    flex: 0 0 calc((100% - 203px) / 5);
    align-items: flex-start;
  }
  .dealers__contact:first-child {
    padding-left: 0;
    border-left: 0;
  }
  .dealers__contact:nth-child(5) {
    padding-right: 0;
  }
  .dealers__contact:last-child {
    flex: 0 0 203px;
    padding-left: 0;
    padding-right: 0;
    border-left: 0;
    align-items: center;
  }
  .dealers__contact-title {
    flex: 0 0 100%;
    font-size: 14px;
    margin-bottom: 10px;
  }
  .dealers__contact-data {
    flex: 0 0 100%;
    font-size: 14px;
  }
  .dealers__map {
    height: 441px;
  }
  .dealers__dropdown-trigger, .dealers__dropdown-chevron {
    display: none;
  }
  .dealers__dropdown {
    min-width: 0;
  }
  .dealers__dropdown-list {
    position: static;
    display: flex !important;
    gap: 20px;
    border-radius: 0;
    backdrop-filter: none;
    background: none;
    margin-top: 0;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    cursor: grab;
  }
  .dealers__dropdown-list::-webkit-scrollbar {
    display: none;
  }
  .dealers__dropdown-option {
    flex-shrink: 0;
    width: auto;
    padding: 20px;
    gap: 6px;
    border-radius: 5px;
    backdrop-filter: blur(10px);
    background: #1a1a1a;
    white-space: nowrap;
    border: 1px solid #1a1a1a;
  }
  .dealers__dropdown-option:hover, .dealers__dropdown-option.active {
    border: 1px solid #cf68ff;
    background-color: #1a1a1a;
  }
}
@media (min-width: 1330px) {
  .dealers__contact {
    flex: 0 0 calc((100% - 203px) / 5);
    padding-right: 30px;
    padding-left: 30px;
  }
  .dealers__contact-title {
    font-size: 16px;
  }
}
.dealers-other {
  position: relative;
}
.dealers-other__button {
  margin-top: 20px;
}
.dealers-other__content {
  display: flex;
  flex-direction: column;
}
.dealers-other__tabs {
  display: flex;
  flex-direction: column;
}
.dealers-other__tab {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  width: 100%;
  background: none;
  border: none;
  border-bottom: 1px solid #cf68ff;
  color: #ffffff;
  font: inherit;
  text-align: left;
  cursor: pointer;
  box-sizing: border-box;
}
.dealers-other__tab:first-child {
  border-top: 1px solid #cf68ff;
}
.dealers-other__tab.active + .dealers-other__panel {
  margin-top: -1px;
}
.dealers-other__tab-title {
  font-weight: 700;
  font-size: 18px;
}
.dealers-other__tab-meta {
  display: none;
  flex-direction: column;
  gap: 2px;
  font-size: 14px;
  color: #a2a2a2;
}
.dealers-other__tab-meta a {
  color: #a2a2a2;
}
.dealers-other__tab-meta a:hover {
  color: #ffffff;
}
.dealers-other__tab-meta-line {
  display: block;
}
.dealers-other__tab-office {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.dealers-other__tab-office + .dealers-other__tab-office {
  margin-top: 14px;
}
.dealers-other__tab-route {
  padding-top: 10px;
}
.dealers-other__tab-chevron {
  width: 15px;
  height: 8px;
  flex: 0 0 15px;
  background-color: #cf68ff;
  mask: center/contain no-repeat url("/resources/websites/parallel-ai/images/icons/chevron-down.svg");
  -webkit-mask: center/contain no-repeat url("/resources/websites/parallel-ai/images/icons/chevron-down.svg");
  transition: transform 0.2s;
}
.dealers-other__tab[aria-expanded=true] .dealers-other__tab-chevron {
  transform: rotate(180deg);
}
.dealers-other__panel {
  padding: 0 0 20px;
  background-color: #0f0f0f;
  border-bottom: 1px solid #cf68ff;
}
.dealers-other__panel-content {
  padding: 0 0 20px;
  color: #a2a2a2;
}
.dealers-other__panel-content p {
  margin-bottom: 10px;
}
.dealers-other__panel-content a {
  color: #a2a2a2;
}
.dealers-other__panel-content a:hover {
  text-decoration: underline;
  color: #ffffff;
}
.dealers-other__panel-office + .dealers-other__panel-office {
  padding-top: 20px;
}
.dealers-other__item-map {
  height: 328px;
  border-radius: 5px;
  overflow: hidden;
}
.dealers-other__item-map canvas {
  filter: grayscale(100%);
}
.dealers-other__note {
  padding-top: 30px;
}

@media (min-width: 1024px) {
  .dealers-other .container {
    position: relative;
  }
  .dealers-other .container:before {
    pointer-events: none;
    content: "";
    position: absolute;
    width: 399px;
    height: 399px;
    border-radius: 50%;
    background: url("/resources/websites/parallel-ai/images/radial-sm.svg");
    background-size: contain;
    background-position: center;
    right: 808px;
    top: 186px;
  }
}
@media (min-width: 1024px) and (min-width: 1024px) {
  .dealers-other .container:before {
    width: 999px;
    height: 999px;
    background: url("/resources/websites/parallel-ai/images/radial.svg");
  }
}
@media (min-width: 1024px) {
  .dealers-other__content {
    display: grid;
    grid-template-columns: 420px 1fr;
    column-gap: 40px;
    row-gap: 20px;
    align-items: start;
  }
  .dealers-other__tabs {
    grid-column: 1;
  }
  .dealers-other__panels {
    grid-column: 2;
    grid-row: 1/span 2;
    min-width: 0;
  }
  .dealers-other__item-map {
    height: 441px;
  }
  .dealers-other__tab {
    display: grid;
    grid-template-columns: 120px 1fr 15px;
    column-gap: 20px;
    justify-content: unset;
    border-top: 1px solid #a2a2a2;
    border-bottom: 0;
  }
  .dealers-other__tab:first-child {
    border-top-color: #a2a2a2;
  }
  .dealers-other__tab:last-of-type {
    border-bottom: 1px solid #a2a2a2;
  }
  .dealers-other__tab.active {
    border-color: #cf68ff;
  }
  .dealers-other__tab.active + .dealers-other__tab {
    border-top-color: #cf68ff;
  }
  .dealers-other__tab.active .dealers-other__tab-chevron {
    background-color: #cf68ff;
  }
  .dealers-other__tab.active .dealers-other__tab-meta, .dealers-other__tab.active .dealers-other__tab-meta a {
    color: #cf68ff;
  }
  .dealers-other__tab.active .dealers-other__tab-meta a:hover {
    color: #ffffff;
  }
  .dealers-other__tab-meta {
    display: flex;
  }
  .dealers-other__tab-chevron {
    transform: rotate(-90deg);
    background-color: #a2a2a2;
  }
  .dealers-other__tab[aria-expanded=true] .dealers-other__tab-chevron {
    transform: rotate(-90deg);
  }
  .dealers-other__panel {
    padding: 0;
    border-bottom: 0;
  }
  .dealers-other__panel-content {
    display: none;
  }
  .dealers-other__button {
    width: fit-content;
  }
}
@media (min-width: 1330px) {
  .dealers-other__content {
    grid-template-columns: 630px 1fr;
  }
  .dealers-other__item-map {
    height: 534px;
  }
  .dealers-other__tab {
    grid-template-columns: 190px 1fr 15px;
    column-gap: 10px;
  }
}
.faq__list {
  max-width: 850px;
  margin: 0 auto;
}
.faq__item {
  border-bottom: 1px solid #cf68ff;
}
.faq__item:first-child {
  border-top: 1px solid #cf68ff;
}
.faq__item[open] .faq__question-chevron {
  transform: rotate(180deg);
}
.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 30px 0;
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  font-size: 20px;
}
.faq__question::-webkit-details-marker {
  display: none;
}
.faq__question-chevron {
  width: 20px;
  height: 11px;
  flex: 0 0 20px;
  background-color: #cf68ff;
  mask: center/contain no-repeat url("/resources/websites/parallel-ai/images/icons/chevron-down.svg");
  -webkit-mask: center/contain no-repeat url("/resources/websites/parallel-ai/images/icons/chevron-down.svg");
  transition: transform 0.2s;
}
.faq__answer {
  padding: 0 30px 20px 0;
  color: #a2a2a2;
}
.faq__answer p {
  margin: 0;
}
.faq__footer {
  padding-top: 40px;
  margin: 0 auto;
  text-align: center;
}

@media (min-width: 1024px) {
  .faq .container {
    position: relative;
  }
  .faq .container:before {
    pointer-events: none;
    content: "";
    position: absolute;
    width: 399px;
    height: 399px;
    border-radius: 50%;
    background: url("/resources/websites/parallel-ai/images/radial-sm.svg");
    background-size: contain;
    background-position: center;
    right: -559px;
    top: 379px;
  }
}
@media (min-width: 1024px) and (min-width: 1024px) {
  .faq .container:before {
    width: 999px;
    height: 999px;
    background: url("/resources/websites/parallel-ai/images/radial.svg");
  }
}
@media (min-width: 1024px) {
  .faq__question {
    padding: 30px 20px;
  }
  .faq__answer {
    padding: 0 20px 30px 20px;
  }
}
.numbers__header {
  display: block;
  flex: 0 1 auto;
  margin-bottom: 0;
}
.numbers__container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
.numbers__title {
  position: relative;
  padding-bottom: 20px;
}
.numbers__title:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 140px;
  height: 1px;
  background-color: #cf68ff;
}
.numbers__items, .numbers__items-left, .numbers__items-right {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.numbers__items-left, .numbers__items-right {
  flex: 0 0 100%;
}
.numbers__items-left {
  border-bottom: 1px solid #a2a2a2;
}
.numbers__item {
  color: #a2a2a2;
  padding-bottom: 20px;
  flex: 0 0 100%;
}
.numbers__item:first-child {
  border-bottom: 1px solid #a2a2a2;
}
.numbers__item-title {
  display: block;
  color: #cf68ff;
  font-size: 55px;
  font-weight: 700;
  margin-bottom: 10px;
}

@media (min-width: 1024px) {
  .numbers .container {
    position: relative;
  }
  .numbers .container:before {
    pointer-events: none;
    content: "";
    position: absolute;
    width: 399px;
    height: 399px;
    border-radius: 50%;
    background: url("/resources/websites/parallel-ai/images/radial-sm.svg");
    background-size: contain;
    background-position: center;
    right: -500px;
    top: -500px;
    z-index: -1;
  }
}
@media (min-width: 1024px) and (min-width: 1024px) {
  .numbers .container:before {
    width: 999px;
    height: 999px;
    background: url("/resources/websites/parallel-ai/images/radial.svg");
  }
}
@media (min-width: 1024px) {
  .numbers__container {
    position: relative;
    z-index: 1;
  }
  .numbers__content {
    flex: 0 0 582px;
    margin: 0 auto;
  }
  .numbers__items {
    gap: 0;
  }
  .numbers__items-left {
    border-bottom: 0;
    padding-right: 30px;
  }
  .numbers__items-left, .numbers__items-right {
    gap: 30px;
    flex: 0 0 50%;
  }
  .numbers__items-right {
    padding-left: 30px;
    border-left: 1px solid #a2a2a2;
  }
  .numbers__item {
    padding-bottom: 30px;
  }
  .numbers__item:last-child {
    padding-bottom: 0;
  }
}
@media (min-width: 1330px) {
  .numbers__container {
    flex-wrap: nowrap;
    gap: 80px;
    justify-content: space-between;
  }
}
.geo__items {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.geo__item {
  position: relative;
  height: 316px;
  flex: 0 0 100%;
  border-radius: 40px;
  padding: 30px 20px;
  display: flex;
  align-items: end;
  flex-wrap: wrap;
}
.geo__item:nth-child(1) {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 36.86%, rgba(0, 0, 0, 0.8) 79.43%), url("/resources/websites/parallel-ai/images/cars/car-china.webp");
  background-repeat: no-repeat, no-repeat;
  background-position: center, center;
  background-size: contain, cover;
}
.geo__item:nth-child(2) {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 36.86%, rgba(0, 0, 0, 0.8) 79.43%), url("/resources/websites/parallel-ai/images/cars/car-uae.webp");
  background-repeat: no-repeat, no-repeat;
  background-position: center, -40px center;
  background-size: contain, cover;
}
.geo__item:nth-child(3) {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 36.86%, rgba(0, 0, 0, 0.8) 79.43%), url("/resources/websites/parallel-ai/images/cars/car-europe.webp");
  background-repeat: no-repeat, no-repeat;
  background-position: center, center;
  background-size: contain, auto 173%;
}
.geo__item:nth-child(4) {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 36.86%, rgba(0, 0, 0, 0.8) 79.43%), url("/resources/websites/parallel-ai/images/cars/car-usa.webp");
  background-repeat: no-repeat, no-repeat;
  background-position: center, -40px center;
  background-size: contain, cover;
}
.geo__item-days {
  position: absolute;
  top: -7px;
  left: -7px;
  z-index: 1;
  background: left center/100% 100% no-repeat url("/resources/websites/parallel-ai/images/badge.svg");
  width: 186px;
  height: 58px;
  color: #cf68ff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.geo__item-days-text {
  position: relative;
  z-index: 1;
  display: inline-block;
}
.geo__item-header {
  flex: 0 0 100%;
  margin-bottom: 20px;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
}
.geo__item-content {
  width: 100%;
}
.geo__item-country {
  font-weight: 700;
  font-size: 20px;
}
.geo__item-price {
  display: none;
  font-weight: 700;
  font-size: 20px;
}
.geo__item-footer {
  display: flex;
  flex-wrap: nowrap;
  align-items: end;
  justify-content: space-between;
  gap: 10px;
}
.geo__item-desc {
  flex: 1;
}
.geo__item-link {
  flex: 0 0 40px;
}

@media (min-width: 420px) {
  .geo__item:nth-child(3) {
    background-size: contain, auto 240%;
  }
}
@media (min-width: 530px) {
  .geo__item:nth-child(2), .geo__item:nth-child(4) {
    background-position: center, center;
    background-size: contain, cover;
  }
}
@media (min-width: 768px) {
  .geo__items {
    gap: 20px;
  }
  .geo__item {
    flex: 0 0 calc((100% - 20px) / 2);
  }
  .geo__item:nth-child(2), .geo__item:nth-child(4) {
    background-position: center, -40px center;
    background-size: contain, cover;
  }
}
@media (min-width: 1024px) {
  .geo .container {
    position: relative;
    z-index: 1;
  }
  .geo__item {
    height: 350px;
    flex: 0 0 calc((100% - 30px) / 2);
  }
  .geo__item:nth-child(1) {
    background-position: center, center -130px;
    background-size: contain, auto 150%;
  }
  .geo__item:nth-child(2), .geo__item:nth-child(4) {
    background-position: center, center;
    background-size: contain, cover;
  }
  .geo__item-price {
    display: block;
  }
}
@media (min-width: 1330px) {
  .geo__item:nth-child(1) {
    background-position: center, center -170px;
  }
  .geo__item:nth-child(3) {
    background-size: contain, auto 237%;
    background-position: center, -325px -272px;
  }
}
.info-panel__inner {
  padding: 60px 20px;
  border-radius: 5px;
  background-color: #1a1a1a;
}
.info-panel__header {
  position: relative;
  margin-bottom: 40px;
  padding-bottom: 20px;
}
.info-panel__header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 140px;
  height: 1px;
  background-color: #cf68ff;
}
.info-panel__title {
  display: block;
}
.info-panel__desc {
  margin-top: 20px;
}
.info-panel__items {
  display: grid;
  grid-template-columns: 1fr;
}
.info-panel__item {
  padding: 30px 0;
  border-bottom: 1px solid #a2a2a2;
}
.info-panel__item:first-child {
  padding-top: 0;
}
.info-panel__item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.info-panel__item-title {
  margin-bottom: 8px;
  color: #cf68ff;
  font-size: 18px;
  font-weight: 700;
}
.info-panel__item-text {
  color: #a2a2a2;
  line-height: 1.3;
}

@media (min-width: 576px) {
  .info-panel__items {
    position: relative;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .info-panel__items::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    background-color: #a2a2a2;
    transform: translateX(-0.5px);
  }
  .info-panel__item {
    position: relative;
    padding: 20px;
    border-bottom: 0;
  }
  .info-panel__item:first-child, .info-panel__item:nth-child(2) {
    padding-top: 0;
  }
  .info-panel__item:nth-child(3), .info-panel__item:nth-child(4) {
    padding-bottom: 0;
  }
  .info-panel__item:nth-child(-n+2)::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 1px;
    background-color: #a2a2a2;
  }
  .info-panel__item:first-child::after {
    right: 20px;
  }
  .info-panel__item:nth-child(2)::after {
    left: 20px;
  }
}
@media (min-width: 1024px) {
  .info-panel__inner {
    display: grid;
    grid-template-columns: minmax(300px, 1fr) minmax(520px, 1.15fr);
    gap: 30px;
    padding: 60px 30px;
  }
  .info-panel__header {
    align-self: start;
    margin-bottom: 0;
  }
  .info-panel__item {
    padding: 0 30px 30px;
  }
  .info-panel__item:first-child {
    padding-left: 0;
  }
  .info-panel__item:nth-child(3) {
    padding: 30px 30px 0 0;
  }
  .info-panel__item:nth-child(4) {
    padding: 30px 0 0 30px;
  }
  .info-panel__item:first-child::after {
    right: 30px;
  }
  .info-panel__item:nth-child(2)::after {
    left: 30px;
  }
  .info-panel__item-title {
    padding-top: 12px;
  }
}
@media (min-width: 1330px) {
  .info-panel__inner {
    grid-template-columns: minmax(600px, 1fr) minmax(600px, 1.15fr);
  }
}
.home-catalog {
  position: relative;
  margin-bottom: 0;
  background: #f4f4f4;
  padding: 60px 0;
}
.home-catalog__header {
  margin-bottom: 20px;
}
.home-catalog__title {
  color: #0f0f0f;
}
.home-catalog__top {
  margin-bottom: 40px;
}
.home-catalog__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.home-catalog__cities, .home-catalog__statuses {
  width: 100%;
}
.home-catalog__cities {
  position: relative;
}
.home-catalog__cities-scroll {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: nowrap;
  overflow-x: auto;
  box-shadow: inset 0 -1px 0 0 #a2a2a2;
  scrollbar-width: none;
}
.home-catalog__cities-scroll::-webkit-scrollbar {
  display: none;
}
.home-catalog__city-link {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  min-width: 0;
  padding: 16px 20px 14px;
  border: 0;
  background: transparent;
  box-shadow: inset 0 -1px 0 0 transparent;
  color: #0f0f0f;
  text-decoration: none;
  white-space: nowrap;
  transition: box-shadow 0.2s ease, color 0.2s ease;
  cursor: pointer;
  appearance: none;
}
.home-catalog__city-link:hover, .home-catalog__city-link:focus-visible, .home-catalog__city-link.is-active {
  color: #7109aa;
  box-shadow: inset 0 -1px 0 0 #7109aa;
}
.home-catalog__city-link:focus-visible {
  outline: 2px solid #cf68ff;
  outline-offset: -2px;
}
.home-catalog__statuses {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.home-catalog__status-link.is-active, .home-catalog__status-link:hover, .home-catalog__status-link:focus-visible {
  opacity: 1;
}
.home-catalog__items {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.home-catalog__empty {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 100%;
  min-height: 220px;
  padding: 32px 24px;
  border-radius: 5px;
  background-color: #ffffff;
  color: #0f0f0f;
  text-align: center;
}
.home-catalog__bottom {
  padding-top: 40px;
  margin: 0 auto;
  text-align: center;
}

@media (min-width: 768px) {
  .home-catalog .listing-card--gallery {
    flex: 0 0 calc(50% - 15px);
    max-width: calc(50% - 15px);
  }
}
@media (min-width: 1024px) {
  .home-catalog {
    padding: 100px 0;
  }
  .home-catalog .container {
    position: relative;
  }
  .home-catalog .container:before {
    pointer-events: none;
    content: "";
    position: absolute;
    width: 399px;
    height: 399px;
    border-radius: 50%;
    background: url("/resources/websites/parallel-ai/images/radial-sm.svg");
    background-size: contain;
    background-position: center;
    right: -544px;
    top: -546px;
  }
}
@media (min-width: 1024px) and (min-width: 1024px) {
  .home-catalog .container:before {
    width: 999px;
    height: 999px;
    background: url("/resources/websites/parallel-ai/images/radial.svg");
  }
}
@media (min-width: 1024px) {
  .home-catalog__header {
    position: relative;
    z-index: 1;
    margin-bottom: 30px;
  }
  .home-catalog__top {
    position: relative;
    z-index: 1;
    margin-bottom: 45px;
  }
  .home-catalog__items {
    position: relative;
    z-index: 1;
  }
  .home-catalog__bottom {
    padding-top: 60px;
  }
  .home-catalog__filters {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
  }
  .home-catalog__cities {
    flex: 0 0 620px;
  }
  .home-catalog__cities-scroll {
    justify-content: space-between;
  }
  .home-catalog__statuses {
    width: auto;
  }
}
@media (min-width: 1330px) {
  .home-catalog__cities {
    flex: 0 0 630px;
  }
}
.cards-grid {
  position: relative;
}
.cards-grid__items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}
.cards-grid__image {
  overflow: hidden;
  aspect-ratio: 340/178;
  border-radius: 5px;
}
.cards-grid__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cards-grid__item {
  position: relative;
  display: block;
  min-height: 285px;
  padding: 40px 20px 60px;
  border: 1px solid transparent;
  border-radius: 5px;
  background: #1a1a1a;
  transition: border-color 0.3s ease;
}
.cards-grid__item:not(.cards-grid__item--static):hover {
  border-color: #cf68ff;
  color: #ffffff;
}
.cards-grid__item:not(.cards-grid__item--static):hover .cards-grid__item-action {
  border-color: #7109aa;
  background: #7109aa;
}
.cards-grid__item--light {
  background-color: #ffffff;
  color: #0f0f0f;
}
.cards-grid__item--light .cards-grid__item-action {
  color: #ffffff;
}
.cards-grid__item--light:not(.cards-grid__item--static):hover {
  color: #0f0f0f;
}
.cards-grid__item-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 60px;
  margin-bottom: 40px;
}
.cards-grid__item-icon {
  display: block;
  width: 60px;
  height: 60px;
}
.cards-grid__item-name {
  max-width: 180px;
  color: #cf68ff;
  font-size: 18px;
  letter-spacing: 0.05em;
  text-align: right;
  text-transform: uppercase;
}
.cards-grid__item-title {
  margin-bottom: 10px;
}
.cards-grid__item-text {
  font-size: 14px;
}
.cards-grid__item-action {
  position: absolute;
  right: 20px;
  bottom: 20px;
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .cards-grid__items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
  .cards-grid__image {
    grid-column: 1/-1;
  }
}
@media (min-width: 1024px) {
  .cards-grid__header {
    margin-bottom: 40px;
  }
  .cards-grid__items {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
  .cards-grid__image {
    grid-column: span 6;
    aspect-ratio: auto;
    min-height: 285px;
  }
  .cards-grid__item {
    grid-column: span 3;
  }
  .cards-grid--count-6 .cards-grid__item:nth-child(n+4) {
    grid-column: span 4;
  }
}
@media (min-width: 1330px) {
  .cards-grid__items {
    gap: 30px;
  }
}
.image-cta .section__content {
  text-align: center;
}
.image-cta .btn-cta {
  width: 100%;
  max-width: 410px;
}
.image-cta__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
.image-cta__actions .btn-cta {
  width: 300px;
}

@media (min-width: 768px) {
  .image-cta__actions {
    flex-direction: row;
    justify-content: center;
  }
  .image-cta__actions .btn-cta {
    width: 250px;
  }
}
.imager__container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.imager__title {
  display: block;
  margin-bottom: 20px;
}
.imager__content, .imager__image {
  flex: 0 0 100%;
}
.imager__image img {
  border-radius: 5px;
}
.imager--image-left .imager__image {
  order: -1;
}

@media (min-width: 1024px) {
  .imager .container {
    position: relative;
  }
  .imager .container::before {
    pointer-events: none;
    content: "";
    position: absolute;
    width: 399px;
    height: 399px;
    border-radius: 50%;
    background: url("/resources/websites/parallel-ai/images/radial-sm.svg");
    background-size: contain;
    background-position: center;
    top: 101px;
    right: -519px;
    z-index: 1;
  }
}
@media (min-width: 1024px) and (min-width: 1024px) {
  .imager .container::before {
    width: 999px;
    height: 999px;
    background: url("/resources/websites/parallel-ai/images/radial.svg");
  }
}
@media (min-width: 1024px) {
  .imager__container {
    flex-wrap: nowrap;
    gap: 30px;
    justify-content: space-between;
    align-items: center;
  }
  .imager__content {
    flex: 1;
  }
  .imager__text {
    position: relative;
    padding-bottom: 30px;
  }
  .imager__text:before {
    content: "";
    width: 140px;
    height: 1px;
    background-color: #cf68ff;
    position: absolute;
    left: 0;
    bottom: 0;
  }
  .imager__image {
    position: relative;
    z-index: 2;
    flex: 0 0 50%;
  }
  .imager__image img {
    border-radius: 40px;
  }
  .imager--image-left .container::before {
    right: auto;
    left: -519px;
  }
}
.target__header {
  margin-bottom: 30px;
}
.target__items {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.target__items:before {
  content: "";
  display: block;
  position: absolute;
  top: 29px;
  left: 28px;
  width: 29px;
  height: calc(100% - 29px);
  background: linear-gradient(90deg, rgba(113, 9, 170, 0) 0%, rgba(113, 9, 170, 0.12) 24%, rgba(113, 9, 170, 0.5) 38%, #cf68ff 45%, #ffccff 49%, #ffccff 54%, #cf68ff 58%, rgba(113, 9, 170, 0.5) 65%, rgba(113, 9, 170, 0.12) 79%, rgba(113, 9, 170, 0) 100%);
}
.target__item {
  width: 100%;
}
.target__item--white {
  background-color: #0f0f0f;
  z-index: 1;
}
.target__item-year {
  position: relative;
  font-size: 16px;
  font-weight: 700;
  background: rgba(15, 15, 15, 0.6);
  backdrop-filter: blur(10px);
  color: #cf68ff;
  border: 1px solid #cf68ff;
  border-radius: 5px;
  width: 86px;
  height: 57px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.target__item-year:before {
  content: "";
  display: block;
  position: absolute;
  top: 29px;
  right: -116px;
  width: 116px;
  height: 49px;
  border-top: 1px solid #cf68ff;
  border-right: 1px solid #cf68ff;
  border-radius: 0 5px 0 0;
  -moz-border-radius-topright: 5px;
}
.target__item--white .target__item-year {
  background-color: #ffffff;
}
.target__item-data {
  border: 1px solid #cf68ff;
  border-radius: 5px;
  background-color: #1a1a1a;
  padding: 40px 20px;
  width: calc(100% - 64px);
  margin-left: auto;
}
.target__item--white .target__item-data {
  background-color: #ffffff;
}
.target__item-title {
  display: block;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}
.target__item--white .target__item-title {
  color: #cf68ff;
}
.target__item-text {
  font-size: 14px;
}
.target__item--white .target__item-text {
  margin-bottom: 20px;
  color: #0f0f0f;
}

@media (min-width: 1024px) {
  .target .container {
    position: relative;
  }
  .target .container:before {
    pointer-events: none;
    content: "";
    position: absolute;
    width: 399px;
    height: 399px;
    border-radius: 50%;
    background: url("/resources/websites/parallel-ai/images/radial-sm.svg");
    background-size: contain;
    background-position: center;
    bottom: -542px;
    left: -502px;
  }
}
@media (min-width: 1024px) and (min-width: 1024px) {
  .target .container:before {
    width: 999px;
    height: 999px;
    background: url("/resources/websites/parallel-ai/images/radial.svg");
  }
}
@media (min-width: 1330px) {
  .target {
    position: relative;
  }
  .target:before {
    content: "";
    display: block;
    position: absolute;
    top: calc(50% + 51px);
    right: 0;
    left: unset;
    transform: translateY(-50%);
    height: 29px;
    width: calc(100% - (100% - 1290px) / 2 - 166px);
    background: linear-gradient(180deg, rgba(113, 9, 170, 0) 0%, rgba(113, 9, 170, 0.12) 24%, rgba(113, 9, 170, 0.5) 38%, #cf68ff 45%, #ffccff 49%, #ffccff 54%, #cf68ff 58%, rgba(113, 9, 170, 0.5) 65%, rgba(113, 9, 170, 0.12) 79%, rgba(113, 9, 170, 0) 100%);
  }
  .target__header {
    margin-bottom: 60px;
  }
  .target__items {
    max-width: 100%;
    margin: unset;
    position: relative;
    height: 743px;
    display: block;
    flex-wrap: unset;
    gap: unset;
  }
  .target__items:before {
    display: none;
  }
  .target__item {
    position: absolute;
    width: 300px;
  }
  .target__item:nth-child(1) {
    left: 0;
    bottom: 0;
  }
  .target__item:nth-child(2) {
    left: 165px;
    top: 0;
  }
  .target__item:nth-child(3) {
    left: 330px;
    bottom: 0;
  }
  .target__item:nth-child(4) {
    right: 495px;
    top: 0;
  }
  .target__item:nth-child(5) {
    bottom: 0;
    right: 330px;
  }
  .target__item:nth-child(6) {
    width: 385px;
    right: 80px;
    top: 0;
  }
  .target__item:nth-child(6) .target__item-year {
    margin-left: 107px;
  }
  .target__item--white {
    background-color: unset;
    z-index: unset;
    bottom: 0;
    right: 0;
  }
  .target__item--white .target__item-text {
    margin-bottom: 30px;
  }
  .target__item:nth-child(2), .target__item:nth-child(4), .target__item:nth-child(6) {
    display: flex;
    flex-wrap: wrap;
    gap: 31px;
  }
  .target__item:nth-child(2) .target__item-year, .target__item:nth-child(4) .target__item-year, .target__item:nth-child(6) .target__item-year {
    order: 2;
  }
  .target__item:nth-child(2) .target__item-year:before, .target__item:nth-child(4) .target__item-year:before, .target__item:nth-child(6) .target__item-year:before {
    top: -31px;
  }
  .target__item:nth-child(2) .target__item-data, .target__item:nth-child(4) .target__item-data, .target__item:nth-child(6) .target__item-data {
    height: 286px;
    order: 1;
  }
  .target__item-year {
    margin: 0 auto 30px;
  }
  .target__item-year:before {
    border: 0;
    border-radius: 0;
    width: 1px;
    background-color: #cf68ff;
    height: 31px;
    top: 56px;
    left: 50%;
  }
  .target__item-data {
    margin-left: unset;
    width: 100%;
    height: 340px;
  }
}
.team__items {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
.team__item {
  flex: 0 0 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.team__item-image {
  flex: 0 0 100%;
}
.team__item-image img {
  border-radius: 5px;
}
.team__item-position, .team__item-title {
  margin-bottom: 20px;
}
.team__item-position {
  display: block;
  color: #a2a2a2;
}
.team__item-title {
  color: #cf68ff;
}
.team__item-info p {
  display: none;
}

@media (min-width: 576px) {
  .team__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
  }
  .team__item-image {
    flex: 0 0 40%;
    margin-bottom: 0;
  }
  .team__item-info {
    flex: 1;
  }
}
@media (min-width: 768px) {
  .team__items {
    flex-wrap: wrap;
  }
  .team__item {
    flex-wrap: wrap;
    gap: 40px;
    flex: 0 0 calc((100% - 40px) / 2);
  }
  .team__item-image {
    flex: 0 0 100%;
  }
}
@media (min-width: 1024px) {
  .team .container {
    position: relative;
  }
  .team .container:before {
    pointer-events: none;
    content: "";
    position: absolute;
    width: 399px;
    height: 399px;
    border-radius: 50%;
    background: url("/resources/websites/parallel-ai/images/radial-sm.svg");
    background-size: contain;
    background-position: center;
    top: 815px;
    right: -499px;
  }
}
@media (min-width: 1024px) and (min-width: 1024px) {
  .team .container:before {
    width: 999px;
    height: 999px;
    background: url("/resources/websites/parallel-ai/images/radial.svg");
  }
}
@media (min-width: 1024px) {
  .team__header {
    margin-bottom: 40px;
  }
  .team__items {
    gap: 30px;
  }
  .team__item {
    flex: 0 0 calc((100% - 60px) / 3);
  }
}
.payments-table {
  width: 100%;
  max-width: 1070px;
  margin: 0 auto;
  table-layout: fixed;
}
.payments-table__header-item {
  color: #a2a2a2;
  padding: 20px 7.5px;
  border-bottom: 1px solid #1a1a1a;
  font-weight: inherit;
  text-align: left;
}
.payments-table__header-item:first-child {
  padding-left: 0;
}
.payments-table__header-item:nth-child(2), .payments-table__header-item:last-child {
  text-align: center;
}
.payments-table__header-item:last-child {
  width: 65px;
  padding-right: 0;
}
.payments-table__item > td {
  padding: 20px 7.5px;
  border-bottom: 1px solid #1a1a1a;
  vertical-align: middle;
}
.payments-table__item > td:first-child {
  padding-left: 0;
}
.payments-table__item > td:last-child {
  padding-right: 0;
}
.payments-table__name {
  font-weight: 700;
}
.payments-table__desc {
  text-align: center;
}
.payments-table__included span {
  display: block;
  margin: 0 auto;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-position: center;
  background-repeat: no-repeat;
}
.payments-table__included-no {
  background-color: #a2a2a2;
  background-image: url("/resources/websites/parallel-ai/images/icons/payment-table-no.svg");
  background-size: 12px 12px;
}
.payments-table__included-yes {
  background-color: #cf68ff;
  background-image: url("/resources/websites/parallel-ai/images/icons/payment-table-yes.svg");
  background-size: 14px 11px;
}

@media (min-width: 768px) {
  .payments-table__header-item:first-child {
    width: 220px;
  }
  .payments-table__header-item:last-child {
    width: 130px;
  }
}
.sale-options {
  position: relative;
}
.sale-options .container {
  position: relative;
}
.sale-options .container::before {
  pointer-events: none;
  content: "";
  position: absolute;
  width: 399px;
  height: 399px;
  border-radius: 50%;
  background: url("/resources/websites/parallel-ai/images/radial-sm.svg");
  background-size: contain;
  background-position: center;
}
@media (min-width: 1024px) {
  .sale-options .container::before {
    width: 999px;
    height: 999px;
    background: url("/resources/websites/parallel-ai/images/radial.svg");
  }
}
.sale-options .container::before {
  right: -260px;
  bottom: -260px;
}
.sale-options__header, .sale-options__items {
  position: relative;
}
.sale-options__items {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 20px;
}
.sale-options__item {
  display: flex;
  flex-direction: column;
  padding: 40px 20px 20px;
  border-radius: 5px;
  background-color: #1a1a1a;
}
.sale-options__item--light {
  background-color: #ffffff;
  color: #0f0f0f;
}
.sale-options__item--light .sale-options__item-list .ui-check-list__item::before {
  background-color: #7109aa;
}
.sale-options__item--light .sale-options__item-label,
.sale-options__item--light .sale-options__item-note {
  color: #7109aa;
}
.sale-options__item--light .sale-options__item-note {
  border-top-color: #0f0f0f;
}
.sale-options__item-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 60px;
  margin-bottom: 60px;
}
.sale-options__item-icon {
  width: 60px;
  height: 60px;
  flex: 0 0 60px;
}
.sale-options__item-label {
  color: #cf68ff;
  font-size: 18px;
  letter-spacing: 0.05em;
  text-align: right;
  text-transform: uppercase;
}
.sale-options__item-title {
  margin-bottom: 25px;
}
.sale-options__item-list {
  gap: 18px;
}
.sale-options__item-footer {
  margin-top: 25px;
}
.sale-options__item-note {
  margin: 0;
  padding-top: 25px;
  border-top: 1px solid #ffffff;
  color: #cf68ff;
  line-height: 1.3;
}
.sale-options__item-action {
  margin-top: 20px;
}

@media (min-width: 768px) {
  .sale-options__items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .sale-options__item {
    min-height: 570px;
  }
  .sale-options__item-footer {
    margin-top: auto;
    padding-top: 25px;
  }
}
@media (min-width: 1024px) {
  .sale-options .container::before {
    right: -560px;
    bottom: -550px;
  }
  .sale-options__header {
    margin-bottom: 60px;
  }
  .sale-options__items {
    gap: 30px;
  }
  .sale-options__item {
    min-height: 500px;
    padding: 40px 20px 20px;
  }
  .sale-options__item-header {
    margin-bottom: 40px;
  }
  .sale-options__item-list {
    gap: 20px;
  }
}
@media (min-width: 1330px) {
  .sale-options__item {
    padding-right: 30px;
    padding-left: 30px;
  }
}
.service-costs {
  position: relative;
}
.service-costs .container {
  position: relative;
}
.service-costs .container::before {
  pointer-events: none;
  content: "";
  position: absolute;
  width: 399px;
  height: 399px;
  border-radius: 50%;
  background: url("/resources/websites/parallel-ai/images/radial-sm.svg");
  background-size: contain;
  background-position: center;
}
@media (min-width: 1024px) {
  .service-costs .container::before {
    width: 999px;
    height: 999px;
    background: url("/resources/websites/parallel-ai/images/radial.svg");
  }
}
.service-costs .container::before {
  right: -280px;
  bottom: -300px;
}
.service-costs__header, .service-costs__items {
  position: relative;
  z-index: 1;
}
.service-costs__items {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
}
.service-costs__item.turnkey-conditions__price-item {
  display: block;
  min-height: 182px;
  padding: 40px 20px 20px;
}
.service-costs__item-heading {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
}
.service-costs__item-icon {
  width: 60px;
  height: 60px;
  flex: 0 0 60px;
}
.service-costs__item-value {
  color: #cf68ff;
  font-size: 18px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.service-costs__item-text {
  line-height: 1.3;
}

@media (min-width: 768px) {
  .service-costs__items {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }
}
@media (min-width: 1024px) {
  .service-costs .container::before {
    right: -500px;
    bottom: -500px;
  }
  .service-costs__items {
    gap: 30px;
  }
  .service-costs__item.turnkey-conditions__price-item {
    min-height: 205px;
    padding: 40px 20px 20px;
  }
}
.comparison-table-section {
  position: relative;
  z-index: 1;
  isolation: isolate;
}
.comparison-table-section .container {
  position: relative;
}
.comparison-table-section .container::after {
  pointer-events: none;
  content: "";
  position: absolute;
  width: 399px;
  height: 399px;
  border-radius: 50%;
  background: url("/resources/websites/parallel-ai/images/radial-sm.svg");
  background-size: contain;
  background-position: center;
}
@media (min-width: 1024px) {
  .comparison-table-section .container::after {
    width: 999px;
    height: 999px;
    background: url("/resources/websites/parallel-ai/images/radial.svg");
  }
}
.comparison-table-section .container::after {
  right: -280px;
  bottom: -300px;
  z-index: -1;
}

.comparison-table {
  display: block;
  width: 100%;
  border-collapse: collapse;
}
.comparison-table thead,
.comparison-table tbody,
.comparison-table tr {
  display: block;
}
.comparison-table__header tr,
.comparison-table tr.comparison-table__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}
.comparison-table__header {
  color: #a2a2a2;
}
.comparison-table__header th {
  padding: 0 8px 20px;
  border-bottom: 1px solid #1a1a1a;
  font-weight: 400;
  line-height: 1.3;
  text-align: center;
  vertical-align: middle;
}
.comparison-table__header-spacer {
  display: none;
}
.comparison-table__row {
  border-bottom: 1px solid #1a1a1a;
}
.comparison-table__criterion {
  grid-column: 1/-1;
  padding: 22px 8px 20px;
  color: #a2a2a2;
  font-weight: 400;
  line-height: 1.3;
  text-align: center;
}
.comparison-table__value {
  padding: 0 8px 20px 0;
  line-height: 1.25;
  vertical-align: middle;
}
.comparison-table__value--accent {
  padding-right: 0;
  padding-left: 8px;
  color: #cf68ff;
  font-weight: 700;
}

@media (min-width: 1024px) {
  .comparison-table-section .container::after {
    right: -520px;
    bottom: -580px;
  }
}
@media (min-width: 768px) {
  .comparison-table {
    display: table;
    table-layout: fixed;
  }
  .comparison-table thead {
    display: table-header-group;
  }
  .comparison-table tbody {
    display: table-row-group;
  }
  .comparison-table__header tr,
  .comparison-table tr.comparison-table__row {
    display: table-row;
  }
  .comparison-table__header-spacer {
    display: table-cell;
    width: 30%;
  }
  .comparison-table__header th {
    padding: 20px;
  }
  .comparison-table__row {
    border-bottom: 0;
  }
  .comparison-table__criterion, .comparison-table__value {
    display: table-cell;
    padding: 30px 20px;
    border-bottom: 1px solid #1a1a1a;
    text-align: center;
  }
  .comparison-table__criterion {
    width: 30%;
    text-align: left;
  }
  .comparison-table__value {
    width: 35%;
  }
}
.page-404 .hero {
  margin-bottom: -50px;
}
.page-404 .hero__background {
  background-position: center 90px;
  background-size: auto 87%;
}

@media (min-width: 1024px) {
  .page-404 .hero {
    min-height: 650px;
    margin-bottom: -75px;
  }
  .page-404 .hero__background {
    background-position: calc(50% + 250px) center;
    background-size: auto 120%;
  }
  .page-404 .hero__title {
    max-width: 300px;
  }
  .page-404 .suggestions .container:before {
    display: none;
  }
}
@media (min-width: 1330px) {
  .page-404 .hero__background {
    background-position: calc(50% + 310px) -131px;
  }
}
.page-home .hero__background {
  background-position: right -15px top -100px;
  background-size: auto 121%;
}
.page-home .hero__background::before {
  background: linear-gradient(180deg, rgba(15, 15, 15, 0.9) 28.98%, rgba(15, 15, 15, 0.5) 44.62%, rgba(15, 15, 15, 0) 54.44%, rgba(15, 15, 15, 0) 90.48%, #0f0f0f 100%), linear-gradient(180deg, rgba(15, 15, 15, 0) 68.42%, #0F0F0F 98.11%);
}
.page-home .hero__footer {
  padding-top: 270px;
}

@media (min-width: 576px) {
  .page-home .hero__background {
    background-position: right center;
    background-size: cover;
  }
}
@media (min-width: 1024px) {
  .page-home .hero__background {
    background-position: right center;
    background-size: cover;
  }
  .page-home .hero__background::before {
    background: linear-gradient(270deg, #0f0f0f 0%, rgba(15, 15, 15, 0) 3.84%, rgba(15, 15, 15, 0) 50.85%, #0f0f0f 94.24%), linear-gradient(180deg, rgba(15, 15, 15, 0) 68.42%, #0f0f0f 98.11%), linear-gradient(90deg, rgba(0, 0, 0, 0.8) 37.39%, rgba(0, 0, 0, 0) 67.15%);
  }
  .page-home .hero__footer {
    padding-top: 100px;
  }
  .page-home .product-docs .container:before {
    top: 137px;
    right: -462px;
    left: unset;
  }
  .page-home .faq .container:before {
    top: -91px;
    right: -589px;
  }
  .page-home .lead-form .container:before {
    top: -204px;
    right: -519px;
  }
}
.page-turnkey-car .hero__background {
  background-position: right bottom;
  background-size: cover;
  height: 640px;
}
.page-turnkey-car .hero__background::before {
  background: linear-gradient(180deg, rgba(15, 15, 15, 0.9) 28.98%, rgba(15, 15, 15, 0.5) 44.62%, rgba(15, 15, 15, 0) 54.44%, rgba(15, 15, 15, 0) 90.48%, #0f0f0f 100%), linear-gradient(180deg, rgba(15, 15, 15, 0) 68.42%, #0F0F0F 98.11%);
}
.page-turnkey-car .hero__footer {
  padding-top: 310px;
}

@media (min-width: 1024px) {
  .page-turnkey-car .hero__background {
    background-position: right top;
    background-size: cover;
  }
  .page-turnkey-car .hero__background::before {
    background: linear-gradient(270deg, #0f0f0f 0%, rgba(15, 15, 15, 0) 3.84%, rgba(15, 15, 15, 0) 50.85%, #0f0f0f 94.24%), linear-gradient(180deg, rgba(15, 15, 15, 0) 68.42%, #0f0f0f 98.11%), linear-gradient(180deg, rgba(15, 15, 15, 0) 68.42%, #0F0F0F 98.11%), linear-gradient(90deg, rgba(0, 0, 0, 0.8) 37.39%, rgba(0, 0, 0, 0) 67.15%);
  }
  .page-turnkey-car .hero__footer {
    padding-top: 100px;
  }
}
.page-catalog .suggestions::before {
  display: none;
}

@media (min-width: 1024px) {
  .page-catalog .question-form .container {
    position: relative;
  }
  .page-catalog .question-form .container:before {
    pointer-events: none;
    content: "";
    position: absolute;
    width: 399px;
    height: 399px;
    border-radius: 50%;
    background: url("/resources/websites/parallel-ai/images/radial-sm.svg");
    background-size: contain;
    background-position: center;
    top: 125px;
    right: -519px;
  }
}
@media (min-width: 1024px) and (min-width: 1024px) {
  .page-catalog .question-form .container:before {
    width: 999px;
    height: 999px;
    background: url("/resources/websites/parallel-ai/images/radial.svg");
  }
}
.page-product {
  padding-bottom: 0;
}

@media (min-width: 1024px) {
  .page-product .product-docs .container:before {
    left: unset;
    top: -501px;
    right: -479px;
  }
}
.page-contacts .contacts-docs__items {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.page-contacts .contacts-docs__items .docs-card {
  flex: 0 0 100%;
}

@media (min-width: 576px) {
  .page-contacts .contacts-docs__items .docs-card {
    flex: 0 0 calc((100% - 15px) / 2);
  }
}
@media (min-width: 1024px) {
  .page-contacts .contacts-form .container {
    position: relative;
  }
  .page-contacts .contacts-form .container::before {
    pointer-events: none;
    content: "";
    position: absolute;
    width: 399px;
    height: 399px;
    border-radius: 50%;
    background: url("/resources/websites/parallel-ai/images/radial-sm.svg");
    background-size: contain;
    background-position: center;
    top: -476px;
    left: -527px;
  }
}
@media (min-width: 1024px) and (min-width: 1024px) {
  .page-contacts .contacts-form .container::before {
    width: 999px;
    height: 999px;
    background: url("/resources/websites/parallel-ai/images/radial.svg");
  }
}
@media (min-width: 1024px) {
  .page-contacts .contacts-form .container::after {
    pointer-events: none;
    content: "";
    position: absolute;
    width: 399px;
    height: 399px;
    border-radius: 50%;
    background: url("/resources/websites/parallel-ai/images/radial-sm.svg");
    background-size: contain;
    background-position: center;
    top: -60px;
    right: -499px;
  }
}
@media (min-width: 1024px) and (min-width: 1024px) {
  .page-contacts .contacts-form .container::after {
    width: 999px;
    height: 999px;
    background: url("/resources/websites/parallel-ai/images/radial.svg");
  }
}
@media (min-width: 1024px) {
  .page-contacts .dealers .container {
    position: relative;
  }
  .page-contacts .dealers .container::before {
    pointer-events: none;
    content: "";
    position: absolute;
    width: 399px;
    height: 399px;
    border-radius: 50%;
    background: url("/resources/websites/parallel-ai/images/radial-sm.svg");
    background-size: contain;
    background-position: center;
    top: 365px;
    left: -500px;
  }
}
@media (min-width: 1024px) and (min-width: 1024px) {
  .page-contacts .dealers .container::before {
    width: 999px;
    height: 999px;
    background: url("/resources/websites/parallel-ai/images/radial.svg");
  }
}
@media (min-width: 1024px) {
  .page-contacts .dealers-other .container {
    position: relative;
  }
  .page-contacts .dealers-other .container::before {
    top: 220px;
    right: -469px;
    left: unset;
  }
  .page-contacts .contacts-docs__items {
    gap: 20px;
  }
  .page-contacts .contacts-docs__items .docs-card {
    flex: 0 0 calc((100% - 40px) / 3);
  }
}
@media (min-width: 1330px) {
  .page-contacts .contacts-docs__items {
    gap: 30px;
  }
  .page-contacts .contacts-docs__items .docs-card {
    flex: 0 0 calc((100% - 90px) / 4);
  }
}
.page-about {
  padding-bottom: 0;
}
.page-about .hero__footer {
  padding-top: 10px;
}
.page-about .hero__benefits {
  flex-wrap: wrap;
}
.page-about .hero__benefit {
  flex: 0 0 100%;
}
.page-about .hero__benefit--border {
  flex: 0 0 100%;
  height: 1px;
}

@media (min-width: 1024px) {
  .page-about .hero__footer {
    padding-top: 150px;
    justify-content: right;
  }
  .page-about .hero__benefits {
    flex-wrap: nowrap;
    max-width: 1147px;
    flex: 0 0 100%;
    gap: 30px;
    padding: 20px 50px;
  }
  .page-about .hero__benefit {
    flex: 1;
  }
  .page-about .hero__benefit:nth-child(1) {
    flex: 0 0 155px;
  }
  .page-about .hero__benefit:nth-child(3) {
    flex: 0 0 215px;
  }
  .page-about .hero__benefit:nth-child(5) {
    flex: 0 0 170px;
  }
  .page-about .hero__benefit:nth-child(7) {
    flex: 0 0 206px;
  }
  .page-about .hero__benefit--border {
    flex: 0 0 1px;
    height: unset;
  }
  .page-about .info-grid-section--bg .container::after {
    pointer-events: none;
    content: "";
    position: absolute;
    width: 399px;
    height: 399px;
    border-radius: 50%;
    background: url("/resources/websites/parallel-ai/images/radial-sm.svg");
    background-size: contain;
    background-position: center;
    top: 421px;
    right: -590px;
  }
}
@media (min-width: 1024px) and (min-width: 1024px) {
  .page-about .info-grid-section--bg .container::after {
    width: 999px;
    height: 999px;
    background: url("/resources/websites/parallel-ai/images/radial.svg");
  }
}
@media (min-width: 1024px) {
  .page-about .dealers-other .container:before {
    top: -654px;
    right: unset;
    left: -500px;
  }
}
.page-car-selection .info-grid-section {
  position: relative;
  z-index: 1;
  margin-top: -100px;
}

.legal-docs__items {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.legal-docs__items .docs-card {
  flex: 0 0 100%;
}

@media (min-width: 768px) {
  .legal-docs__items .docs-card {
    flex: 0 0 calc((100% - 15px) / 2);
  }
}
@media (min-width: 1024px) {
  .page-docs .legal {
    position: relative;
    z-index: 1;
    margin-top: -150px;
  }
  .legal-docs__items {
    justify-content: right;
    gap: 40px;
  }
  .legal-docs__items .docs-card {
    flex: 0 0 300px;
  }
}
@media (min-width: 1330px) {
  .legal-docs__items {
    gap: 60px;
  }
}
.terms__groups, .terms__group {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

@media (min-width: 768px) {
  .terms__groups {
    gap: 30px;
  }
  .terms__group {
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    gap: 30px;
  }
  .terms__group .docs-card {
    flex: 0 0 calc((100% - 30px) / 2);
  }
}
@media (min-width: 1024px) {
  .page-purchasing-process .info-grid-section {
    position: relative;
    z-index: 1;
    margin-top: -150px;
  }
  .terms__groups, .terms__group {
    gap: 40px;
  }
  .terms__group {
    flex-wrap: nowrap;
    justify-content: left;
  }
  .terms__group .docs-card {
    flex: 0 0 300px;
  }
  .terms__group:nth-child(2) {
    justify-content: right;
  }
}
@media (min-width: 1330px) {
  .terms__groups, .terms__group {
    gap: 60px;
  }
}
.page-customs-clearance .info-panel {
  position: relative;
  z-index: 1;
  margin-top: -230px;
}

.trade-in-form__content {
  width: calc(100% - 20px);
  background-color: #1a1a1a;
  border-radius: 5px;
  padding: 60px 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.trade-in-form__title {
  margin-bottom: 30px;
}
.trade-in-form__header {
  display: block;
  flex: 0 1 auto;
  margin-bottom: 0;
}
.trade-in-form__form {
  width: 100%;
}

@media (min-width: 768px) {
  .trade-in-form__content {
    width: calc(100% - 40px);
  }
}
@media (min-width: 1024px) {
  .trade-in-form__content {
    padding: 60px 30px;
    gap: 30px;
    flex-wrap: nowrap;
  }
  .trade-in-form__header {
    max-width: 545px;
  }
}
@media (min-width: 1330px) {
  .trade-in-form__header {
    flex: 0 0 630px;
    max-width: 630px;
  }
}
.trade-in-form__title {
  margin-bottom: 30px;
}
.trade-in-form__conditions {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.trade-in-form__condition-title {
  margin-bottom: 15px;
  font-size: inherit;
}
.trade-in-form__form-header {
  margin-bottom: 40px;
}
.trade-in-form__form-text {
  line-height: 1.3;
}
.trade-in-form .ui-check-list {
  gap: 15px;
}

.page-trade-in {
  padding-bottom: 0;
}
.page-trade-in .hero__footer {
  padding-top: 40px;
}
.page-trade-in .hero__benefits {
  flex-wrap: wrap;
}
.page-trade-in .hero__benefit {
  flex: 0 0 100%;
}
.page-trade-in .hero__benefit--border {
  flex: 0 0 100%;
  height: 1px;
}

@media (min-width: 1024px) {
  .page-trade-in .hero__footer {
    padding-top: 130px;
    justify-content: flex-end;
  }
  .page-trade-in .hero__benefits {
    flex: 0 0 100%;
    max-width: 700px;
    flex-wrap: nowrap;
    gap: 30px;
    padding: 20px 40px;
  }
  .page-trade-in .hero__benefit {
    flex: 1;
  }
  .page-trade-in .hero__benefit--border {
    flex: 0 0 1px;
    height: auto;
  }
}
.page-commission-sale {
  padding-bottom: 0;
}
.page-commission-sale .hero__footer {
  padding-top: 40px;
}
.page-commission-sale .hero__benefits {
  flex-wrap: wrap;
}
.page-commission-sale .hero__benefit {
  flex: 0 0 100%;
}
.page-commission-sale .hero__benefit--border {
  flex: 0 0 100%;
  height: 1px;
}

@media (min-width: 1024px) {
  .page-commission-sale .hero__footer {
    padding-top: 130px;
    justify-content: flex-end;
  }
  .page-commission-sale .hero__benefits {
    flex: 0 0 100%;
    max-width: 700px;
    flex-wrap: nowrap;
    gap: 30px;
    padding: 20px 40px;
  }
  .page-commission-sale .hero__benefit {
    flex: 1;
  }
  .page-commission-sale .hero__benefit--border {
    flex: 0 0 1px;
    height: auto;
  }
}
