.button-am {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 16px;
    color: #fff;
    background: #c95757;
    border-radius: 50px;
    padding: 15px 30px;
    transition: background-color 0.2s ease-in-out;
}

@media (any-hover: hover) {
    .button-am:hover {
        opacity: .8;
        color: #fff;
    }
}

.header-a {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
}

.header-a-top {
    backdrop-filter: blur(15px);
    background-color: rgba(161, 161, 161, 0.06);
    padding: 10px 0;
    position: relative;
    transition: background-color 0.2s ease-in-out;
}

.header-a--black .header-a-top {
    background-color: rgba(48, 48, 48, 0.7);
}

.header-a-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.header-a-lside {
    display: flex;
    align-items: center;
    gap: 27px;
}

.header-a-office {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.header-a-office span {
    font-family: var(--font-family);
    font-weight: 300;
    font-size: 10px;
    color: rgba(252, 252, 252, 0.8);
}

.header-a-office .phone {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 14px;
    color: #fff;
    transition: color 0.2s ease-in-out;
}

@media (any-hover: hover) {
    .header-a-office .phone:hover {
        color: #c2c2c2;
    }
}

.header-a-rside {
    display: flex;
    align-items: center;
    gap: 30px;
}

.exchange span {
    font-family: var(--font-family);
    font-weight: 300;
    font-size: 12px;
    color: rgba(252, 252, 252, 0.8);
    margin-bottom: 4px;
    display: block;
}

.exchange-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
}

.exchange-block {
    display: flex;
    align-items: center;
    gap: 4px;
}

.exchange-block span {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 16px;
    color: #fff;
}

.header-a-burger {
    cursor: pointer;
}

.header-a-burger > svg {
    pointer-events: none;
}

.header-a-menu {
    position: absolute;
    height: 100vh;
    max-width: 450px;
    width: 100%;
    right: -50%;
    top: 0;
    background-color: #fff;
    border-radius: 24px;
    padding: 20px;
    padding-top: 66px;
    opacity: 0;
    visibility: hidden;
    transition: 0.2s ease-in-out;
    z-index: 99999;
}

.header-a-menu.active {
    opacity: 1;
    visibility: visible;
    right: 0;
    overflow: auto;
}

.header-a-menu-close {
    position: absolute;
    top: 15px;
    right: 20px;
    cursor: pointer;
    width: 33px;
    height: 33px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
}

.header-a-menu-close > svg {
    pointer-events: none;
}

.header-a-menu-top {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 31px;
}

.header-a-menu-top span {
    font-family: var(--font-family);
    font-weight: 300;
    font-size: 12px;
    color: rgba(29, 29, 29, 0.8);
}

.header-a-menu-top .phone {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 18px;
    color: #0c0b0b;
}

.header-a-menu-nav {
    padding: 34px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.header-a-menu-nav .list {
    display: flex;
    flex-direction: column;
    gap: 27px;
}

.header-a-menu-nav .link {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 18px;
    color: #101010;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.2s ease-in-out;
}

.header-a-menu-nav .link:before {
    content: '';
    width: 12px;
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
    transition: background-color 0.2s ease-in-out;
}

@media (any-hover: hover) {
    .header-a-menu-nav .link:hover {
        transform: translateX(5px);
    }

    .header-a-menu-nav .link:hover:before {
        background: rgba(2, 2, 2, 0.911);
    }
}

.header-a-map {
    margin-top: 28px;
}

.header-a-map,
.header-a-mail {
    display: grid;
    grid-template-columns: 15px 1fr;
    gap: 10px;
    margin-bottom: 15px;
}

.header-a-map .text {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 14px;
    color: #262626;
}

.header-a-mail .text {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 14px;
    color: #262626;
}

.header-a-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.header-a-actions .link {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 12px;
    color: #fff;
    border-radius: 30px;
    flex: 1 1 144px;
    display: flex;
    justify-content: center;
    padding: 10px 12px;
}

.header-a-actions .link.green {
    background: #1ba70e;
}

.header-a-actions .link.blue {
    background: #0756ff;
}

.overlay {
    position: fixed;
    inset: 0;
    z-index: 888;
    background: #000;
    backdrop-filter: blur(15px);
    background: rgba(161, 161, 161, 0.06);
    opacity: 0;
    visibility: hidden;
    transition: 0.2s ease-in-out;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

.sec-hero {
    background: url('../img/amur-motors-bg.webp') no-repeat;
    background-size: cover;
    background-position: center -10%;
    height: 100vh;
    position: relative;
}

.korea-hero {
    background: url('../img/new-am-bg.webp') no-repeat;
    background-size: cover;
    background-position: center bottom;
}

.sec-hero:before {
    content: '';
    inset: 0;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.7);
}

.korea-hero:before {
    content: '';
    inset: 0;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.5);
}

