.stm-hero-slider-carousel {
    position: relative;
    left: calc(-1 * (100vw - 100%) / 2);
    width: 100vw;
}

.stm-hero-slider-carousel .stm-hero-slider-nav {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 0;
}

.stm-hero-slider-carousel .stm-hero-slider-nav-prev, .stm-hero-slider-carousel .stm-hero-slider-nav-next {
    position: absolute;
    top: 0;
    width: 100px;
    height: 100px;
    background-color: var(--motors-bg-lowalpha-contrast, rgba(0, 0, 0, 0.2));
    z-index: 500;
    transform: translateY(-50%);
    transition: 0.2s ease;
}

.stm-hero-slider-carousel .stm-hero-slider-nav-prev:hover, .stm-hero-slider-carousel .stm-hero-slider-nav-next:hover {
    background-color: var(--motors-bg-alpha-contrast, rgba(0, 0, 0, 0.4));
}

.stm-hero-slider-carousel .stm-hero-slider-nav-prev.swiper-button-disabled, .stm-hero-slider-carousel .stm-hero-slider-nav-next.swiper-button-disabled {
    display: none;
    background-color: var(--motors-bg-lowalpha-contrast, rgba(0, 0, 0, 0.2));
}

.stm-hero-slider-carousel .stm-hero-slider-nav-prev.swiper-button-disabled:hover, .stm-hero-slider-carousel .stm-hero-slider-nav-next.swiper-button-disabled:hover {
    background-color: var(--motors-bg-lowalpha-contrast, rgba(0, 0, 0, 0.2));
}

@media (max-width: 1024px) {
    .stm-hero-slider-carousel .stm-hero-slider-nav-prev, .stm-hero-slider-carousel .stm-hero-slider-nav-next {
        width: 75px;
        height: 75px;
    }
}

@media (max-width: 767px) {
    .stm-hero-slider-carousel .stm-hero-slider-nav-prev, .stm-hero-slider-carousel .stm-hero-slider-nav-next {
        width: 35px;
        height: 85px;
    }
}

