@charset "utf-8";

@import url("owl.css");
@import url("icons.css");
@import url("fancybox.css");

@font-face {
    font-display: swap;
    font-family: changan;
    font-style: normal;
    font-weight: 500;
    src: url(../fonts/changan/changanunitype-light.woff2) format("opentype")
}

@font-face {
    font-display: swap;
    font-family: changan;
    font-style: normal;
    font-weight: 500;
    src: url(../fonts/changan/changanunitype-regular.woff2) format("opentype")
}

@font-face {
    font-display: swap;
    font-family: changan;
    font-style: normal;
    font-weight: 700;
    src: url(../fonts/changan/changanunitype-bold.woff2) format("opentype")
}

:root {
    --primary-color: #606060;
    --primary-color-rgb: 96, 96, 96;

    --secondary-color: #f89435;
    --secondary-color-rgb: 248, 148, 53;

    --tertiary-color: #323e48;
    --tertiary-color-rgb: 50, 62, 72;

    --quaternary-color: #d9d9d9;
    --quaternary-color-rgb: 217, 217, 217;

    --color-white: #ffffff;
}

a.btn-main,
.btn-main,
.btn-primary,
body::-webkit-scrollbar-thumb {
    background: var(--color-white);
}

a,
a:hover {
    color: var(--quaternary-color);
}

a.btn-main.btn-white {
    color: var(--primary-color);
}

#menu-btn {
    background: var(--primary-color);
}

* {
    --changan-font: "changan", Helvetica, Arial, sans-serif;
    --border-default: solid 1px rgba(30, 30, 30, 1);
    --bg-color-even: #E8E8E8;
    --bg-color-odd: #F4F4F4;
    --bg-color-dark: #111111;
    --dark-body-font-color: rgba(255, 255, 255, .5);
    --gray-color: #acacac;

}

html {
    overflow-x: hidden;
    padding: 0;
    margin: 0;
    background: var(--color-white);
}

body {
    font-family: var(--changan-font);
    font-size: 16px;
    font-weight: 500;
    color: var(--primary-color);
    padding: 0;
    line-height: 1.7em;
    word-spacing: 0px;
    letter-spacing: -0.2px;
}

#wrapper {
    overflow: hidden;
}

a,
a:hover {
    text-decoration: none;
}

.btn-check:focus+.btn,
.btn:focus {
    box-shadow: unset;
}

section {
    padding: 45px 0 45px 0;
    position: relative;
}

section:not(.relative) {}

input[type="checkbox"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    outline: none;
}

a {
    text-decoration: none;
}

.btn {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

a.btn-main:hover,
.btn-main:hover {
    color: var(--color-white);
    -webkit-box-shadow: 2px 2px 20px 0px rgba(var(--primary-color-rgb), 0.5);
    -moz-box-shadow: 2px 2px 20px 0px rgba(var(--primary-color-rgb), 0.5);
    box-shadow: 2px 2px 20px 0px rgba(var(--primary-color-rgb), 0.5);
}

a.btn-main,
a.btn-main:active,
a.btn-main:focus,
a.btn-main:visited,
.btn-main {
    display: inline-block;
    font-family: var(--changan-font);
    text-align: center;
    color: var(--color-white);
    outline: 0;
    font-weight: 700;
    text-decoration: none;
    padding: 4px 30px 4px 30px;
    font-size: 14px;
    border: none;
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
}

/* a.btn-main.btn-white {
    background: var(--color-white);
} */

.spacer-double {
    width: 100%;
    height: 60px;
    display: block;
    clear: both;
}

.spacer-10 {
    width: 100%;
    height: 10px;
    display: block;
    clear: both;
}

.form-border input[type=text] {
    padding: 8px;
    margin-bottom: 10px;
    border: none;
    border: solid 2px #eeeeee;
    background: rgba(0, 0, 0, .025);
    border-radius: 6px;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
    height: auto;
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    color: #333;
}

.form-border input[type=text]:focus {
    background: rgba(var(--quaternary-color-rgb), .1);
}

h1,
h5 {
    margin-top: 0;
    font-family: var(--changan-font);
    font-weight: 700;
    color: var(--tertiary-color);
}

h1 {
    font-size: 52px;
    letter-spacing: -2px;
    margin-bottom: 20px;
    line-height: 52px;
    font-weight: 500;
}

h5 {
    font-size: 16px;
}


.text-light {
    color: var(--color-white);
}

.text-light h1 {
    color: var(--color-white);
}

.mb10 {
    margin-bottom: 10px;
}

.mb10 {
    margin-bottom: 10px;
}

header,
.btn-main,
#contact_form input,
.form-border *,
#contact_form *,

    {
    -o-transition: .5s;
    -ms-transition: .5s;
    -moz-transition: .5s;
    -webkit-transition: .5s;
    transition: .5s;
    outline: none;
}

#mainmenu li {
    -o-transition: .2s ease;
    -ms-transition: .2s ease;
    -moz-transition: .2s ease;
    -webkit-transition: .2s ease;
    transition: .2s ease;
    outline: none;
}

.btn-primary {
    text-shadow: none;
    border: none;
}

.btn.btn-primary:hover,
.btn.btn-primary:focus {
    background: #555;
}

p.lead {
    font-size: 22px;
    letter-spacing: 0.1px;
    margin-top: 0;
    font-weight: 500;
}

a,
a:hover {
    -o-transition: .3s;
    -ms-transition: .3s;
    -moz-transition: .3s;
    -webkit-transition: .3s;
    transition: .3s;
}

.d-flex {
    display: flex;
    white-space: nowrap;
}

.vertical-center {
    min-height: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

p {
    margin-bottom: 20px;
}

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-white);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.form-control {
    border: solid 1px #aaaaaa;
}

.form-control:focus {
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
}

.text-light .form-control {
    color: var(--color-white);
    background: none;
    border-color: #555555;
}

.wow {
    visibility: hidden;
}

.auto-container {
    position: static;
    /*max-width: 1200px;*/
    padding: 0px 15px;
    margin: 0 auto;
    width: 100%;
}

.main-header {
    position: relative;
    width: 100%;
    z-index: 999;
}

.main-header .header-lower {
    position: relative;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.main-header .header-lower .logo-box {
    padding: 0 0 12px 0;
    position: relative;
}

.main-header {
    width: 100%;
    z-index: 999;
}

.main-header .logo {
    position: relative;
    display: block;
}

.main-header .logo a {
    display: flex;
    gap: 20px;
    align-items: center;
}

.main-header .logo img {
    width: 150px;
    height: auto;
}

.main-header .main-box {
    position: relative;
    left: 0px;
    top: 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.main-header .main-box .nav-outer {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
}

.header-lower {
    background: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(40px);
    backdrop-filter: blur(40px);
}
.header-top {
    padding: 10px 0 0 0;
}
.header-top .widget-holder {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 0;
    justify-content: space-between;
}

.header-top .widget-holder .top-widget {
    font-size: 14px;
}

.header-top .widget-holder .top-widget a {
    color: var(--color-white);
}

.header-top .widget-holder .top-widget .top-location,
.header-top .widget-holder .top-widget .top-phone {
    display: flex;
    flex-direction: row;
}

.header-top .widget-holder .top-widget .widget-icon {
    position: relative;
    width: 21px;
}

.header-top .widget-holder .top-widget .widget-icon svg {
    width: 17px;
    height: 17px;
    position: absolute;
    top: 5px;
}

.header-top .social-icons-link ul {
    display: flex;
    align-items: center;
}

.header-top .social-icons-link ul li svg {
    height: 17px;
    transition: 0.4s ease-in-out;
}

#logo-container {
    width: 200px;
    height: 200px;
}

#logo-container svg {
    width: 100%;
    height: 100%;
    fill: none;
    animation: fillLogo 2s ease forwards;
}

