*,
*::before,
*::after {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    border: none;
}

:focus,
:focus-visible,
:active {
    outline: none;
}

a:focus,
a:active {
    outline: none;
}

a, a:link, a:visited {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

aside, nav, footer, header, section, main {
    display: block;
}

h1, h2, h3, h4, h5, h6, p {
    font-size: inherit;
    font-weight: inherit;
}

ul, ul li {
    list-style: none;
}

img {
    vertical-align: top;
}

img, svg {
    max-width: 100%;
    height: auto;
    display: block;
}

address {
    font-style: normal;
}

input, textarea, button, select {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    background-color: transparent;
}

input::-ms-clear {
    display: none;
}

button, input[type=submit] {
    display: inline-block;
    box-shadow: none;
    background: none;
    cursor: pointer;
}

input:focus, input:active,
button:focus, button:active {
    outline: none;
}

a,
button,
input,
select,
textarea {
    background: none;
    color: inherit;
    border: none;
    text-transform: none;
    text-decoration: none;
}
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: none;
}

ul {
    list-style: none;
}

button::-moz-focus-inner {
    padding: 0;
    border: 0;
}

label {
    cursor: pointer;
}

legend {
    display: block;
}

@media screen and (max-width: 575px) {
    .container_100 {
        max-width: 100%;
    }
}
.accordion-main {
    background: #F9F9F9;
    padding: 60px 0;
}
.accordion-main__wrapper {
    width: 100%;
    max-width: 1111px;
    margin: 0 auto;
}
@media screen and (max-width: 1199px) {
    .accordion-main__wrapper {
        max-width: 90%;
    }
}
.accordion-main__item {
    margin-bottom: 20px;
}
.accordion-main__item_active > .accordion-main__content {
    height: auto;
    overflow: visible;
    opacity: 1;
}
.accordion-main__item_active > .accordion-main__header::before {
    transform: rotate(180deg);
}
.accordion-main__header {
    font-family: "Inter", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 22px;
    color: #181818;
    background: #fff;
    padding: 20px 30px;
    position: relative;
    pointer-events: none;
}
.accordion-main__header::before {
    content: "";
    display: block;
    position: absolute;
    width: 12px;
    height: 12px;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    background: url("../../../../image/array_down_red.svg") 0 0/contain no-repeat;
    transition: all 0.4s linear;
}
.accordion-main__content {
    background: #fff;
    transition: all 0.4s linear;
    position: relative;
    height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}
.accordion-main__content::before {
    content: "";
    display: block;
    position: absolute;
    left: 30px;
    right: 30px;
    top: 0;
    height: 1px;
    background: #E3E3E3;
}
.accordion-main__content-inner {
    padding: 20px 30px;
}
.accordion-main__content-text {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 19px;
    margin-bottom: 20px;
}
.accordion-main__content-text_bold {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 19px;
}

.accordion__item {
    margin-bottom: 34px;
}
.accordion__item:last-child {
    margin-bottom: 0;
}
.accordion__item_active .accordion__content {
    opacity: 1;
    height: auto;
    overflow: auto;
}
.accordion__item_active .accordion__header::before {
    transform: rotate(180deg);
}
.accordion__header {
    background: #F9F9F9;
    padding: 40px 36px 40px 66px;
    position: relative;
    font-family: "Inter", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;
    color: #100F0F;
    pointer-events: none;
}
.accordion__header::before {
    content: "";
    position: absolute;
    display: block;
    top: 40px;
    left: 36px;
    width: 16px;
    height: 16px;
    background: url("../../../../image/array_down_red.svg") center/contain no-repeat;
    transition: all 0.4s linear;
}
.accordion__header_right {
    padding-left: 32px;
}
.accordion__header_right::before {
    left: calc(100% - 50px);
}
.accordion__header_subtitle {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 16px;
    margin-top: 10px;
}
.accordion__content {
    background: #fff;
    height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.4s linear;
}
.accordion__content_grey {
    background-color: #F9F9F9;
    position: relative;
}
.accordion__content_grey::before {
    content: "";
    display: block;
    position: absolute;
    left: 32px;
    right: 32px;
    top: 0;
    height: 1px;
    background: #E3E3E3;
}

