/* Reset and base styles  */
* {
    padding: 0px;
    margin: 0px;
    border: none;
}

html,
body {
    scrollbar-gutter: stable;
}

html {
    scroll-behavior: smooth;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Links */
a,
a:link,
a:visited {
    text-decoration: none;
    color: inherit;
}

a:hover {
    text-decoration: none;
}

/* Common */
aside,
nav,
footer,
header,
section,
main {
    display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    font-size: inherit;
    font-weight: inherit;
}

ul,
ul li {
    list-style: none;
}

img {
    vertical-align: top;
}

img,
svg {
    max-width: 100%;
    height: auto;
}

address {
    font-style: normal;
}

/* Form */
input,
textarea,
button,
select {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    background-color: transparent;
}

input::-ms-clear {
    display: none;
}

button,
input[type=submit] {
    display: inline-block;
    box-shadow: none;
    background-color: transparent;
    background: none;
    cursor: pointer;
}

input:focus,
input:active,
button:focus,
button:active {
    outline: none;
}

button::-moz-focus-inner {
    padding: 0;
    border: 0;
}

label {
    cursor: pointer;
}

legend {
    display: block;
}

body {
    background: var(--belyy);
    font-family: var(--font-family);
}

.container {
    max-width: var(--width);
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

@media screen and (max-width: 1200px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
}

.row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.none {
    display: none !important;
}

a {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

a span {
    color: var(--black);
    font-family: var(--font-semibold);
    font-size: 20px;
    line-height: 22px;
}

.btn {
    padding: 14px 30px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn span {
    font-family: var(--font-semibold);
    font-size: 16px;
    line-height: 21.79px;
}

.btn.blue {
    background-color: var(--blue);
    transition: background-color .3s linear;
}

.btn.blue span {
    color: var(--white);
}

.btn.blue:hover {
    background-color: var(--black);
}

.btn.white {
    background-color: var(--white);
    transition: background-color .3s linear;
}

.btn.white span {
    color: var(--black);
    transition: color .3s linear;
}

.btn.white:hover {
    background-color: var(--blue);
}

.btn.white:hover span {
    color: var(--white);
}

.btn.white-blue {
    background-color: var(--white);
    border: 1px solid var(--blue);
}

.btn.white-blue span {
    color: var(--blue);
}

.btn.white-black {
    background-color: var(--white);
    border: 1px solid var(--black);
}

.btn.white-black span {
    color: var(--black);
}

.btn.white-white {
    background-color: transparent;
    border: 1px solid var(--white);
    transition: background-color .3s ease, border-color .3s ease;
}

.btn.white-black {
    transition: border-color .3s ease;
}

.btn.white-black:hover {
    border-color: var(--blue);
}

.btn.white-black span {
    transition: color .3s ease;
}

.btn.white-black .icon-credit-black {
    transition: stroke .3s ease;
}

.btn.white-black:hover .icon-credit-black {
    stroke: var(--blue);
}

.in-stock-container .title {
    text-transform: uppercase;
}

.form-input {
    transition: border-color .3s ease;
}

.form-input:hover,
.form-input:focus,
.form-input:active {
    border-color: var(--blue);
}

.header__top .items .item span {
    transition: color .3s ease;
}

.header__top .items .item:hover span {
    color: var(--black);
}

.header__top .items .item svg {
    transition: stroke .3s ease;
}

.header__top .items .item:hover svg {
    stroke: var(--black);
}


.btn.white-black:hover span {
    color: var(--blue);
}

.btn.white-white:hover {
    background-color: #3999FF;
    border-color: #3999FF;
}

.btn.white-white span {
    color: var(--white);
}

@media screen and (min-width: 1024px) {
    .mobile-hidden {
        display: flex;
    }
}

@media screen and (max-width: 1024px) {
    .mobile-hidden {
        display: none !important;
    }
}

@media screen and (max-width: 1024px) {
    .desktop-hidden {
        display: flex;
    }
}

@media screen and (min-width: 1024px) {
    .desktop-hidden {
        display: none !important;
    }
}

:root {
    --font-bold: "OpenSansBold", sans-serif;
    --font-semibold: "OpenSansSemiBold", sans-serif;
    --font-regular: "OpenSansRegular", sans-serif;
    --width: 1296px;
    --white: #ffffff;
    --black: #000000;
    --gray: #637588;
    --gray-light: #E6E7E8;
    --gray-dark: #303C48;
    --blue: #002D96;
    --blue-dark: #092651;
}

.icon-logo {
    width: 185px;
    height: 20px;
    fill: none;
}

@media screen and (max-width: 800px) {
    .icon-logo {
        width: 91px;
        height: 11px;
    }
}

.icon-top {
    width: 20px;
    height: 20px;
    fill: none;
    stroke-width: 1.5;
    stroke: var(--white);
}

.icon-call-us {
    width: 20px;
    height: 20px;
    stroke-width: 2px;
    stroke: var(--blue);
    fill: none;
}

.icon-test-drive {
    width: 21px;
    height: 20px;
    stroke-width: 1px;
    stroke: var(--blue);
    fill: none;
    transition: stroke .3s ease;
}

.btn.white-blue:hover .icon-test-drive,
.btn.white-blue:hover .icon-credit {
    stroke: var(--white);
}

.btn.white-blue span,
.btn.white-blue span {
    transition: color .3s ease;
}

.btn.white-blue {
    transition: background-color .3s ease, border-color .3s ease;
}

.btn.white-blue:hover {
    background-color: #3999ff;
    border-color: #3999ff;
}

.btn.white-blue:hover span,
.btn.white-blue:hover span {
    color: var(--white);
}

.icon-call-order {
    width: 18px;
    height: 20px;
    fill: none;
    stroke: var(--white);
    stroke-width: 1.5px;
}

.icon-benefits {
    width: 34px;
    height: 34px;
    fill: none;
    stroke-width: 1.5px;
    stroke: var(--blue);
}

.icon-arrow {
    width: 23px;
    height: 22px;
    fill: none;
    stroke: var(--black);
    stroke-width: 1.5px;
}

.icon-arrow-white {
    width: 23px;
    height: 22px;
    fill: none;
    stroke: var(--white);
    stroke-width: 1.5px;
}

.icon-credit,
.icon-arrow-blue {
    width: 23px;
    height: 22px;
    fill: none;
    stroke: var(--blue);
    stroke-width: 1.5px;
}

.icon-credit-black {
    stroke: var(--black);
    stroke-width: 1.5px;
    width: 23px;
    height: 22px;
    fill: none;
}

.icon-test {
    width: 20px;
    height: 20px;
    fill: none;
    stroke-width: 1.5;
    stroke: var(--blue);
}

.icon-sale {
    width: 23px;
    height: 22px;
    fill: none;
}

.header__top {
    background-color: var(--gray);
    padding: 10px 0;
}

@media screen and (max-width: 1024px) {
    .header__top {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        flex-direction: column;
        background-color: var(--white);
    }

    .header__main .icon-call-us {
        width: 24px;
        height: 24px;
        stroke: var(--black);
    }

}

.header__top.open {
    display: flex;
    z-index: 99;
    width: 100%;
    height: 100%;
}

@media screen and (max-width: 1024px) {
    .header__top .row {
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
        max-width: 400px;
    }
}

.header__top .items {
    display: flex;
    gap: 40px;
}

@media screen and (max-width: 1024px) {
    .header__top .items {
        flex-direction: column;
        max-width: 345px;
        width: 100%;
        margin-top: 30px;
    }

    .header__top .items .item {
        width: 100%;
        justify-content: center;
    }

    .header__top .items .item span {
        font-weight: 600;
    }

    .header__top .items .item .icon-top {
        stroke: var(--black);
    }

}

.header__top .item {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 6px;
}

@media screen and (min-width: 1024px) {
    .header__top .item.mobile {
        display: none;
    }
}

@media screen and (max-width: 1024px) {
    .header__top .item.mobile {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
    }

    .header__top .item.mobile:first-child {
        margin-top: 20px;
    }
}

.header__top .item.mobile .title {
    font-family: var(--font-bold);
    font-size: 22px;
    line-height: 30.8px;
    color: var(--black);
}

.header__top .item.mobile .subtitle {
    font-family: var(--font-regular);
    font-size: 14px;
    line-height: 19.6px;
    color: var(--gray-dark);
}

.header__top .item span {
    font-family: var(--font-semibold);
    font-size: 16px;
    line-height: 1.2;
    color: var(--white);
    text-transform: none;
}

@media screen and (max-width: 1024px) {
    .header__top .item span {
        color: var(--black);
    }

    .header__top .item .btn span {
        color: var(--white);
    }

    .header__top .item .btn {
        max-width: 345px;
        width: 100%;
        justify-content: center;
    }

    .header__top .item.mobile:nth-child(4) {
        max-width: 345px;
        width: 100%;
    }
}

.header__main {
    background-color: var(--white);
    box-shadow: 0px 4px 34px 0px rgba(0, 0, 0, 0.1019607843);
    padding: 15px 0px;
    position: sticky;
    top: 0;
    z-index: 999;
}

.header__main-btns {
    display: flex;
    align-items: center;
    gap: 60px;
}

@media screen and (max-width: 800px) {
    .header__main-btns {
        gap: 20px;
    }
}

.header__main .logo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

@media screen and (max-width: 800px) {
    .header__main .logo {
        gap: 5px;
    }
}

.header__main .logo-separator {
    width: 1px;
    height: 20px;
    background-color: var(--gray);
}

.header__main .logo-text p {
    font-family: var(--font-bold);
    font-size: 22px;
    line-height: 24.2px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--black);
}

@media screen and (max-width: 800px) {
    .header__main .logo-text p {
        font-size: 12px;
        line-height: 13.2px;
    }
}

.header__main .logo-text span {
    font-family: var(--font-regular);
    color: var(--gray);
    font-size: 12px;
    line-height: 13.2px;
}

.burger {
    display: none;
    position: relative;
    z-index: 10;
    align-items: center;
    justify-content: flex-start;
    width: 24px;
    height: 18px;
}

.burger span {
    height: 2px;
    width: 70%;
    transform: scale(1);
    background-color: var(--black);
}

.burger::before,
.burger::after {
    content: "";
    position: absolute;
    height: 2px;
    width: 100%;
    background-color: var(--black);
    transition: all 0.3s ease 0s;
}

.burger::before {
    top: 0;
}

.burger::after {
    bottom: 0;
}

.burger.active span {
    transform: scale(0);
}

.burger.active::before {
    top: 50%;
    transform: rotate(-45deg) translate(0, -50%);
}

.burger.active::after {
    bottom: 50%;
    transform: rotate(45deg) translate(0, 50%);
}

@media (max-width: 1024px) {
    .burger {
        display: flex;
    }

    @keyframes burgerAnimation {
        from {
            opacity: 0;
        }

        to {
            opacity: 1;
        }
    }
}

.hero {
    max-width: 1920px;
    width: 100%;
    margin: auto;
    position: relative;
    height: 650px;
}

@media screen and (max-width: 800px) {
    .hero {
        height: auto;
        position: relative;
    }
}

.hero__background {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

/* @media screen and (max-width: 800px) { */
@media screen and (max-width: 1200px) {
    .hero__background {
        position: relative;
        height: auto;
    }
}

.hero__background img {
    width: 100%;
}

/* @media screen and (min-width: 800px) { */
@media screen and (min-width: 1200px) {
    .hero__background img {
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover;
    }
}

.hero__info {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
    position: relative;
}


@media screen and (max-width: 1200px) and (min-width:801px) {
    .hero__info {
        height: auto;
    }
}

@media screen and (max-width: 1200px) {

    .hero__info {
        position: static;
    }
}

.hero__info .title {
    margin-top: 40px;
    margin-left: auto;
    margin-right: auto;
    /* max-width: 570px; */
    width: 100%;
    font-family: var(--font-bold);
    font-weight: 700;
    font-size: 50px;
    line-height: 55px;
    text-align: center;
    text-align: center;
    color: var(--white);
    text-transform: uppercase;
}

.hero__info .title span {
    white-space: nowrap;
}

.hero__info .subtitle {
    margin-top: 10px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    font-family: var(--font-bold);
    font-weight: 500;
    font-size: 30px;
    line-height: 55px;
    text-align: center;
    text-align: center;
    color: var(--black);
    text-transform: uppercase;
}

@media screen and (max-width: 1200px) {
    .hero__info .title {
        color: var(--black);
        font-size: 28px;
        line-height: 30.8px;
        margin-top: 20px;
    }

    .hero__info .subtitle {
        color: var(--black);
        font-size: 20px;
        line-height: 30.8px;
        margin-top: 10px;
    }
}

@media (max-width: ){

}



.hero__info .offer {
    position: absolute;
    top: 160px;
    left: 50%;
    transform: translateX(-50%) rotate(-2deg);
    background-color: var(--blue);
    max-width: 415px;
    color: var(--white);
    border-radius: 10px;
    font-family: var(--font-bold);
    font-size: 24px;
    line-height: 28.8px;
    text-align: center;
    text-transform: uppercase;
    padding: 10px 20px;
    font-weight: 700;

}

@media screen and (max-width: 1200px) {
    .hero__info .offer {
        font-size: 14px;
        line-height: 16.8px;
        /* display: none; */
        top: 32px;
    }
}

@media screen and (max-width: 500px) {
    .hero__info .offer {
        padding: 6.5px 16.5px;
        width: 250px;
    }
}

@media screen and (max-width: 395px) {
    .hero__info .offer {
        padding: 5px;
    }
}

.hero__info ul {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 34px 14px 14px;
    border-radius: 20px;
    background-color: var(--blue);
    gap: 28px;
}

@media screen and (max-width: 1200px) and (min-width: 800px) {
    .hero__info ul {
        flex-wrap: wrap;
        /* flex-direction: column; */
        justify-content: center;
        align-items: flex-start;
        /* max-width: 500px; */
        margin-left: auto;
        margin-right: auto;
        gap: 15px;
        margin-bottom: 20px;
        margin-top: 20px;

    }

    .hero {
        height: auto;
    }

    .hero__info ul li .separator {
        display: none;
    }

}

@media screen and (max-width: 800px) {
    .hero__info ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        margin-top: 20px;
    }
}

.hero__info ul li {
    display: inline-flex;
    align-items: center;
    /* justify-content: space-between; */
    gap: 14px;
}

@media (min-width: 1310px){
    .hero__info ul li:first-child {
        width: 337px;
    }

    .hero__info ul li:nth-child(3) {
        width: 317px;
    }

    .hero__info ul li:last-child {
        width: 482px;
    }
}

@media (max-width: 1310px){
    .hero__info ul li:last-child {
        max-width: 350px;
    }

    .hero__info ul li:first-child span {
        max-width: 200px;
        width: 100%;
    }

    .hero__info ul li span {
        text-align: center;
    }
}

.hero__info ul li span {
    font-family: var(--font-bold);
    font-size: 20px;
    font-weight: 700;
    line-height: 22px;
    color: var(--white);
}

@media screen and (max-width: 800px) {
    .hero__info ul li span {
        font-size: 18px;
        line-height: 19.8px;
        text-align: left;
    }
}

.hero__info ul li span.separator {
    width: 1px;
    height: 20px;
    background-color: var(--white);
}

@media screen and (max-width: 800px) {
    .hero__info ul li span.separator {
        display: none;
    }
}

.hero__info ul li .round {
    position: relative;
    background-color: var(--white);
    max-width: 54px;
    width: 100%;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    flex: 1 0 auto;
}

.timer {
    max-width: 1920px;
    width: 100%;
    background-color: var(--gray-dark);
    margin: auto;
}

.discount__time {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1296px;
    margin: 0 auto;
    z-index: 5;
    position: relative;
    background-color: transparent;
}

@media screen and (max-width: 1150px) {
    .discount__time {
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
    }
}

@media screen and (min-width: 769px) {
    .discount__time {
        padding: 32px 0px;
    }
}

@media screen and (max-width: 769px) and (min-width: 410px) {
    .discount__time {
        padding: 24px 20px;
    }
}

@media screen and (max-width: 410px) {
    .discount__time {
        padding: 24px 15px;
    }
}

.discount__time-text {
    max-width: 270px;
}

@media screen and (max-width: 1150px) {
    .discount__time-text {
        margin: auto;
        max-width: 482px;
    }
}

.discount__time-text p {
    font-family: var(--font-bold), sans-serif;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
}

@media screen and (min-width: 411px) {
    .discount__time-text p {
        font-size: 30px;
        line-height: 33px;
    }
}

@media screen and (max-width: 480px) {
    .discount__time-text p {
        font-size: 26px;
    }
}

@media screen and (max-width: 1150px) {
    .discount__time-btn {
        margin: auto;
        max-width: 482px;
    }
}

.discount__time-container {
    display: flex;
    margin: auto;
    justify-content: space-between;
    align-items: center;
}

.discount__time-container-deadline {
    display: flex;
    gap: 10px;
    align-items: center;
}

@media screen and (max-width: 350px) {
    .discount__time-container-deadline {
        flex-direction: column;
    }
}

.discount__time-container-deadline .offer__timeline {
    position: absolute;
}

@media screen and (min-width: 551px) {
    .discount__time-container-deadline .offer__timeline {
        width: 100px;
        height: 100px;
    }
}

@media screen and (max-width: 550px) {
    .discount__time-container-deadline .offer__timeline {
        width: 70px;
        height: 70px;
    }
}

.discount__time-container-deadline .offer__timeline-line {
    position: absolute;
    border-radius: 50%;
    overflow: unset;
    border: 3px solid var(--gray);
}

@media screen and (min-width: 551px) {
    .discount__time-container-deadline .offer__timeline-line {
        width: 100px;
        height: 100px;
    }
}

@media screen and (max-width: 550px) {
    .discount__time-container-deadline .offer__timeline-line {
        width: 70px;
        height: 70px;
    }
}

.discount__time-container-deadline .offer__timeline-circle {
    fill: none;
    stroke-width: 4px;
    stroke: var(--white);
    stroke-dasharray: 314;
    stroke-dashoffset: 0;
    transition: all 0.6s ease;
}

.discount__time-container-deadline .separator {
    font-family: var(--bold-medium-family);
    font-size: 34px;
    line-height: 37.4px;
    text-align: center;
    color: #fff;
}

@media screen and (max-width: 410px) {
    .discount__time-container-deadline .separator {
        display: none;
    }
}

.discount__time-container-deadline .time {
    display: inline-flex;
    flex-direction: column;
    position: relative;
    justify-content: center;
    border-radius: 50%;
}

@media screen and (min-width: 551px) {
    .discount__time-container-deadline .time {
        width: 100px;
        height: 100px;
    }
}

@media screen and (max-width: 550px) {
    .discount__time-container-deadline .time {
        width: 70px;
        height: 70px;
        justify-content: start;
    }
}

.discount__time-container-deadline .time .count {
    font-family: var(--font-bold);
    font-weight: 800;
    text-align: center;
    color: #fff;
    position: relative;
    z-index: 1;
}

@media screen and (min-width: 551px) {
    .discount__time-container-deadline .time .count {
        font-size: 34px;
        line-height: 46.3px;
    }
}

@media screen and (max-width: 550px) {
    .discount__time-container-deadline .time .count {
        font-size: 24px;
        padding-top: 7px;
    }
}

.discount__time-container-deadline .time .time-of {
    font-family: var(--font-regular);
    line-height: 100%;
    text-align: center;
    text-transform: uppercase;
    color: var(--white);
}

@media screen and (min-width: 551px) {
    .discount__time-container-deadline .time .time-of {
        font-size: 12px;
        line-height: 13.2px;
    }
}

@media screen and (max-width: 550px) {
    .discount__time-container-deadline .time .time-of {
        font-size: 12px;
    }
}

















/*# sourceMappingURL=first_screen.css.map */