.sec-hero-container {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.sec-hero-head h1 {
    font-family: var(--font-family);
    font-weight: 800;
    font-size: 52px;
    color: #fff;
    margin: 0;
    margin-bottom: 7px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.sec-hero .text {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 24px;
    color: #fff;
    margin: 0;
    margin-bottom: 41px;
}

.sec-hero-btn {
    background: #a53434;
}

#typewriter {
    border-right: 2px solid rgb(247, 247, 247); /* Имитация мигающего курсора */
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    animation: blink 0.6s steps(2) infinite;
}

@keyframes blink {
    50% {
        border-color: transparent;
    }
}

/* popular */

.popular-block {
    margin-top: 60px;
    margin-bottom: 80px;
}

.popular-block .title {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: clamp(28px, 3vw, 42px);
    color: #000;
    margin: 0;
    margin-bottom: 40px;
}

.popular-block .title span {
    color: #a53434;
}

.popular-block .swiper {
    padding-bottom: 20px;
    border-radius: 18px;
}

.popular-block-slide {
    display: flex;
    flex-direction: column;
    height: auto;
    border-radius: 18px;
    box-shadow: 0 10px 11px -5px rgba(0, 0, 0, 0.15);
    background: #fff;
    padding-bottom: 12px;
}

.popular-block-slide .image {
    position: relative;
    padding: 30%;
}

.popular-block-slide .image img {
    border-radius: 18px 18px 0 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.popular-block-slide .content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1 1 auto;
    padding: 24px 10px;
}

.popular-block-slide .name {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: clamp(16px, 1vw, 20px);
    color: #000;
}

.popular-block-slide .row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 11px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 5px;
}

.row-text {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    color: #3c3c3c;
}

.row-text span {
    color: #a53434;
}

.price {
    margin-top: 15px;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    color: #000;
    margin-bottom: 12px;
    padding-inline: 22px;
    text-align: center;
}

.popular-block-btn {
    margin-inline: 20px;
}

.popular-block-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.popular-block .more {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex: 1 1 auto;
    max-width: 344px;
    border-radius: 4px;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.05);
    background: #f8f8f8;
    padding: 10px 12px;
    transition: 0.2s ease;
}

.popular-block .more .icon {
    height: 18px;
}

.popular-block .more .text {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 16px;
    color: #000;
}

.popular-block-nav {
    display: flex;
    align-items: center;
    gap: 10px;
}

.popular-block-nav-btn {
    cursor: pointer;
    transition: opacity 0.2s ease, scale 0.2s ease;
}

.popular-block-nav-btn > svg {
    pointer-events: none;
}

@media (any-hover: hover) {
    .popular-block-nav-btn:hover {
        opacity: 0.8;
        scale: 1.1;
    }

    .popular-block .more:hover {
        transform: translateX(10px);
    }
}

.popular-block .title .accent-blue {
    color: #0756ff;
}

.popular-block-china .title .accent-yellow {
    color: #FFCF48;
}
.popular-block-china .button-am {
    background: #FFCF48;
    color: #000;
}

.popular-block-china .row-text span {
    color: #FFCF48;
}

