html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
    width: 100%;
}

@media (max-width: 767.98px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .row {
        margin-left: -15px;
        margin-right: -15px;
    }

    .row > * {
        padding-left: 15px;
        padding-right: 15px;
    }
}

.bd-placeholder-img {
    font-size: 1.125rem;
    text-anchor: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}
@media (min-width: 768px) {
    .bd-placeholder-img-lg {
        font-size: 3.5rem;
    }
}
.b-example-divider {
    width: 100%;
    height: 3rem;
    background-color: #0000001a;
    border: solid rgba(0, 0, 0, 0.15);
    border-width: 1px 0;
    box-shadow:
            inset 0 0.5em 1.5em #0000001a,
            inset 0 0.125em 0.5em #00000026;
}
.b-example-vr {
    flex-shrink: 0;
    width: 1.5rem;
    height: 100vh;
}
.bi {
    vertical-align: -0.125em;
    fill: currentColor;
}
.nav-scroller {
    position: relative;
    z-index: 2;
    height: 2.75rem;
    overflow-y: hidden;
}
.nav-scroller .nav {
    display: flex;
    flex-wrap: nowrap;
    padding-bottom: 1rem;
    margin-top: -1px;
    overflow-x: auto;
    text-align: center;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
}
.btn-bd-primary {
    --bd-violet-bg: #712cf9;
    --bd-violet-rgb: 112.520718, 44.062154, 249.437846;
    --bs-btn-font-weight: 600;
    --bs-btn-color: var(--bs-white);
    --bs-btn-bg: var(--bd-violet-bg);
    --bs-btn-border-color: var(--bd-violet-bg);
    --bs-btn-hover-color: var(--bs-white);
    --bs-btn-hover-bg: #6528e0;
    --bs-btn-hover-border-color: #6528e0;
    --bs-btn-focus-shadow-rgb: var(--bd-violet-rgb);
    --bs-btn-active-color: var(--bs-btn-hover-color);
    --bs-btn-active-bg: #5a23c8;
    --bs-btn-active-border-color: #5a23c8;
}
.fixed-controls {
    z-index: 1500;
}

.bd-mode-toggle {
    z-index: 1500;
}
.bd-mode-toggle .bi {
    width: 1em;
    height: 1em;
}
.bd-mode-toggle .dropdown-menu .active .bi {
    display: block !important;
}

.scroll-to-top {
    width: 48px;
    height: 48px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: opacity .3s ease, transform .3s ease, background-color .3s ease, visibility .3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    pointer-events: none;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.scroll-to-top.show:hover {
    transform: translateY(-2px);
    background-color: #6528e0;
}

.scroll-to-top svg {
    fill: currentColor;
}

@media (max-width: 767.98px) {
    .fixed-controls {
        bottom: 16px;
        right: 16px;
    }

    .scroll-to-top {
        width: 44px;
        height: 44px;
    }

    .scroll-to-top svg {
        width: 18px;
        height: 18px;
    }

    .bd-mode-toggle {
        display: none;
    }
}

.navbar-nav>li:before {
    background: #f02;
    bottom: 0;
    content: "";
    height: 2px;
    left: 50%;
    position: absolute;
    right: 0;
    transform: translateX(-50%);
    transition: width .4s
    ease-in-out;
    width: 0;
    z-index: 1;
}

.navbar-nav>li:hover:before {
    width: calc(100% - 27px);
}

.header-container .navbar-nav>li {
    display: inline-block;
    float: none;
}

nav.navbar {
    border-bottom: 1px solid #f2f2f2;
    padding-top: 20px;
    padding-bottom: 20px;
}

nav.navbar.navbar-expand-md.fixed-top {
    background-color: #fff;
    transition: all 0.3s ease;
}

nav.navbar.navbar-expand-md.fixed-top.scrolled {
    padding-top: 5px;
    padding-bottom: 5px;
}

.navbar-nav>li {
    position: relative;
}

@media (max-width: 767.98px) {
    nav.navbar {
        padding-top: 12px;
        padding-bottom: 12px;
    }

    .navbar-brand img {
        height: 36px;
        max-width: 120px;
    }

    .navbar-logo-img {
        height: 32px;
    }

    .btn-phone {
        padding: 6px;
    }

    .btn-phone svg {
        width: 18px;
        height: 18px;
    }

    .navbar-nav {
        padding-top: 16px;
        padding-bottom: 16px;
    }

    .navbar-nav .nav-link {
        padding: 10px 0;
        font-size: 0.9rem;
    }

    .d-flex.align-items-center.gap-3 {
        gap: 12px !important;
        margin-top: 12px;
        flex-wrap: wrap;
    }

    .d-flex.align-items-center.gap-3 > a span {
        font-size: 0.9rem;
    }
}

.btn-phone {
    background: transparent;
    border: 0;
    padding: 8px;
    color: #282830;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color .3s ease, transform .3s ease;
    cursor: pointer;
}

.btn-phone:hover {
    color: #d71921;
    transform: scale(1.1);
}

.btn-phone svg {
    display: block;
}

.phone-link {
    display: inline-flex;
    align-items: center;
    color: #282830;
    text-decoration: none;
    font-size: 1rem;
    transition: color .3s ease;
}

.phone-link:hover {
    color: #d71921;
}

.phone-item h6 {
    color: #475569;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.navbar-logo-right {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity .3s ease;
}

.navbar-logo-right:hover {
    opacity: 0.8;
}

.navbar-logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.top-block {
    padding: 0 0 32px;
}

.top-block .title {
    font-size: 32px;
    margin-bottom: 12px;
    line-height: 36px;
}

.top-block .sub-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 28px;
    line-height: 36px;
}