@media screen and (max-width: 575px) {
    .accordion__item {
        margin-bottom: 14px;
    }
    .accordion__header {
        padding: 17px 17px 17px 54px;
        font-size: 14px;
    }
    .accordion__header::before {
        left: 22px;
        top: 20px;
    }
    .accordion__header_right {
        padding-left: 32px;
    }
    .accordion__header_right::before {
        left: calc(100% - 50px);
    }
    .accordion-main {
        padding: 30px 0 10px 0;
    }
}
.button-main {
    width: 202px;
    background: #ED1C24;
    border: 1px solid #ED1C24;
    padding: 16px;
    display: block;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 17px;
    color: #fff;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s linear;
}
.button-main:hover {
    color: #fff;
}
.button-main_disabled {
    background: #E3E3E3;
    border-color: #E3E3E3;
    color: #8E8E8E;
}
.button-main_disabled:hover {
    color: #8E8E8E;
}

.button-white {
    width: 202px;
    background: #fff;
    border: 1px solid #ED1C24;
    padding: 16px;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 17px;
    color: #ED1C24;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s linear;
}
.button-white__img {
    margin-right: 10px;
}
.button-white_flex {
    display: flex;
    justify-content: center;
    align-items: center;
}
.button-white_disabled {
    border-color: #C6C6C6;
    color: #C6C6C6;
}
.button-white_disabled:hover {
    background: #fff;
}
.button-white_active {
    color: #fff;
    background: #ED1C24;
}

.button-left {
    width: 60px;
    height: 18px;
    background: url("../../../../image/arrow-left.svg") 0 0/cover no-repeat;
    cursor: pointer;
    display: block;
}

@media screen and (max-width: 575px) {
    .button-main {
        width: 100%;
    }
    .button-white {
        width: 100%;
    }
}
@media screen and (min-width: 576px) {
    .button-white:hover {
        background: #F8A4A7;
    }
    .button-white_disabled:hover {
        background: #fff;
    }
}
.breadcrumbs {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: flex-start;
    padding-top: 40px;
    padding-bottom: 10px;
    overflow: auto;
}
.breadcrumbs__item {
    flex-shrink: 0;
    margin-right: 16px;
}
.breadcrumbs__item:last-child {
    margin-right: 0;
}
.breadcrumbs__item:last-child .breadcrumbs__link::after {
    content: "";
    background: none;
}
.breadcrumbs__link {
    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 12px;
    color: #181818;
    position: relative;
    padding-right: 20px;
}
.breadcrumbs__link::after {
    content: "";
    display: block;
    background: url("../../../../image/arrow_right_black.svg") 100% 0/contain no-repeat;
    position: absolute;
    width: 10px;
    height: 10px;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
}

@media screen and (max-width: 575px) {
    .breadcrumbs {
        padding-top: 20px;
    }
}
.container {
    width: 100%;
    max-width: 1111px;
    margin: 0 auto;
}

.container-md {
    width: 100%;
    max-width: 834px;
}

@media screen and (max-width: 1199px) {
    .container {
        max-width: 90%;
    }
}
@media screen and (max-width: 575px) {
    .container_100 {
        max-width: 100%;
    }
}
.title-main {
    font-family: "Oswald", sans-serif;
    font-size: 60px;
    font-weight: 500;
    line-height: 56px;
    color: #fff;
}

.text-main {
    font-family: "Inter", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 22px;
    color: #fff;
}

.title-section {
    font-family: "Oswald", sans-serif;
    font-size: 44px;
    font-weight: 300;
    line-height: 65px;
    color: #ED1C24;
}

.title-nav {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 23px;
    color: #181818;
}

.slider-subtitle {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 19px;
    color: #E77E82;
}

.page-title {
    font-family: "Oswald", sans-serif;
    font-size: 46px;
    font-weight: 400;
    line-height: 68px;
}