.popular-block-korea .popular-block-btn {
    background: #0756ff;
}

.popular-block-korea .row-text span {
    color: #0756ff;
}

.popular-block-korea .popular-block-nav-btn rect {
    fill: #0756ff;
}

.d-g-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.korea-hero .sec-hero-btn {
    background: #0756ff;
}

.steps {
    margin-bottom: 80px;
}

.steps .title {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: clamp(28px, 3vw, 42px);
    color: #000;
    margin: 0;
    margin-bottom: 40px;
}

.steps__items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 23px;
}

.item--big {
    grid-column: span 3;
}

.steps .item {
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 10px -2px rgba(0, 0, 0, 0.15);
    background: #fff;
    border-radius: 13px;
    padding: 18px;
    color: #000;
    position: relative;
}

.steps .item .number {
    font-family: var(--font-family);
    font-weight: 800;
    font-size: 32px;
    color: rgba(0, 0, 0, 0.2);
    position: absolute;
    top: 10px;
    right: 10px;
}

.steps .item--red {
    background: #c60c30;
    border-radius: 13px;
    color: #fff;
    position: relative;
    padding: 18px;
}

.steps .item--red .image {
    position: absolute;
    right: 0;
    bottom: 0;

img {
    display: block;
}

}

.steps .item--red .item-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.steps .item--red .item-row .left {
    display: flex;
    align-items: center;
    gap: clamp(20px, 3vw, 40px);
}

.steps .item--red .number {
    font-family: var(--font-family);
    font-weight: 800;
    font-size: clamp(64px, 5vw, 96px);
    color: #fff;
}

.item--red .subtitle {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 20px;
    max-width: 225px;
}

.item--red .text {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 14px;
    line-height: 120%;
    max-width: 465px;
}

.item .subtitle {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 20px;
    max-width: 245px;
    margin-bottom: 24px;
    padding-top: 38px;
}

.item .text {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 14px;
    line-height: 120%;
    max-width: 365px;
    flex: 1 1 auto;
    margin-bottom: 40px;
}

.steps .item .item-btn {
    display: inline-block;
    text-align: center;
}

.steps .item--white {
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    background: #fff;
}

.steps .item--white .subtitle {
    color: #151515;
}

.steps .item--white .text {
    color: #151515;
}

.steps .item--white .number {
    color: #ccc;
}

.f-am {
    margin-top: 60px;
    margin-bottom: 100px;
}

.f-am-title {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: clamp(28px, 3vw, 42px);
    color: #000;
    margin: 0;
    margin-bottom: 40px;
}

.f-am-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.f-am-item {
    display: flex;
    flex-direction: column;
    gap: 20px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 13px;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
    background: #fff;
    padding-inline: clamp(10px, 2vw, 20px);
    padding-block: 20px;
}

.f-am-item .text {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: clamp(14px, 2vw, 18px);
    line-height: 120%;
    color: #000;
    max-width: 260px;
}

.f-am-btn {
    display: inline-block;
    max-width: fit-content;
    text-align: center;
}

.f-am-callback {
    grid-column: span 2;
    background: #c95757;
    padding-inline: clamp(10px, 2vw, 20px);
    padding-block: 20px;
    border-radius: 13px;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
}

.f-am-callback-title {
    font-size: 24px;
    font-family: var(--font-family);
    font-weight: 600;
    margin-bottom: 5px;
    color: #fff;
}

.f-am-callback-desc {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 14px;
    line-height: 120%;
    color: #fff;
    margin-bottom: 24px;
}

.f-am-callback-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.f-am-form-row input {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    background-color: #fff;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    color: #0c0c0c;
    padding: 8px 24px;
    width: 100%;
}

.f-am-form-btn {
    background-color: #000;
}

.stat-auc-japan {
    margin-top: 140px;
    margin-bottom: 140px;
}

.stat-auc-japan h1 {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 28px;
    color: #000;
    margin: 0;
    margin-bottom: 40px;
}