@media (max-width: 767.98px) {
    .top-block {
        padding: 0;
    }

    .top-block .title {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }

    .top-block .sub-title {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }

    .block-link .alt .btn {
        max-width: 100%;
        padding-left: 24px;
        padding-right: 24px;
    }
}

.block-link .alt .btn {
    background-color: transparent;
    border: 2px solid #eff0f0;
    color: #282830;
    line-height: 120%;
    padding-left: 32px;
    padding-right: 32px;
    transition: color .4s ease-in-out, border-radius .4s ease-in-out;
    position: relative;
    border-radius: 30px;
    margin-bottom: 12px;
    width: 100%;
    max-width: 240px;
}

.block-link .btn {
    transition: all .4s ease-in-out, background-color .4s ease-in-out, color .4s ease-in-out, border-radius .4s ease-in-out;
}

.block-link .btn span {
    display: inline-block;
    line-height: normal;
    padding: 3px 0;
    vertical-align: middle;
    position: relative;
}

.block-link .btn:after {
    background: #f02;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    transition: width .4s ease-in-out, border-radius .4s ease-in-out;
    width: 0;
    z-index: -1;
    border-radius: 30px;
}

.block-link .alt .btn:hover {
    background-color: transparent;
    border-color: #f02;
    color: #fff;
    border-radius: 30px;
}

.block-link .alt .btn:hover:after {
    width: 100%;
    border-radius: 30px;
}

.block-link .btn:hover:after {
    width: 100%;
    border-radius: 30px;
}

/* Hero carousel */
.hero-carousel {
    position: relative;
    background-color: transparent;
    overflow: hidden;
}

.hero-carousel .carousel-item .container-fluid {
    padding-left: 0;
    padding-right: 0;
}

.promo-tiles {
    margin-top: 0;
}

.hero-carousel .carousel-item {
    min-height: 450px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: transparent;
    position: relative;
    display: flex;
    align-items: center;
}


.hero-carousel .carousel-item::before {
    display: none;
}

.hero-carousel .carousel-indicators {
    margin-bottom: 0;
    display: flex !important;
    justify-content: center;
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    z-index: 15;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto;
}

.hero-carousel .carousel-indicators [data-bs-target] {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.6);
    border: 2px solid rgba(255, 255, 255, 1);
    margin: 0 8px;
    opacity: 1 !important;
    transition: all .3s ease;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    flex-shrink: 0;
}

.hero-carousel .carousel-indicators [data-bs-target]:hover {
    background-color: rgba(255, 255, 255, 1);
    transform: scale(1.4);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
}

.hero-carousel .carousel-indicators .active {
    background-color: #fff !important;
    border-color: #fff !important;
    width: 6px;
    height: 6px;
    opacity: 1 !important;
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.5);
}

.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next {
    display: none !important;
}