.filter-title {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 23px;
    color: #181818;
}

.section-subtitle {
    font-family: "Inter", sans-serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 29px;
    color: #C6C6C6;
}

.textarea-label {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 17px;
    color: #181818;
    display: block;
}

.title-main-mobile {
    font-family: "Oswald", sans-serif;
    font-size: 30px;
    font-weight: 500;
    line-height: 34px;
    color: #181818;
}

.page-subtitle-grey {
    font-family: "Inter", sans-serif;
    font-size: 22px;
    font-weight: 500;
    line-height: 27px;
    color: #C6C6C6;
}

.bold-600 {
    font-weight: 600;
}

.colored {
    color: #ED1C24;
}

@media screen and (max-width: 575px) {
    .code-title {
        font-size: 40px;
    }
}
.footer {
    background: #181818;
}
.footer__top {
    padding: 55px 0 106px 0;
    border-bottom: 1px solid #ED1C24;
}
.footer__top-wrapper {
    width: 100%;
    max-width: 1111px;
    margin: 0 auto;
}
@media screen and (max-width: 1199px) {
    .footer__top-wrapper {
        max-width: 90%;
    }
}
.footer__top-inner {
    display: flex;
}
.footer__nav {
    flex-grow: 1;
    display: flex;
    justify-content: space-between;
}
.footer__column {
    flex-grow: 1;
}
.footer__column-title {
    font-family: "Inter", sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 23px;
    color: #fff;
    margin-bottom: 16px;
    display: block;
    transition: all 0.4s linear;
}
.footer__column-title_contacts {
    font-size: 14px;
}
.footer__column-title:hover {
    color: #ED1C24;
}
.footer__logo {
    margin-right: 88px;
}
.footer__logo-img {
    width: 183px;
}
.footer__link {
    display: block;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 17px;
    color: #fff;
    margin-bottom: 10px;
    transition: all 0.4s linear;
}
.footer__link:hover {
    color: #ED1C24;
}
.footer__contacts {
    max-width: 263px;
    margin-bottom: 24px;
}
.footer__contacts-info {
    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-weight: 300;
    line-height: 17px;
    color: #fff;
}
.footer__contacts-info:not(:last-child) {
    margin-bottom: 10px;
}
.footer__button {
    margin-bottom: 30px;
}
.footer__icons {
    display: flex;
    align-items: center;
}
.footer__icon-link:not(:last-child) {
    margin-right: 17px;
}
.footer__bottom {
    padding: 34px 0;
}
.footer__bottom-wrapper {
    width: 100%;
    max-width: 1111px;
    margin: 0 auto;
}
@media screen and (max-width: 1199px) {
    .footer__bottom-wrapper {
        max-width: 90%;
    }
}
.footer__bottom-inner {
    display: flex;
}
.footer__bottom-item {
    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-weight: 300;
    line-height: 17px;
    color: #fff;
    margin-bottom: 14px;
}
.footer__bottom-column_mod {
    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-weight: 300;
    line-height: 17px;
    color: #fff;
    max-width: 734px;
}
.footer__bottom-column:not(:last-child) {
    margin-right: 113px;
}
.footer__mobile-nav {
    display: none;
}
.footer__column_contacts_hide {
    display: none;
}
.footer__mobile-nav-footer {
    display: none;
}

.mobile-nav-footer__item {
    padding: 20px 0 8px;
    border-bottom: 1px solid rgba(237, 28, 36, 0.15);
    position: relative;
}
.mobile-nav-footer__item_dropdown::before {
    content: "";
    display: block;
    position: absolute;
    width: 12px;
    height: 12px;
    top: 20px;
    right: 30px;
    background: url("../../../../image/array_down_red.svg") 0 0/contain no-repeat;
    transition: all 0.4s linear;
}
.mobile-nav-footer__item_dropdown_active::before {
    transform: rotate(180deg);
}
.mobile-nav-footer__item_dropdown_active .mobile-nav-footer__link {
    color: #ED1C24;
}
.mobile-nav-footer__item_dropdown_active .mobile-nav-footer__list {
    height: auto;
    overflow: auto;
    opacity: 1;
}
.mobile-nav-footer__link {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 23px;
    color: #fff;
    transition: all 0.4s linear;
}
.mobile-nav-footer__list {
    height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.4s linear;
}
.mobile-nav-footer__list-inner {
    padding: 30px 0 10px 0;
}
.mobile-nav-footer__list-item {
    display: block;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 23px;
    color: #fff;
    margin-bottom: 23px;
}
.mobile-nav-footer__list-item:active, .mobile-nav-footer__list-item:hover {
    color: #fff;
}
.mobile-nav-footer__list-item:last-child {
    margin-bottom: 0;
}

