:root {
    --belyy: #fff;
    --fon: #f8f9fa;
    --fon-2: #eeeff0;
    --obvodka: #e4e5e6;
    --obvodka-2: #c6c7c8;
    --chernyy-1: #949596;
    --chernyy-2: #121314;
    --zheltyy: #f0a500;
    --font-family: "Gilroy", sans-serif;
    font-family: var(--font-family);
    font-size: 16px;
    color: var(--chernyy-2);
}

html * {
    max-height: 1000000px;
    -webkit-text-size-adjust: 100%;
}

html img {
    max-width: 100%;
    height: auto;
    line-height: 0;
}

body {
    margin: 0px;
    padding: 0px;
    background-color: #F8F9FA;
}

a {
    color: var(--zheltyy);
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: normal;
    -webkit-margin-before: 0em;
    -webkit-margin-after: 0em;
    margin-top: 0px;
    margin-bottom: 0px;
    font-size: inherit;
}

p {
    margin: 0px;
    -webkit-margin-before: 0em;
    -webkit-margin-after: 0em;
    -webkit-margin-start: 0px;
    -webkit-margin-end: 0px;
}


:focus {
    outline: none !important;
}

.header {
    background-color: var(--belyy);
}

.header__row-bar {
    padding-top: 27px;
    padding-bottom: 27px;
}

.header__bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.max-width {
    width: 100%;
    max-width: 1290px;
    margin-left: auto;
    margin-right: auto;
}

.header__logo {
    display: flex;
    align-items: center;
}

.header__logo-text {
    font-weight: 700;
    line-height: 130%;
    max-width: 110px;
    padding-left: 20px;
    margin-left: 20px;
    border-left: 1px solid var(--obvodka);
}


.search__box {
    display: flex;
    align-items: stretch;
    height: 40px;
    width: 21vw;
}

.search__input {
    border: 1px solid var(--obvodka);
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    padding-left: 50px;
    width: 100%;
    background-color: var(--fon);
    font-family: var(--font-family);
    font-size: 16px;
    color: var(--chernyy-1);
    background-image: url(/images/search-input.svg);
    background-position: left 15px center;
    background-repeat: no-repeat;
    background-size: auto;
}