@media (max-width: 767.98px) {
    .hero-carousel .carousel-item {
        min-height: 400px;
    }

    .hero-carousel .carousel-indicators {
        margin-bottom: 0;
        bottom: 20px;
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important;
        z-index: 15;
    }

    .hero-carousel .carousel-indicators [data-bs-target] {
        width: 10px;
        height: 10px;
        margin: 0 6px;
        opacity: 1 !important;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    }

    .hero-carousel .carousel-indicators .active {
        width: 10px;
        height: 10px;
        opacity: 1 !important;
    }

    .hero-caption {
        max-width: 100%;
        padding: 20px 0;
    }

    .hero-caption .badge {
        font-size: 0.7rem;
        padding: 6px 12px;
        margin-bottom: 12px;
    }

    .hero-caption h1 {
        font-size: clamp(1.8rem, 6vw, 2.4rem);
        margin-bottom: 12px;
    }

    .hero-caption p {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }

    .hero-caption .btn {
        font-size: 0.9rem;
        padding: 10px 20px;
    }

    .hero-caption .d-flex.gap-3,
    .hero-caption .btn {
        opacity: 1 !important;
        visibility: visible !important;
    }
}

.hero-caption {
    position: relative;
    color: #f8fafc;
    max-width: 400px;
    margin-left: auto;
    margin-right: 0;
    text-align: right;
}

.hero-caption .badge {
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(6px);
    border-radius: 999px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-caption h1 {
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    font-weight: 700;
}

.hero-caption p {
    color: rgba(226, 232, 240, 0.85);
}

.hero-caption .d-flex.gap-3,
.hero-caption .btn {
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease, visibility .3s ease;
}

.hero-carousel:hover .hero-caption .d-flex.gap-3,
.hero-carousel:hover .hero-caption .btn {
    opacity: 1;
    visibility: visible;
}

.hero-caption .btn-danger {
    background-color: rgb(255, 0, 34);
    border: 2px solid rgb(255, 0, 34);
    color: #fff;
    position: relative;
    overflow: hidden;
    transition: color .4s ease-in-out, border-color .4s ease-in-out, border-radius .4s ease-in-out;
    z-index: 1;
}

.hero-caption .btn-danger:after {
    background: #cc001b;
    border: 2px solid #cc001b;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    transition: width .4s ease-in-out, border-radius .4s ease-in-out;
    width: 0;
    z-index: -1;
    border-radius: 30px;
}

.hero-caption .btn-danger:hover {
    background-color: rgb(255, 0, 34);
    border-color: #cc001b;
    color: #fff;
    border-radius: 30px;
}

.hero-caption .btn-danger:hover:after {
    width: 100%;
    border-radius: 30px;
}

.hero-caption .btn-outline-light {
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
    position: relative;
    overflow: hidden;
    transition: color .4s ease-in-out, border-color .4s ease-in-out, border-radius .4s ease-in-out;
    z-index: 1;
}

.hero-caption .btn-outline-light:after {
    background: #cc001b;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    transition: width .4s ease-in-out, border-radius .4s ease-in-out;
    width: 0;
    z-index: -1;
    border-radius: 30px;
}

.hero-caption .btn-outline-light:hover {
    background-color: transparent;
    border-color: #cc001b;
    color: #fff;
    border-radius: 30px;
}

.hero-caption .btn-outline-light:hover:after {
    width: 100%;
    border-radius: 30px;
}

.promo-tiles .promo-tile {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    align-items: flex-start;
    justify-content: flex-end;
    min-height: 260px;
    padding: 24px;
    border-radius: 0;
    color: #fff;
    text-decoration: none;
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease;
}

.promo-tiles .promo-tile::before {
    display: none;
}

.promo-tiles .promo-tile__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1);
    transition: transform .45s ease;
    z-index: 0;
}

.promo-tiles .promo-tile__label {
    position: relative;
    font-weight: 600;
    font-size: 1.6rem;
    letter-spacing: 0.02em;
    z-index: 2;
    display: block;
    margin-bottom: 8px;
}

.promo-tiles .promo-subtitle {
    position: relative;
    font-weight: 400;
    font-size: 1rem;
    letter-spacing: 0.01em;
    z-index: 2;
    display: block;
    opacity: 0.9;
}

.promo-tiles .promo-tile:hover {
    transform: translateY(0);
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.35);
}

.promo-tiles .promo-tile:hover::before {
    display: none;
}

.promo-tiles .promo-tile:hover .promo-tile__bg {
    transform: scale(1.15);
}