@media screen and (max-width: 1199px) {
    .footer__nav {
        flex-wrap: wrap;
    }
    .footer__column {
        width: 48%;
        margin-bottom: 20px;
    }
}
@media screen and (max-width: 575px) {
    .footer__column_contacts_hide {
        display: block;
        margin-top: 30px;
    }
    .footer__logo-img {
        min-width: 120px;
    }
    .footer__logo {
        margin-right: 0;
    }
    .footer__top {
        padding: 30px 0 10px 0;
    }
    .footer__top-inner {
        flex-direction: column;
    }
    .footer__bottom-column_mod {
        font-size: 9px;
    }
    .footer__bottom-column_hide {
        display: none;
    }
    .footer__nav {
        display: none;
    }
    .footer__mobile-nav {
        display: block;
    }
    .footer__column {
        width: 100%;
    }
    .footer__icons {
        justify-content: center;
    }
    .footer__icon {
        width: 28px;
    }
    .footer__icon-link:not(:last-child) {
        margin-right: 28px;
    }
    .footer__mobile-nav-footer {
        display: block;
    }
}
.header {
    position: relative;
}
.header__burger {
    display: none;
    width: 24px;
    height: 16px;
    position: relative;
}
.header__burger::before, .header__burger:after {
    content: "";
    display: block;
    height: 3px;
    width: 100%;
    background: #ED1C24;
    position: absolute;
    left: 0;
    transition: all 0.4s linear;
}
.header__burger::before {
    top: 0;
}
.header__burger:after {
    bottom: 0;
}
.header__burger_active .header__burger-line {
    display: none;
}
.header__burger_active::before, .header__burger_active:after {
    top: 50%;
}
.header__burger_active::before {
    transform: translateY(-50%) rotate(45deg);
}
.header__burger_active:after {
    transform: translateY(-50%) rotate(-45deg);
}
.header__burger-line {
    position: absolute;
    display: block;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: 3px;
    width: 100%;
    background: #ED1C24;
}
.header__bottom-panel {
    position: relative;
    z-index: 101;
    box-shadow: 0 4px 6px rgba(24, 24, 24, 0.1);
}
.header__mobile-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 100;
    height: 0;
    overflow: hidden;
    transition: all 0.4s linear;
}
.header__mobile-nav_active {
    height: 100vh;
    overflow: auto;
}