.search__btn {
    border-radius: 0 5px 5px 0;
    width: 50px;
    flex-shrink: 0;
    border: 0;
    cursor: pointer;
    background-image: url(/images/search.svg), linear-gradient(180deg, #ffb900 0%, #f0a500 100%) !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-size: auto !important;
}

.search__btn:hover {
    background-image: url(/images/search.svg), linear-gradient(180deg, #ffb900 1000%, #f0a500 0%) !important;
}

.background-yellow {
    background: linear-gradient(180deg, #ffb900 0%, #f0a500 100%);
}

.background-yellow:hover {
    background: linear-gradient(180deg, #ffb900 100%, #f0a500 0%);
}


.header__tel a {
    cursor: default;
    font-weight: 700;
    font-size: 18px;
    color: var(--chernyy-2);
}

.header__email a {
    font-weight: 700;
    font-size: 18px;
    color: var(--chernyy-2);
}

.header__email a:hover {
    text-decoration: underline;
}

.header__right {
    display: flex;
    align-items: center;
}

.header__auth {
    margin-right: 2.7vw;
    display: flex;
    align-items: center;
    column-gap: 2vw;
}

.header__auth-btn {
    height: 44px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    align-items: center;
}

.header__auth-btn:hover {
    filter: invert(83%) sepia(16%) saturate(6972%) hue-rotate(342deg) brightness(98%) contrast(91%);
}

.header__auth-btn img {
    max-width: 20px;
}

.header__auth-btn span {
    font-weight: 700;
    color: var(--chernyy-2);
}



.lang-switcher__inner {
    position: relative;
    cursor: pointer;
    background-image: url(/images/arrow_b.svg);
    background-position: center right;
    background-repeat: no-repeat;
    background-size: auto;
    padding-right: 18px;
    z-index: 1;
}

.lang-switcher__list {
    position: absolute;
    bottom: 0;
    transform: translateY(100%);
    display: none;
    padding-top: 5px;
}

.lang-switcher__inner:hover .lang-switcher__list {
    display: block;
}


.header__row-nav {
    background: var(--zheltyy);
    display: flex;
    align-items: center;
}

.header__nav-inner {
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__nav-item {
    position: relative;
    cursor: pointer;
}

.header__nav-link {
    display: flex;
    column-gap: 15px;
    align-items: center;
}

.header__nav-link span {
    font-weight: 700;
    font-size: 20px;
    color: var(--chernyy-2);
}

.header__nav-link:hover span {
    text-decoration: underline;
}

.header__nav-item--has-submenu {
    padding-right: 22px;
    background-image: url(/images/arrow_b.svg);
    background-position: center right;
    background-repeat: no-repeat;
    background-size: auto;
}

.header__nav-submenu {
    display: none;
    position: absolute;
    z-index: 1;
    bottom: 0;
    transform: translateY(100%);
    padding-top: 15px;
}

.header__nav-item--has-submenu:hover .header__nav-submenu {
    display: block;
}

.header__nav-submenu-inner {
    background-color: #fff;
    padding: 20px 30px;
    border: 2px solid var(--zheltyy);
    border-radius: 5px;
}

.header__nav-submenu-item:not(:nth-last-child(1)) {
    margin-bottom: 10px;
}

.header__nav-submenu-link {
    display: flex;
    column-gap: 8px;
    align-items: center;
    width: max-content;
}

.header__nav-submenu-link span {
    font-weight: 700;
    color: var(--chernyy-2);
}

.header__nav-submenu-link img {
    filter: invert(54%) sepia(4%) saturate(5%) hue-rotate(169deg) brightness(93%) contrast(90%);
}

.header__nav-submenu-link:hover img {
    filter: invert(64%) sepia(88%) saturate(650%) hue-rotate(353deg) brightness(96%) contrast(98%);
}

.header__nav-submenu-link:hover span {
    color: var(--zheltyy)
}

.background-1 {
    background-image: url(/images/background-5.png), url(/images/background-6.png);
    background-position: center top, center bottom;
    background-repeat: no-repeat;
    background-size: auto;
}

.padding-bottom-100 {
    padding-bottom: 100px;
}

.title-box {
    margin-top: 89px;
    margin-bottom: 37px;
}

.title-box h1,
.title-box h2 {
    font-weight: 700;
    font-size: 50px;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    text-align: center;
}

section {
    contain: content;
}

.steps {
    padding-bottom: 50px;
}

.steps__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    align-items: stretch;
}

.steps__item {
    background: linear-gradient(180deg, #ffb900 0%, #f0a500 100%);
    padding-right: 2px;
    border-radius: 10px;
    width: 340px;
    flex-shrink: 0;
}

.steps__content {
    background-color: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    column-gap: 20px;
    padding: 30px 37px 30px 22px;
    height: 100%;
    box-sizing: border-box;
}

.steps__img {
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    aspect-ratio: 1;
    flex-shrink: 0;
    background: linear-gradient(180deg, #ffb900 0%, #f0a500 100%);
}

.steps__title {
    font-style: italic;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 0.01em;
    text-transform: uppercase;
}

.steps__connector {
    position: relative;
    width: 100%;
    align-self: center;
}

.steps__connector-lane {
    background: var(--zheltyy);
    width: 100%;
    height: 1px;
}

.steps__connector-circle {
    position: relative;
    right: 0;
    position: absolute;
    transform: translate(50%, -50%);
    width: 21px;
    aspect-ratio: 1;
    background-color: rgba(240, 165, 0, 0.3);
    border-radius: 100%;
}

.steps__connector-circle:before {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    width: 11px;
    aspect-ratio: 1;
    content: '';
    border-radius: 100%;
    background: linear-gradient(180deg, #ffb900 0%, #f0a500 100%);
}



.equipment-tabs {
    display: flex;
    justify-content: space-between;
    padding-bottom: 50px;
    column-gap: 14px;
}

.equipment-tabs__item {
    display: flex;
    align-items: center;
    column-gap: 8px;
    padding-right: 14px;
    border-right: 1px solid var(--obvodka);
    cursor: pointer;
}

.equipment-tabs__item:nth-last-child(1) {
    border-right: 0;
    padding-right: 0;

}

.equipment-tabs__item img {
    filter: invert(54%) sepia(4%) saturate(5%) hue-rotate(169deg) brightness(93%) contrast(90%);
}

.equipment-tabs__item span {
    font-weight: 700;
}

.equipment-tabs__item:hover img,
.equipment-tabs__item.equipment-tabs__active img {
    filter: invert(64%) sepia(88%) saturate(650%) hue-rotate(353deg) brightness(96%) contrast(98%);
}

.equipment-tabs__item:hover span,
.equipment-tabs__item.equipment-tabs__active span {
    color: var(--zheltyy);
}

.brands {
    display: flex;
    row-gap: 20px;
    flex-wrap: wrap;
    column-gap: 2%;
}

.brands__item {
    width: 15%;
    box-sizing: border-box;
    padding: 20px 30px;
    border-radius: 10px;
    height: 100px;
    box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.05);
    background: var(--belyy);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.brands__item:hover {
    background-color: var(--zheltyy);
}

.brands__item img {
    max-height: 100%;
}

.brands__item {
    transition: opacity 200ms ease, transform 200ms ease;
    will-change: transform, opacity;
}

.brands__item.is-hidden {
    opacity: 0;
    transform: scale(0.96);
    pointer-events: none;
    display: none;
}

.background-black {
    background-color: #121315;
}

.background-2 {
    background-image: url(/images/background-2.jpg);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: auto;
}

.title-box__color-white h2,
.title-box__color-white .title-box__text {
    color: #fff;
}

.title-box__text {
    margin-top: 10px;
    font-size: 30px;
    text-align: center;
}

.how-it-works {
    margin-bottom: 88px;
}

.how-it-works__grid {
    display: flex;
    row-gap: 30px;
    flex-wrap: wrap;
    column-gap: 2%;
    counter-reset: how-it-works__badge;
    margin-bottom: 30px;
}

.how-it-works__item {
    width: 32%;
    overflow: hidden;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-sizing: border-box;
    counter-increment: how-it-works__badge;
}

.how-it-works__img {
    display: block;
}

.how-it-works__badge {
    position: absolute;
    top: 0;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    width: 70px;
    aspect-ratio: 1;
    background-color: #ffbb005d;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    font-size: 0;
    padding: 5px;
    box-sizing: border-box;
}

.how-it-works__badge:before {
    width: 100%;
    height: 100%;
    border-radius: 100%;
    background: linear-gradient(180deg, #ffb900 0%, #f0a500 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 30px;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    text-align: center;
    content: counter(how-it-works__badge, decimal-leading-zero);

}

.how-it-works__caption {
    position: relative;
}

.how-it-works__caption-text {
    font-size: 20px;
    line-height: 140%;
    text-align: center;
    color: var(--fon);
    padding-top: 48px;
    padding-bottom: 23px;
    padding-left: 10px;
    padding-right: 10px;
}

.btn-d {
    border-radius: 5px;
    border: 0;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    color: var(--chernyy-2);
    cursor: pointer;
}

.how-it-works .btn-d {
    margin-left: auto;
    margin-right: auto;
    width: 410px;
}

.parts-search {
    position: relative;
}

.parts-search__panel {
    border-radius: 10px;
    box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.05);
    background: var(--belyy);
    padding: 30px 60px;
}

.parts-search__form {
    display: flex;
    column-gap: 20px;
    row-gap: 20px;

}

.parts-search__fields {
    width: 100%;
    display: flex;
    column-gap: 20px;
}

.parts-search__field {
    width: 100%;
}

.select2 {
    width: 100%;
    height: 100%;

}

.select2 .selection,
.select2-selection {
    height: 100% !important;
    display: block;
}

.parts-search__input {
    width: 100%;
    height: 50px;
    padding: 0;
    box-sizing: border-box;
    background: var(--fon);
    border-radius: 5px;
    border: 1px solid var(--obvodka);
    font-weight: 400;
    font-size: 16px;
    color: var(--chernyy-2);
    padding-left: 15px;
}

.parts-search__field ::placeholder {
    font-weight: 400;
    font-size: 16px;
    color: var(--chernyy-2);
    font-family: var(--font-family);
}

.parts-search__submit {
    width: 18%;
    flex-shrink: 0;
}

.parts-search__submit-btn {
    width: 100%;
}

.select2-container--default .select2-selection--single {
    display: flex !important;
    align-items: center !important;
    box-sizing: border-box;
    justify-content: space-between !important;
    background: var(--fon) !important;
    border-radius: 5px !important;
    border: 1px solid var(--obvodka) !important;
    font-weight: 400 !important;
    font-size: 16px !important;
    color: var(--chernyy-2) !important;
    padding-left: 15px !important;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
    font-weight: 400 !important;
    font-size: 16px !important;
    color: var(--chernyy-2) !important;
}

.select2-container--default .select2-selection--single .select2-selection__clear {
    display: none !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    display: none;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 26px;
    position: static !important;
    width: 20px;
    background-image: url(/images/arrow_b.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: auto;
    margin-right: 10px;
}

.parts-search__border {
    position: absolute;
    border-radius: 10px;
    width: 95.5%;
    margin-left: auto;
    margin-right: auto;
    top: 30px;
    left: 0;
    right: 0;
    height: 100%;
    pointer-events: none;
}

.parts-search__border:before {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid #f6b100;
    border-radius: 10px;
    pointer-events: none;
    -webkit-mask:
        linear-gradient(#000 0 0) 0 0 / 100% 100% no-repeat,
        linear-gradient(#000 0 0) 50% 0 / 720px 1px no-repeat;
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.background-3 {
    background-image: url(/images/background-3.jpg);
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: auto;
}

.advantages {
    display: flex;
    justify-content: space-between;
}

.advantages__item {
    width: 22%;
    border-radius: 10px;
    box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.05);
    background: var(--belyy);
    text-align: center;
    box-sizing: border-box;
    padding: 30px 20px 23px;
}

.advantages__item-img {
    background: linear-gradient(180deg, #ffb900 0%, #f0a500 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    width: 80px;
    aspect-ratio: 1;
    margin-left: auto;
    margin-right: auto;
}

.advantages__item-text {
    font-weight: 700;
    font-size: 24px;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    margin-top: 24px;
}

.background-4 {
    background-image: url(/images/background-4.jpg);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: auto;
}


.accordion__item {
    margin-bottom: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    overflow: hidden;
    padding-left: 30px;
    padding-right: 30px;
}

.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
a.ui-button:active,
.ui-button:active,
.ui-button.ui-state-active:hover {
    border: 0px solid #003eff !important;
    background: transparent !important;
}

.accordion__item.is-active,
.accordion__item:hover {
    border: 1px solid #FCB72C;
}

.accordion__item:nth-last-child(1) {
    margin-bottom: 0px;
}

.ui-accordion .ui-accordion-header {
    margin: 0 !important;
    padding: 0 !important;
}

.accordion__title {
    height: 110px;
    border: 0px solid transparent !important;
    background: transparent !important;
    display: flex !important;
    align-items: center !important;
    font-weight: 700 !important;
    font-size: 30px !important;
    color: var(--belyy) !important;
    position: relative;
}

.ui-accordion-header-icon {
    position: absolute !important;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    margin-top: 0 !important;
    transition: 0.3s;
    width: 50px !important;
    aspect-ratio: 1 !important;
    height: auto !important;
    border-radius: 100%;
    background: none !important;
    text-indent: 0 !important;
}

.ui-accordion-header-icon:after {
    background: linear-gradient(180deg, #ffb900 0%, #f0a500 100%) !important;
    opacity: 0;
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    transition: 0.3s;
}

.ui-accordion-header-active .ui-accordion-header-icon:after {
    opacity: 1;
}

.ui-accordion-header-icon:before {
    position: absolute !important;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    left: 0;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0 !important;
    transition: 0.3s;
    background-image: url(/images/plus.svg) !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-size: auto !important;
    width: 22px !important;
    aspect-ratio: 1 !important;
    height: auto !important;
    filter: invert(94%) sepia(0%) saturate(0%) hue-rotate(292deg) brightness(106%) contrast(107%);
    border-radius: 100%;
    content: "";
    z-index: 1;
}



.ui-accordion-header-active .ui-accordion-header-icon:before {
    transform: translateY(-50%) rotate(-45deg);
    filter: none;
}

.accordion__content {
    padding: 0 !important;
    border: 0px !important;
    background: transparent !important;
    font-size: 20px !important;
    line-height: 140% !important;
    color: var(--belyy) !important;
}

.accordion__content p {
    padding-bottom: 23px;
}

.reviews__item {
    border-radius: 10px;
    box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.05);
    background: var(--belyy);
    padding: 30px 30px 43px;
    margin-bottom: 20px;
    background-image: url(/images/quote.svg);
    background-position: right 30px top 30px;
    background-repeat: no-repeat;
    background-size: auto;
}

.reviews__item:nth-last-child(1) {
    margin-bottom: 0px;
}

.reviews__header {
    display: flex;
    align-items: center;
    column-gap: 20px;
    margin-bottom: 25px;
}

.reviews__img {
    flex-shrink: 0;
    width: 70px;
}

.reviews__name {
    font-weight: 700;
    font-size: 20px;
    color: var(--chernyy-2);
    margin-bottom: 6px;
}

.reviews__quote {
    font-style: italic;
    line-height: 150%;
}

.footer {
    background: var(--chernyy-2);
    padding: 50px 0 43px;
    color: #fff;
}

.footer__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer__logo {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.footer__tagline {
    font-weight: 700;
    line-height: 130%;
    max-width: 110px;
    color: #fff;
    padding-left: 20px;
    margin-left: 20px;
    border-left: 1px solid #ffffff12;
}

.footer__actions {
    display: flex;
    justify-content: space-between;
    column-gap: 20px;
}

.footer__social {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.footer__social a {
    border-radius: 5px;
    width: 40px;
    aspect-ratio: 1;
    background: #ffffff07;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer__social a img {
    filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(133deg) brightness(101%) contrast(101%);
}

.footer__social a:hover {
    background: #f0a500;
}

.footer__social a:hover img {
    filter: none;
}

.footer__call-btn {
    width: 117px;
    flex-shrink: 0;
}

.footer__call-btn a {
    border-radius: 5px;
    width: 100%;
    height: 40px;
    background: #ffffff07;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--belyy);
}

.footer__call-btn a:hover {
    color: #000;
    background: #f0a500;
}

.footer__nav {
    display: flex;
}

.footer__nav-col:nth-child(1) {
    margin-right: 100px;
}

.footer__nav-item {
    margin-bottom: 15px;
}

.footer__nav-item a {
    color: var(--belyy);
}

.footer__nav-item a:hover {
    color: #f0a500;
}

.footer__nav-item:nth-last-child(1) {
    margin-bottom: 0px;
}

.footer__address {
    color: var(--belyy);
}

.footer__contacts a {
    display: block;
}

.footer__phone {
    margin: 17px 0;
    font-weight: 700;
    font-size: 20px;
    color: var(--belyy);
    cursor: default;
}

.footer__email {
    color: var(--belyy);
}

.footer__email:hover {
    color: #f0a500;
}

.footer__bottom {
    padding-top: 24px;
    margin-top: 24px;
    border-top: 1px solid #ffffff12;
}

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    line-height: 150%;
    color: #ffffff80;
}

.footer__bottom a {
    color: #ffffff80;
}

.footer__bottom a:hover {
    color: #f0a500;
}

.header__row-nav-mobail {
    display: none;
}

.lang-switcher__item {
    line-height: 0;
}

.lang-switcher__list .lang-switcher__item {
    margin-bottom: 5px;
}

/* NOTE begin 1290px */
@media screen and (max-width: 1290px) {
    .max-width {
        box-sizing: border-box;
        padding-left: 10px;
        padding-right: 10px;
    }

    .header__logo-img {
        width: 150px;
    }

    .steps__content {
        padding: 30px 17px 30px 12px;
    }

    .steps__item {
        width: 31%;
    }

    .equipment-tabs {
        flex-wrap: wrap;
        row-gap: 20px;
        justify-content: flex-start;
    }

    .brands__item {
        padding: 20px 10px;
    }
}

/* NOTE end 1290px */


/* NOTE begin 900px */
@media screen and (max-width: 900px) {
    .header__bar-inner {
        flex-wrap: wrap;
        row-gap: 20px;
        justify-content: center;
        column-gap: 20px;
    }

    .header__auth {
        margin-right: 20px;
        column-gap: 20px;
    }

    .search__box,
    .header__search {
        width: 100%;
    }

    .header__row-nav-mobail {
        display: block;
        margin-left: 20px;
        position: relative;
        z-index: 1;
    }

    .header__row-nav {
        display: none;
    }

    .header__row-bar {
        border-bottom: 1px solid #e4e5e6;
        padding-top: 7px;
        padding-bottom: 7px;
    }

    .header__row-nav-mobail-btn {
        padding: 5px;
        box-sizing: border-box;
        width: 36px;
        height: 28px;
        background: var(--zheltyy);
        border-radius: 5px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .header__row-nav-mobail-btn-line {
        width: 100%;
        height: 2px;
        background-color: var(--chernyy-2);
        margin-bottom: 4px;
    }

    .header__row-nav-mobail-btn-line:nth-last-child(1) {
        margin-bottom: 0px;
    }

    .header__mobail-menu {
        position: fixed;
        width: 100%;
        height: 100dvh;
        top: 0;
        left: 0;
        background-color: #fff;
        transform: translateX(-100%);
        transition: 0.3s;
    }

    .menu-open.header__mobail-menu {
        transform: translateX(0%);
        overflow: scroll;
    }

    .header__mobail-menu-inner {
        position: relative;
    }

    .header__mobail-menu-close {
        width: 30px;
        aspect-ratio: 1;
        position: absolute;
        top: 20px;
        right: 20px;
        background-image: url(/images/plus.svg);
        transform: rotate(-45deg);
        background-position: center center;
        background-repeat: no-repeat;
        background-size: auto;
    }

    .header__nav-submenu {
        display: none;
        position: static;
        transform: translateY(0%);
    }

    .header__mobail-menu-list {
        padding: 60px 30px 40px;
    }

    .title-box {
        margin-top: 39px;
        margin-bottom: 27px;
    }

    .title-box h1,
    .title-box h2 {
        font-size: 30px;
    }

    .steps__item {
        width: 100%;
    }

    .steps__row {
        flex-direction: column;
    }

    .steps__content {
        padding: 10px 17px 10px 12px;
    }

    .steps__connector-lane {
        width: 1px;
        height: 30px;
        margin: auto;
    }

    .steps__connector {
        width: 1px;
    }

    .brands__item {
        width: 23.5%;
    }

    .padding-bottom-100 {
        padding-bottom: 40px;
    }

    .title-box__text {
        font-size: 22px;
    }

    .how-it-works__item {
        width: 49%;
    }

    .parts-search__form {
        row-gap: 10px;
        flex-direction: column;
    }

    .parts-search__fields {
        flex-direction: column;
        row-gap: 10px;
    }

    .select2-container {
        height: 50px !important;
    }

    .select2-container--default .select2-selection--single {
        padding-left: 7px !important;
    }

    .parts-search__border {
        top: 20px;
    }

    .parts-search__border:before {
        -webkit-mask: linear-gradient(#000 0 0) 0 0 / 100% 100% no-repeat, linear-gradient(#000 0 0) 50% 0 / 70% 1px no-repeat;
        -webkit-mask-composite: xor;
        mask-composite: exclude;
    }

    .footer__top {
        flex-direction: column;
        row-gap: 40px;
    }

    .footer__bottom {
        flex-direction: column;
        row-gap: 20px;
    }

    .footer__contacts {
        text-align: center;
    }

    .header__mobail-menu-list .header__nav-item--has-submenu {
        background-position: right top 10px;
    }

    .header__nav-item {
        margin-bottom: 30px;
    }

    .header__nav-item:nth-last-child(1) {
        margin-bottom: 0px;
    }

    .parts-search__submit {
        width: 100%;
    }
}

/* NOTE end 900px */


/* NOTE begin 700px */
@media screen and (max-width: 700px) {
    .brands__item {
        width: 31.5%;
    }

    .parts-search__border:before {
        -webkit-mask: linear-gradient(#000 0 0) 0 0 / 100% 100% no-repeat, linear-gradient(#000 0 0) 50% 0 / 90% 1px no-repeat;
        -webkit-mask-composite: xor;
        mask-composite: exclude;
    }

    .advantages__item {
        width: 48%;
    }

    .advantages {
        row-gap: 20px;
        flex-wrap: wrap;
    }
}

/* NOTE end 700px */


/* NOTE begin 500px */
@media screen and (max-width: 500px) {
    .steps__img {
        width: 50px;

    }

    .steps__img img {
        width: 80%;
    }

    .how-it-works__badge {
        width: 50px;
    }

    .how-it-works__badge:before {
        font-size: 22px;
    }

    .how-it-works__caption-text {
        font-size: 14px;
        padding-top: 28px;
        padding-bottom: 5px;
    }

    .how-it-works .btn-d {
        width: 100%;
    }

    .parts-search__border {
        display: none;
    }

    .parts-search__panel {
        padding: 15px 10px;
    }

    .advantages__item {
        padding: 10px 10px 10px;
    }

    .advantages__item-img {
        width: 50px;
    }

    .advantages__item-img img {
        width: 80%;
    }

    .advantages__item-text {
        font-size: 18px;
        margin-top: 14px;
    }

    .accordion__item {
        padding-left: 10px;
        padding-right: 10px;
    }

    .ui-accordion .ui-accordion-header {
        height: auto;
        padding-top: 10px !important;
        padding-bottom: 10px !important;
        font-size: 20px !important;
    }

    .ui-accordion-header-icon {
        right: -8px;
        width: 30px !important;
    }

    .reviews__item {
        padding: 15px 10px 10px;
    }
}

/* NOTE end 500px */