@media (max-width: 767.98px) {

    .promo-tiles .promo-tile {
        min-height: 200px;
        padding: 16px;
    }

    .promo-tiles .promo-tile__label {
        font-size: 0.95rem;
        margin-bottom: 6px;
    }

    .promo-tiles .promo-subtitle {
        font-size: 0.85rem;
    }

    .promo-tiles .promo-tile:hover {
        transform: translateY(0);
    }
}

.block-catalog {
    padding: 60px 0 80px;
}

.block-catalog h2 {
    text-align: center;
    color: #282830;
    font-size: 40px;
}

.block-catalog__tabs {
    margin: 24px 0 32px;
    gap: 12px;
}

.block-catalog__tabs .nav-item {
    position: relative;
}

.block-catalog__tabs .nav-link {
    border-radius: 0;
    padding: 10px 0;
    font-weight: 600;
    color: #282830;
    background: transparent;
    border: none;
    transition: color .4s ease-in-out;
    position: relative;
}

.block-catalog__tabs .nav-link::after {
    background: #f02;
    bottom: 0;
    content: "";
    height: 2px;
    left: 50%;
    position: absolute;
    right: 0;
    transform: translateX(-50%);
    transition: width .4s ease-in-out;
    width: 0;
    z-index: 1;
}

.block-catalog__tabs .nav-link:hover::after,
.block-catalog__tabs .nav-link.active::after {
    width: calc(100% - 27px);
}

.block-catalog__tabs .nav-link.active,
.block-catalog__tabs .nav-link:hover,
.block-catalog__tabs .nav-link:focus {
    color: #282830;
    background: transparent;
}

.block-catalog__tabs .nav-link.active {
    color: #f02;
}

.block-catalog__content .tab-pane {
    position: relative;
}

.product-carousel {
    padding-bottom: 36px;
}

.product-carousel .carousel-inner {
    overflow: visible;
}

.product-card {
    border: 0;
    border-radius: 18px;
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease;
    display: block;
    color: inherit;
    text-decoration: none;
}

.product-card:hover {
    color: inherit;
    text-decoration: none;
}

.product-card__img {
    height: 220px;
    object-fit: cover;
    transition: transform .45s ease;
    transform: scale(1);
}

.product-card:hover .product-card__img {
    transform: scale(1.1);
}

.product-card .card-body {
    padding: 22px;
}

.product-card .card-title {
    font-size: 1.25rem;
    font-weight: 700;
}

.product-card .card-text {
    color: #64748b;
    font-size: 0.95rem;
}

.product-card .card-footer {
    background: transparent;
    border-top: 0;
    padding: 18px 22px 24px;
}

.price-tag {
    font-weight: 700;
    color: #0f172a;
}

.product-carousel__indicators {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0;
    justify-content: center;
    gap: 10px;
}

.product-carousel__indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(100, 116, 139, 0.6);
    border: 0;
    margin: 0;
}

.product-carousel__indicators .active {
    background-color: #d71921;
}

@media (max-width: 767.98px) {
    .block-catalog {
        padding: 40px 0 50px;
    }

    .block-catalog h2 {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

    .block-catalog__tabs {
        margin: 16px 0 24px;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .block-catalog__tabs .nav-link {
        padding: 8px 0;
        font-size: 0.875rem;
    }

    .block-catalog__tabs .nav-link::after {
        width: 0;
    }

    .block-catalog__tabs .nav-link:hover::after,
    .block-catalog__tabs .nav-link.active::after {
        width: calc(100% - 20px);
    }

    .product-card__img {
        height: 180px;
    }

    .product-card .card-body {
        padding: 18px;
    }

    .product-card .card-title {
        font-size: 1.1rem;
    }

    .product-card .card-text {
        font-size: 0.875rem;
    }

    .product-card .card-footer {
        padding: 14px 18px 18px;
    }

    .product-carousel {
        padding-bottom: 40px;
    }
}

.block-info {

}

.info-grid {
    min-height: 540px;
}

.info-stack {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.info-stack .info-card {
    flex: 1;
}

.info-card {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 36px;
    color: #fff;
    text-decoration: none;
    overflow: hidden;
    background: #0f172a;
    width: 100%;
}

.info-card__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1);
    transition: transform .5s ease;
    z-index: 0;
}

.info-card__content {
    position: relative;
    z-index: 2;
    max-width: 420px;
    transform: translateY(0);
    transition: transform .3s ease;
}

.info-card__content .badge {
    background-color: rgba(255, 255, 255, 0.18);
    letter-spacing: 0.16em;
    font-size: 0.72rem;
    margin-bottom: 16px;
}

.info-card__content h3 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 700;
    margin-bottom: 14px;
}