.top-panel {
    background: #181818;
    padding: 18px 0 17px 0;
}
.top-panel__inner {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.top-panel__item {
    display: flex;
    align-items: center;
}
.top-panel__item:hover > .top-panel__title {
    color: #ED1C24;
}
.top-panel__item:hover > .top-panel__icon path {
    stroke: #ED1C24;
}
.top-panel__icon {
    margin-right: 13px;
}
.top-panel__icon path {
    stroke: #fff;
    transition: all 0.4s linear;
}
.top-panel__title {
    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-weight: 300;
    line-height: 17px;
    color: #fff;
    transition: all 0.4s linear;
}

.bottom-panel {
    padding: 21px 0 20px 0;
}
.bottom-panel__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav {
    display: flex;
    gap: 60px;
}
.nav__link {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    color: #181818;
    padding-bottom: 6px;
    transition: all 0.4s linear;
    border-bottom: 1px solid transparent;
}
.nav__link_active {
    border-bottom: 1px solid #ED1C24;
}
.nav__link:hover {
    border-bottom: 1px solid #ED1C24;
}

.mobile-nav {
    background: #fff;
}
.mobile-nav__panel {
    margin-bottom: 40px;
}
.mobile-nav__dropdown-list {
    height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.4s linear;
}
.mobile-nav__list-item {
    padding: 24px 0 8px 0;
    border-bottom: 1px solid #E3E3E3;
}
.mobile-nav__list-item_dropdown {
    position: relative;
}
.mobile-nav__list-item_dropdown::before {
    content: "";
    display: block;
    position: absolute;
    width: 12px;
    height: 12px;
    top: 20px;
    right: 30px;
    background: url("../../../../image/array_down_red.svg") 0 0/contain no-repeat;
    transition: all 0.4s linear;
}
.mobile-nav__list-item_dropdown_active::before {
    transform: rotate(180deg);
}
.mobile-nav__list-item_dropdown_active .mobile-nav__link {
    color: #ED1C24;
}
.mobile-nav__list-item_dropdown_active .mobile-nav__dropdown-list {
    height: auto;
    overflow: auto;
    opacity: 1;
}
.mobile-nav__dropdown-list-item {
    display: block;
    padding: 24px 0 8px 0;
}
.mobile-nav__button {
    margin: 0 auto;
}
.mobile-nav__button:not(:last-child) {
    margin-bottom: 20px;
}
.mobile-nav__icons {
    margin: 36px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.mobile-nav__icon-link {
    margin-right: 28px;
}

@media screen and (max-width: 991px) {
    .header__nav {
        display: none;
    }
    .header__burger {
        display: block;
    }
    .header__logo-img {
        max-width: 120px;
    }
}
@media screen and (max-width: 575px) {
    .top-panel__inner {
        justify-content: center;
    }
    .top-panel__item_hide {
        display: none;
    }
    .bottom-panel {
        padding: 10px 0 10px 0;
    }
}
.spares__breadcrumbs {
    width: 100%;
    max-width: 1111px;
    margin: 0 auto;
    margin-bottom: 70px;
}
@media screen and (max-width: 1199px) {
    .spares__breadcrumbs {
        max-width: 90%;
    }
}

.main-banner {
    background-color: #F2F2F2;
    padding: 48px 0;
}
.main-banner__container {
    width: 100%;
    max-width: 1111px;
    margin: 0 auto;
    position: relative;
}
@media screen and (max-width: 1199px) {
    .main-banner__container {
        max-width: 90%;
    }
}
.main-banner__img-container {
    position: absolute;
    bottom: -50px;
    right: 0;
}
.main-banner__title {
    font-family: "Oswald", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 44px;
    line-height: 65px;
    text-transform: uppercase;
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25), 0 4px 4px rgba(0, 0, 0, 0.25);
    color: #ED1C24;
    margin-bottom: 8px;
}
.main-banner__subtitle {
    font-family: "Inter", sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 23px;
    color: #100F0F;
    margin-bottom: 20px;
}
.main-banner__info {
    font-family: "Inter", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 19px;
    color: #100F0F;
    max-width: 443px;
    margin-bottom: 32px;
}
.main-banner__info p:not(:last-child) {
    margin-bottom: 20px;
}

.accessories {
    padding-top: 95px;
}
.accessories__container {
    width: 100%;
    max-width: 1111px;
    margin: 0 auto;
}
@media screen and (max-width: 1199px) {
    .accessories__container {
        max-width: 90%;
    }
}
.accessories__title {
    font-family: "Oswald", sans-serif;
    font-size: 46px;
    font-weight: 400;
    line-height: 68px;
    color: #181818;
    margin-bottom: 34px;
}
.accessories__subtitle {
    font-family: "Inter", sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 23px;
    color: #181818;
    max-width: 640px;
    margin-bottom: 54px;
}
.accessories__info {
    font-family: "Inter", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 19px;
    color: #181818;
    max-width: 640px;
}
.accessories__info p:not(:last-child) {
    margin-bottom: 20px;
}
.accessories__info-title {
    font-family: "Inter", sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 22px;
    line-height: 27px;
    color: #C6C6C6;
    color: #C6C6C6;
    margin-bottom: 12px;
}

.slider-products {
    display: flex;
    flex-wrap: nowrap;
    gap: 34px;
    margin-bottom: 58px;
}
.slider-products__slide {
    display: flex;
    flex-direction: column;
    width: 200px;
}
.slider-products__img-container {
    width: 200px;
    height: 194px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-bottom: 22px;
}
.slider-products__img {
    -o-object-fit: contain;
    object-fit: contain;
    max-width: 100%;
    max-height: 100%;
    margin-bottom: 20px;
}
.slider-products__slide-title {
    font-family: "Inter", sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    color: #100F0F;
    text-align: center;
    margin-bottom: 8px;
}
.slider-products__slide-info {
    font-family: "Inter", sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    color: rgba(24, 24, 24, 0.7);
    line-height: 17px;
    text-align: center;
}

.originals {
    padding-top: 85px;
    padding-bottom: 90px;
}
.originals__container {
    width: 100%;
    max-width: 1111px;
    margin: 0 auto;
}
@media screen and (max-width: 1199px) {
    .originals__container {
        max-width: 90%;
    }
}
.originals__title {
    font-family: "Oswald", sans-serif;
    font-size: 46px;
    font-weight: 400;
    line-height: 68px;
    color: #181818;
    margin-bottom: 34px;
}
.originals__subtitle {
    font-family: "Inter", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    color: #181818;
    max-width: 810px;
    margin-bottom: 34px;
}
.originals__list-item {
    font-family: "Inter", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 19px;
    color: #181818;
    padding-left: 15px;
    position: relative;
}
.originals__list-item:not(:last-child) {
    margin-bottom: 14px;
}
.originals__list-item::before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    background-color: #ED1C24;
}