.stm-hero-slider-carousel .stm-hero-slider-nav-prev:before, .stm-hero-slider-carousel .stm-hero-slider-nav-next:before {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    width: 25px;
    height: 25px;
    border-color: var(--motors-bg-color, #fff);
    border-style: solid;
    border-width: 2px 2px 0 0;
    opacity: 0.5;
    transition: 0.2s ease;
}

@media (max-width: 767px) {
    .stm-hero-slider-carousel .stm-hero-slider-nav-prev:before, .stm-hero-slider-carousel .stm-hero-slider-nav-next:before {
        width: 20px;
        height: 20px;
    }
}

.stm-hero-slider-carousel .stm-hero-slider-nav-prev:hover:before, .stm-hero-slider-carousel .stm-hero-slider-nav-next:hover:before {
    opacity: 0.8;
}

.stm-hero-slider-carousel .stm-hero-slider-nav-prev.swiper-button-disabled:before, .stm-hero-slider-carousel .stm-hero-slider-nav-next.swiper-button-disabled:before {
    opacity: 0.3;
}

.stm-hero-slider-carousel .stm-hero-slider-nav-prev.swiper-button-disabled:hover:before, .stm-hero-slider-carousel .stm-hero-slider-nav-next.swiper-button-disabled:hover:before {
    opacity: 0.3;
}

.stm-hero-slider-carousel .stm-hero-slider-nav-prev {
    left: 50px;
}

@media (max-width: 1024px) {
    .stm-hero-slider-carousel .stm-hero-slider-nav-prev {
        left: 20px;
    }
}

@media (max-width: 767px) {
    .stm-hero-slider-carousel .stm-hero-slider-nav-prev {
        left: 1px;
    }
}

.stm-hero-slider-carousel .stm-hero-slider-nav-prev:before {
    left: 56%;
    transform: translateY(-50%) translateX(-50%) rotate(-135deg);
}

.stm-hero-slider-carousel .stm-hero-slider-nav-next {
    right: 50px;
}

@media (max-width: 1024px) {
    .stm-hero-slider-carousel .stm-hero-slider-nav-next {
        right: 20px;
    }
}

@media (max-width: 767px) {
    .stm-hero-slider-carousel .stm-hero-slider-nav-next {
        right: 1px;
    }
}

.stm-hero-slider-carousel .stm-hero-slider-nav-next:before {
    left: 44%;
    transform: translateY(-50%) translateX(-50%) rotate(45deg);
}

.stm-hero-slider-wrap {
    display: block;
    position: relative;
    width: 100%;
    min-height: 600px;
    -o-object-fit: cover;
    object-fit: cover;
    margin: 0;
    overflow: hidden;
}

@media (max-width: 767px) {
    .stm-hero-slider-wrap {
        min-height: 400px;
    }
}

.stm-hero-slider-wrap .stm-image-wrap {
    display: block;
    width: 100%;
    margin: auto 0;
    max-height: 600px;
    -o-object-fit: cover;
    object-fit: cover;
}

@media (max-width: 767px) {
    .stm-hero-slider-wrap .stm-image-wrap {
        min-height: 400px;
    }
}

.stm-hero-slider-wrap .stm-image-wrap img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    transform: scale(1, 1);
    transition: all 0.3s ease-in-out;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

@media (max-width: 767px) {
    .stm-hero-slider-wrap .stm-image-wrap img {
        min-height: 400px;
    }
}

.stm-hero-slider-wrap:hover .stm-image-wrap img {
    transform: scale(1.01, 1.01);
}

.stm-hero-slider-wrap .container {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
}

.stm-hero-slider-wrap .container .stm-info-wrap {
    backface-visibility: hidden;
}

.stm-hero-slider-wrap .container .stm-info-wrap .stm-hb-round {
    backface-visibility: hidden;
}

.stm-hero-slider-wrap .container .stm-info-wrap .stm-hb-round .stm-hb-title {
    line-height: 1.1;
}

.stm-hero-slider-wrap.style_1.left .container {
    justify-content: flex-start;
}

.stm-hero-slider-wrap.style_1.right .container {
    justify-content: flex-end;
}

.stm-hero-slider-wrap.style_1.center .container {
    justify-content: center;
}

.stm-hero-slider-wrap.style_1 .stm-info-wrap {
    display: inline-block;
    z-index: 5;
    transition: all 0.3s ease-in-out;
    width: 359px;
    height: 359px;
    position: relative;
}

@media (max-width: 767px) {
    .stm-hero-slider-wrap.style_1 .stm-info-wrap {
        width: 280px;
        height: 280px;
        margin-left: 20px;
    }
}

@media (max-width: 320px) {
    .stm-hero-slider-wrap.style_1 .stm-info-wrap {
        margin-left: 5px;
    }
}

.stm-hero-slider-wrap.style_1 .stm-info-wrap:after {
    position: absolute;
    content: "";
    display: block;
    top: -18px;
    left: -18px;
    right: -18px;
    bottom: -18px;
    border-radius: 50%;
    opacity: 0.25;
    z-index: -1;
    transform: scale(1, 1);
    transition: all 0.5s ease-in-out;
}

.stm-hero-slider-wrap.style_1 .stm-info-wrap:hover:after {
    transform: scale(1.05, 1.05);
    opacity: 0.5;
}

.stm-hero-slider-wrap.style_1 .stm-info-wrap:hover .stm-hb-round:after {
    opacity: 1;
}

.stm-hero-slider-wrap.style_1 .stm-info-wrap .stm-hb-round {
    width: 100%;
    height: 100%;
    z-index: 5;
    color: var(--motors-contrast-text-color, #fff);
    text-decoration: none;
    white-space: normal;
    text-align: left;
    line-height: 20px;
    letter-spacing: 0px;
    font-weight: 400;
    padding: 58px 19px 50px 27px;
    border-radius: 50%;
    transform-origin: 50% 50%;
    opacity: 1;
    transform: translate(0px, 0px);
}

.stm-hero-slider-wrap.style_1 .stm-info-wrap .stm-hb-round:after {
    position: absolute;
    content: "";
    display: block;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    opacity: 0.85;
    z-index: -1;
    transition: all 0.5s ease-in-out;
}

@media (max-width: 767px) {
    .stm-hero-slider-wrap.style_1 .stm-info-wrap .stm-hb-round {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
    }
}

.stm-hero-slider-wrap.style_1 .stm-info-wrap .stm-hb-round .stm-hb-title {
    padding-left: 37px;
    padding-right: 45px;
}

.stm-hero-slider-wrap.style_1 .stm-info-wrap .stm-hb-round .stm-hb-title span {
    display: block;
}

@media (max-width: 767px) {
    .stm-hero-slider-wrap.style_1 .stm-info-wrap .stm-hb-round .stm-hb-title {
        margin-bottom: 8px;
        padding: 0;
    }
}

.stm-hero-slider-wrap.style_1 .stm-info-wrap .stm-hb-round .stm-hb-price-unit {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    letter-spacing: 0px;
    font-weight: 400;
}

.stm-hero-slider-wrap.style_1 .stm-info-wrap .stm-hb-round .stm-hb-price-unit > span {
    display: inline-block;
    position: relative;
}

.stm-hero-slider-wrap.style_1 .stm-info-wrap .stm-hb-round .stm-hb-price-unit .stm-hb-currency {
    vertical-align: top;
    justify-content: space-between;
    line-height: 1;
}

.stm-hero-slider-wrap.style_1 .stm-info-wrap .stm-hb-round .stm-hb-price-unit .stm-hb-price {
    text-align: left;
    vertical-align: top;
    line-height: 0.7;
}

.stm-hero-slider-wrap.style_1 .stm-info-wrap .stm-hb-round .stm-hb-price-unit .stm-hb-divider {
    position: relative;
    left: 6px;
    top: -4px;
    vertical-align: top;
    line-height: 1;
}

@media (max-width: 767px) {
    .stm-hero-slider-wrap.style_1 .stm-info-wrap .stm-hb-round .stm-hb-price-unit .stm-hb-divider {
        top: 0;
        left: 0;
        padding: 0 6px;
    }
}

.stm-hero-slider-wrap.style_1 .stm-info-wrap .stm-hb-round .stm-hb-price-unit .stm-hb-labels {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: nowrap;
    max-width: 100px;
    vertical-align: top;
    color: var(--motors-text-color, #232628);
    padding: 0 0 0 5px;
}

@media (max-width: 767px) {
    .stm-hero-slider-wrap.style_1 .stm-info-wrap .stm-hb-round .stm-hb-price-unit .stm-hb-labels {
        align-items: flex-start;
    }
}

.stm-hero-slider-wrap.style_1 .stm-info-wrap .stm-hb-round .stm-hb-price-unit .stm-hb-labels .stm-hb-time-label {
    display: block;
    text-transform: uppercase;
    margin-bottom: 5px;
    line-height: 0.7;
}

.stm-hero-slider-wrap.style_1 .stm-info-wrap .stm-hb-round .stm-hb-price-unit .stm-hb-labels .stm-hb-time-value {
    display: block;
    white-space: normal;
    word-spacing: 0;
    text-transform: uppercase;
    padding-left: 3px;
    line-height: 0.9;
}

@media (max-width: 767px) {
    .stm-hero-slider-wrap.style_1 .stm-info-wrap .stm-hb-round .stm-hb-price-unit .stm-hb-labels .stm-hb-time-value {
        padding-left: 0;
    }
}

.stm-hero-slider-wrap.style_1 .stm-info-wrap .stm-hb-round .stm-button {
    margin-left: 37px;
}

.stm-hero-slider-wrap.style_2 .stm-info-wrap {
    display: inline-block;
    z-index: 5;
}

.stm-hero-slider-wrap.style_2 .stm-info-wrap .stm-hb-round {
    z-index: 5;
    color: var(--motors-contrast-text-color, #fff);
    text-decoration: none;
    letter-spacing: 0px;
    font-weight: 400;
    opacity: 1;
}

.stm-hero-slider-wrap.style_2 .stm-info-wrap .stm-hb-round .stm-hb-price-unit {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: flex-start;
    font-weight: 700;
}

.stm-hero-slider-wrap.style_2 .stm-info-wrap .stm-hb-round .stm-hb-price-unit .stm-hb-currency {
    vertical-align: top;
    line-height: 1;
}

.stm-hero-slider-wrap.style_2 .stm-info-wrap .stm-hb-round .stm-hb-price-unit .stm-hb-price {
    text-align: left;
    line-height: 0.73;
}

.stm-hero-slider-wrap.style_2 .stm-info-wrap .stm-hb-round .stm-hb-price-unit .stm-hb-divider {
    position: relative;
    left: 6px;
    line-height: 1;
}

@media (max-width: 767px) {
    .stm-hero-slider-wrap.style_2 .stm-info-wrap .stm-hb-round .stm-hb-price-unit .stm-hb-divider {
        left: 4px;
    }
}

.stm-hero-slider-wrap.style_2 .stm-info-wrap .stm-hb-round .stm-hb-price-unit .stm-hb-labels {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
    vertical-align: top;
    font-weight: 700;
    padding-left: 6px;
}

.stm-hero-slider-wrap.style_2 .stm-info-wrap .stm-hb-round .stm-hb-price-unit .stm-hb-labels .stm-hb-time-label {
    display: block;
    line-height: 1;
}

.stm-hero-slider-wrap.style_2 .stm-info-wrap .stm-hb-round .stm-hb-price-unit .stm-hb-labels .stm-hb-time-value {
    display: block;
    white-space: normal;
    word-spacing: 0;
    max-width: 70px;
    text-align: left;
    margin-left: 15px;
    line-height: 1;
}

@media (max-width: 767px) {
    .stm-hero-slider-wrap.style_2 .stm-info-wrap .stm-hb-round .stm-hb-price-unit .stm-hb-labels .stm-hb-time-value {
        margin-left: 3px;
    }
}

.stm-hero-slider-wrap.style_2 .stm-info-wrap .stm-hb-round .stm-hb-round-text {
    margin-top: 11px;
}

.stm-hero-slider-wrap.style_2 .stm-info-wrap .stm-hb-round .stm-button {
    margin-top: 12px;
    padding: 1px 24px 0;
}

.stm-hero-slider-wrap.style_2 .stm-info-wrap .stm-hb-round .stm-button i {
    font-size: 18px;
    vertical-align: middle;
}

.stm-hero-slider-wrap.style_2.center .container {
    justify-content: center;
}

.stm-hero-slider-wrap.style_2.center .stm-info-wrap .stm-hb-round {
    text-align: center;
}

.stm-hero-slider-wrap.style_2.right .container {
    justify-content: flex-end;
}

.stm-hero-slider-wrap.style_2.right .stm-info-wrap .stm-hb-round {
    text-align: right;
}

.stm-hero-slider-wrap.style_2.right .stm-info-wrap .stm-hb-round .stm-hb-title {
    text-align: right;
}

.stm-hero-slider-wrap.style_2.right .stm-info-wrap .stm-hb-round .stm-hb-price-unit {
    justify-content: flex-end;
}

.stm-hero-slider-wrap.style_2.right .stm-info-wrap .stm-hb-round .stm-hb-round-text {
    text-align: right;
}

.stm-hero-slider-wrap.style_2.left .stm-info-wrap .stm-hb-round {
    text-align: left;
}

.stm-hero-slider-wrap.style_2.left .stm-info-wrap .stm-hb-round .stm-hb-title {
    text-align: left;
}

.stm-hero-slider-wrap.style_2.left .stm-info-wrap .stm-hb-round .stm-hb-price-unit {
    justify-content: flex-start;
}

.stm-hero-slider-wrap.style_2.left .stm-info-wrap .stm-hb-round .stm-hb-round-text {
    text-align: left;
}

.stm-hero-slider-wrap.style_3.left .container {
    justify-content: flex-start;
}

.stm-hero-slider-wrap.style_3.right .container {
    justify-content: flex-end;
}

.stm-hero-slider-wrap.style_3.center .container {
    justify-content: center;
}

.stm-hero-slider-wrap.style_3 .stm-info-wrap {
    display: block;
    cursor: pointer;
    padding: 55px 40px;
    color: var(--motors-contrast-text-color, #fff);
    max-width: 540px;
    overflow: hidden;
    position: relative;
}

@media (max-width: 767px) {
    .stm-hero-slider-wrap.style_3 .stm-info-wrap {
        padding: 30px;
    }
}

.stm-hero-slider-wrap.style_3 .stm-info-wrap:after {
    position: absolute;
    content: "";
    display: block;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.5;
    z-index: -1;
    transform: scale(1, 1);
    transition: all 0.5s ease-in-out;
}

.stm-hero-slider-wrap.style_3 .stm-info-wrap:hover:after {
    opacity: 0.75;
}

.stm-hero-slider-wrap.style_3 .stm-info-wrap .stm-hb-round .stm-hb-title {
    text-decoration: none;
}

.stm-hero-slider-wrap.style_3 .stm-info-wrap .stm-hb-round .stm-button {
    margin-top: 12px;
    font-weight: 600;
}

.stm-hero-slider-wrap.style_3 .stm-info-wrap .stm-hb-round .stm-button i {
    font-size: 18px;
    vertical-align: middle;
}

@media (max-width: 767px) {
    .stm-hero-slider-wrap.style_3 .stm-info-wrap .stm-hb-round .stm-button {
        line-height: 40px;
    }

    .stm-hero-slider-wrap.style_3 .stm-info-wrap .stm-hb-round .stm-button i {
        font-size: 16px;
        line-height: 14px;
    }
}

.stm-hero-slider-wrap.style_3.center .stm-info-wrap {
    text-align: center;
    padding: 55px 20px;
    max-width: 700px;
}

.stm-hero-slider-wrap.motorcycles.left .container {
    justify-content: flex-start;
}

.stm-hero-slider-wrap.motorcycles.center .container {
    justify-content: center;
}

.stm-hero-slider-wrap.motorcycles.right .container {
    justify-content: flex-end;
}

.stm-hero-slider-wrap.motorcycles .stm-info-wrap {
    position: relative;
    z-index: 5;
}

.stm-hero-slider-wrap.motorcycles .stm-motorcycles-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 320px;
}

.stm-hero-slider-wrap.motorcycles .stm-motorcycles-block {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateX(-110px);
    clip-path: polygon(12% 0, 100% 0, 88% 100%, 0 100%);
    will-change: opacity, transform;
}

.stm-hero-slider-wrap.motorcycles .stm-motorcycles-logo-block {
    align-self: flex-end;
    width: 255px;
    min-height: 92px;
    padding: 28px 50px;
    background-color: #101315;
    margin-left: 55px;
}

.stm-hero-slider-wrap.motorcycles .stm-motorcycles-logo-block img {
    display: block;
    width: 150px;
    max-width: 100%;
    max-height: 58px;
    -o-object-fit: contain;
    object-fit: contain;
}

.stm-hero-slider-wrap.motorcycles .stm-motorcycles-model-block {
    gap: 8px;
    min-width: 240px;
    padding: 18px 40px;
    color: #202326;
    background-color: #fff;
    font-size: 30px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
    margin-left: -20px;
}

.stm-hero-slider-wrap.motorcycles .stm-motorcycles-year {
    color: #e3210b;
}

.stm-hero-slider-wrap.motorcycles .stm-motorcycles-price-block {
    min-width: 145px;
    margin-left: 50px;
    padding: 11px 35px;
    color: #fff;
    background-color: #e3210b;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
}

@media (max-width: 767px) {
    .stm-hero-slider-wrap.motorcycles .container {
        padding-right: 20px;
        padding-left: 20px;
    }

    .stm-hero-slider-wrap.motorcycles .stm-motorcycles-card {
        width: 270px;
    }

    .stm-hero-slider-wrap.motorcycles .stm-motorcycles-logo-block {
        width: 220px;
        min-height: 75px;
        padding: 20px 40px;
    }

    .stm-hero-slider-wrap.motorcycles .stm-motorcycles-model-block {
        min-width: 205px;
        padding: 14px 30px;
        font-size: 24px;
    }

    .stm-hero-slider-wrap.motorcycles .stm-motorcycles-price-block {
        min-width: 125px;
        margin-left: 35px;
        padding: 10px 28px;
        font-size: 16px;
    }
}

.stm-hero-slider-wrap.style_4 .container {
    display: block;
}

.stm-hero-slider-wrap.style_4 .stm-info-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 5;
}

.stm-hero-slider-wrap.style_4 .stm-car-info-hero-title {
    position: absolute;
    top: 70px;
    left: 50px;
    max-width: 430px;
    margin: 0;
    padding-left: 50px;
    color: var(--motors-contrast-text-color, #fff);
    font-size: 38px;
    font-weight: 700;
    line-height: 1.05;
}

.stm-hero-slider-wrap.style_4 .stm-car-info-hero-title:before {
    content: "";
    position: absolute;
    top: 0.42em;
    left: 0;
    width: 38px;
    height: 8px;
    background-color: var(--motors-accent-color, #123df2);
}

.stm-hero-slider-wrap.style_4 .stm-car-info-panel {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: stretch;
    min-height: 154px;
    padding: 28px 30px;
    color: var(--motors-contrast-text-color, #fff);
    background-color: var(--motors-accent-color, #123df2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18);
}

.stm-hero-slider-wrap.style_4 .stm-car-info-section {
    border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.stm-hero-slider-wrap.style_4 .stm-car-info-vehicle {
    display: flex;
    flex: 0 0 205px;
    flex-direction: column;
    justify-content: center;
    padding-right: 24px;
    border-left: 0;
}

.stm-hero-slider-wrap.style_4 .stm-car-info-logo {
    margin-bottom: 10px;
}

.stm-hero-slider-wrap.style_4 .stm-car-info-logo img {
    display: block;
    width: 52px;
    height: 52px;
    -o-object-fit: contain;
    object-fit: contain;
}

.stm-hero-slider-wrap.style_4 .stm-car-info-name {
    max-width: 180px;
    color: var(--motors-contrast-text-color, #fff);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.05;
    text-transform: uppercase;
}

.stm-hero-slider-wrap.style_4 .stm-car-info-features {
    display: flex;
    flex: 1 1 auto;
    min-width: 0;
}

.stm-hero-slider-wrap.style_4 .stm-car-info-feature {
    display: flex;
    flex: 1 1 0;
    flex-direction: column;
    justify-content: center;
    min-width: 105px;
    padding: 0 20px;
}

.stm-hero-slider-wrap.style_4 .stm-car-info-feature-icon {
    display: flex;
    align-items: center;
    height: 38px;
    margin-bottom: 7px;
    color: var(--motors-contrast-text-color, #fff);
    font-size: 30px;
}

.stm-hero-slider-wrap.style_4 .stm-car-info-feature-icon svg {
    display: block;
    width: 30px;
    height: 30px;
    fill: currentColor;
}

.stm-hero-slider-wrap.style_4 .stm-car-info-feature-copy,
.stm-hero-slider-wrap.style_4 .stm-car-info-price-wrap {
    display: flex;
    flex-direction: column;
}

.stm-hero-slider-wrap.style_4 .stm-car-info-feature-label {
    margin-bottom: 3px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 10px;
    line-height: 1.2;
}

.stm-hero-slider-wrap.style_4 .stm-car-info-feature-value {
    color: var(--motors-contrast-text-color, #fff);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
    white-space: nowrap;
}

.stm-hero-slider-wrap.style_4 .stm-car-info-offer {
    display: flex;
    flex: 0 0 155px;
    flex-direction: column;
    justify-content: center;
    padding: 0 20px;
}

.stm-hero-slider-wrap.style_4 .stm-car-info-price-wrap {
    justify-content: center;
}

.stm-hero-slider-wrap.style_4 .stm-car-info-price-label {
    margin-bottom: 3px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 10px;
    line-height: 1.2;
}

.stm-hero-slider-wrap.style_4 .stm-car-info-old-price {
    margin-bottom: 3px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 14px;
    line-height: 1.2;
    text-decoration: line-through;
}

.stm-hero-slider-wrap.style_4 .stm-car-info-price {
    color: var(--motors-contrast-text-color, #fff);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    white-space: nowrap;
}

.stm-hero-slider-wrap.style_4 .stm-car-info-action {
    display: flex;
    align-items: center;
    justify-content: stretch;
    margin-top: 12px;
}

.stm-hero-slider-wrap.style_4 .stm-car-info-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 24px;
    color: var(--motors-text-color, #232628);
    background-color: var(--motors-bg-color, #fff);
    border-radius: 3px;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
    width: 100%;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.stm-hero-slider-wrap.style_4 .stm-car-info-button:hover {
    color: var(--motors-contrast-text-color, #fff);
    background-color: var(--motors-text-color, #232628);
}

.stm-hero-slider-wrap.style_4 .stm-car-info-button svg {
    width: 1em;
    height: 1em;
    fill: currentColor;
}

@media (max-width: 1199px) {
    .stm-hero-slider-wrap.style_4 .stm-car-info-panel {
        padding-right: 20px;
        padding-left: 20px;
    }

    .stm-hero-slider-wrap.style_4 .stm-car-info-vehicle {
        flex-basis: 175px;
    }

    .stm-hero-slider-wrap.style_4 .stm-car-info-feature {
        min-width: 90px;
        padding-right: 12px;
        padding-left: 12px;
    }

    .stm-hero-slider-wrap.style_4 .stm-car-info-offer {
        flex-basis: 115px;
        padding-right: 12px;
        padding-left: 12px;
    }
}

@media (max-width: 1024px) {
    .stm-hero-slider-wrap.style_4 .stm-car-info-panel {
        display: grid;
        grid-template-areas: "vehicle offer" "features features";
        grid-template-columns: 1fr auto;
        min-height: 215px;
        padding-top: 18px;
        padding-bottom: 18px;
    }

    .stm-hero-slider-wrap.style_4 .stm-car-info-vehicle {
        grid-area: vehicle;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        padding-right: 15px;
    }

    .stm-hero-slider-wrap.style_4 .stm-car-info-logo {
        margin: 0 12px 0 0;
    }

    .stm-hero-slider-wrap.style_4 .stm-car-info-name {
        max-width: 220px;
    }

    .stm-hero-slider-wrap.style_4 .stm-car-info-features {
        grid-area: features;
        padding-top: 15px;
        border-top: 1px solid rgba(255, 255, 255, 0.18);
    }

    .stm-hero-slider-wrap.style_4 .stm-car-info-feature:first-child {
        border-left: 0;
    }

    .stm-hero-slider-wrap.style_4 .stm-car-info-offer {
        grid-area: offer;
    }
}

@media (max-width: 767px) {
    .stm-hero-slider-wrap.style_4 .stm-car-info-hero-title {
        top: 35px;
        left: 35px;
        max-width: calc(100% - 70px);
        padding-left: 35px;
        font-size: 26px;
    }

    .stm-hero-slider-wrap.style_4 .stm-car-info-hero-title:before {
        width: 25px;
        height: 5px;
    }

    .stm-hero-slider-wrap.style_4 .stm-car-info-panel {
        right: 15px;
        left: 15px;
        grid-template-columns: 1fr auto;
        grid-template-areas: "vehicle offer" "features features";
        min-height: 225px;
        padding: 14px 15px;
    }

    .stm-hero-slider-wrap.style_4 .stm-car-info-vehicle {
        min-width: 0;
    }

    .stm-hero-slider-wrap.style_4 .stm-car-info-logo img {
        width: 40px;
        height: 40px;
    }

    .stm-hero-slider-wrap.style_4 .stm-car-info-name {
        font-size: 14px;
    }

    .stm-hero-slider-wrap.style_4 .stm-car-info-features {
        overflow-x: auto;
        padding-bottom: 8px;
    }

    .stm-hero-slider-wrap.style_4 .stm-car-info-feature {
        flex: 0 0 92px;
        padding: 0 10px;
    }

    .stm-hero-slider-wrap.style_4 .stm-car-info-feature-icon {
        height: 27px;
        margin-bottom: 3px;
        font-size: 22px;
    }

    .stm-hero-slider-wrap.style_4 .stm-car-info-feature-icon svg {
        width: 22px;
        height: 22px;
    }

    .stm-hero-slider-wrap.style_4 .stm-car-info-offer {
        padding-right: 0;
        padding-left: 12px;
    }

    .stm-hero-slider-wrap.style_4 .stm-car-info-old-price {
        font-size: 11px;
    }

    .stm-hero-slider-wrap.style_4 .stm-car-info-price {
        font-size: 15px;
    }

    .stm-hero-slider-wrap.style_4 .stm-car-info-action {
        margin-top: 6px;
    }

    .stm-hero-slider-wrap.style_4 .stm-car-info-button {
        width: 100%;
        padding-top: 10px;
        padding-bottom: 10px;
    }
}

.stm-hero-slider-wrap.loaded .container .stm-info-wrap {
    animation-name: opacity;
    animation-fill-mode: forwards;
    animation-delay: 0.2s;
    animation-duration: 0.3s;
}

.swiper-slide-active .stm-hero-slider-wrap.motorcycles.loaded .stm-motorcycles-block {
    animation: motorcycles-block-in 0.55s cubic-bezier(0.22, 0.75, 0.3, 1) forwards;
}

.swiper-slide-active .stm-hero-slider-wrap.motorcycles.loaded .stm-motorcycles-model-block {
    animation-delay: 0.16s;
}

.swiper-slide-active .stm-hero-slider-wrap.motorcycles.loaded .stm-motorcycles-price-block {
    animation-delay: 0.32s;
}

@keyframes motorcycles-block-in {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .stm-hero-slider-wrap.motorcycles .stm-motorcycles-block {
        opacity: 1;
        transform: none;
        animation: none;
    }
}

[dir=rtl] .stm-hero-slider-wrap.style_1 .stm-info-wrap .stm-hb-round .stm-button {
    margin-right: 37px;
    margin-left: 0;
}

[dir=rtl] .stm-hero-slider-wrap.style_1.left .container {
    justify-content: flex-end;
}

[dir=rtl] .stm-hero-slider-wrap.style_1.right .container {
    justify-content: flex-start;
}

[dir=rtl] .stm-hero-slider-wrap.style_2.left .container {
    justify-content: flex-end;
}

[dir=rtl] .stm-hero-slider-wrap.style_2.right .container {
    justify-content: flex-start;
}

[dir=rtl] .stm-hero-slider-wrap.style_3.left .container {
    justify-content: flex-end;
}

[dir=rtl] .stm-hero-slider-wrap.style_3.right .container {
    justify-content: flex-start;
}

@keyframes slidein {
    from {
        opacity: 0;
        margin-left: -100%;
    }

    to {
        opacity: 1;
        margin-left: 0;
    }
}

@keyframes opacity {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}