.info-card__content p {
    font-size: 1rem;
    color: rgba(248, 250, 252, 0.85);
    margin-bottom: 18px;
}

.info-card__cta {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.5rem 1.5rem;
    border-radius: 50rem;
    background-color: rgb(255, 0, 34);
    border: 2px solid rgb(255, 0, 34);
    color: #fff;
    font-size: 1.125rem;
    line-height: 1.5;
    opacity: 0;
    transform: translateY(12px);
    pointer-events: none;
    transition: opacity .4s ease, transform .4s ease, background-color .4s ease-in-out, border-color .4s ease-in-out;
    visibility: hidden;
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-decoration: none;
}

.info-card__cta::after {
    background: #cc001b;
    border: 2px solid #cc001b;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    transition: width .4s ease-in-out, border-radius .4s ease-in-out;
    width: 0;
    z-index: -1;
    border-radius: 50rem;
}

.info-card__cta:hover {
    background-color: rgb(255, 0, 34);
    border-color: #cc001b;
    color: #fff;
    border-radius: 50rem;
    text-decoration: none;
}

.info-card__cta:hover::after {
    width: 100%;
    border-radius: 50rem;
}

.info-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, transparent 40%, rgba(15, 23, 42, 0.3) 70%, rgba(15, 23, 42, 0.8) 100%);
    z-index: 1;
    transition: opacity .3s ease;
}

.info-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.18), transparent 55%);
    mix-blend-mode: screen;
    opacity: 0.4;
    z-index: 1;
    transition: opacity .3s ease;
}

.info-card:hover .info-card__bg {
    transform: scale(1.08);
}

.info-card:hover::before {
    opacity: 0.95;
}

.info-card:hover::after {
    opacity: 0.6;
}

.info-card:hover .info-card__content {
    transform: translateY(-28px);
}

.info-card:hover .info-card__cta {
    opacity: 1;
    display: inline-flex;
    transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
}

.info-card--large {
    min-height: 680px;
    flex: 1;
}

.info-card--small {
    min-height: 270px;
}


@media (max-width: 991.98px) {
    .block-info {
        padding: 60px 0;
    }

    .info-grid {
        min-height: 0;
    }

    .info-card--large {
        min-height: 360px;
    }

    .info-card--small {
        min-height: 220px;
    }

    .info-stack {
        gap: 8px;
    }
}

@media (max-width: 767.98px) {
    .block-info {
        padding: 40px 0;
    }

    .info-card--large {
        min-height: 300px;
        margin-bottom: 16px;
    }

    .info-card--small {
        min-height: 200px;
    }

    .info-card {
        padding: 24px;
    }

    .info-card__content {
        max-width: 100%;
    }

    .info-card__content h3 {
        font-size: 1.5rem;
    }

    .info-card__content p {
        font-size: 0.9rem;
    }
}

@media (max-width: 575.98px) {
    .info-card {
        padding: 20px;
    }

    .info-card__content h3 {
        font-size: 1.3rem;
    }
}

.block-new {
    padding: 80px 0;
    background-color: #f6f6f6;
}

.block-new h2 {
    text-align: center;
}

.block-new p.block-new--subtitle {
    text-align: center;
    margin-bottom: 40px;
}

.new-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease;
}

.new-card:hover {

}

.new-card__media {
    position: relative;
    overflow: hidden;
}

.new-card__media img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transform: scale(1);
    transition: transform .45s ease;
}

.new-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 18px 10px 22px;
}

.new-card__title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #0f172a;
}

.new-card__subtitle {
    flex: 1;
    color: #475569;
    margin-bottom: 20px;
}

.new-card .btn {
    align-self: flex-start;
}

.new-card:hover .new-card__media img {
    transform: scale(1.08);
}

@media (max-width: 767.98px) {
    .block-new {
        padding: 40px 0;
    }

    .new-card__media img {
        height: 200px;
    }

    .new-card__body {
        padding: 20px;
    }

    .new-card__title {
        font-size: 1.2rem;
    }

    .new-card__subtitle {
        font-size: 0.9rem;
    }
}

.block-about {
    padding: 80px 0;
    background: #fff;
}

.block-about h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #0f172a;
}

.block-about p {
    font-size: 1rem;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 20px;
}