.stat-auc-japan p {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 16px;
    line-height: 130%;
    color: rgba(60, 60, 60, 0.64);
}

.top-actions {
    margin-top: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.top-actions-btn {
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 20px;
}

.stat-filter {
    border-radius: 25px;
    background: #f4f4f4;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat-field-block {
    display: flex;
    gap: 20px;
    flex: 1 1 33%;
}

.stat-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.default-field {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    background: #fff;
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 16px;
    color: rgba(0, 0, 0, 0.6);
    padding: 18px 34px;
    flex: 1 1 30%;
}

.ss-content.ss-open-below {
    padding: 10px;
}

.ss-selected {
    background-color: lavender !important;
    color: #000 !important;
}

.stat-btn {
    background-color: var(--black-color);
    display: flex;
    padding: 18px 34px;
    flex: 1 1 30%;
    border-radius: 15px;
    justify-content: center;
    align-items: center;
}

.cars-stat {
    margin-top: 60px;
    margin-bottom: 100px;
}

.cars-stat-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.item-car {
    position: relative;
    display: flex;
    flex-direction: column;
    border-radius: 18px;
    box-shadow: 0 10px 11px -5px rgba(0, 0, 0, 0.15);
    background: #fff;
    padding-bottom: 12px;
}

.item-car-head {
    position: absolute;
    top: 10px;
    width: 90%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.item-car-head .date {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    color: #fff;

    backdrop-filter: blur(4px);
    background: rgba(0, 0, 0, 0.9);
    border-radius: 50px;
    max-width: 100px;
    width: 100%;
    text-align: center;
    padding: 3px 12px;
}

.item-car-head .grade {
    width: 25px;
    height: 25px;
    background: rgba(251, 165, 12, 0.77);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 12px;
    color: #fff;
    border-radius: 50%;
}

.item-car-photo img {
    width: 100%;
    height: 100%;
    border-radius: 18px 18px 0 0;
    height: 240px;
}

.item-car-content {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1 1 auto;
    padding: 24px 10px;
}

.item-car-title {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: clamp(16px, 1vw, 20px);
    color: #000;
}

.item-car .row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 11px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 5px;
}

.item-car-text {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    color: #3c3c3c;
}

.item-car-btn {
    max-width: 80%;
    display: block;
    text-align: center;
    margin: 0 auto;
}

.item-car .price {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
}

.item-car .price_ruble {
    text-align: center;
    opacity: 0.6;
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 10px;
}

.item-car-text span {
    color: #9b2e3c;
}

.single-cart-img img {
    width: 100%;
}

.single-car-btn {
    font-size: 18px;
}

.single-car-btn-calc {
    background-color: rgb(228, 228, 231, 0.8);
    color: #0c0b0b;
}

.single-car-btn-calc:hover {
    color: #fff;
}

.button-am-blue {
    background-color: #007aff;
}

/* modal */

.modal-car {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #2525251a;
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: 0.2s ease;
}

.modal-car.active {
    opacity: 1;
    visibility: visible;
}

.modal-car__container {
    background-color: #fff;
    padding: 60px 30px;
    position: relative;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.15);
    border-radius: 11px;
    max-width: 990px;
    width: 100%;
}

.modal-car__close {
    position: absolute;
    right: 20px;
    top: 20px;
    cursor: pointer;
}

.modal-car__close svg {
    pointer-events: none;
}

.modal-car__content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.modal-car .title {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 20px;
    color: #000;
    margin-bottom: 12px;
}

.modal-car .title span {
    font-weight: bold;
}

.modal-car-form-row {
    margin-bottom: 15px;
}

.modal-car-form-row input {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    background-color: #fff;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    color: #0c0c0c;
    padding: 14px 32px;
    width: 100%;
}

.modal-car-form-btn {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 22px;
}

.modal-car-form .text {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 12px;
    color: #0e0e0e;
    max-width: 580px;
    margin: 0;
    margin-top: 10px;
}

.header-a--black-static {
    background: #00000099;
}

