:root {
    --color-primary: #1A1A1A;
    --color-white: #FFFFFF;
    --color-yellow: #FCC505;
    --color-red: #CC2626;
    --color-gray:#DFDFDF;
    --color-second-gray:#878787;
    --color-medium-gray:#A0A0A0;
    --color-dark-gray:#666666;

    --font-title: 'Roboto';
    --font-main: 'Roboto';
}

/*@font-face {*/
/*    font-family: 'FuturaPT';*/
/*    font-style: normal;*/
/*    font-weight: normal;*/
/*    src: url('/fonts/FuturaCyrillicMedium.woff') format('woff');*/
/*}*/

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: normal;
    src: url('/fonts/Roboto-Regular.ttf') format('truetype');
}

@keyframes open-modal-filters {
    0% {
        height: 0;
    }
    100% {
        height: calc(100% - 200px);
    }
}

@keyframes close-modal-filters {
    0% {
        height: calc(100% - 200px);
    }
    100% {
        height: 0;
    }
}

.show-inline {
    display: none;
}

.show-inline.active {
    display: inline-block;
}

.skiptranslate {
    display: none;
}

.translate-btn {
    padding: 2px 5px;
    color: var(--color-white);
    width: 48px;
    min-height: 24px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.translate-btn img {
    width: 100%;
}

.header-top-langs {
    display: flex;
    gap: 10px;
    position: relative;
    width: 74px;
    justify-content: flex-end;
}

.header-select-box {
    display: flex;
    gap: 0
}

.header-select-item {
    text-align: center;
    font-size: 12px;
    width: 60px
}

.header-btn-activate {
    height: 100%;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    cursor: pointer;
}

.header-top-lang-list {
    display: none;
    gap: 4px;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    background-color: var(--color-primary);
    border-bottom: 1px solid var(--color-second-gray);
    border-left: 1px solid var(--color-second-gray);
    border-right: 1px solid var(--color-second-gray);
    padding-bottom: 4px;
}

.header-top-lang-list.active {
    z-index: 99;
    display: flex;
}

.header-top-lang-list .translate-btn {
    display: none;
}

.header-top-lang-list.active .translate-btn {
    display: flex;
}

.header-top-lang-list .translate-btn.active {
    display: flex;
}

.header-top-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.header-top-links a.header-menu-item {
    color: var(--color-white);
}

.header-top-links a.header-menu-item:hover,
.header-top-links a.header-menu-item:active,
.header-top-links a.header-menu-item.active {
    color: var(--color-yellow);
}

body {
    width: 100%;
    display: flex;
    /*overflow: hidden;*/
    min-height: 100vh;
    background: var(--color-primary);
    color: var(--color-white);
    font-family: var(--font-main);
    font-weight: 400;
    top: 0!important;
}

main {
    width: 100%;
    display: block;
    min-height: 100vh;
    flex-wrap: wrap;
}

footer {
    flex: 0 1 100%;
}

header {
    z-index: 1;
}

a {
    text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
    padding: 0;
    margin: 0;
    font-family: var(--font-title);
}

h1.section-title {
    font-weight: 500;
}

.btn {
    border-radius: 20px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    line-height: 19px;
    padding: 5px 25px;
}

.btn-primary {
    background: var(--color-yellow);
    color: var(--color-primary);
    border: 1px solid var(--color-yellow);
    padding: 5px 30px;
    z-index: 1;
    height: 55px;
    border-radius: 30px;
    /*text-transform: uppercase;*/
    font-weight: 600
}

.btn.btn-primary:hover,
.btn.btn-primary:active,
.btn.btn-primary:focus {
    background: var(--color-white);
    color: var(--color-primary);
    border: 1px solid var(--color-yellow);
    box-shadow: 0 0 20px var(--color-white);
}

.btn.btn-primary:disabled {
    background: var(--color-gray);
    color: var(--color-primary);
    border: 1px solid var(--color-gray);
}

.btn-outline-primary {
    background: transparent;
    border: 1px solid var(--color-yellow);
    color: var(--color-yellow)
}

.btn-outline-primary:hover,
.btn-outline-primary:active {
    background: var(--color-yellow);
    border: 1px solid var(--color-yellow);
    color: var(--color-primary);
    box-shadow: 0 0 5px var(--color-yellow);
}

input.form-control {
    height: 56px;
    min-width: 320px;
    border-radius: 12px;
    padding-left: 20px;
}

select.form-control {
    height: 56px;
    min-width: 320px;
    border-radius: 12px;
    padding-left: 20px;
}

input[type="file"].form-control {
    border: none;
}

input.form-control::file-selector-button {
    font-weight: 600;
    color: var(--color-primary);
    padding: 0 30px;
    border: 1px solid var(--color-gray);
    border-radius: 30px;
    height: 56px;
    background: transparent;
}

input.form-control:hover::file-selector-button {
    background: var(--color-yellow);
    border: 1px solid var(--color-yellow);
}

input.form-control:focus {
    border-color: var(--color-yellow);
    box-shadow: 0 0 0 0.25rem #ffc1073d;
}

textarea.form-control:focus {
    border-color: var(--color-yellow);
    box-shadow: 0 0 0 0.25rem #ffc1073d;
}

.breadcrumb-item a {
    color: var(--color-medium-gray);
    font-size: 14px;
    line-height: 17px;
    /*text-shadow: 0 1px var(--color-primary);*/
}

.breadcrumb-item.active {
    color: var(--color-medium-gray);
    font-size: 14px;
    line-height: 17px;
    display: flex;
    align-items: center;
}

.header-bottom {
    position: fixed;
    bottom: 0;
    height: 60px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
    align-items: center;
    background: var(--color-primary);
}

.header-bottom-item {
    min-width: 64px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
}

.header-bottom-item-img {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-bottom-item-img svg {
    width: 32px;
    height: 32px;
}

.header-bottom-item-img svg path {
    fill: var(--color-white)
}
.header-bottom-item:hover .header-bottom-item-img svg path,
.header-bottom-item:active .header-bottom-item-img svg path {
    fill: var(--color-yellow)
}


.header-bottom-item-title {
    font-size: 12px;
    line-height: 15px;
    color: var(--color-white);
}

.header-bottom-item:hover .header-bottom-item-title,
.header-bottom-item:active .header-bottom-item-title {
    color: var(--color-yellow);
}

.section-container {
    background: var(--color-primary);
    color: var(--color-white);
    flex: 0 0  100%;
    display: flex;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
    z-index:0;
    padding: 100px 0;
}

.section-container {
    background: var(--color-primary);
    color: var(--color-white);
}

.section-container.white {
    background: var(--color-white);
    color: var(--color-primary);
}

.bg-fixed {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    opacity: 1;
    position: relative;
}

.bg-fixed .container-md {
    position: relative;
}

.bg-fixed .bg-overlay {
    position: absolute;
    z-index: 0;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: var(--color-primary);
    opacity: 0.8
}

.header-top {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--color-primary);
    z-index: 2;
}

.header-top .container-md {
    margin: 0 auto;
    display: flex;
    padding: 5px 0;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.header-top .header-logo {
    width: 200px;
    height: 50px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0;
}

.header-top .header-logo img {
    width: 100%
}

.logo-text {
    font-size: 13px;
    line-height: 15px;
    color: var(--color-white);
}

.header-contact-box {
    display: flex;
    gap: 0px 10px;
    flex-wrap: wrap;
    width: 340px;
}

.header-contact-phone {
    flex: 0 0 calc(50% - 5px)
}

.header-contact-address {
    flex: 0 0 100%
}

.header-top-menu-box a.header-contact-link {
    color: rgb(255, 255, 255);
    font-size: 13px;
    line-height: 17px
}

.header-whatsapp-btn {
    height: 55px;
    width: 200px;
    border-radius: 30px;
    text-transform: uppercase;
    font-weight: 600
}

.header-top-menu-box {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-top-menu-box a {
    font-size: 18px;
    line-height: 24px;
    color: var(--color-white);
    font-weight: 400;
}

.header-top-menu-box a:hover {
    color: var(--color-yellow)
}

.header-top-menu-box a.active {
    color: var(--color-yellow);
    border-bottom: 2px solid var(--color-yellow);
}



.section-body {
    display: flex;
    justify-content: center;
    gap: 20px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.section-bottom {
    display: flex;
    justify-content: center;
    gap: 20px;
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 30px 0;
}

.section-top {
    margin-bottom: 30px;
}

.sidebar-right {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translate(0, -50%);
    z-index: 10;
}

.sidebar-right-box {
    display: flex;
    flex-direction: column;
    gap: 20px;
    /*background: #DFDFDF;*/
}

.sidebar-right-link {
    display: flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
}

.sidebar-right-link svg path{
    fill: var(--color-gray)
}

.cards .section-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.card-item-box {
    display: flex;
    flex-direction: column;
    padding: 20px;
    border-radius: 12px;
    /*box-shadow: 0 0 10px var(--color-gray);*/
    width: 290px;
    position: relative;
    z-index: 1;
}

.card-item-box:hover {
    box-shadow: 0 0 10px var(--color-yellow);
}

.card-item-top {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.card-item-middle {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
}

.car-item-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: var(--color-yellow);
    position: absolute;
    top: 0;
    right: 0;
    z-index: 0;
}

.card-item-box:hover .car-item-circle {
    box-shadow: 0 0 20px var(--color-yellow);
}

.card-item-title {
    font-size: 16px;
    line-height: 20px;
    color: var(--color-white);
}

.card-item-box:hover .card-item-title {
    color: var(--color-yellow);
}

.card-item-data-box {
    display: flex;
    gap: 10px;
    justify-content: space-between;
    align-items: center;
}

.card-item-data-box .card-data-item {
    color: var(--color-gray);
    font-size: 14px;
    line-height: 17px;
    position: relative;
    white-space: nowrap;
    overflow: hidden;
}

.card-item-data-box .card-data-item:last-of-type:after {
    display: none;
}

.card-item-image {
    display: flex;
    height: 150px;
    width: 100%;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.card-item-image img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 100%;
}

.card-item-price-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.card-item-price-period {
    text-transform: lowercase;
    color: var(--color-gray);
}

.card-item-price {
    font-size: 20px;
    font-weight: 600;
    line-height: 24px;
    color: var(--color-yellow);
}

.card-item-features {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.card-item-feature-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
    justify-items: center;
    width: 75px;
    text-align: center;
}

.card-item-feature-img {
    width: 100%;
    display: flex;
    justify-content: center;
}

.card-item-feature-img svg path {
    fill: var(--color-gray);
}

.card-item-feature-text {
    color: var(--color-gray);
    font-size: 14px;
    line-height: 17px;
}

.card-item-actions {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.card-item-actions .btn {
    width: 100%;
}

.cards .section-title {
    font-size: 28px;
    line-height: 35px;
}

.section-title-left {
    color: var(--color-gray);
    font-size: 16px;
    line-height: 21px;
    cursor: pointer;
    border-bottom: 1px dashed var(--color-gray);
}

.form .section-title {
    text-align: center;
}

.form .section-body {
    text-align: center;
    max-width: 420px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.post-item-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 500px;
    gap: 20px;
    overflow: hidden;
    border: 1px solid var(--color-yellow);
    border-radius: 12px;
    position: relative;
    max-height: 200px;
}

.post-item-box:hover {
    box-shadow: 0 0 10px var(--color-yellow);
}

.post-item-image {
    height: 200px;
    overflow: hidden;
    flex: 0 0 200px;
    display: flex;
    align-items: center;
    justify-content: center;

}
.post-item-image img {
    width: auto;
    height: auto;
    max-height: 100%;
}

.post-item-content {
    padding: 20px 20px 20px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 0 1 calc(100% - 220px);
    position: relative;
}

.post-item-title {
    font-size: 16px;
    line-height: 19px;
    color: var(--color-primary);
    font-weight: 500;
    height: 38px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.post-item-category {
    font-size: 14px;
    line-height: 17px;
    color: var(--color-yellow);
    margin-bottom: 4px;
}

.post-item-text {
    font-size: 14px;
    line-height: 17px;
    color: var(--color-dark-gray);
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    height: 51px;
    margin-bottom: 10px;
}

.post-item-text p {
    margin: 0;
}

.post-item-read-more {
    color: var(--color-medium-gray);
    font-size: 14px;
    line-height: 17px;
}

.post-item-time {
    position: absolute;
    bottom: 20px;
    right: 15px;
    font-size: 14px;
    line-height: 17px;
    display: flex;
    gap: 5px;
    color: var(--color-medium-gray);
    align-items: center;
}

.index-top .container-md {
    display: flex;
    gap: 40px;
    padding: 0;
    flex-wrap: wrap;
}

.index-box-main {
    flex: 0 1 calc(100% - 420px);
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-height: 360px;
    padding-right: 120px;
}

.index-box-form {
    flex: 0 0 360px;
    display: flex;
    padding: 0px;
}

.index-box-form-container {
    background: var(--color-white);
    border-radius: 12px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    color: var(--color-primary)
}

.index-top-form-title {
    font-size: 20px;
    line-height: 24px;
}

.index-top-form-text {
    font-size: 16px;
    line-height: 20px;
}

.form-group-btn {
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
}

.index-top .section-title {
    font-size: 48px;
    line-height: 56px;
    color: var(--color-white);
}

.index-top .index-box-text {
    font-size: 32px;
    line-height: 38px;
    padding: 0 12px;
    color: var(--color-gray);
}

.count-index-box {
    display: flex;
    gap: 64px;
    margin-top: 100px;
    z-index: 2;
}

.count-index-box .count-item {
    display: flex;
    flex-direction: row;
    gap: 20px;
    width: fit-content;
}

.count-index-box .count-item .count-item-icon {
    display: flex;
    flex: 0 0 64px;
    height: 64px;
    align-items: center;
    justify-content: center;
}

.count-index-box .count-item .count-item-content {
    display: flex;
    flex-direction: column;
    flex: 0 1 calc(100% - 84px);
}

.count-index-box .count-item .count-item-icon svg {
    width: 64px;
    height: 64px;
}

.count-index-box .count-item .count-item-value {
    font-size: 32px;
    line-height: 38px;
    font-weight: 600;
    font-family: var(--font-title);
    color: var(--color-white);
    white-space: nowrap;
}

.count-index-box .count-item .count-item-text {
    font-size: 24px;
    line-height: 28px;
    font-weight: 400;
    font-family: var(--font-main);
    color: var(--color-gray);
    white-space: nowrap;
}

.feature-item {
    width: calc(25% - 15px);
    padding: 30px;
    position: relative;
}

.feature-item-title {
    font-size: 20px;
    line-height: 25px;
    margin-bottom: 30px;
    font-weight: 600;
}



.feature-item-img {
    position: relative;
    width: 100px;
    margin: 0px auto 30px;
}

.feature-item-img img {
    width: 100%;
}

.faq .section-title {
    text-align: center;
}

.faq .section-body {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
}

.faq-item {
    padding: 20px 30px;
    border-radius: 40px;
    position: relative;
    display: flex;
    gap: 30px;
    width: 600px;
    margin: 0 auto 30px;
    font-size: 14px;
    line-height: 17px;
}

.faq-item.question {
    background: var(--color-primary);
    color: var(--color-white);
}

.faq-item.answer {
    background: var(--color-gray);
    color: var(--color-primary)
}

.faq-item-title {
    flex: 0 0 80px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.faq-item-body {
    flex: 0 1 calc(100% - 110px);
}

.after-box {
    position: absolute;
    bottom: -24px;
}

.question .after-box {
    left: 30px;
}

.answer .after-box {
    right: 30px;
    transform: scaleX(-1);
}

.question .after-box svg path {
    fill: var(--color-primary);
}

.answer .after-box svg path {
    fill: var(--color-gray);
}

.description-service .section-body {
    display: block;
    font-size: 16px;
    line-height: 19px;
}

.description-service h3 {

}

.filters {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 25%;
    min-height: 100px;
    flex: 0 0 250px;
    border-radius: 12px;
    padding: 20px;
}



.filter-item {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.filter-item .filter-title {
    color: var(--color-yellow);
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    cursor: pointer;
}

.filter-item .filter-title h4 {
    font-size: 18px;
    line-height: 25px;
    font-family: var(--font-main);
    margin: 0;
}

.filter-item .filter-value-items {
    flex-direction: column;
    gap: 10px;
    display: none
}

.filter-item .filter-value-items.show {
    display: flex
}

.filter-item .filter-value-item {
    display: flex;
    gap: 10px;
}

.filter-value-item input[type="checkbox"] {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    appearance: none;
    border: 0.15em solid var(--color-yellow);
    /*border-radius: 0.15em;*/
    transform: translateY(-0.075em);
    cursor: pointer;
}

input[type="checkbox"]::before {
    content: "";
    width: 12px;
    height: 12px;
    border-radius: 3px;
    position: absolute;
    display: none;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: inset 1em 1em var(--color-yellow);
}

input[type="checkbox"]:checked::before {
    display: block;
}

.filters .btn.btn-primary {
    margin-top: 20px;
}

.car-single-image-box {
    flex: 0 0 50%;
    position: relative;
    display: flex;
}

.car-single-data-box {
    flex: 0 0 calc(50% -  20px);
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.car-single-feature-box {
    display: flex;
    gap: 30px;
    flex: 0 1 100%;
}

.car-single-image-circle {
    width: 370px;
    height: 370px;
    border-radius: 50%;
    background: var(--color-yellow);
    position: absolute;
    top: 50%;
    right: 100px;
    transform: translate(0, -50%);
    z-index: 0;
}

.car-single-data-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.car-single-data-feature {
    display: flex;
    gap: 20px;
    font-size: 20px;
    line-height: 25px;
}

.car-single-data-feature-title {
    font-weight: 600;
}

.car-single-data-feature-value {
    color: var(--color-gray)
}

.car-single-data-feature-value.feature-value-price {
    color: var(--color-yellow);
    font-weight: 600;
}

.car-single-price-after {
    font-size: 14px;
    color: var(--color-gray);
    border-bottom: 1px dashed;
    margin-left: 10px;
}

.car-single-feature-box {
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 120px;
    max-width: 800px;
}

.car-single-feature-title {
    width: 100%;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.car-single-slider-title {
    width: 100%;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.title-with-after {
    position: relative;
}

.title-with-after::after {
    content: '';
    display: flex;
    width: 100px;
    height: 2px;
    background: var(--color-yellow);
    position: absolute;
    left: 50%;
    bottom: -20px;
    transform: translate(-50%, 0);
}

.title-with-after-left {
    position: relative;
}

.title-with-after-left::after {
    content: '';
    display: flex;
    width: 100px;
    height: 2px;
    background: var(--color-yellow);
    position: absolute;
    left: 0;
    bottom: -15px;
    transform: translate(0, 0);
}

.catalog-items {
    display: flex;
    flex-wrap: wrap;
    gap:20px;
    flex: 0 1 calc(100% - 270px);
    align-items: flex-start
}

.cars-empty-box {
    padding: 60px 20px;
    text-align: center;
    color: var(--color-yellow);
    width: 100%
}

.car-single-feature-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    flex: 0 0 calc(25% - 30px);
    max-width: 220px;
    text-align: center;
    box-shadow: 0 0 5px var(--color-white);
    padding: 10px 10px;
    border-radius: 12px;
}

.car-single-feature-item:hover {
    box-shadow: 0 0 5px var(--color-yellow);
}

.car-single-feature-value {
    font-weight: 500;
    font-size: 20px;
    line-height: 20px;
    height: 40px;
}

.car-single-feature-text {
    font-size: 12px;
    line-height: 15px;
    color: var(--color-medium-gray);
    height: 45px;
}

.car-single-feature-img svg {
    width: 36px;
    height: 36px;
}

.car-single-feature-img svg path {
    fill: var(--color-white)!important;
}

.car-single-feature-item:hover .car-single-feature-img svg path {
    fill: var(--color-yellow)!important;
}

.car-single-image {
    z-index: 1;
    max-width: 100%;
}

.car-single-image-box:hover .car-single-image-circle {
    box-shadow: 0 0 20px var(--color-yellow);
}

.car-single-prices .section-title {
    text-align: center;
    margin-bottom: 40px;
}

.car-single-prices .section-body {
    justify-content: center;
    gap: 40px;
}

.car-single-price-box {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 30px 20px;
    border-radius: 12px;
    background: var(--color-gray);
    width: 100%;
    max-width: 500px;
    box-shadow: 0 0 10px var(--color-second-gray);
}

.car-single-price-item {
    display: flex;
    gap: 20px;
    font-size: 18px;
    line-height: 24px;
    justify-content: space-between;
}

.car-single-slider-box {
    flex: 0 0 40%;
    max-width: 40%;
    height: 460px;
}

.car-single-slider-img {
    width: 100%;
    max-width: 518px;
    max-height: 340px;
    overflow: hidden;
    border-radius: 12px;
}

.car-single-slider-img img {
    width: 100%;
}

.car-single-slider-thumbs {
    width: 100%;
    display: flex;
    gap: 10px;
    padding: 20px 0;
    overflow-x: auto;
}

.car-single-slider-thumbs {

}

/* width */
.car-single-slider-thumbs::-webkit-scrollbar {
    width: 5px;
    height: 5px;
    padding-top: 14px;
    padding-bottom: 14px;
    background: transparent;
}
/* Track */
.car-single-slider-thumbs::-webkit-scrollbar-track {
    background: transparent;
    padding-top: 14px;
    padding-bottom: 14px;
    border-radius: 3px;
}
/* Handle */
.car-single-slider-thumbs::-webkit-scrollbar-thumb {
    background: var(--color-gray);
    border-radius: 3px;
    cursor: pointer;
}
/* Handle on hover */
.car-single-slider-thumbs::-webkit-scrollbar-thumb:hover {
    background: var(--color-yellow);
    cursor: pointer;
}

.car-single-slider-thumb {
    flex: 0 0 calc(25% - 8px);
    overflow: hidden;
    border-radius: 12px;
    max-width: 120px;
    height: 78px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-gray);
    cursor: pointer;
}

.car-single-slider-thumb.active {
    border: 2px solid var(--color-yellow)
}

.car-single-slider-thumb:hover {
    box-shadow: 0 0 7px var(--color-yellow);
}

.car-single-slider-thumb img {
    width: 100%;
}

.car-single-description-box {
    flex: 0 1 calc(60% - 20px);
    height: 460px;
    overflow-y: auto;
}
/* width */
.car-single-description-box::-webkit-scrollbar {
    width: 5px;
    height: 5px;
    padding-top: 14px;
    padding-bottom: 14px;
    background: transparent;
}
/* Track */
.car-single-description-box::-webkit-scrollbar-track {
    background: transparent;
    padding-top: 14px;
    padding-bottom: 14px;
    border-radius: 3px;
}
/* Handle */
.car-single-description-box::-webkit-scrollbar-thumb {
    background: var(--color-gray);
    border-radius: 3px;
    cursor: pointer;
}
/* Handle on hover */
.car-single-description-box::-webkit-scrollbar-thumb:hover {
    background: var(--color-yellow);
    cursor: pointer;
}


.section-container.post-section {
    padding: 60px 0;
}

.post-section .section-top {
    display: flex;
    flex-wrap: wrap;
}

.post-section .section-body {
    padding: 30px 60px 60px;
    margin-bottom: 60px;
}

.border-yellow .section-body {
    border-left: 1px solid var(--color-yellow);
    border-right: 1px solid var(--color-yellow);
}

.post-section .section-title {
    font-size: 42px;
    line-height: 48px;
    height: 98px;
    order: 1;
    width: 100%;
}

.post-section nav{
    order: 2;
}

.post-section .section-body a {
    font-size: 14px;
    color: var(--color-medium-gray);
    font-weight: 500;
}

.post-single-section {
    padding: 60px 0;
}

.post-single-image {
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 60px;
    position: relative;
}

.post-single-meta {
    margin-bottom: 30px;
}

.post-single-category-name {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 9;
    color: var(--color-primary);
    padding: 5px 20px;
    background: var(--color-yellow);
    border-radius: 11px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.0px;
    line-height: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
}

.post-single-sidebar-list {
    flex-direction: column;
    gap: 30px;
    flex: 0 0 300px;
    width: 300px;
    padding-top: 0px
}
.post-single-sidebar-list .post-list-item {
    padding-left: 10px;
    border-left: 1px solid var(--color-gray);
}
.post-single-sidebar-list .post-list-category-name {
    width: fit-content;
    font-size: 12px;
    line-height: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    border-bottom: 2px solid var(--color-yellow);
    padding-bottom: 3px;
}

.post-single-sidebar-list .post-list-time {
    font-size: 12px;
    color: var(--color-medium-gray);
    display: flex;
    gap: 5px;
    align-items: center;
    padding: 5px 0 0;
}

.post-single-sidebar-list .post-list-link {
    color: var(--color-primary);
    font-size: 16px;
    line-height: 18px;
    display: block;
    margin-top: 10px;
}

.post-single-sidebar-list .post-list-link:hover {
    text-decoration: underline;
}

.post-single-content {
    display: inline-block ;
    flex: 0 1 calc(100% - 360px);
    width: calc(100% - 360px)
}

.mobile-show {
    display: none;!important
}

.tablet-show {
    display: none;!important
}

.desktop-show {
    display: flex;!important
}

.section-container.map-section {
    padding: 0;
}

.section-container.white + .section-container.white {
    padding-top: 0;
}

.posts .section-title {
    text-align: center;
}

.car-order-section h2.section-title {
    font-size: 22px;
    line-height: 27px;
    margin-bottom: 30px;
}

.car-order-item {
    text-align: left;
}

.car-order-section .section-body {
    display: flex;
    justify-content: stretch;
    gap: 20px;
    align-items: flex-start;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto;
}

.text-center-block {
    text-align: center;
    font-size: 22px;
    line-height: 27px;
}

.text-center-block .car-order-item {
    text-align: center;
}

.business-clauses .section-body {
    gap: 0;
    align-items: center;
}
.business-clause {
    padding: 30px;
    align-items: center;
}

.business-clause .section-title {
    margin-bottom: 30px;
}

.business-clause img {
    width: 100%;
}
.index-box-image-container img {
    z-index: 1;
    /*position: relative;*/
    width: 100%;
    position: absolute;
    max-width: 600px;
    right: 10px;
}
.index-circle {
    width: 420px;
    height: 420px;
    position: absolute;
    border-radius: 210px;
    background: var(--color-yellow);
    z-index: 0;
    right: 0;
    top: 0;
}

.inner-block-white .container-md {
    max-width: 600px;
    background: var(--color-white);
    color: var(--color-primary);
    border-radius: 12px;
    padding: 30px;
    width: calc(100% - 40px);
}

.half-section {
    width: 50%;
    padding: 100px 60px;
    background-size: cover;
    background-color: var(--color-gray);
}

.half-section .section-title {
    margin-bottom: 30px;
}

.index-marka-items {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    flex-wrap: wrap;
    width: 100%;
    margin: 0;
}

.index-marka-item {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: var(--color-gray)
}

.index-marka-item:hover {
    color: var(--color-yellow);
}

.index-marka-item:hover svg {
    color: var()
}

.index-marka-item img {
    width: auto;
    max-width: 90%;
    height: auto;
    max-height: 90%;
}

footer {
    padding: 80px 0 10px;
}

.footer-col-title {
    color: var(--color-yellow);
    margin-bottom: 20px;
}

.footer-col-links {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-direction: column;
    color: var(--color-medium-gray)
}

.footer-col-links a {
    color: var(--color-medium-gray)
}

.copyright-box {
    color: var(--color-gray)!important;
}

.copyright-box a {
    color: var(--color-gray);
}

.footer-logo {
    max-width: 200px;
    display: block;
    margin-bottom: 20px;
}

.footer-logo img {
    width: 100%;
    height:auto
}

.footer-col-links svg path {
    fill: var(--color-medium-gray);
}

.no-pad {
    padding: 0!important;
}

.modal-form .modal-body {
    gap: 20px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
}

.modal-notification {
    position: fixed;
    top: 100px;
    right: 20px;
    max-width: 340px;
    background: #FFF;
    border: 1px solid var(--color-yellow);
    border-radius: 20px;
    box-shadow: 0 0 10px var(--color-yellow);
    color: var(--color-primary);
    padding: 12px 14px;
    opacity: 0.94;
    display: none;
    flex-direction: column;
}

.modal-notification.show {
    display: flex
}

.modal-notification-header {
    height: 40px;
    position: relative;
}

.modal-notification .modal-close {
    position: absolute;
    right: 0;
    border: 1px solid var(--color-yellow);
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    cursor: pointer;
}

.modal-notification .modal-close:hover {
    background: var(--color-gray);
}

.modal-notification .modal-close svg path {
    fill: var(--color-gray)
}

.modal-notification .modal-close:hover svg path {
    fill: var(--color-medium-gray)
}

.faq-box-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--color-primary);
    padding: 6px 0 6px 0;
    border-radius: 12px 12px 12px 12px;
    max-width: 820px;
    width: 100%;
    color: var(--color-white);
    cursor: pointer;
    min-height: 64px;
    border: 1px solid var(--color-white);
}

.faq-box-item:hover {
    box-shadow: 0 0 10px var(--color-white);
}

.faq-box-item .faq-box-item-title {
    padding: 9px 12px;
    font-weight: 500;
    font-size: 18px;
    line-height: 23px;
    color: var(--color-yellow);
    letter-spacing: 1px;
    font-family: var(--font-main);
}

.faq-box-item .faq-box-item-body {
    padding: 6px 12px;
    display: none;
    font-size: 16px;
    line-height: 23px;
    letter-spacing: 0.5px;
}

.faq-box-item.active .faq-box-item-body {
    display: block;
}

.index-review-item-box {
    box-shadow: 0 0 5px var(--color-gray);
    padding: 20px;
    border-radius: 12px;
    max-width: calc(25% - 15px);
    min-height: 200px;
    width: 50%;
}

.index-review-item-name {
    font-weight: 600;
}

.index-review-item-date {
    color: var(--color-dark-gray);
    display: flex;
    gap: 5px;
    align-items: center;
}

.index-review-item-text {
    font-size: 16px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 7;
    -webkit-box-orient: vertical;
    height: 161px;
    line-height: 23px;
    color: var(--color-dark-gray);
}

.index-review-item-text.active {
    -webkit-line-clamp: 0;
    height: auto;
}

.index-review-item-mark {
    margin: 10px 0;
}

.index-review-item-mark svg {
    width: 24px;
    height: 24px;
}

.mobile-sidebar-menu {
    display: none;
    width: 100%;
    height: calc(100% - 120px);
    position: fixed;
    right: 0;
    top: 60px;
    background: #000;
    z-index: 99;
    padding: 20px;
    flex-direction: column;
    gap: 24px;
    overflow-y: auto;
    border-top: 1px solid var(--color-second-gray);
    border-bottom: 1px solid var(--color-second-gray);
}

.mobile-menu-rate-item {
    text-align: center;
    font-size: 14px;
    line-height: 17px;
    color: var(--color-white);
}

.mobile-menu-rate-item-date {
    color: var(--color-dark-gray);
    font-size: 14px;
}

.mobile-sidebar-menu.active {
    display: flex;

}

.color-yellow {
    color: var(--color-yellow)
}

.mobile-menu-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mobile-menu-list a {
    color: var(--color-white);
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 23px;
    padding: 8px 0;
}

.mobile-menu-list a:hover,
.mobile-menu-list a:active {
    color: var(--color-yellow);
}

.mobile-menu-soc-list {
    display: flex;
    gap: 24px;
    justify-content: center;
}

.business-form .cards-box-body {
    display: none
}

.business-form .cards-box-body.show {
    display: block
}

.business-form .cards-box-bottom {
    display: flex;
    gap: 2px;
}

.business-form .cards-box-bottom .btn:first-of-type {
    border-radius: 30px 0 0 30px
}

.business-form .cards-box-bottom .btn:nth-of-type(2) {
    border-radius: 0 30px 30px 0
}

.business-form .cards-box-bottom .btn:nth-of-type(3) {
    border-radius: 0 30px 30px 0
}

.business-col-image {
    border-radius: 30px;
    overflow: hidden;
    padding: 0;
}

.section-body .pagination {
    display: flex;
    gap: 10px;
}

.section-body .pagination .page-item.active .page-link {
    background-color: var(--color-yellow);
    border-color: var(--color-yellow);
    color: var(--color-primary);
}

.section-body .pagination .page-item.active a.page-link {
    color: var(--color-primary);
}

.reviews-section .section-title {
    text-align: center;
    margin-bottom: 60px
}

.reviews-section .section-body {
    display: flex;
    gap: 20px
}

.modal-city {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100%;
    height: 100%;
    background: transparent;
    opacity: 1;
    align-items: center;
    justify-content: center;
}

.modal-city.active {
    display: flex
}

.modal-city {

}

.modal-city-overlay {
    position: absolute;
    z-index: 1;
    background: var(--color-primary);
    width: 100%;
    height: 100%;
    opacity: 0.8;
}

.modal-city .modal-container {
    width: 320px;
    height: 320px;
    display: flex;
    flex-direction: column;
    z-index: 2;
    background: rgb(26, 26, 26);
    border-radius: 12px;
    opacity: 1;
    overflow: hidden;
    padding: 20px;
    border: 1px solid var(--color-yellow);
}

.modal-city .modal-city-header {
    position: relative;
}

.modal-city .modal-title {
    color: var(--color-white);
    position: relative;
    margin-top: 10px;
    font-size: 20px;
}

.modal-city .modal-close {
    color: var(--color-white);
    position: absolute;
    top: 4px;
    right: 0;
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    cursor:pointer
}

.modal-city .modal-body-img {
    width: 200px;
    height: auto;
    margin: 10px auto;
}

.modal-city .modal-body-img img {
    width: 100%
}

.modal-city .modal-btn-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-city .btn.btn-primary {
    max-width: 150px;
}

@media (max-width: 1024px) and (min-width: 541px) {
    .mobile-show {
        display: none;!important
    }

    .tablet-show {
        display: flex;!important
    }

    .desktop-show {
        display: none;!important
    }
}

@media (max-width: 540px) {

    .header-top {
        /*border-radius: 0 0 7px 7px;*/
    }

    .business-clause {
        padding: 30px 10px;
        align-items: center;
    }

    .header-top .header-logo {
        width: 140px;
        height: 35px;
    }

    .header-bottom {
        /*border-radius: 7px 7px 0 0;*/
    }

    .reviews-section .section-title {
        margin-bottom: 30px
    }

    .index-marka-items {
        margin: 30px auto 0;
    }

    h1.section-title {
        font-weight: 500;
        font-size: 28px;
        line-height: 28px;
        margin-bottom: 20px;
    }

    .sidebar-right {
        right: auto;
        left: 0;
    }

    .index-review-item-box {
        max-width: calc(50% - 10px);
        min-height: 200px;
        padding: 10px;
    }

    .index-review-item-text {
        font-size: 14px;
        line-height: 19px;
        height: 133px;
    }

    .index-review-item-date {
        font-size: 14px;
        line-height: 17px;
    }

    .index-review-item-mark {
        margin: 5px 0;
    }

    .index-review-item-mark svg {
        width: 16px;
        height: 16px;
    }

    .mobile-show {
        display: flex;!important
    }

    .tablet-show {
        display: none;!important
    }

    .desktop-show {
        display: none;!important
    }

    .half-section {
        width: 100%;
        min-height: 300px;
        padding: 30px 15px;
        background-size: cover;
        background-color: var(--color-gray);
    }

    .post-single-content {
        display: inline-flex ;
        flex: 0 1 calc(100%);
        width: calc(100%)
    }

    .catalog-items {
        flex: 0 0 100%;
        justify-content: center;
    }

    .cars-empty-box {
        padding: 20px 20px;
    }

    .section-container.description-service {
        padding-bottom: 60px;
    }

    .section-container.inner-block-white {
        padding: 60px 0;
    }

    .car-order-section .section-body p {
        font-size: 16px;
        line-height: 21px;
    }

    footer {
        padding: 30px 0px 60px;
    }

    .index-top .container-md {
        padding: 0 12px;
    }

    .header-top .container-md {
        padding: 0 12px;
        height: 60px;
        box-shadow: 0 0px 2px var(--color-gray);
        gap: 1px;
    }

    .section-top .breadcrumb {
        flex-wrap: nowrap;
        overflow: hidden;
        max-width: calc(100% - 30px);
        display: flex;
    }

    .section-top .breadcrumb-item {
        flex: 0 0 auto;
    }

    .index-box-main {
        flex: 0 1 100%;
        gap: 20px;
        padding: 0;
    }

    .index-marka-item {
        width: 150px;
    }

    .index-top .section-title {
        font-size: 32px;
        line-height: 37px;
        color: var(--color-white);
        position: relative;
        opacity: 1;
        z-index: 1;
        min-height: 56px;
        margin-bottom: 0;
    }

    .index-top .index-box-text {
        font-size: 20px;
        line-height: 23px;
        color: var(--color-gray);
    }

    .count-index-box .count-item .count-item-value {
        font-size: 24px;
        line-height: 28px;
    }

    .section-container {
        padding: 30px 0;
    }

    .section-container.map-section {
        padding: 0;
    }

    .car-single-title {
        color: var(--color-yellow)
    }

    .car-single-submit {
        position: fixed;
        bottom: 62px;
        z-index: 99;
        width: calc(100% - 24px);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .car-single-image-box {
        flex: 0 0 90%;
    }

    .car-single-image-circle {
        width: 270px;
        height: 270px;
        border-radius: 50%;
        right: -3%;
    }

    .car-single-data-box {
        flex: 0 0 100%;
    }

    .car-single-feature-box {
        gap: 10px;
        margin-top: 30px;
        max-width: 100%;
    }

    .car-single-feature-title {
        width: 100%;
        text-align: center;
        margin-bottom: 30px;
    }

    .car-single-feature-item {
        gap: 10px;
        flex: 0 0 calc(25% - 8px);
        max-width: 100px;
        padding: 10px 6px;
    }

    .car-single-feature-text {
        display: none;
    }

    .car-single-feature-value {
        font-weight: 600;
        font-size: 15px;
        line-height: 21px;
    }

    .car-single-slider-title {
        margin-bottom: 30px;
    }

    .car-single-slider-box {
        flex: 0 0 100%;
        max-width: 100%;
        height: auto;
    }

    .car-single-slider-img {
        max-width: 405px;
        max-height: 265px;
    }

    .car-single-slider-thumb {
        border-radius: 7px;
        max-width: 100px;
        height: 56px;
    }

    .car-single-slider-thumb:hover {
        box-shadow: 0 0 10px var(--color-yellow);
    }


    .car-single-description-box {
        flex: 0 1 100%;
        height: 330px;
        overflow-y: scroll;
    }

    .car-single-price-box {
        width: 100%;
    }

    .feature-item {
        width: calc(50% - 10px);
        padding: 5px;
    }

    .feature-item-title {
        font-size: 16px;
        line-height: 19px;
        margin-bottom: 15px;
        /*text-align: center;*/
    }

    .feature-item-text {
        font-size: 14px;
        line-height: 17px;
        /*text-align: center;*/
    }

    /*.feature-item-img {*/
    /*    margin: 0px auto 15px;*/
    /*}*/

    .feature-item-img {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        opacity: 0.1;
    }

    .faq-item {
        width: 100%;
        font-size: 12px;
        line-height: 15px;
    }

    .section-container.post-section {
        padding: 10px 0 30px;
    }

    .breadcrumb-item {
        font-size: 12px;
        line-height: 15px;
        display: block;
        white-space: nowrap;
    }

    .breadcrumb-item a {
        font-size: 12px;
        line-height: 15px;
    }

    .breadcrumb-item.active {
        font-size: 12px;
        line-height: 15px;
        display: block;
        white-space: nowrap;
    }

    .index-top h1.section-title {
        font-weight: 500;
        font-size: 24px;
        line-height: 28px;
        padding: 0 12px;
    }

    .index-top h1.section-title:after {
        content: "";
        display: none;
        position: absolute;
        width: 200px;
        height: 200px;
        background: var(--color-yellow);
        opacity: 0.7;
        right: 0;
        top: 0;
        border-radius: 50%;
        z-index: -1;
    }

    .post-item-time {
        bottom: 12px;
        right: 15px;
    }

    .faq-item {
        gap: 15px;
    }

    .faq-item-title {
        flex: 0 0 70px;
    }

    .faq-item-body {
        flex: 0 1 calc(100% - 85px);
    }

    .count-index-box {
        flex-wrap: wrap;
        gap: 20px 30px;
        padding-top: 30px;
        margin-top: 270px;
    }

    .count-index-box .count-item .count-item-icon svg {
        width: 52px;
        height: 52px;
    }

    .index-box-text .btn.btn-primary {
        width: 205px;
    }

    .count-index-box .count-item {
        border: none;
        flex: 0 0 calc(50% - 20px);
        padding: 0;
    }

    .count-index-box .count-item .count-item-text {
        font-size: 20px;
        line-height: 23px;
    }

    .post-section .section-title {
        order: 2;
        font-size: 32px;
        line-height: 35px;
        height: auto;
    }

    .post-section .section-body {
        padding: 0;
        margin-bottom: 30px;
        border: none;
    }

    .post-section .post-single-image {
        margin-bottom: 0px;
    }

    .post-section .post-single-image img {
        width: 100%;
        height: auto;
    }

    .post-section nav {
        order: 1;
        width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
    }

    .post-item-box {
        gap: 10px;
    }

    .post-item-image {
        flex: 0 0 150px;
    }

    .post-item-content {
        padding: 10px 10px 10px 0;
        flex: 0 1 calc(100% - 160px);
    }

    .post-item-box {
        max-height: 160px;
    }

    .post-item-title {
        font-size: 16px;
        line-height: 19px;
        height: 38px;
    }

    .post-item-category {
        font-size: 12px;
        line-height: 15px;
    }

    .post-item-text {
        font-size: 12px;
        line-height: 15px;
        height: 45px;
    }

    .post-item-read-more {
        color: var(--color-medium-gray);
        font-size: 14px;
        line-height: 17px;
    }

    .filters.mobile-show {
        padding: 0;
        height: 40px;
        min-height: unset;
        flex: 0 0 100%;
        justify-content: flex-end;
        display: flex;
        flex-direction: row;
    }

    .filters .filter-mobile-btn {
        width: 40px;
        height: 40px;
        border-radius: 0;
        padding: 0;
        border: none;
    }

    .filters .filter-mobile-btn:hover,
    .filters .filter-mobile-btn:active {
        background: transparent;
        border: none;
        box-shadow: unset;
    }

    .filters .filter-mobile-btn svg {
        transform: rotate(100grad);
    }

    .filters .filter-mobile-btn svg path {
        fill: var(--color-yellow)
    }

    .modal-filters {
        display: none;
    }

    .modal-filters.show {
        display: flex;
        justify-content: center;
        align-items: flex-end;

    }

    .modal-filters .modal-dialog {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        height: calc(100% - 200px);
        width: 100%;
        background: #fff;
        margin: 0;
        overflow: hidden;
        z-index: 2000;
        border-radius: 20px 20px 0 0;
        flex-direction: column;
        pointer-events: unset;

        color: var(--color-primary);

        transition: all 10s linear;
        animation-name: close-modal-filters;
        animation-duration: 150ms;
        animation-iteration-count: 1;
        animation-direction: normal;
        animation-timing-function: ease-out;
        animation-fill-mode: forwards;
        animation-delay: 0s;
    }

    .modal-filters.show .modal-dialog {
        animation-name: open-modal-filters;
    }

    .modal-filters .filters {
        width: 100%;
        flex: 0 1 calc(100% - 60px);
        overflow-y: auto;
    }

    .modal-filters .filters .btn-primary {
        flex: 0 0 55px;
    }

    .modal-filters .filter-item .filter-title {
        color: var(--color-primary);
    }

    .modal-filters .filter-item .filter-title svg path {
        fill: var(--color-gray);
    }

    .modal-filters .modal-header {
        font-size: 18px;
        text-transform: uppercase;
        justify-content: center;
        font-weight: 600;
        letter-spacing: 1px;
    }

    .modal-close {
        position: absolute;
        right: 15px;
    }

    .modal-close svg path {
        fill: var(--color-gray);
    }

    .section-container.white + .section-container.white {
        padding-top: 30px;
    }

    .car-order-section .container.service-container {
        padding: 30px;
    }

}