@keyframes fillLogo {
    0% {
        stroke-dashoffset: 900;
    }

    100% {
        stroke-dashoffset: 0;
    }
}

.main-menu {
    position: relative;
}

.main-menu .navbar-collapse {
    padding: 0px;
}

.main-menu .navigation {
    position: relative;
    list-style: none;
    margin: 0px;
}

.main-menu .navigation>li {
    float: left;
    margin-right: 55px;
    padding: 25px 0px;
    position: relative;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.main-menu .navigation>li:last-child {
    margin-right: 0;
}

.main-menu .navigation>li:before {
    position: absolute;
    left: 50%;
    bottom: 23px;
    height: 2px;
    width: 0%;
    background-color: var(--secondary-color);
    content: "";
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.main-menu .navigation>li:hover:before,
.main-menu .navigation>li.current:before {
    left: 0;
    width: 100%;
}

.main-menu .navigation>li>a {
    position: relative;
    display: block;
    text-align: center;
    opacity: 1;
    color: var(--color-white);
    font-size: 13px;
    line-height: 30px;
    font-weight: 500;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.main-menu .navigation>li>a:hover {
    color: var(--color-white);
}

.main-menu .navigation>li.current>a {
    color: var(--color-white);
}

.dark .main-menu .navigation>li>a {
    color: var(--tertiary-color);
}

.dark .main-menu .navigation>li>a:hover {
    color: var(--tertiary-color);
}

.dark .main-menu .navigation>li.current>a {
    color: var(--tertiary-color);
}

.main-header .outer-box {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
}

.main-header .outer-box .btn {
    background: unset;
    border: 1px solid var(--color-white);
    border-radius: 30px;
    outline: none;
    color: var(--color-white);
    cursor: pointer;
    font-size: 0.95rem;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    padding: 12px 23px;
    transition: all 0.2s ease 0s;
    width: auto;
    -moz-user-select: none;
    -o-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    position: relative;
    font-family: inherit;
    text-transform: uppercase;
}

.main-header .outer-box .btn:hover, .main-header .outer-box .btn:active {
    background: var(--color-white);
    border: 1px solid var(--color-white);
    color: var(--secondary-color);
}

.main-header .info-btn {
    position: relative;
    display: block;
    font-size: 16px;
    padding: 8px 0;
    padding-left: 60px;
    color: var(--color-white);
    text-align: left;
    font-weight: 700;
    white-space: nowrap;
    line-height: 20px;
    margin-left: 30px;
}

.main-header .info-btn small {
    color: var(--color-white);
    display: block;
    font-size: 12px;
    font-weight: 500;
}

.main-header .info-btn i {
    color: var(--color-white);
    font-size: 30px;
    left: 17px;
    line-height: 50px;
    margin-top: -25px;
    position: absolute;
    text-align: center;
    top: 50%;
}

.dark.main-header .info-btn small {
    color: var(--tertiary-color);
}

.dark.main-header .info-btn i {
    color: var(--tertiary-color);
}

.main-header .sticky-header .info-btn i {
    color: var(--tertiary-color);
}

.main-header .info-btn:hover {
    color: var(--color-white);
}

.dark.main-header .outer-box .header__address {
    color: var(--tertiary-color);
}

.dark.main-header .info-btn {
    color: var(--tertiary-color);
}

.dark.main-header .info-btn small {
    color: var(--tertiary-color);
}

.dark.main-header .info-btn i {
    color: var(--tertiary-color);
}

.dark.main-header .info-btn:hover {
    color: var(--tertiary-color);
}

.header-style .container-fluid {
    padding: 0 50px;
}

.header-style .header-lower {
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.dark.header-style .header-lower {
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}

.header-style .logo {
    min-height: 65px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.header-style .main-box {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.header-style .main-box .nav-outer {
    width: auto;
}

.sticky-header {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    left: 0px;
    top: 0px;
    width: 100%;
    padding: 0px 0px;
    z-index: 99999;
    background: var(--color-white);
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.sticky-header.fixed-header {
    opacity: 1;
    z-index: 9999;
    visibility: visible;
}

.sticky-header .logo {
    padding: 32px 0;
}

.sticky-header .logo img {
    max-height: 40px;
}

.sticky-header .nav-outer {
    position: relative;
    display: flex;
    align-items: center;
    background: none;
}

.sticky-header .nav-outer .call-box .info-btn {
    color: var(--tertiary-color);
}

.sticky-header .nav-outer .call-box .info-btn small {
    color: var(--tertiary-color);
}

.sticky-header .nav-outer .call-box .info-btn i {
    font-size: 30px;
    line-height: 40px;
    margin-top: -20px;
}

.sticky-header .inner-container {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.sticky-header .main-menu .navigation>li {
    margin: 0;
    margin-left: 40px;
    padding: 20px 0;
}

.sticky-header .main-menu .navigation>li>a {
    color: #707070;
}

.sticky-header .main-menu .navigation>li.current>a,
.sticky-header .main-menu .navigation>li:hover>a {
    color: var(--theme-color2);
}

.sticky-header .mobile-nav-toggler {
    color: var(--tertiary-color);
}

.mobile-nav-toggler {
    position: relative;
    font-size: 24px;
    line-height: 20px;
    cursor: pointer;
    color: var(--secondary-color);
    display: none;
    top: 0px;
    margin-left: 25px;
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8;
}

.mobile-menu {
    position: fixed;
    left: 0;
    top: 0;
    width: 300px;
    max-width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    z-index: 999999;
}

.mobile-menu .menu-backdrop {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    visibility: hidden;
}

.mobile-menu .upper-box {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    padding: 20px 20px;
}

.mobile-menu .close-btn {
    position: relative;
    top: 0px;
    text-align: center;
    font-size: 18px;
    color: var(--color-white);
    cursor: pointer;
    z-index: 10;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    -webkit-transform: translateY(-50px);
    transform: translateY(-50px);
}

.mobile-menu .close-btn:hover {
    opacity: 0.5;
}

.mobile-menu .nav-logo {
    position: relative;
    text-align: left;
    width: 100%;
}

.mobile-menu .nav-logo a {
    display: flex;
    gap: 15px;
}

.mobile-menu .nav-logo img {
    width: 100px;
}

.mobile-menu .menu-box {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    max-height: 100%;
    overflow-y: auto;
    background: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(40px);
    backdrop-filter: blur(40px);
    padding: 0px 0px;
    z-index: 5;
    opacity: 0;
    visibility: hidden;
    border-radius: 0px;
    -webkit-transform: translateX(-101%);
    transform: translateX(-101%);
}

.mobile-menu-visible {
    overflow: hidden;
}

.mobile-menu-visible .mobile-menu {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-visible .mobile-menu .menu-backdrop {
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.mobile-menu-visible .mobile-menu .menu-box {
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 0.4s ease 200ms;
    transition: all 0.4s ease 200ms;
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
}

.mobile-menu-visible .mobile-menu .close-btn {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
}

.mobile-menu-visible .scroll-to-top {
    opacity: 0;
    visibility: hidden;
}

.mobile-menu .navigation {
    position: relative;
    display: block;
    width: 100%;
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu .navigation li {
    position: relative;
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu .navigation li>a {
    position: relative;
    display: block;
    line-height: 24px;
    padding: 10px 20px;
    font-size: 16px;
    color: var(--color-white);
    font-weight: 500;
}

.mobile-menu .navigation li:hover>a,
.mobile-menu .navigation li.current>a {
    color: var(--color-white);
}

.contact-list {
    position: relative;
    padding: 30px 20px 20px;
    list-style: none;
}

.contact-list li {
    position: relative;
    margin-bottom: 20px;
}

.contact-list li:last-child {
    margin-right: 0;
}

.contact-list li .contact-info-box {
    position: relative;
    padding-left: 54px;
    font-size: 14px;
    line-height: 24px;
    color: var(--color-white);
}

.contact-list li .contact-info-box a {
    color: var(--color-white);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.contact-list li .contact-info-box .icon {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 34px;
    line-height: 50px;
    color: var(--color-white);
}

.contact-list li .contact-info-box .title {
    display: block;
    font-size: 12px;
    color: #b2c1c0;
    font-weight: 500;
    text-transform: uppercase;
}

.contact-list li .contact-info-box .working_time_img {
    width: 10px;
    margin-top: -1px;
}

.mobile-menu .social-links {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    background: var(--tertiary-color);
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: auto;
}

.mobile-menu .social-links li {
    position: relative;
    text-align: center;
    width: 100%;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu .social-links li a {
    position: relative;
    display: block;
    line-height: 50px;
    height: 50px;
    font-size: 14px;
    text-align: center;
    color: var(--color-white);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.mobile-menu .social-links li a:hover {
    color: var(--color-white);
}

.banner-section {
    overflow: hidden;
    position: relative;
    padding: 0;
}

.banner-section .slide-item {
    position: relative;
}

.banner-section .slide-item .bg-image {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: 0;
}

.banner-section .slide-item .bg-image:before {
    background-image: url(../images/main-slider/banner-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
}

.banner-section .slide-item .bg-image:after {
    background-image: url(../images/main-slider/banner-bg.png);
    background-repeat: no-repeat;
    content: "";
    left: 0;
    height: 100%;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 0;
}

.banner-section .content-box {
    padding: 285px 0 120px;
    position: relative;
    text-align: center;
}

.banner-section .content-box .banner-text {
    position: relative;
    display: block;
    flex-grow: 0;
    flex-shrink: 1;
    flex-basis: auto;
    align-self: auto;
    order: 0;
    color: var(--color-white);
    font-size: 22px;
    padding-bottom: 20px;
    line-height: 32px;
    margin-left: 0;
    margin-right: auto;
    position: relative;
    width: 50%;
}

.banner-section .content-box .banner-text i {
    color: var(--color-white);
    font-size: 16.5px;
}

.banner-section .content-box .sub-title {
    position: relative;
    display: block;
    flex-grow: 0;
    flex-shrink: 1;
    flex-basis: auto;
    align-self: auto;
    order: 0;
    color: var(--color-white);
    font-size: 20px;
    font-weight: 500;
    line-height: 25px;
    margin-bottom: 0px;
}

.banner-section .content-box .sub-title.banner_border {
    border-bottom: 3px solid var(--secondary-color);
    margin-bottom: 15px;
}

.banner-section .content-box .title {
    display: block;
    flex-grow: 0;
    flex-shrink: 1;
    flex-basis: auto;
    align-self: auto;
    order: 0;
    color: var(--color-white);
    font-size: 90px;
    font-weight: 700;
    line-height: 110px;
}

.banner-section .content-box .title i {
    color: var(--color-white);
    font-size: 36px;
    line-height: 38px;
}

.owl-carousel .animate-3,
.owl-carousel .animate-2,
.owl-carousel .animate-1 {
    opacity: 0;
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.owl-carousel .active .animate-3,
.owl-carousel .active .animate-2,
.owl-carousel .active .animate-1 {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.owl-carousel .active .animate-2 {
    -webkit-transition-delay: 300ms;
    transition-delay: 300ms;
}

.owl-carousel .active .animate-3 {
    -webkit-transition-delay: 600ms;
    transition-delay: 600ms;
}

.banner-carousel .owl-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    max-width: 1400px;
    padding: 0 15px;
    margin: 0px auto;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.banner-carousel .owl-nav .owl-next,
.banner-carousel .owl-nav .owl-prev {
    background-color: #4c4650cc;
    border-radius: 50%;
    color: var(--secondary-color);
    display: block;
    font-size: 20px;
    font-weight: 700;
    height: 50px;
    line-height: 54px;
    margin: 10px 0;
    opacity: .8;
    text-align: center;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    width: 50px;
}

.banner-carousel .owl-nav .owl-next:hover,
.banner-carousel .owl-nav .owl-prev:hover {
    opacity: 1;
}

.banner-carousel {
    overflow: hidden;
    position: relative;
}

.banner-carousel.owl-carousel .owl-item{
    margin-left: -0.2px;
}

.banner-carousel.owl-carousel .owl-stage-outer {
    height: 100vh !important;
}

.banner-carousel .slide-item {
    position: relative;
}

.banner-carousel .slide-item .bg-image {
    position: absolute;
    left: 0;
    top: 0;
    height: 100vh;
    width: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.banner-carousel .slide-item .bg-image:before {
    background-image: linear-gradient(90deg, #000000 0%, rgba(0, 0, 0, 0.45) 70%);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
}

.banner-carousel .content-box {
    position: relative;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: flex-start;
    align-content: normal;
    height: 100vh;
    text-align: left;
}

.banner-carousel .content-box .title {
    font-size: 48px;
    line-height: 64px;
    color: var(--color-white);
    font-weight: 700;
}

.banner-carousel .content-box form {
    color: var(--color-white);
}

.banner-carousel .content-box form .form_content {
    display: flex;
    gap: 20px;
}

.banner-carousel .content-box form input[type="phone"] {
    background: var(--color-white);
    border-bottom: 1px solid #d4d6d9;
    border-left: 0;
    border-top: 0;
    border-right: 0;
    border-radius: 0;
    box-shadow: none;
    color: #001d36;
    font-size: 1.05rem;
    outline: medium none;
    padding: 10px 15px;
    transition: all 100ms cubic-bezier(0.42, 0, 0.58, 1) 0s;
    width: 100%;
    margin: 5px 0;
    font-family: inherit;
    max-width: 210px;
}

.banner-carousel .content-box .btn {
    background: var(--secondary-color);
    border-radius: 30px;
    outline: none;
    color: var(--color-white);
    cursor: pointer;
    font-size: 0.95rem;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    padding: 12px 23px;
    margin-top: 5px;
    transition: all 0.2s ease 0s;
    width: auto;
    -moz-user-select: none;
    -o-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    position: relative;
    font-family: inherit;
    text-transform: uppercase;
}

.banner-carousel .content-box .btn:hover,
.banner-carousel .content-box .btn:active {
    box-shadow: 0 4px 14px var(--secondary-color);
    transition: all 0.2s ease 0s;
}

a, img {
    outline: 0;
}

.car-preview-list .car-preview-el {
    margin-top: 0;
}

.car-preview-list .tb-product-item-inner {
    background-color: var(--color-white);
    overflow: hidden;
    border: 1px solid transparent;
    border-radius: 5px;
    position: relative;
}

.car-preview-list .tb-product-item-inner:hover {
    background-color: #f5f5f5;
    box-shadow: 0px 2px 20px 0px rgba(245, 245, 245, 1);
}

.car-preview-list .tb-product-item-inner .tb-image {
    position: relative;
    line-height: 0;
    padding-top: 30px;
}

.car-preview-list .tb-image>a {
    display: block;
}

.car-preview-list .tb-product-item-inner .tb-image img {
    transition: .3s all;
    -webkit-transition: .3s all;
    transform: scale(.8);
    -webkit-transform: scale(.8);
}

.car-preview-list .tb-product-item-inner:hover .tb-image img {
    transition: .3s all;
    -webkit-transition: .3s all;
    transform: scale(1);
    -webkit-transform: scale(1);
}

.car-preview-list .tb-product-item-inner .tb-image img {
    width: 100%;
    height: auto;
}

.car-preview-list img {
    height: auto;
    max-width: 100%;
}

.car-preview-list img {
    vertical-align: middle;
}

.car-preview-list .tb-product-item-inner .tb-content {
    margin-top: 0px;
    text-align: center !important;
}

.car-preview-list .tb-product-item-inner .tb-content {
    text-align: center !important;
}

.car-preview-list .tb-product-item-inner .tb-content .tb-footer-content .tb-price {
    padding-bottom: 40px;
}

.car-preview-list .tb-product-item-inner .tb-content .tb-footer-content .tb-price i {
    font-size: 12px;
}

.car-preview-list .tb-product-item-inner .tb-content .tb-footer-content .tb-title a {
    font-family: var(--changan-font);
    margin-bottom: 3px;
    font-size: 24px;
    font-weight: 700;
    color: var(--tertiary-color);
}

.car-preview-list .tb-product-item-inner .tb-content {
    text-align: center !important;
}

.car-preview-list .row::before {
    display: table;
    content: " ";
}

.car-preview-list .tb-product-item-inner::after {
    content: "";
    display: block;
    clear: both;
}

.car-list .car .car-pic {
    width: 100%;
    height: 250px;
    background-size: 130%;
    background-position: center;
    background-repeat: no-repeat;
    -webkit-transition: .1s linear;
    transition: .1s linear;
    z-index: 5;
    position: relative;
}

.car-list .car:first-child {
    padding: 100px 0 0 0;
}

.car-list .car {
    padding: 150px 0 0 0;
}

.car-list .car .car-colors {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.car-list .car .car-colors span {
    cursor: pointer;
    margin: 0 8px;
    width: 25px;
    height: 25px;
    text-indent: -9999px;
    background-color: #0b457f;
    color: #0b457f;
    position: relative;
    border-radius: 50%;
    border: none;
    outline: none;
}

.car-list .car .car-colors span.active::before {
    content: "";
    width: 35px;
    height: 35px;
    border: 1px solid;
    position: absolute;
    display: block;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
    border-radius: 50%;
}

.car-list .car .cat-head {
    display: flex;
    white-space: nowrap;
    justify-content: space-between;
}

.car-list .car .model {
    padding-top: 12px;
    float: left;
}

.car-list .car .model img {
    height: 32px;
    width: 100%;
}

.price__model_available {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-end;
    gap: 6px;
    padding-top: 6px;
}

.price__model_available__icon img {
    height: 14px;
    border-radius: 50%;
    animation: pulse-effect 2s infinite;
}

.price__model_available__status a {
    cursor: pointer;
    color: #0cc32b;
    font-size: 14px;
}

.car-list .car i {
    font-size: 18px;
}

.car-list .car .car-info .car-order-btn {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: normal;
    align-content: normal;
    gap: 10px;
}

.tooltip .tooltip-inner {
    --bs-tooltip-bg: #3F4254;
}

.tooltip .tooltip-arrow::before {
    --bs-tooltip-bg: #3F4254;
}

.fancybox__container {
    z-index: 1070;
}

.car-block {
    margin: 20px;
    padding: 15px;
    border: 1px solid #ccc;
}

.car-list .car .car-info .car-order-btn {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.car-list .car .car-info {
    margin-top: 0;
}

.car-list .car .price-block {
    font-size: 22px;
    color: var(--tertiary-color);
    text-align: right;
}

.car-list .car .car-price {
    font-size: 23px;
    font-weight: 700;
    font-family: "changan", Helvetica, Arial, sans-serif;
}

.car-list .car .description {
    white-space: initial;
}

.car-list .car .gift {
    width: 105px;
}

.car-list .car .gift img {
    width: 65px;
    webkit-animation: giftAnim 2s infinite;
    animation: giftAnim 2s infinite;
}

@-webkit-keyframes giftAnim {
    0% {
        -webkit-transform: rotate(3deg);
        transform: rotate(3deg)
    }

    50% {
        -webkit-transform: rotate(-3deg);
        transform: rotate(-3deg)
    }

    100% {
        -webkit-transform: rotate(3deg);
        transform: rotate(3deg)
    }
}

@keyframes giftAnim {
    0% {
        -webkit-transform: rotate(3deg);
        transform: rotate(3deg)
    }

    50% {
        -webkit-transform: rotate(-3deg);
        transform: rotate(-3deg)
    }

    100% {
        -webkit-transform: rotate(3deg);
        transform: rotate(3deg)
    }
}

.car-list .car .gift svg {
    width: 80px;
}

.car-list .car .gift:hover svg .top-box-animate {
    animation: 2s linear infinite both top-box-animate;
}

.car-list .car .gift svg .star1-animate,
.car-list .car .gift svg .star2-animate,
.car-list .car .gift svg .star3-animate {
    opacity: 0;
}

.car-list .car .gift:hover svg .star1-animate {
    opacity: 1;
    transform: translate(-385.004px, -491.297px);
    animation: 2s linear infinite both star1-animate;
    offset-path: path('M293.148,223.245C254.125,117.257,185.151,46.3035,88.0992,8.19356');
    offset-rotate: 0deg;
}

.car-list .car .gift:hover svg .star2-animate {
    opacity: 1;
    transform: translate(-178.489px, -358.387px);
    animation: 2s linear infinite both star2-animate;
    offset-path: path('M143.477,175.385L143.477,175.385C169.681,53.9982,69.1913,-32.3063,-95.3849,-100.865');
    offset-rotate: 0deg;
}

.car-list .car .gift:hover svg .star3-animate {
    opacity: 1;
    transform: translate(-229.285px, -496.26px);
    animation: 2s linear infinite both star3-animate;
    offset-path: path('M41.2164,113.143L41.2164,113.143C42.1547,47.8393,5.91947,16.0623,-29.8807,-16.107');
    offset-rotate: 0deg;
}

.car-list .car .car-set .pts-icon {
    width: 140px;
    top: 13px;
    left: 10px;
}

.car-list .car .car-set .info-icon {
    width: 40px;
    top: 13px;
    right: 20px;
    border-radius: 50%;
}

.car-list .car .car-set .info-icon a {
    position: relative;
    z-index: 10;
}

.gift_block {
    padding-bottom: 20px;
}

.gift_block .gift_block__title {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.gift_block .gift_block__title p {
    font-size: 26px;
    font-weight: 700;
    color: var(--tertiary-color);
    margin: 0;
    text-transform: uppercase;
    align-self: center;
}

.gift_block .gift_block__title .gift {
    width: 30px;
    margin-top: -5px;
}

.gift_block .gift_block__title .gift img {
    width: 30px;
}

.car-profits {
    padding-top: 20px;
}

.car-profits ul {
    list-style: none;
    padding-left: 0;
}

.car-profits ul li {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    align-content: normal;
    gap: 5px;
    font-size: 16px;
    line-height: 17px;
    padding: 4px 0;
    color: var(--tertiary-color);
}

.car-profits ul li img {
    width: 20px;
    height: 20px;
}

.description {
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto;
    padding-top: 6px;
}

.description p {
    width: 50%;
    box-sizing: border-box;
    margin: 0;
}

.pulse {
    animation: pulse-animation 3s infinite;
}

@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0px rgba(20, 71, 124, 0.7);
    }
    100% {
        box-shadow: 0 0 0 10px rgba(20, 71, 124, 0);
    }
}

.car-list .car .car-set .info-icon img {
    width: 40px;
    height: 40px;
}

.spec {
    background-color: #F5F5F5;
    padding: 30px 20px;
    margin-bottom: 10px;
    border-radius: 5px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.spec-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--tertiary-color);
    margin-bottom: 0;
    z-index: 2;
}

.spec-text {
    font-size: 13px;
    line-height: 18px;
    color: #35404E;
    font-weight: 500;
    margin-bottom: 0;
    z-index: 2;
    white-space: normal;
}

.spec-icon {
    position: absolute;
    top: 25%;
    left: 70%;
    transform: translate(-35%, -55%);
    height: 72px;
    width: 72px;
    z-index: 1;
}

.spec-icon svg path {
    fill: #e4e4e4;
}

body.modal-open #wrapper {
    filter: blur(3px);
}

.modal .close {
    position: absolute;
    right: 30px;
    top: 30px;
    cursor: pointer;
}

.modal-content {
    overflow: hidden;
}

.modal-content .modal-body {
    padding: 60px 50px;
    z-index: 1;
}

.modal-content .modal-body .btn {
    background: var(--secondary-color);
    border-radius: 30px;
    outline: none;
    color: var(--color-white);
    cursor: pointer;
    font-size: 0.95rem;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    padding: 12px 23px;
    margin-top: 5px;
    transition: all 0.2s ease 0s;
    width: auto;
    -moz-user-select: none;
    -o-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    position: relative;
    font-family: inherit;
    text-transform: uppercase;
}

.modal-content .modal-body .btn:hover {
    box-shadow: 0 4px 14px var(--secondary-color);
    cursor: pointer;
    transition: all 0.2s ease 0s;
}

.modal-content .modal-body input[type="text"],
.modal-content .modal-body input[type="phone"] {
    background: var(--color-white);
    border-bottom: 1px solid #d4d6d9;
    border-left: 0;
    border-top: 0;
    border-right: 0;
    border-radius: 0;
    box-shadow: none;
    color: #001d36;
    font-size: 1.05rem;
    outline: medium none;
    padding: 10px 0;
    transition: all 100ms cubic-bezier(0.42, 0, 0.58, 1) 0s;
    width: 100%;
    margin: 5px 0;
    font-family: inherit;
}

.modal-content .car-image img {
    position: absolute;
    bottom: 0px;
    z-index: 0;
    opacity: .3;
}

.modal-content .modal-body .modal-title {
    font-size: 30px;
    font-weight: 700;
    line-height: 33px;
    font-family: var(--changan-font);
    color: var(--tertiary-color);
    text-transform: uppercase;
}

.modal-content .modal-body .modal-subtitle {
    font-size: 14px;
    line-height: 19px;
    color: var(--tertiary-color);
    text-transform: uppercase;
}

.modal-content .modal-body .form-control {
    max-width: 100%;
}

.modal-content .modal-body .form-check .form-check-label {
    font-size: 13px;
    line-height: 17px;
    white-space: normal;
    word-wrap: break-word;
}

.modal-content .modal-body .disclaimer {
    font-size: 11px;
    line-height: 15px;
    color: #979797;
}

.checkbox_agree {
    flex-direction: column;
}

.checkbox_agree .form-check .form-check-label {
    font-size: 13px;
    line-height: 17px;
    white-space: normal;
    word-wrap: break-word;
}

.cta_container .checkbox_agree {
    padding-left: 12px;
}

.form-check-input[type="checkbox"] {
    border: 1px solid var(--primary-color);
    width: 15px;
    height: 15px;
    min-width: 15px;
    min-height: 15px;
}

.form-check-input:checked {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.form-check-input:focus {
    box-shadow: unset;
}

.tp-services__tran {
    position: absolute;
    right: 0;
    bottom: 0;
}

.tp-services__tran::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    background: var(--color-white);
    width: 100%;
    height: 100%;
    opacity: 0.9;
}

.tp-services__shap {
    position: absolute;
    left: 202px;
    bottom: 227px;
    animation: moving 9s linear infinite;
}

.services-section-title {
    padding-bottom: 50px;
}

.tp-section__title {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 10px;
}

.tp-services__item {
    position: relative;
    overflow: hidden;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 2px 20px 0px rgba(35, 35, 49, 0.06);
    padding: 40px 40px 37px 40px;
    transition: 0.4s;
    border-radius: 5px;
    margin-bottom: 30px;
}

.tp-services__hover-img {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s;
    width: 100%;
    height: 100%;
}

.tp-services__item:hover .tp-services__hover-img {
    opacity: 1;
    visibility: visible;
}

.tp-services__hover-img img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.tp-services__hover-img::before {
    position: absolute;
    top: 0;
    left: 0;
    background: var(--tertiary-color);
    width: 100%;
    height: 100%;
    content: "";
    opacity: 0.97;
    transition: 0.3s;
}

.tp-services__wrap {
    display: flex;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

.tp-services__icon {
    float: left;
    margin-right: 30px;
    flex: 0 0 auto;
    font-weight: bold;
    transition: 0.3s;
}

.tp-services__icon svg {
    width: 30px;
}

.tp-services__icon svg path {
    fill: var(--secondary-color);
}

.tp-services__item:hover .tp-services__icon svg path {
    fill: var(--color-white);
}

.tp-services__title {
    font-size: 18px;
    font-weight: 700;
    color: #232331;
    transition: 0.3s;
    padding-bottom: 15px;
}

.tp-services__item:hover .tp-services__content h3 {
    color: var(--color-white);
}

.services-area .row .col-12:nth-child(2) .tp-services__item .tp-services__number-count {
    left: -11px;
}

.services-area .row .col-12:nth-child(3) .tp-services__item .tp-services__number-count {
    left: -13px;
}

.tp-services__content {
    white-space: initial;
}

.tp-services__content p {
    font-size: 14px;
    font-weight: 500;
    color: #767676;
    line-height: 24px;
    margin: 0;
}

.tp-services__item:hover .tp-services__content p {
    color: var(--color-white);
    transition: 0.3s;
}

.tp-services__number-count {
    font-size: 42px;
    color: #ebebeb;
    font-weight: 700;
    position: absolute;
    left: -15px;
    bottom: 20px;
    transform: rotate(-90deg);
    transition: 0.3s;
}

.tp-services__item:hover .tp-services__number-count {
    color: var(--secondary-color);
    transition: 0.3s;
}

.cta_container .main_form {
    background: #fff url(/include/images/form.png) no-repeat;
    background-size: contain !important;
    background-position: right bottom;
    padding: 40px;
    border: 2px solid #d4d6d9;
    border-radius: 5px;
}

.cta_container h2 {
    position: relative;
    margin-bottom: 40px;
    font-weight: 700;
    font-size: 1.8rem;
    color: #001d36;
    margin: 0.9rem 0 0.5rem;
    margin-bottom: 0.5rem;
}

.cta_container .main_form .form_field {
    width: 45%;
    float: left;
    margin-right: 2%;
}

.cta_container input[type="text"] {
    background: var(--color-white);
    border-bottom: 1px solid #d4d6d9;
    border-left: 0;
    border-top: 0;
    border-right: 0;
    border-radius: 0;
    box-shadow: none;
    color: #001d36;
    font-size: 1.05rem;
    outline: medium none;
    padding: 10px 15px;
    transition: all 100ms cubic-bezier(0.42, 0, 0.58, 1) 0s;
    width: 100%;
    margin: 5px 0;
    font-family: inherit;
}

.cta_container .clear {
    clear: both;
    height: 0px;
    overflow: hidden;
    display: block;
}

.cta_container .btn,
.callback .btn {
    background: var(--tertiary-color);
    border: 2px solid var(--tertiary-color);
    border-radius: 30px;
    outline: none;
    color: var(--color-white);
    cursor: pointer;
    font-size: 0.95rem;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    padding: 12px 23px;
    transition: all 0.2s ease 0s;
    width: auto;
    -moz-user-select: none;
    -o-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    position: relative;
    font-family: inherit;
    text-transform: uppercase;
}

.callback .btn a {
    color: var(--color-white);
}

.cta_container .btn:hover,
.callback .btn:hover {
    background: var(--color-white);
    color: var(--tertiary-color);
}

.callback .btn:hover a {
    color: var(--tertiary-color);
}

.cta_container .air.p50 {
    height: 50px;
}

.cta_container .air {
    background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
    display: block;
    width: 100%;
}

.cta_container .descr {
    line-height: 22px;
}

section.footer-map {
    padding: 45px 0 0 0;
}

#contacts .mobile_contact__block {
    display: flex;
    flex-direction: column;
}

#contacts .mobile_contact__block .company_name__block h2 {
    font-size: 25px;
    font-weight: 700;
    color: #323e48;
    margin: 0;
}

#contacts .mobile_contact__block .company_name__block p {
    font-size: 14px;
    color: #323e48;
    margin: 0;
}

#contacts .mobile_contact__block .company__block {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

#contacts .mobile_contact__block .company__block .contacts__block {
    font-size: 15px;
    color: #323e48;
}

#contacts .mobile_contact__block .company__block .contacts__block a {
    color: #323e48;
}

#contacts .mobile_contact__block .company__block .contacts__block .social_icons {
    display: flex;
    flex-direction: row;
}

#contacts .mobile_contact__block .company__block .contacts__block svg {
    height: 15px;
}

#map {
    height: 400px;
    border-top: 1px solid #cccccc;
}

.map_form {
    position: relative;
    line-height: 1.3;
    font-size: 1.1rem;
}

.map_form h2 {
    font-size: 1.5rem;
    font-weight: 700;
    white-space: normal;
}

.map_form label {
    font-size: 1rem;
    font-weight: 700;
}

.map_form .bg {
    transition: all 0.3s ease-in;
    opacity: 1;
    visibility: visible;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    background: rgba(96, 96, 96, 0.15);
    z-index: 1;
}

.map_form:hover .bg {
    visibility: hidden;
    opacity: 0;
}

.map_form .phone_img {
    margin: 5px 0;
}

.map_form .phone_img img {
    margin-right: 5px;
    display: inline-block;
}

.map_form .form_container {
    position: absolute;
    right: 80px;
    z-index: 99;
    height: 400px;
}

.map_form .form_container .info {
    font-size: 1.05rem;
}

.map_form .form_container .info>div {
    margin: 0 40px;
    padding: 20px;
    border-bottom: 1px solid #e6e6e6;
}

.map_form .form {
    border: var(--tertiary-color) 1px solid;
    border-radius: 5px;
    background-color: var(--color-white);
    padding: 40px;
    margin: 20px 0;
    width: 400px;
    color: var(--tertiary-color);
}

.map_form .form p {
    padding: 3px 0;
    color: var(--tertiary-color);
}

.map_form .phone_container a,
.map_form .phone_container a:hover,
.map_form .phone_container a:focus {
    color: var(--tertiary-color);
}

.map_form .form strong {
    padding: 2px 0;
}

.map_form .form .social_icons {
    display: flex;
    flex-direction: row;
    padding-bottom: 20px;
}

.map_form .form .social_icons svg {
    height: 20px;
}

.map_form [class*="ymaps-2-1"][class*="-ground-pane"] {
    filter: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/></filter></svg>#grayscale");
    /* Firefox 3.5+ */
    -webkit-filter: grayscale(100%);
    /* Chrome 19+ & Safari 6+ */
}

.map_form:hover [class*="ymaps-2-1"][class*="-ground-pane"] {
    filter: none;
    -webkit-filter: none;
}

.map_form [class*="placemark-overlay"] ymaps ymaps {
    -webkit-animation: marker-animation 1s infinite;
    animation: marker-animation 1s infinite;
}

[class*="ymaps-2"][class*="-copyright"],
[class*="ymaps-2"][class*="-promo"] {
    display: none;
}

@-webkit-keyframes marker-animation {
    0% {
        top: -105px;
    }

    50% {
        top: -110px;
    }

    100% {
        top: -105px;
    }
}

@keyframes \#fcb73eff_o {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 1;
    }
}

@keyframes star1-animate {
    0% {
        offset-distance: 0%;
        animation-timing-function: cubic-bezier(0.42, 0, 1, 1);
    }

    100% {
        offset-distance: 100%;
    }
}

@keyframes star2-animate {
    0% {
        offset-distance: 0%;
    }

    15% {
        offset-distance: 0%;
        animation-timing-function: cubic-bezier(0.42, 0, 1, 1);
    }

    100% {
        offset-distance: 100%;
    }
}

@keyframes star3-animate {
    0% {
        offset-distance: 0%;
    }

    25% {
        offset-distance: 0%;
        animation-timing-function: cubic-bezier(0.42, 0, 1, 1);
    }

    100% {
        offset-distance: 100%;
    }
}

@keyframes top-box-animate {
    0% {
        transform: translate(586.981014px, 701.128912px) rotate(-23.5deg) translate(-583.053519px, -554.648772px);
    }

    28.8% {
        transform: translate(586.981014px, 662.978912px) rotate(-14.476deg) translate(-583.053519px, -554.648772px);
    }

    75% {
        transform: translate(590.727155px, 636.337883px) rotate(0deg) translate(-583.053519px, -554.648772px);
    }

    90% {
        transform: translate(591.943435px, 627.688198px) rotate(-7.05deg) translate(-583.053519px, -554.648772px);
    }

    100% {
        transform: translate(592.829513px, 648.67157px) rotate(-11.75deg) translate(-583.053519px, -554.648772px);
    }
}

.btn-card {
    pointer-events: auto;
    cursor: pointer;
    background: var(--color-white);
    border: 1px solid var(--secondary-color);
    padding: 9px 30px;
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    position: relative;
    display: inline-block;
    border-radius: 30px;
}

.btn-card.show-configs {
    background: var(--color-white);
    border: 1px solid var(--tertiary-color);
    text-transform: uppercase;
}

.btn-card.dark {
    background: var(--secondary-color);
}

.btn-card::before,
.btn-card::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.btn-card--anim {
    overflow: hidden;
    font-weight: 700;
    font-size: 14px;
    color: var(--secondary-color);
}

.btn-card--anim.show-configs {
    overflow: hidden;
    font-weight: 700;
    font-size: 14px;
    color: var(--tertiary-color);
}

.btn-card--anim:hover,
.btn-card--anim.dark:hover {
    color: var(--secondary-color);
}

.btn-card--anim.show-configs:hover {
    border: 1px solid var(--secondary-color);
    color: var(--secondary-color);
}

.btn-card--anim.dark {
    color: var(--color-white);
}

.btn-card--anim span {
    display: block;
    position: relative;
    margin-top: 1px;
    z-index: 1;
    text-transform: uppercase;
}

.btn-card--anim>span {
    overflow: hidden;
    /*mix-blend-mode: difference;*/
}

.btn-card--anim:hover>span>span {
    animation: MoveRightInitial 0.1s forwards, MoveRightEnd 0.3s forwards 0.2s;
}

@keyframes MoveRightInitial {
    to {
        transform: translate3d(105%, 0, 0);
    }
}

@keyframes MoveRightEnd {
    from {
        transform: translate3d(-100%, 0, 0);
    }

    to {
        transform: translate3d(0, 0, 0);
    }
}

.btn-card--anim::before,
.btn-card--anim::after {
    content: '';
    background: #f5f5f5;
}

.btn-card--anim.show-configs::before,
.btn-card--anim.show-configs::after {
    content: '';
    background: unset;
}

.btn-card--anim::before {
    width: 135%;
    -webkit-clip-path: polygon(75% 0%, 100% 50%, 75% 100%, 0% 100%, 0% 0%);
    clip-path: polygon(75% 0%, 100% 50%, 75% 100%, 0% 100%, 0% 0%);
    transform: translate3d(-100%, 0, 0);
}

.btn-card--anim:hover::before {
    transform: translate3d(0, 0, 0);
    transition: transform 0.3s cubic-bezier(0.7, 0, 0.2, 1);
}

.btn-card--anim::after {
    width: 105%;
    transform: translate3d(100%, 0, 0);
    transition: transform 0.3s cubic-bezier(0.7, 0, 0.2, 1);
}

.btn-card--anim:hover::after {
    transform: translate3d(0, 0, 0);
    transition: transform 0.01s 0.3s cubic-bezier(0.7, 0, 0.2, 1);
}

.promo-counter {
    color: var(--tertiary-color);
}

.promo-counter .h1 {
    font-family: "changan", Helvetica, Arial, sans-serif;
    font-size: 33px;
    font-weight: 700;
    line-height: 1.2 !important;
}

.promo-counter .profit {
    color: var(--secondary-color);
}

.promo-counter p.mb-0 {
    line-height: 19px;
}

.promo-counter input[type="phone"] {
    background: var(--color-white);
    border-bottom: 1px solid #d4d6d9;
    border-left: 0;
    border-top: 0;
    border-right: 0;
    border-radius: 0;
    box-shadow: none;
    color: #001d36;
    font-size: 1.05rem;
    outline: medium none;
    padding: 10px 15px;
    transition: all 100ms cubic-bezier(0.42, 0, 0.58, 1) 0s;
    width: 100%;
    margin: 5px 0;
    font-family: inherit;
    max-width: 210px;
}

.promo-counter .btn {
    background: var(--secondary-color);
    border-radius: 30px;
    outline: none;
    color: var(--color-white);
    cursor: pointer;
    font-size: 0.95rem;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    padding: 12px 23px;
    margin-top: 5px;
    transition: all 0.2s ease 0s;
    width: auto;
    -moz-user-select: none;
    -o-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    position: relative;
    font-family: inherit;
    text-transform: uppercase;
}

.promo-counter button:before {
    content: "";
    display: block;
    position: absolute;
    background: rgba(255, 255, 255, 0.5);
    width: 60px;
    height: 100%;
    left: 0;
    top: 0;
    opacity: 0.5;
    filter: blur(30px);
    transform: translateX(-100px) skewX(-15deg);
}

.promo-counter button:after {
    content: "";
    display: block;
    position: absolute;
    background: rgba(255, 255, 255, 0.2);
    width: 30px;
    height: 100%;
    left: 30px;
    top: 0;
    opacity: 0;
    filter: blur(5px);
    transform: translateX(-100px) skewX(-15deg);
}

@keyframes pulsating-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(var(--secondary-color-rgb), 0.7);
    }

    50% {
        box-shadow: 0 0 20px 10px rgba(var(--secondary-color-rgb), 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(var(--secondary-color-rgb), 0);
    }
}

.promo-counter button.effect {
    cursor: pointer;
    animation: hover-effect 2s infinite, pulsating-glow 2s infinite;
    animation-delay: 1s;
}

.promo-counter button:hover {
    box-shadow: 0 4px 14px var(--secondary-color);
    cursor: pointer;
    animation: none;
}

.btn-primary.disabled,
.btn-primary:disabled {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.modal-content .modal-body.agree .modal-title {
    font-size: 21px;
    line-height: 25px;
}

.modal-content .modal-body.agree p {
    font-size: 12px;
    line-height: 18px;
    color: #000;
    margin-bottom: 6px;
}

.modal-content .modal-body.agree strong {
    font-family: var(--changan-font);
}

.modal-content .modal-body.agree a {
    color: var(--secondary-color);
}

.modal-content .modal-body.agree ul li, .modal-content .modal-body.agree ol li {
    font-size: 12px;
    line-height: 18px;
    color: #000;
}

.dashed {
    border-bottom: 1px dashed var(--quaternary-color);
    display: inline;
}

.dashed.black {
    border-bottom: 1px dashed #313c46;
    color: #313c46;
    font-size: 13px;
}

.progress-wrap {
    position: fixed;
    right: 30px;
    bottom: 30px;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.1);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.progress-wrap::after {
    position: absolute;
    content: "";
    background-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 501.2 500.2' style='enable-background:new 0 0 501.2 500.2;' xml:space='preserve'%3E%3Cpath fill='%23999999' d='M12.6,220.2l208-208c4-3.9,8.8-7,14-9c10.2-4.2,21.8-4.2,32,0c5.2,2,10,5.1,14,9l208,208c16.6,16.3,16.8,42.9,0.5,59.5c-16.3,16.6-42.9,16.8-59.5,0.5l-137-138l0,316c0,23.2-18.8,42-42,42c-23.2,0-42-18.8-42-42l0-316l-137,138c-16.4,16.1-42.6,16.1-59,0C-4,263.9-4.2,237.3,12,220.8C12.2,220.6,12.4,220.4,12.6,220.2z'/%3E%3C/svg%3E");
    text-align: center;
    left: 15px;
    top: 15px;
    height: 15px;
    width: 15px;
    cursor: pointer;
    display: block;
    z-index: 1;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.progress-wrap:hover::after {
    opacity: 0;
}

.progress-wrap::before {
    position: absolute;
    content: "";
    background-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 501.2 500.2' style='enable-background:new 0 0 501.2 500.2;' xml:space='preserve'%3E%3Cpath fill='%23323E48' d='M12.6,220.2l208-208c4-3.9,8.8-7,14-9c10.2-4.2,21.8-4.2,32,0c5.2,2,10,5.1,14,9l208,208c16.6,16.3,16.8,42.9,0.5,59.5c-16.3,16.6-42.9,16.8-59.5,0.5l-137-138l0,316c0,23.2-18.8,42-42,42c-23.2,0-42-18.8-42-42l0-316l-137,138c-16.4,16.1-42.6,16.1-59,0C-4,263.9-4.2,237.3,12,220.8C12.2,220.6,12.4,220.4,12.6,220.2z'/%3E%3C/svg%3E");
    text-align: center;
    opacity: 0;
    left: 15px;
    top: 15px;
    height: 15px;
    width: 15px;
    cursor: pointer;
    display: block;
    z-index: 2;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.progress-wrap:hover::before {
    opacity: 1;
}

.progress-wrap svg path {
    fill: none;
}

.progress-wrap svg.progress-circle path {
    stroke: var(--tertiary-color);
    stroke-width: 4;
    box-sizing: border-box;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.modal .modal-dialog .modal-content.gift form .form_content {
    display: flex;
    gap: 20px;
}

.modal .modal-dialog .modal-content.gift form input[type="phone"] {
    background: var(--color-white);
    border-bottom: 1px solid #d4d6d9;
    border-left: 0;
    border-top: 0;
    border-right: 0;
    border-radius: 0;
    box-shadow: none;
    color: #001d36;
    font-size: 1.05rem;
    outline: medium none;
    padding: 10px 15px;
    transition: all 100ms cubic-bezier(0.42, 0, 0.58, 1) 0s;
    width: 100%;
    margin: 5px 0;
    font-family: inherit;
    max-width: 210px;
}

.modal .modal-dialog .modal-content.gift form .btn {
    background: var(--secondary-color);
    border-radius: 30px;
    outline: none;
    color: var(--color-white);
    cursor: pointer;
    font-size: 0.95rem;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    padding: 12px 23px;
    margin-top: 5px;
    transition: all 0.2s ease 0s;
    width: auto;
    -moz-user-select: none;
    -o-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    position: relative;
    font-family: inherit;
    text-transform: uppercase;
}

.modal .modal-dialog .modal-content.gift form .btn:active {
    box-shadow: 0 4px 14px var(--secondary-color);
    transition: all 0.2s ease 0s;
}

.modal .modal-dialog .modal-content.gift form .dashed {
    color: var(--primary-color);
    border-bottom: 1px dashed var(--primary-color);
    display: inline;
}

button.show-configs {
    padding: 6px 10px 4px 10px;
    cursor: pointer;
}

.configurations {
    margin-top: 15px;
    padding: 0 10px;
    background: #f5f5f5;
    border-radius: 5px;
}

.configurations .configurator__list {
}

.configurations .configurator__item {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: normal;
    align-content: normal;
    border-bottom: 2px solid #e4e4e4;
}

.configurations .configurator__item .configurator__img-block {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    align-content: stretch;
    width: 300px;
}

.configurations .configurator__item .configurator__img-block img {
    width: 200px;
}   

.configurations .configurator__item .configurator__info-block {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: normal;
    align-content: normal;
    color: #3F4254;
}

.configurations .configurator__item .configurator__info-block .configurator__header-block {
    display: flex;
    flex-direction: column;
}

.configurations .configurator__item .configurator__info-block .configurator__header-block .configurator__model_name__block {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: normal;
    align-content: normal;
}

.configurations .configurator__item .configurator__info-block .configurator__header-block .configurator__model_name {
    font-size: 20px;
    font-weight: 700;
}

.configurations .configurator__item .configurator__info-block .configurator__header-block .configurator__model_name__block .configurator_photos {
    display: none;
}

.configurator__model_color {
    font-weight: 500;
    font-size: 13px;
    line-height: 17px;
    padding: 2px 7px;
    border-radius: 5px;
}

.configurations .configurator__item .configurator__info-block .configurator__header-block .configurator__value {
    font-size: 13px;
}

.configurator__model_price_block {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: normal;
    align-content: normal;
    color: #3F4254;
}

.configurator__model_price_block p {
    margin: 0;
}

.configurator__model_price_block div {
    text-align: center;
    line-height: 21px;
}

.configurator__right-block {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: normal;
    align-content: normal;
}

.configurator__right-block .configurator__btn-block {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: normal;
    align-content: normal;
    gap: 15px;
    padding-right: 15px;
}

.configurator__model_price_block .configurator__model_price {
    font-size: 21px;
    font-weight: 700;
}

.configurator__model_available {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
}

.configurator__model_available_block {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 6px;
}

.configurator__model_available .configurator_photos {
    display: none;
}

.configurator__model_available .configurator__model_available__icon {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    align-content: stretch;
}

.configurator__model_available .configurator__model_available__status a {
    cursor: pointer;
    color: #0cc32b;
}

.configurator__model_available img {
    height: 16px;
    border-radius: 50%;
    animation: pulse-effect 2s infinite;
}

@keyframes pulse-effect {
    0% {
        transform: scale(0.9);
        box-shadow: 0 0 0 0 rgba(15, 195, 43, 1);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 5px rgba(15, 195, 43, 0);
    }

    100% {
        transform: scale(0.9);
        box-shadow: 0 0 0 0 rgba(15, 195, 43, 0);
    }
}

.configurations .configurator__item .configurator__img-block [class^="configurator__img-block__bg_"] {
    position: relative;
    border-radius: 5px;
    padding: 30px;
    overflow: hidden;
    margin: 20px;
}

.configurations .configurator__item:hover .configurator__img-block [class^="configurator__img-block__bg_"] {
    cursor: pointer;
}

.configurations .configurator__item .configurator__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
    color: #fff;
    font-size: 55px;
}

.configurations .configurator__item .configurator__overlay i {
    font-size: 48px;
}

.configurations .configurator__item .configurator__overlay p {
    font-size: 18px;
    margin-bottom: 0;
}

.configurations .configurator__item:hover .configurator__overlay {
    opacity: 1;
}

.configurations .configurator__item .configurator__img-block [class^="configurator__img-block__bg_"] .color_label_block {
    position: absolute;
    left: 0rem;
    bottom: -0.11rem;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.configurations .configurator__item:hover .configurator__img-block [class^="configurator__img-block__bg_"] .color_label_block {
    opacity: 0;
}

.configurator__item:hover [class^="configurator__img-block__bg_"]:after {
    content: "";
    top: 0;
    transform: translateX(50%);
    width: 100%;
    height: 220px;
    position: absolute;
    z-index: 1;
    animation: slide 1s;
    background: -moz-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(128, 186, 232, 0) 99%, rgba(125, 185, 232, 0) 100%);
    background: -webkit-gradient(
        linear,
        left top,
        right top,
        color-stop(0%, rgba(255, 255, 255, 0)),
        color-stop(50%, rgba(255, 255, 255, 0.8)),
        color-stop(99%, rgba(128, 186, 232, 0)),
        color-stop(100%, rgba(125, 185, 232, 0))
    );
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(128, 186, 232, 0) 99%, rgba(125, 185, 232, 0) 100%);
    background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(128, 186, 232, 0) 99%, rgba(125, 185, 232, 0) 100%);
    background: -ms-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(128, 186, 232, 0) 99%, rgba(125, 185, 232, 0) 100%);
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(128, 186, 232, 0) 99%, rgba(125, 185, 232, 0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#007db9e8',GradientType=1 );
}

@keyframes slide {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.complectations .nav {
    gap: 20px;
}

.complectations .nav-tabs {
    border-bottom: 0;
}

.complectations .nav-tabs .nav-link {
    color: var(--tertiary-color);
    border: 1px solid var(--tertiary-color);
    border-radius: 5px;
    background-color: unset;
}

.complectations .nav-tabs .nav-item.show .nav-link,
.complectations .nav-tabs .nav-link.active {
    color: var(--color-white);
    border-radius: 5px;
    background-color: var(--tertiary-color);
}

.complectations .tab-content>.active {
    display: flex;
}

footer {
    z-index: 998;
    position: relative;
    color: #000000;
    font-size: 15px;
}

footer strong {
    color: #878e9c;
}

footer .footer-info {
    background-color: #e5e5e5;
    font-size: 11px;
    line-height: 17px;
    padding: 8px 0;
    border-bottom: 1px solid #d1d1d1;
}

footer .footer-bottom {
    background-color: #e5e5e5;
    padding: 20px 0;
    font-size: 13px;
}

footer .footer-bottom a {
    color: #000000;
}
footer .dev-link {
    margin-bottom: 0;
}

footer .dev-link a {
    color: #878e9c;
}

footer .dev {
    width: 90px;
    margin-top: -3px;
}

.policy strong {
    font-weight: 700;
}

.policy ol {
    counter-reset: item;
    list-style: none;
    margin: 0;
    padding: 0;
}

.policy ol>li {
    position: relative;
    counter-increment: item;
    padding-left: 2.5em;
    margin: 0.5em 0;
}

.policy ol>li::before {
    content: counter(item) ".";
    position: absolute;
    left: 0;
    width: 2em;
    text-align: right;
}

.policy ol ol {
    counter-reset: item;
    margin: 0;
    padding: 0;
}

.policy ol ol>li {
    position: relative;
    counter-increment: item;
    padding-left: 3em;
    margin: 0.4em 0;
}

.policy ol ol>li::before {
    content: counters(item, ".") ".";
    position: absolute;
    left: 0;
    width: 2.5em;
    text-align: right;
}

.policy ol ol ol {
    counter-reset: item;
    margin: 0;
    padding: 0;
}

.policy ol ol ol>li {
    position: relative;
    counter-increment: item;
    padding-left: 3.5em;
    margin: 0.3em 0;
}

.policy ol ol ol>li::before {
    content: counters(item, ".") ".";
    position: absolute;
    left: 0;
    width: 3em;
    text-align: right;
}

.policy ol ol ol ol {
    counter-reset: item;
    margin: 0;
    padding: 0;
}

.policy ol ol ol ol>li {
    position: relative;
    counter-increment: item;
    padding-left: 4em;
    margin: 0.2em 0;
}

.policy ol ol ol ol>li::before {
    content: counters(item, ".") ".";
    position: absolute;
    left: 0;
    width: 3.5em;
    text-align: right;
}

.policy ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.policy ul li {
    position: relative;
    padding-left: 2.5em;
    margin: 0.3em 0;
}

.policy ul li::before {
    content: "—";
    position: absolute;
    left: 10px;
}

.small, small {
    line-height: 1em;
}