.am-reviews-slide {
    display: flex;
    flex-direction: column;
    gap: 14px;
    border-radius: 7px;
    background-color: #fff;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    height: auto;
    padding: 12px;
}

.am-reviews-slide .name {
    font-size: 18px;
    font-weight: bold;
    font-family: var(--font-family);
}

.am-reviews-slide .desc {
    font-size: 14px;
    line-height: 120%;
    font-family: var(--font-family);

    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.am-reviews-slide .link {
    max-width: 200px;
    justify-content: center;
    display: flex;
    align-items: center;
    margin-left: auto;
    font-size: 14px;
}

.am-review-nav {
    display: flex;
    justify-content: end;
    gap: 10px;
    margin-top: 20px;
}

.am-review-nav-btn {
    cursor: pointer;
}

.am-review-nav-btn svg {
    pointer-events: none;
}

.am-reviews-swiper {
    padding-bottom: 20px;
}

.am-review {
    margin-bottom: 80px;
}

.review__callback {
    margin-top: 40px;
}

.review__callback .button-am {
    cursor: pointer;
    border: none;
}

.credit-callback__link {
    border-radius: 30px;
    font-family: var(--font-family);
    letter-spacing: 0;
}

.credit__offer {
    background: #d7d7d7;
}

.credit__offer-text {
    color: #000;
}

.credit__offer-title {
    color: #000;
}

/* am reviews */

.modal--active {
    scale: 1;
    opacity: 1;
    visibility: visible;
    display: block !important;
}

.modal {
    background-color: rgba(0, 0, 0, 0.5);
}

.single-car-btn {
    text-align: center;
}

.breadcrumbs {
    margin-bottom: 20px;
}

.breadcrumbs .container {
    width: 100%;
}

.breadcrumbs ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.breadcrumbs ul li {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    color: #717171;
    position: relative;
}

.breadcrumbs ul li a {
    color: var(--black-color);
}

.breadcrumbs ul li:not(:last-child) {
    padding-right: 20px;
}

.breadcrumbs ul li:not(:last-child):after {
    content: '/';
    position: absolute;
    right: 0;
    top: 0;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    color: #717171;
}

@media (max-width: 768px) {
    .steps__items {
        grid-template-columns: 1fr;
    }

    .item--big {
        grid-column: auto;
    }

    .steps .item--red .image {
        display: none;
    }

    .steps .item--red .item-row .left {
        flex-direction: column;
        align-items: flex-start;
    }

    .callback__title::after {
        display: none;
    }

    .header-a .exchange {
        display: none;
    }

    .header-a-office {
        display: none;
    }

    .header-a .header-a-button {
        display: none;
    }

    .sec-hero-head h1 {
        flex-direction: column;
        font-size: 42px;
    }

    .sec-hero .text {
        font-size: 18px;
        text-align: center;
    }

    .f-am-items {
        grid-template-columns: 1fr 1fr;
    }

    .f-am .button-am {
        font-size: 12px;
        padding: 12px;
    }

    .d-g-4 {
        grid-template-columns: 1fr 1fr;
    }

    .popular-block .popular-block-btn {
        font-size: 12px;
        padding: 10px;
        margin-inline: 8px;
    }

    .stat-field-block {
        flex-direction: column;
    }

    .top-actions {
        grid-template-columns: 1fr;
    }

    .cars-stat-wrapper {
        grid-template-columns: 1fr;
    }

    .item-car-btn {
        max-width: 100%;
        padding: 12px;
        font-size: 12px;
    }

    .item-car-content {
        padding: 10px;
    }

    .stat-row {
        flex-direction: column;
    }
    .footer__phones {
        gap: 10px;
    }
}

.car-clients-section .popular-block-slide .image  {
    padding: 45%;
}

.car-clients-section .popular-block-slide {
    padding-bottom: 0;
}

.car-clients-section .popular-block-slide .image img {
    border-radius: 18px;
}

.button-am-yellow {
    background: #FFCF48;
    color: #000;
}

.hidden-input {
    display: none;
}