@media (max-width: 767.98px) {
    .block-about {
        padding: 40px 0;
    }

    .block-about h2 {
        font-size: 1.8rem;
        margin-bottom: 24px;
    }

    .block-about p {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 16px;
    }
}

.block-pre-footer {
    padding: 20px 0;
    border-top: 1px solid #f2f2f2;
    background: #e8e8e8;
    border-bottom: 1px solid #f2f2f2;
    color: #282830;
    font-size: 15px;
}

.block-pre-footer a {
    color: #282830;
}

.block-pre-footer a:hover {
    color: #282830;
}

.pre-footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
}

.pre-footer-nav__link {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color .25s ease;
    position: relative;
}

.pre-footer-nav__link:hover {
    color: #fff;
}

.pre-footer-nav__link::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #d71921;
    transition: width .25s ease;
}

.pre-footer-nav__link:hover::after {
    /*width: 100%;*/
}

.pre-footer-back {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color .25s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.pre-footer-back:hover {
    color: #fff;
}

.pre-footer-back::before {
    content: "↑";
    font-size: 1.1rem;
    transition: transform .25s ease;
}

.pre-footer-back:hover::before {
    transform: translateY(-2px);
}

.btn.show {
    color: #282830;
    background-color: #eff0f0;
    border-color: #eff0f0;
}


.btn.show:hover {
    color: #282830;
    background-color: #eff0f0;
    border-color: #eff0f0;
}

@media (max-width: 767.98px) {
    .block-pre-footer {
        padding: 24px 0;
    }

    .pre-footer-nav {
        gap: 20px;
        margin-bottom: 20px;
    }

    .pre-footer-back {
        width: 100%;
        justify-content: center;
    }
}

.fixed-actions {
    position: fixed;
    right: 20px;
    top: 36%;
    transform: translateY(-50%);
    z-index: 1400;
    display: flex;
    flex-direction: column;
    gap: 0;
    background-color: #eff0f0;
    border-radius: 50px;
    padding: 8px;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.1);
}

.fixed-actions .module {
    margin: 0;
}

.fixed-actions .btn,
.fixed-actions .fw-popup {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    padding: 0;
    background-color: transparent;
    color: #282830;
    border: 0;
    border-radius: 24px;
    text-decoration: none;
    transition: background-color .3s ease;
    position: relative;
    overflow: visible;
}

.fixed-actions .btn:hover,
.fixed-actions .fw-popup:hover {
    background-color: rgba(215, 25, 33, 0.1);
    color: #d71921;
}

.fixed-actions .btn .label,
.fixed-actions .fw-popup .label {
    position: absolute;
    right: 100%;
    margin-right: 12px;
    font-size: 0.875rem;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(-10px);
    transition: opacity .3s ease, transform .3s ease;
    pointer-events: none;
    background-color: #eff0f0;
    padding: 8px 12px;
    border-radius: 20px;
}

.fixed-actions .btn:hover .label,
.fixed-actions .fw-popup:hover .label {
    opacity: 1;
    transform: translateX(0);
}

.fixed-actions .btn .icon,
.fixed-actions .fw-popup .icon {
    display: block;
    width: 24px;
    height: 24px;
    position: relative;
    flex-shrink: 0;
}

.fixed-actions .btn .icon::before,
.fixed-actions .fw-popup .icon::before {
    content: "";
    position: absolute;
    inset: 0;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.fixed-actions .reserve .btn .icon::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23282830'%3E%3Cpath d='M18 8h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zm-6 9c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm3.1-9H8.9V6c0-1.71 1.39-3.1 3.1-3.1 1.71 0 3.1 1.39 3.1 3.1v2z'/%3E%3C/svg%3E");
}

.fixed-actions .reserve .btn:hover .icon::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23d71921'%3E%3Cpath d='M18 8h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zm-6 9c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm3.1-9H8.9V6c0-1.71 1.39-3.1 3.1-3.1 1.71 0 3.1 1.39 3.1 3.1v2z'/%3E%3C/svg%3E");
}

.fixed-actions .saved-vehicles .fw-popup .icon::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23282830'%3E%3Cpath d='M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z'/%3E%3C/svg%3E");
}

.fixed-actions .saved-vehicles .fw-popup:hover .icon::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23d71921'%3E%3Cpath d='M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z'/%3E%3C/svg%3E");
}