.banner__img {
    width: 100%;
    height: auto;
}

.dealers-section {
    padding-top: 100px;
    padding-bottom: 118px;
}
.dealers-section__container {
    width: 100%;
    max-width: 1111px;
    margin: 0 auto;
}
@media screen and (max-width: 1199px) {
    .dealers-section__container {
        max-width: 90%;
    }
}
.dealers-section__title {
    font-family: "Oswald", sans-serif;
    font-size: 46px;
    font-weight: 400;
    line-height: 68px;
    color: #181818;
    margin-bottom: 34px;
}
.dealers-section__info {
    font-family: "Inter", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 22px;
    color: #100F0F;
    max-width: 640px;
    margin-bottom: 38px;
}
.dealers-section__info p:not(:last-child) {
    margin-bottom: 20px;
}

@media screen and (max-width: 1200px) {
    .main-banner__img-container {
        display: flex;
        justify-content: flex-end;
    }
    .main-banner__img {
        max-width: 80%;
    }
    .slider-products {
        display: block;
    }
    .slider-products__slide:not(:last-child) {
        margin-right: 34px;
    }
    .slider-products .slick-list {
        overflow: hidden;
    }
    .slider-products .slick-track {
        display: flex;
    }
}
@media screen and (max-width: 980px) {
    .main-banner__img {
        max-width: 70%;
    }
}
@media screen and (max-width: 880px) {
    .main-banner__img {
        max-width: 60%;
    }
}
@media screen and (max-width: 820px) {
    .main-banner__img {
        max-width: 50%;
    }
}
@media screen and (max-width: 720px) {
    .main-banner__img {
        max-width: 45%;
    }
}
@media screen and (max-width: 575px) {
    .spares__breadcrumbs {
        margin-bottom: 18px;
    }
    .main-banner {
        padding-top: 13px;
        padding-bottom: 40px;
    }
    .main-banner__img-container {
        position: static;
        display: block;
    }
    .main-banner__img {
        max-width: 100%;
    }
    .accessories {
        padding-top: 20px;
    }
    .originals {
        padding: 54px 0;
    }
    .dealers-section {
        padding: 44px 0;
    }
}