.fixed-actions .test-drive .btn .icon::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23282830' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 17h14l-1-7H6l-1 7zM5 17l-1 2h16l-1-2'/%3E%3Ccircle cx='7' cy='20' r='1.5'/%3E%3Ccircle cx='17' cy='20' r='1.5'/%3E%3Cpath d='M7 10V7a2 2 0 0 1 2-2h6a2 2 0 0 1 2 2v3'/%3E%3C/svg%3E");
}

.fixed-actions .test-drive .btn:hover .icon::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d71921' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 17h14l-1-7H6l-1 7zM5 17l-1 2h16l-1-2'/%3E%3Ccircle cx='7' cy='20' r='1.5'/%3E%3Ccircle cx='17' cy='20' r='1.5'/%3E%3Cpath d='M7 10V7a2 2 0 0 1 2-2h6a2 2 0 0 1 2 2v3'/%3E%3C/svg%3E");
}

.fixed-actions .book-service .btn .icon::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23282830'%3E%3Cpath d='M22.7 19l-9.1-9.1c.9-2.3.4-5-1.5-6.9-2-2-5-2.4-7.4-1.3L9 6 6 9 1.6 4.7C.4 7.1.9 10.1 2.9 12.1c1.9 1.9 4.6 2.4 6.9 1.5l9.1 9.1c.4.4 1 .4 1.4 0l2.3-2.3c.5-.4.5-1.1.1-1.4z'/%3E%3C/svg%3E");
}

.fixed-actions .book-service .btn:hover .icon::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23d71921'%3E%3Cpath d='M22.7 19l-9.1-9.1c.9-2.3.4-5-1.5-6.9-2-2-5-2.4-7.4-1.3L9 6 6 9 1.6 4.7C.4 7.1.9 10.1 2.9 12.1c1.9 1.9 4.6 2.4 6.9 1.5l9.1 9.1c.4.4 1 .4 1.4 0l2.3-2.3c.5-.4.5-1.1.1-1.4z'/%3E%3C/svg%3E");
}

@media (max-width: 991.98px) {
    .fixed-actions {
        right: 12px;
    }

    .fixed-actions .btn,
    .fixed-actions .fw-popup {
        min-width: 48px;
        height: 48px;
    }
}

@media (max-width: 767.98px) {
    .fixed-actions {
        display: none;
    }
}

.footer {
    background: #e8e8e8;
    border-bottom: 1px solid #f2f2f2;
    color: #282830;
    border-top: 1px solid #f2f2f2;
    padding: 60px 0 24px;
}

.footer h3 {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.footer-text {
    margin-top: 0;
}

.footer-bottom {
    background-color: #f02;
    color: #fff;
}

.footer a {
    color: #282830;
    text-decoration: none;
    transition: color .3s ease;
}

.footer a:hover {

}

.footer .text-secondary {
    color: rgba(255, 255, 255, 0.7) !important;
}

.a-lang {
    color: rgb(40, 40, 48);
}

.block-title {
    margin-left: 25px;
}

.block-link {
    margin-left: 25px;
}

.navbar .d-flex.align-items-center.gap-3 > * {
    padding-left: 0;
    padding-right: 0.75rem;
}
.navbar .d-flex.align-items-center.gap-3 > *:not(:last-child) {
    border-right: 1px solid rgb(237, 237, 237);
}
.navbar .d-flex.align-items-center.gap-3 > *:first-child {
    padding-left: 0;
}
.navbar .d-flex.align-items-center.gap-3 > *:last-child {
    padding-right: 0;
}

.caption-btn {
    justify-content: space-around;
}

@media (max-width: 767.98px) {
    .footer {
        padding: 40px 0 20px;
    }

    .footer h3 {
        font-size: 0.8rem;
        margin-bottom: 12px;
    }

    .footer .list-unstyled li {
        margin-bottom: 12px;
    }

    .footer .list-unstyled a {
        font-size: 0.9rem;
    }

    .footer .border-top {
        margin-top: 24px !important;
        padding-top: 20px !important;
        text-align: center;
    }

    .footer .d-flex.gap-3 {
        justify-content: center;
        flex-wrap: wrap;
    }
}

.block-catalog__tabs .nav-item.active::before {
    width: calc(100% - 27px);
}


@media (max-width: 768px) {
    .block-title {
        text-align: center;
        margin-left: 0;
    }

    .block-link {
        text-align: center;
        margin-left: 0;
    }
}