@font-face {
    font-family: 'Inter';
    src: local('Inter Black'), local('Inter-Black'),
    url('../fonts/Inter/Inter-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'Inter';
    src: local('Inter ExtraLight'), local('Inter-ExtraLight'),
    url('../fonts/Inter/Inter-ExtraLight.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: 'Inter';
    src: local('Inter Bold'), local('Inter-Bold'),
    url('../fonts/Inter/Inter-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Inter';
    src: local('Inter SemiBold'), local('Inter-SemiBold'),
    url('../fonts/Inter/Inter-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Inter';
    src: local('Inter Thin'), local('Inter-Thin'),
    url('../fonts/Inter/Inter-Thin.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
}

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

@font-face {
    font-family: 'Inter';
    src: local('Inter Light'), local('Inter-Light'),
    url('../fonts/Inter/Inter-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

/* roboto-300 - latin_cyrillic */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 300;
    src: url('../fonts/Roboto/roboto-v30-latin_cyrillic-300.eot'); /* IE9 Compat Modes */
    src: local(''),
    url('../fonts/Roboto/roboto-v30-latin_cyrillic-300.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('../fonts/Roboto/roboto-v30-latin_cyrillic-300.woff2') format('woff2'), /* Super Modern Browsers */ url('../fonts/Roboto/roboto-v30-latin_cyrillic-300.woff') format('woff'), /* Modern Browsers */ url('../fonts/Roboto/roboto-v30-latin_cyrillic-300.ttf') format('truetype'), /* Safari, Android, iOS */ url('../fonts/Roboto/roboto-v30-latin_cyrillic-300.svg#Roboto') format('svg'); /* Legacy iOS */
}

/* roboto-700 - latin_cyrillic */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/Roboto/roboto-v30-latin_cyrillic-700.eot'); /* IE9 Compat Modes */
    src: local(''),
    url('../fonts/Roboto/roboto-v30-latin_cyrillic-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('../fonts/Roboto/roboto-v30-latin_cyrillic-700.woff2') format('woff2'), /* Super Modern Browsers */ url('../fonts/Roboto/roboto-v30-latin_cyrillic-700.woff') format('woff'), /* Modern Browsers */ url('../fonts/Roboto/roboto-v30-latin_cyrillic-700.ttf') format('truetype'), /* Safari, Android, iOS */ url('../fonts/Roboto/roboto-v30-latin_cyrillic-700.svg#Roboto') format('svg'); /* Legacy iOS */
}


html {
    box-sizing: border-box;
}

*, *::before, *::after {
    box-sizing: inherit;
}

body {
    font-family: Inter, sans-serif;
    font-style: normal;
    font-weight: 800;
    line-height: 19px;
    font-size: 15px;
    color: #464646;
}

section {
    overflow: hidden;
}

.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.wrapper {
    max-width: 1080px;
    margin: 0 auto;
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-end;
    padding-top: 28px;
}

.header-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.header-item {
    margin-right: 24px;
}

.header-logo-pic {
    width: 182px;
    height: 40px;
}

#service {
    display: flex;
    cursor: pointer;
}

#service:hover .drop-down-arrow-service {
    content: url("../img/faq-arrow.svg");
}

#service:hover .header-link {
    color: #fe6900;
}

.drop-down-arrow-service {
    transition-duration: 0.5s;
    width: 14px;
}

.drop-down-arrow-service.active {
    transform: rotateZ(-180deg);
    transition-duration: 0.5s;
    content: url("../img/faq-arrow.svg");
}

.service-list {
    position: absolute;
    margin-top: 37px;
    display: none;
}

.service-item {
    margin-bottom: 8px;
    padding-right: 5px;
}

.service-link {
    text-decoration: none;
    color: #464646;
}

.header-item:last-child {
    margin-right: 0;
    display: flex;
    flex-direction: row;
}

.header-link.active {
    color: #fe6900;
}

.header-link {
    color: #464646;
    text-decoration: none;
}

.header-item.language-select:hover .header-link
{
    color: #fe6900;
}

.header-item.language-select:hover .drop-down-arrow
{
    stroke: #fe6900;
}

.service-item:hover .service-link {
    color: #fe6900;
}


.languages {
    display: none;
    position: absolute;
    background: rgba(251, 251, 251, 0.50);
    padding: 5px 15px;
    border-radius: 10px;
    margin-left: -15px;
    margin-top: 27px;
}

.language-select {
    cursor: pointer;
}

.language-select .header-link.active {
    color: #fe6900;
}


.language-item {
    margin-bottom: 6px;
}

.language {
    text-decoration: none;
    color: #464646;
    transition-duration: 0.6s;

}

.language.active {
    color: #FF6900FF;
}

.language:hover {
    color: #FF6900FF;
    transition-duration: 0.6s;
}

.languages.active {
    display: flex;
    flex-direction: column;
}

.drop-down-arrow {
    margin-top: 3px;
    width: 14px;
    height: 8px;
    transition-duration: 0.6s;
    stroke: #464646;;
}

.drop-down-arrow.active {
    transform: rotateZ(-180deg);
    transition-duration: 0.6s;
    stroke: #FF6900FF;
}

.header-link.contact {
    width: 122px;
    height: 34px;
    background: #FF6900 url('../img/phone-call.svg') no-repeat left 10px center;
    background-size: 17px;
    border: 0;
    border-radius: 8px;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    text-align: center;
    padding-left: 29px;
    color: #FFFFFF;
}

.header-link.contact:hover {
    box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.4);
    width: 120px;
    height: 32px;
    margin: 1px;
}


/* modal window burger-menu start */
.burger-menu.active {
    display: flex;
    z-index: 999;
    width: 100%;
    height: 100%;
    background: rgba(13, 13, 13, 0.74);
    position: fixed;
    flex-direction: column;
}

.burger-menu {
    display: none;
}

.burger-menu-close {
    margin-top: 35px;
    margin-left: 34px;
    width: 28px;
    height: 28px;
    cursor: pointer;
    margin-bottom: 24px;
}

.burger-menu-list {
    margin-left: 70px;
}

.burger-menu-item {
    margin-bottom: 10px;
}

.burger-services-list {
    margin-top: 10px;
    display: none;
}

.burger-services-list.active {
    display: block;
}

.burger-services-item {
    margin-bottom: 10px;
}

.burger-language-list {
    display: flex;
}

.burger-language-item {
    margin-right: 15px;
}

.language-burger.active {
    color: #FF6900;
}

.burger-menu-list li, .burger-menu-list a {
    text-decoration: none;
    font-weight: 900;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: -0.015em;
    color: #FFFFFF;
}

/* modal window burger-menu end */


/* modal window modal-application start */
.modal-application.active {
    display: flex;
    z-index: 999;
    width: 100%;
    height: 100%;
    background: rgba(13, 13, 13, 0.74);
    position: fixed;
    align-items: center;
    justify-content: center;
}

.modal-application {
    display: none;
}

.modal-application .block {
    width: 490px;
    background: rgba(251, 251, 251, 0.86) url("../img/kroshka-test-drive.png");
    border-radius: 16px;
}

.modal-application .title {
    text-align: center;
    font-size: 26px;
    line-height: 33px;
    letter-spacing: -0.015em;
    margin-bottom: 7px;
}

.modal-application .close {
    width: 20px;
    height: 20px;
    margin-top: 22px;
    margin-right: 22px;
    cursor: pointer;
}

.modal-application .close-block {
    display: flex;
    justify-content: flex-end;
}

.modal-application .description {
    margin-left: 38px;
    margin-right: 38px;
    text-align: center;
    font-family: 'Roboto';
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    letter-spacing: -0.015em;
    color: #000000;
    margin-bottom: 24px;
}

.application-form {
    width: 379px;
    margin: 0 auto;
}

.application-form .name-phone .name {
    display: flex;
    flex-direction: column;
}

.application-form .name-phone .phone {
    display: flex;
    flex-direction: column;
}

.application-form .name-phone {
    display: flex;
    justify-content: space-between;
    margin-bottom: 23px;
}

.modal-application .label-name, .modal-application .label-phone,
.modal-application .label-email {
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: -0.015em;
    color: #000000;
    margin-bottom: 5px;
}

.modal-application input {
    border: 0;
    background: #FBFBFB;
    border-radius: 10px;
}

.modal-application .name-input {
    padding-left: 13px;
    width: 155px;
    height: 48px;
    margin-bottom: 5px;
}

.modal-application .phone-input {
    padding-left: 16px;
    width: 173px;
    height: 48px;
    margin-bottom: 5px;
}

.modal-application .email {
    display: flex;
    flex-direction: column;
    margin-bottom: 49px;
}

.modal-application .label-email {
    margin-bottom: 5px;
}

.modal-application .email-input {
    width: 379px;
    height: 48px;
    padding-left: 16px;
    margin-bottom: 5px;
}

.modal-application .little-text {
    font-style: italic;
    font-weight: 400;
    font-size: 11px;
    line-height: 14px;
    letter-spacing: -0.015em;
    color: #464646;
}

.modal-application .send {
    border: 0;
    width: 296px;
    height: 54px;
    background: #FF6900;
    border-radius: 6px;
    text-transform: uppercase;
    color: white;

    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: -0.015em;
}

.modal-application .send:hover {
    width: 294px;
    height: 52px;
    margin: 1px;
    box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.4);
}

.modal-application .button {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 44px;
}

.error-message .error {
    color: red;
    font-weight: 500;
    font-size: 10px;
    line-height: 20px;
    letter-spacing: -0.015em;
}

.error-message.phone {
    white-space: pre-line;
    width: 173px;
}

/* modal window modal-application end */

/* modal window modal-test-drive start */

.modal-test-drive.active {
    display: flex;
    z-index: 999;
    width: 100%;
    height: 100%;
    background: rgba(13, 13, 13, 0.74);
    position: fixed;
    align-items: center;
    justify-content: center;
}

.modal-test-drive {
    display: none;
}

.modal-test-drive .block {
    width: 490px;
    height: 663px;
    background: rgba(251, 251, 251, 0.86) url("../img/kroshka-test-drive.png");
    border-radius: 16px;
}

.modal-test-drive .title {
    text-align: center;
    font-size: 26px;
    line-height: 33px;
    letter-spacing: -0.015em;
    margin-bottom: 7px;
}

.modal-test-drive .close {
    width: 20px;
    height: 20px;
    margin-top: 22px;
    margin-right: 22px;
    cursor: pointer;
}

.modal-test-drive .close-block {
    display: flex;
    justify-content: flex-end;
}

.modal-test-drive .description {
    margin-left: 38px;
    margin-right: 38px;
    text-align: center;
    font-family: 'Roboto';
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    letter-spacing: -0.015em;
    color: #000000;
    margin-bottom: 2px;
}

.test-drive-form .select-car-block {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.test-drive-form .label-car {
    margin-bottom: 8px;
}

.test-drive-form select {
    border: 0;
    background: #FFFFFF;
    border-radius: 10px;
}

.modal-test-drive .form-select-car {
    width: 430px;
    height: 54px;

}

.test-drive-form {
    width: 430px;
    margin: 0 auto;
}

.test-drive-form .select-block {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.test-drive-form .select-block div {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.modal-test-drive .form-select-town {
    width: 158px;
    height: 54px;
    padding-left: 13px;
}

.modal-test-drive .form-select-date {
    width: 118px;
    height: 54px;
}

.modal-test-drive .form-select-time {
    width: 108px;
    height: 54px;
}

.test-drive-form .form-select-car {
    padding-left: 15px;
    font-family: Inter, sans-serif;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: -0.015em;
}

.test-drive-form .name-phone .name {
    display: flex;
    flex-direction: column;
}

.test-drive-form .name-phone .phone {
    display: flex;
    flex-direction: column;
}

.test-drive-form .name-phone {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.modal-test-drive label {
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: -0.015em;
    color: #000000;
    margin-bottom: 5px;
}

.modal-test-drive input {
    border: 0;
    background: #FBFBFB;
    border-radius: 10px;
}

.modal-test-drive .name-input {
    padding-left: 13px;
    width: 185px;
    height: 54px;
}

.modal-test-drive .phone-input {
    padding-left: 16px;
    width: 182px;
    height: 54px;
}

.modal-test-drive .email {
    display: flex;
    flex-direction: column;
}

.modal-test-drive .label-email {
    margin-bottom: 5px;
}

.modal-test-drive .email-input {
    width: 430px;
    height: 54px;
    padding-left: 16px;
    margin-bottom: 30px;
}

.modal-test-drive .sign-up {
    border: 0;
    width: 296px;
    height: 54px;
    background: #FF6900;
    border-radius: 6px;
    text-transform: uppercase;
    color: white;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: -0.015em;
}

.modal-test-drive .button {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.modal-test-drive .little-text {
    font-family: 'Roboto';
    font-weight: 300;
    font-size: 10px;
    line-height: 12px;
    text-align: center;
    letter-spacing: -0.015em;
    color: #000000;

}

/* modal window modal-test-drive end */


/* modal window modal-life-photo start */
.modal-life-photo.active {
    display: flex;
    z-index: 999;
    width: 100%;
    height: 100%;
    background: rgba(13, 13, 13, 0.74);
    position: fixed;
    align-items: center;
    justify-content: center;
}

.modal-life-photo {
    display: none;
}

.modal-life-photo-block {
    max-width: 1048px;
    height: auto;
    background-color: #FFFFFF;
    border-radius: 16px;
}

.header-modal-life-photo {
    display: flex;
    justify-content: space-between;
    margin: 20px 22px 18px 25px;
    /*margin: 39px 27px 27px 32px;*/
}

.name-car {
    font-size: 26px;
    line-height: 33px;
    letter-spacing: -0.015em;
    color: #000000;
}

.close-button-modal-life-photo {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.modal-life-photo-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 70px 15px 70px;
}

.block-for-carousel {
    position: relative;
    max-width: 680px;
    overflow: hidden;
}

.block-for-carousel > div {
    display: flex;
    transition-duration: 0.6s;
}

.prev-arrow-modal-life-photo {
    max-width: 5%;
    height: auto;
}

.image-modal-life-photo {
    width: 594px;
    height: auto;
    border-radius: 10px;
    margin-left: 43px;
}

.next-arrow-modal-life-photo {
    max-width: 5%;
    height: auto;
}

.life-photo-block {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.life-photos-list {
    display: flex;
    justify-content: space-between;
    margin: 0 206px 18px 225px;
    overflow: hidden;
}

.life-photos-list > div {
    display: flex;
    transition-duration: 0.6s;
    margin-top: 17px;
}

.life-photo-item {
    border-radius: 10px;
    max-width: 21.29%;
    height: auto;
    margin-right: 23px;
}

.life-photo-item.active {
    transform: translateY(-17px);
    transition-duration: 0.6s;
}

.life-photo-point-list {
    display: flex;
    margin-bottom: 28px;
}

.life-photo-point-item {
    width: 21px;
    height: 21px;
    background: url('../img/point.svg') no-repeat;
    background-size: cover;
    margin-right: 10px;
}

.life-photo-point-item.active {
    background: url('../img/point-active.svg');
    background-size: cover;
}

/* modal window modal-life-photo end */

/* modal modal-window-send start */

.modal-window-send {
    display: none;
}

.modal-window-send.active {
    display: flex;
    z-index: 999;
    width: 100%;
    height: 100%;
    background: rgba(13, 13, 13, 0.74);
    position: fixed;
    align-items: center;
    justify-content: center;
}

.modal-window-send-block {
    max-width: 468px;
    border-radius: 16px;
    background: rgba(251, 251, 251, 0.99);
    margin: 0 15px;
}

.modal-windows-close-button-wrapper {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 46px;
}

.close-button-modal-window {
    margin-right: 17px;
    margin-top: 25px;
    cursor: pointer;
    width: 20px;
    height: 20px;
}

.window-send-title {
    margin: 0 5px 18px 5px;
    text-align: center;
    font-weight: 600;
    font-size: 26px;
    line-height: 33px;
    letter-spacing: -0.015em;
    color: #FF6900
}

.window-send-description {
    margin: 0 42px 67px 42px;
    text-align: center;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    letter-spacing: -0.015em;
    color: rgba(0, 0, 0, 0.8);
}

/* modal modal-window-send end */

/* section intro start */
.intro {
    background: url("../img/background-intro-with-gradient.png") no-repeat center;
    background-size: cover;
    margin-bottom: 90px;
    overflow: hidden;
}

.intro-title {
    padding-top: 133px;
    /*max-width: 760px;*/
    max-width: 680px;
    font-weight: 900;
    font-size: 64px;
    line-height: 80px;
    letter-spacing: -0.01em;
    color: #3D4149;
    margin-bottom: 24px;
}

.intro-description {
    max-width: 640px;
    font-weight: 300;
    font-size: 26px;
    line-height: 33px;
    letter-spacing: -0.015em;
    margin-bottom: 34px;
}

.order-test-drive {
    white-space: nowrap;
    border: 0;
    width: 217px;
    height: 54px;
    border-radius: 6px;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    background-color: #FF6900;
    color: white;
    margin-bottom: 328px;
    text-transform: uppercase;
}

.order-test-drive:hover {
    box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.4);
    width: 215px;
    height: 52px;
    margin-bottom: 329px;
    margin-top: 1px;
    margin-left: 1px;
}

.car {
    background: url("../img/intro-car.png") no-repeat;
    background-size: cover;
    width: 720px;
    height: 373px;
    position: relative;
    margin-top: -531px;
    margin-left: 426px;
}

/* section intro end */

/* section cards start */
.card-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.card-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 45px;
    margin-left: 4px;
    margin-right: 4px;
}

.card-item-content {
    background: url(../img/card.png) round center;
    text-align: center;
    background-size: 100% 100%;

    width: 300px;
    height: 170px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ruchka-card {
    width: 90px;
    height: 45px;
}

.card-item:last-child {
    margin-right: 0;
}

.card-item-link {
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    line-height: 30px;
    color: #ffffff;
}

.card-item-number {
    position: absolute;
    margin-top: 12px;
    font-weight: 300;
    font-size: 32px;
    line-height: 30px;
}

/* section cards end */

/* section subscription start */
.subscription {
    margin-bottom: 79px;
}

.header-subscription {
    padding-top: 27px;
    font-weight: 800;
    font-size: 42px;
    line-height: 72px;
    margin-bottom: 20px;
}

.subscription-description {
    width: 90%;
    font-family: 'Roboto';
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    letter-spacing: -0.01em;
    margin-bottom: 18px;
}

.subscription-included {
    font-family: 'Roboto';
    font-weight: 700;
    font-size: 16px;
    line-height: 19px;
    letter-spacing: -0.015em;
    color: #000000;
    margin-bottom: 13px;
}

.subscription-included-list {
    display: flex;
    flex-wrap: wrap;
    margin-left: -11px;
}

.subscription-included-item {
    display: flex;
    align-content: stretch;
    flex-wrap: nowrap;
    flex-direction: column;
    align-items: center;
    margin-right: 20px;
    margin-left: 20px;
}

.subscription-included-content {
    width: 90px;
    height: 90px;
    background: linear-gradient(121.19deg, #FF6700 2.77%, #FF8B31 70.75%);
    box-shadow: 2px 4px 6px rgba(0, 0, 0, 0.15);
    border-radius: 11px;
    margin-bottom: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.subscription-included-img {
    width: 42px;
    height: 42px;
}

.subscription-included-text {
    width: 140px;
    font-weight: 800;
    font-size: 16px;
    line-height: 20px;
    text-align: center;
    letter-spacing: -0.015em;
    text-transform: uppercase;
}

/* section subscription end */

/* section consultation start */
.consultation {
    background: url("../img/consultation.png") no-repeat;
    background-size: cover;
    margin-bottom: 70px;
}

.wrapper-consultation {
    display: flex;
    flex-wrap: wrap;
}

.header-consultation {
    width: 690px;
    font-weight: 800;
    font-size: 50px;
    line-height: 64px;
    letter-spacing: -0.015em;
    text-transform: uppercase;

    color: white;
    padding-top: 130px;
}

.order-consultation {
    width: 389px;
    background: rgba(251, 251, 251, 0.8) url("../img/consultation-kroshka.png");
    border-radius: 16px;
    margin-top: 70px;
    margin-bottom: 83px;
}

.order-consultation-form {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: center;
}

.order-consultation-title {
    font-weight: 600;
    font-size: 26px;
    line-height: 33px;
    text-align: center;
    padding-top: 30px;
    color: #000000;
    margin-bottom: 13px;
}

.order-consultation-description {
    font-family: 'Roboto';
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    text-align: center;
    letter-spacing: -0.015em;
    margin-left: 23px;
    margin-right: 23px;
    margin-bottom: 22px;
}

.order-consultation-text {
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: -0.015em;

    color: #000000;
    margin-bottom: 8px;
}

.order-consultation-input {
    padding-left: 12px;
    border: 0;
    width: 280px;
    height: 48px;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: -0.015em;

    color: #888888;
    background: #FBFBFB;
    border-radius: 10px;
    margin-bottom: 3px;
}

.order-consultation-error {
    margin-bottom: 23px;
}

.order-consultation-button {
    margin-bottom: 35px;
    margin-top: 5px;
    width: 280px;
    height: 46px;
    border: 0;
    background: #FF6900;
    border-radius: 6px;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: -0.015em;
    text-transform: uppercase;
    color: #FFFFFF;
}

.order-consultation-button:hover {
    width: 278px;
    height: 44px;
    margin: 6px 1px 36px 1px;
    box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.4);
}

/* section consultation end */

/* section service-subscription start */
.service-subscription {
    margin-bottom: 70px;
}

.service-subscription-question {
    font-weight: 800;
    font-size: 42px;
    line-height: 72px;
    letter-spacing: -0.01em;
    color: #282828;
    margin-bottom: 7px;
}

.service-subscription-description {
    max-width: 965px;
    font-family: 'Roboto';
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: -0.015em;
    color: #282828;
    margin-bottom: 35px;
}

.service-subscription-list {
    margin-bottom: 45px;
}

.service-subscription-item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 19px;
}

.service-subscription-item:last-child {
    margin-bottom: 0px;
}

.service-subscription-block {
    width: 723px;
    background: #F9F9F9;
    box-shadow: 2px 4px 6px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    margin-left: 21px;
}

.service-subscription-img {
    width: 130px;
    height: 130px;
}

.service-subscription-item-title {
    font-family: 'Roboto';
    font-weight: 700;
    font-size: 26px;
    line-height: 30px;
    letter-spacing: -0.015em;
    color: #282828;
    margin: 16px 14px 12px 14px;
}

.service-subscription-item-description {
    font-family: 'Roboto';
    width: 650px;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    letter-spacing: -0.015em;
    color: #282828;
    margin-left: 17px;
    margin-bottom: 12px;
}

.service-subscription-finish {
    font-weight: 700;
    font-size: 16px;
    line-height: 19px;
    letter-spacing: -0.015em;
    color: #282828;
}

.service-subscription-finish-link {
    font-weight: 700;
    font-size: 16px;
    line-height: 19px;
    letter-spacing: -0.015em;
    color: #FF6900;
    text-decoration: none;
}

/* section service-subscription end */

/* section select-car start */
.select-car {
    margin-bottom: 70px;
}

.select-car-title {
    font-weight: 800;
    font-size: 42px;
    line-height: 72px;
    letter-spacing: -0.01em;
    color: #282828;
    margin-bottom: 34px;
}

.wrapper-select-car {
    max-width: 1212px;
    margin: 0 auto;
}

.select-car-list {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 21px;
    justify-content: flex-start;
}

.select-car-item {
    overflow: hidden;
    width: 380px;
    background: #F4F4F4;
    box-shadow: 3px 4px 11px rgba(0, 0, 0, 0.09);
    border-radius: 10px;
    margin-right: 12px;
    margin-left: 12px;
    margin-bottom: 24px;
}

.advanced-info.visible {
    transition-duration: 2s;
}

.advanced-info {
    transition-duration: 2s;
}

.advanced-text {
    background-color: #E2E1E1;
}

.plashka-normal-text {
    font-family: Inter, sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 19px;
    letter-spacing: -0.015em;
    color: #464646;
}

.plashka-normal-text.complectation {
    margin-top: 15px;
}

.plashka-orange-text {
    font-weight: 400;
    color: #FF6900;
    text-transform: uppercase;
    font-size: 16px;
}


.main-info {
    transition-duration: 4s;
}

.main-info.invisible {
    transition-duration: 4s;
}

.text-holder {
    padding-bottom: 100px;
    padding-top: 10px;
    margin-left: 15px;
    margin-right: 15px;

    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}


.select-car-code {
    font-family: 'Roboto';
    font-weight: 300;
    font-size: 12px;
    line-height: 9px;
    letter-spacing: -0.01em;
    display: flex;
    justify-content: flex-end;
    padding-right: 18px;
    padding-top: 18px;
    margin-bottom: 43px;
}

.select-car-image-block {
    width: 376px;
    height: 246px;
    margin-bottom: 29px;
}

.select-car-image {
    width: 100%;
    height: auto;
}

.select-car-parameter-list {
    display: flex;
    flex-direction: row;
    margin-left: 20px;
    margin-right: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #A7A7A7;
    margin-bottom: 21px;
}

.parameter-text {
    font-weight: 400;
    font-size: 12px;
    line-height: 11px;
    letter-spacing: -0.015em;
    color: #9B9B9B;
    margin-left: 4px;
    padding-right: 4px;
}

.parameter-text .bold {
    font-weight: 700;
}

.select-car-parameter-item {
    display: flex;
    align-items: center;
    margin-right: 6px;
}

.select-car-parameter-item:last-child {
    margin-right: 0;
}

.image-parameter {
    width: 20px;
    height: 20px;
}

.select-car-item-title {
    margin-left: 16px;
    font-weight: 800;
    font-size: 20px;
    line-height: 26px;
    letter-spacing: -0.015em;
    color: #282828;
    margin-bottom: 1px;
}

.select-car-item-price {
    margin-left: 16px;
    font-weight: 400;
    font-size: 20px;
    line-height: 26px;
    letter-spacing: -0.015em;
    color: #282828;
    margin-bottom: 29px;
}

.button-block {
    display: flex;
    justify-content: space-between;
    margin-right: 18px;
    margin-left: 18px;
    margin-bottom: 28px;
}

.button-live-pic {
    background-color: transparent;
    width: 156px;
    height: 44px;
    border: 1px solid #FF6900;
    border-radius: 6px;
    text-transform: uppercase;
    color: #FF6900;
}

.button-live-pic:hover {
    width: 154px;
    height: 42px;
    margin: 1px;
    box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.4);
}

.button-want-this-car {
    border: 0;
    width: 156px;
    height: 44px;
    text-transform: uppercase;
    background: #FF6900;
    border-radius: 6px;
    color: white;
    white-space: nowrap;
}

.button-want-this-car:hover {
    width: 154px;
    height: 42px;
    margin: 1px;
    box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.4);
}

.none-item-wrapper {
    height: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: flex-end;
}

.none-item-title {
    padding-top: 25px;
    text-align: center;
    font-weight: 800;
    font-size: 20px;
    line-height: 26px;
    letter-spacing: -0.015em;
    text-transform: uppercase;
    color: #282828;
}

.none-item-image {
    width: 378px;
    height: 246px;
}

.none-item-description {
    font-weight: 800;
    font-size: 20px;
    line-height: 26px;
    text-align: center;
    letter-spacing: -0.015em;
    color: #282828;
    margin-right: 36px;
    margin-left: 36px;
    margin-bottom: 16px;
}

.none-item-description-advanced {
    font-weight: 400;
    font-size: 20px;
    line-height: 26px;
    letter-spacing: -0.015em;
    text-align: center;
    color: #282828;
    padding-bottom: 42px;
}

.button-pick-up-car {
    border: 0;
    height: 44px;
    width: 290px;
    background: #FF6900;
    border-radius: 6px;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    text-transform: uppercase;
    margin-right: 45px;
    margin-left: 45px;
    margin-bottom: 28px;
    color: #FFFFFF;
}

.button-pick-up-car:hover {
    height: 42px;
    width: 288px;
    margin: 1px 46px 29px 46px;
    box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.4);
}

.select-car-show-more {
    font-weight: 700;
    font-size: 20px;
    line-height: 23px;
    text-align: center;
    letter-spacing: -0.015em;
    color: #464646;
    cursor: pointer;
}

.show-more-arrow {
    margin-left: 3px;
}

/* section select-car end */

/* section order-test-drive start */
.section-test-drive {
    height: 472px;
    background: #636363 url("../img/kroshka-test-drive1.png") no-repeat;
    background-size: cover;
    margin-bottom: 206px;
}

.test-drive-block {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.section-test-drive-title {
    font-weight: 900;
    font-size: 42px;
    line-height: 54px;
    text-align: right;
    letter-spacing: -0.015em;
    text-transform: uppercase;
    color: #FFFEFE;
    padding-top: 33px;
    max-width: 800px;
    margin-bottom: 90px;
}

.test-drive-button {
    width: 214px;
    height: 54px;
    border: 0;
    background: #FF6900;
    border-radius: 6px;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: -0.015em;
    text-transform: uppercase;
    color: #FFFFFF;
    margin-right: 126px;
}

.test-drive-button:hover {
    width: 212px;
    height: 52px;
    margin: 1px 127px 1px 1px;
    box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.4);
}

.test-drive-img {
    position: absolute;
    width: 783px;
    height: 450px;
    margin-left: -90px;
    margin-top: -182px;
}

/* section order-test-drive end */

/* section section-review start */

.section-review {
    margin-bottom: 70px;
}

.review-title {
    font-weight: 800;
    font-size: 42px;
    line-height: 72px;
    text-align: center;
    letter-spacing: -0.01em;
    margin-bottom: 50px;
}

.review-items-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.review-list {
    margin-bottom: 35px;
}

.review-item {
    max-width: 1000px;
    border: 2px solid #282828;
    border-radius: 30px;
    display: none
}

.review-item:first-child {
    display: block;
}

.review-user-info-block {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 36px;
    margin-left: 36px;
    margin-bottom: 3px;
}

.review-username {
    margin-left: 20px;
    font-weight: 800;
    font-size: 24px;
    line-height: 72px;
    letter-spacing: -0.01em;
    color: #FF6900;
}

.review-item-img {
    width: 82px;
    height: 82px;
}

.review-comment-block {
    margin-left: 211px;
    max-width: 786px;
    display: flex;
    margin-bottom: 20px;
}


.review-comment-img {
    width: 38px;
    height: 35px;
}

.review-comment {
    padding-top: 10px;
    margin-left: 20px;
    font-weight: 500;
    font-size: 16px;
    line-height: 30px;
    letter-spacing: -0.01em;
}

.watch-review-block {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.watch-review {
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    line-height: 30px;
    letter-spacing: -0.01em;
    color: #FF6900;
    margin-bottom: 30px;
    margin-right: 64px;
}

.review-points {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.review-point {
    width: 21px;
    height: 21px;
    margin-right: 10px;
    background: url('../img/point.svg');
}

.review-point.active {
    background: url('../img/point-active.svg');
}

/* section section-review end */

/* section section-faq start */

.section-faq {
    margin-bottom: 80px;
}

.faq-title {
    font-weight: 800;
    font-size: 42px;
    line-height: 72px;
    letter-spacing: -0.01em;
    color: #282828;
}

.faq-description {
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: -0.015em;
    color: #282828;
    margin-bottom: 31px;
}

.faq-list {

}

.faq-item {
    background: linear-gradient(180deg, rgba(229, 229, 229, 0) 0%, #E5E5E5 127.03%);
    border-radius: 10px;
    border: 2px solid rgba(229, 229, 229, 0.6);
    margin-bottom: 20px;
    cursor: pointer;

}

.faq-header-item-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

.faq-question {
    font-weight: 700;
    font-size: 18px;
    line-height: 30px;
    letter-spacing: -0.01em;
    color: #282828;
    margin-left: 25px;
}

.faq-answer {
    margin-left: 28px;
    margin-right: 28px;
    margin-bottom: 31px;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    letter-spacing: -0.015em;
    color: #282828;
    display: none;
}

.faq-answer.active {
    display: block;
}

.faq-arrow {
    width: 31px;
    height: 18px;
    margin-right: 10px;
    transition-duration: 0.6s;
}

.faq-arrow.active {
    transform: rotate(180deg);
    transition-duration: 0.6s;
}

/* section section-faq end */

/* footer start */
.footer {
    background: url("../img/footer-background.png") no-repeat center;
    background-size: cover;
}

.footer-kroshka {
    background: url("../img/kroshka-for-all.png");
    background-size: 800px;
}

.footer-header-logo {
    width: 200px;
    height: 44px;
}

.footer-header {
    padding-top: 36px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 23px;
}

.footer-header-button {
    width: 149px;
    height: 42px;
    background: #FF6900 url('../img/phone-call.svg') no-repeat left 10px center;
    background-size: 17px;
    border: 0;
    border-radius: 8px;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    padding-left: 29px;
    color: #FFFFFF;
}

.footer-header-button:hover {
    width: 147px;
    height: 40px;
    margin: 1px;
    box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.4);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 61px;
}

.link-item {
    margin-bottom: 9px;
}

.footer-service-list {
    /* position: absolute; */
    /* background: #6F6E6E; */
    /* border-radius: 0 0 10px 10px; */
    padding: 10px 0 0 10px;
    display: none;
}

.footer-service-item {
    margin-bottom: 8px;
}

.footer-service-wrapper {
    display: flex;
    align-items: center;
    width: 90px;
}

.footer-service-wrapper:hover .footer-drop-down-arrow-service, .footer-service-wrapper:hover .footer-service {
    stroke: #FF6900;
    color: #FF6900;
    cursor: pointer;
}

.footer-service-wrapper .footer-drop-down-arrow-service.active, .footer-service-wrapper .footer-service.active {
    stroke: #FF6900;
    color: #FF6900;
}

.footer-drop-down-arrow-service.active {
    transform: rotateZ(-180deg);
    transition-duration: 0.6s;
}

.footer-service-link:hover {
    color: #FF6900;
}

.footer-service, .footer-service-link {
    color: #FFFFFF;
}

.footer-drop-down-arrow-service {
    stroke: #ffffff;
    width: 14px;
    transition-duration: 0.6s;
}

.footer-service-link {
    text-decoration: none;
}

.footer-link:hover {
    color: #fe6900;
}

.footer-email:hover {
    color: #fe6900;
}

.footer-phone-number:hover {
    color: #fe6900;
}

.footer-link {
    text-decoration: none;
    color: #FFFFFF;
}

.footer-contacts-title {
    color: #FFFFFF;
    margin-bottom: 9px;
}

.footer-phone-number {
    text-decoration: none;
    color: #FFFFFF;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.01em;
}

.footer-messenger-title {
    font-weight: 800;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.01em;
    color: #FFFFFF;
    margin-top: 17px;
    margin-bottom: 7px;
}

.footer-messenger-list {
    display: flex;
    justify-content: space-between;
}

.messenger-img {
    width: 42px;
    height: 42px;
}

.messenger-img path {
    stroke: red;
    fill: red;
}

#pattern0 path {
    fill: #FF6900;
}

.footer-email-title {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.01em;
    color: #FFFFFF;
    margin-bottom: 9px;
}

.footer-email {
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.01em;
    color: #FFFFFF;
}

.footer-social-title {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.01em;
    color: #FFFFFF;
    margin-top: 19px;
    margin-bottom: 20px;
}

.social-img:hover {
    transform: translateY(-10px);
    transition-duration: 1s;
}

.footer-social-list {
    display: flex;
    justify-content: space-between;
}

.social-img {
    width: 42px;
    height: 42px;
    transform: translateY(0px);
    transition-duration: 1s;
}

.footer-end {
    font-weight: 300;
    font-size: 15px;
    line-height: 24px;
    text-align: center;
    letter-spacing: -0.01em;
    color: #FFFFFF;
    padding-bottom: 24px;
}

/* footer end */

@media screen and (min-width: 577px) {
    .header-wrapper-burger {
        display: none;
    }

    .fixed-arrow {
        width: auto;
        height: 76px;
    }

    .fixed-arrow:hover {
        cursor: pointer;
    }

    .fixed-arrow-link {
        position: fixed;
        z-index: 999;
        right: 40px;
        bottom: 23px;
    }
}

@media screen and (max-width: 1211px) {
    .wrapper-list-car {
        display: flex;
        justify-content: center;
    }

    .select-car-list {
        max-width: 808px;
    }
}


@media screen and (max-width: 1120px) {

    .review-list {
        margin: 0 35px 35px 35px;
    }

    .wrapper {
        max-width: 95%;
        margin: 0 auto;
    }

    .header-wrapper {
        display: none;
    }

    .header-link.contact {
        width: 42px;
        height: 42px;
        background-size: 22px;
    }

    .header-link.contact:hover {
        width: 40px;
        height: 40px;
    }

    .header-wrapper-burger {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding-top: 29px;
        margin-right: 15px;
        margin-left: 15px;
    }

    .burger-service-wrapper {
        display: flex;
        align-items: center;
        color: #FFFFFF;
        width: 120px;
    }

    .burger-service-wrapper.active {
        display: flex;
        align-items: center;
        color: #fe6900;
    }

    .burger-drop-down-arrow-service {
        margin-left: 3px;
        width: 14px;
        stroke: #FFFFFF;
    }

    .burger-drop-down-arrow-service.active {
        stroke: #fe6900;
        transform: rotateZ(-180deg);
    }

    .burger-services-item {
        margin-left: 35px;
    }

    .burger-logo {
        border: 0;
        background: transparent url("../img/burger-log.svg") no-repeat center;
        background-size: 100% 100%;
        width: 35px;
        height: 26px;

    }

    .header-logo-pic {
        width: 182px;
        height: 40px;
    }

    .test-drive-img {
        width: 641px;
        height: 357px;
        margin-left: -16px;
        margin-top: -120px;
    }

    .order-consultation {
        margin: 70px auto 83px auto;
    }
}

@media screen and (max-width: 1050px) {
    .image-modal-life-photo {
        width: 544px;
    }

    .modal-life-photo-block {
        max-width: 846px;
    }

    .block-for-carousel {
        width: 630px;
    }

    .life-photo-item {
        max-width: 20.93%;
    }

    .life-photos-list {
        margin: 0 129px 18px 151px;
    }
}

@media screen and (max-width: 980px) {
    .service-subscription-item {
        flex-wrap: nowrap;
    }

    .card-list {
        justify-content: space-evenly;
    }
}

@media screen and (max-width: 950px) {

    .subscription-included-item {
        margin-bottom: 40px;
    }

    .test-drive-img {
        height: auto;
        width: 541px;
        margin-top: -87px;
    }

    .car {
        width: 640px;
        height: 331px;
        margin-top: -467px;
        margin-left: 250px;
    }
}


@media screen and (max-width: 920px) {
    .service-subscription-item-description {
        width: auto;
        max-width: 650px;
    }
}

@media screen and (max-width: 850px) {
    .test-drive-img {
        margin-left: -31px;
    }

    .test-drive-button {
        margin-right: 65px;
    }

    .image-modal-life-photo {
        width: 474px;
    }

    .modal-life-photo-wrapper {
        margin: 0 35px 25px 35px;
    }

    .modal-life-photo-block {
        max-width: 698px;
    }

    .block-for-carousel {
        width: 560px;
    }

    .life-photo-item {
        max-width: 22%;
        margin-right: 15px;
    }

    .life-photos-list {
        margin: 0 99px 32px 110px;
    }

}


@media screen and (max-width: 807px) {
    .select-car-list {
        justify-content: center;
    }
}

@media screen and (max-width: 800px) {
    .test-drive-img {
        margin-top: 54px;
    }

    .section-test-drive {
        height: 614px;
        margin-bottom: 100px;
    }
}

@media screen and (max-width: 770px) {
    .footer-content {
        /*max-width: 640px;*/
        flex-direction: row;
        margin-bottom: 26px;
        flex-wrap: wrap;
    }

    .footer-email-social {
        padding-right: 140px;
    }

    .link-list {
        margin-bottom: 40px;
    }
}

@media screen and (max-width: 725px) {
    .test-drive-img {
        margin-top: 0;
    }
}

@media screen and (max-width: 700px) {
    .car {
        width: 620px;
        height: 376px;
        margin-top: -354px;
        margin-left: 65px;
    }

    .test-drive-button {
        margin-right: 0;
    }

    .test-drive-img {
        margin-left: -5px;
    }

    .footer-header {
        padding-top: 22px;
    }

    .footer-header-logo {
        width: 125px;
        height: 28px;
    }

    .footer-header-button {
        width: 122px;
        height: 34px;
    }

    .footer-header {
        margin-bottom: 22px;
    }

    .footer-messenger-list {
        margin-bottom: 20px;
    }

    .footer-social-title {
        margin-top: 40px;
    }

    .footer-social-list {
        justify-content: flex-start;
    }

    .social-item {
        margin-right: 18px;
    }

    .footer-end {
        padding-bottom: 18px;
    }

    .modal-life-photo-wrapper {
        margin: 0 25px 15px 25px;
    }

    .modal-life-photo-block {
        max-width: 570px;
    }

    .block-for-carousel {
        width: 468px;
    }

    .image-modal-life-photo {
        width: 382px;
    }

    .life-photos-list {
        margin: 0 81px 15px 92px;
    }

    .life-photo-item {
        margin-right: 12px;
    }

    .life-photo-point-item {
        width: 15px;
        height: 15px;
    }
}

@media screen and (max-width: 672px) {
    .test-drive-img {
        margin-top: 5px;
    }
}

@media screen and (max-width: 656px) {
    .test-drive-img {
        margin-top: -11px;
        width: 460px;
    }
}

@media screen and (max-width: 576px) {

    .fixed-arrow-link {
        position: fixed;
        z-index: 998;
        right: 19px;
        bottom: 19px;
    }

    .fixed-arrow {
        width: auto;
        height: 46px;
    }

    .wrapper {
        max-width: 94%;
    }

    .header-wrapper {
        display: none;
    }

    .header-link.contact {
        width: 42px;
        height: 42px;
        background-size: 22px;
    }

    .header-wrapper-burger {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding-top: 29px;
        margin-right: 15px;
        margin-left: 15px;
    }

    .burger-logo {
        border: 0;
        background: transparent url("../img/burger-log.svg") no-repeat center;
        background-size: 100% 100%;
        width: 35px;
        height: 26px;

    }

    .header-logo-pic {
        width: 116px;
        height: 25px;
    }

    .intro {
        margin-bottom: 45px;
    }

    .intro-title {
        padding-top: 110px;
        font-size: 42px;
        line-height: 54px;
    }

    .intro-description {
        font-size: 16px;
        line-height: 20px;
        margin-bottom: 48px;
    }

    .order-test-drive {
        width: 220px;
        height: 43px;
    }

    .order-test-drive:hover {
        box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.4);
        width: 218px;
        height: 41px;
        margin-top: 1px;
        margin-left: 1px;
    }

    .car {
        width: 545px;
        height: 270px;
        margin-top: -328px;
        margin-left: 0;
    }

    .card-item-content {
        width: 210px;
        height: 141px;
    }

    .card-item-link {
        font-size: 16px;
        line-height: 20px;
        margin-left: 10px;
        margin-right: 10px;
    }

    .cards {
        margin-bottom: 2px;
    }

    .subscription {
        margin-bottom: 7px;
    }

    .header-subscription {
        font-size: 24px;
        line-height: 31px;
        letter-spacing: -0.015em;
        padding-top: 0;
        margin-bottom: 15px;
    }

    .subscription-description {
        font-size: 16px;
        line-height: 19px;
        letter-spacing: -0.01em;
        margin-bottom: 15px;
    }

    .subscription-included {
        font-size: 16px;
        line-height: 19px;
        letter-spacing: -0.015em;
        margin-bottom: 29px;
    }

    .subscription-included-list-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .subscription-included-list {
        margin-left: 0;
        width: 78%;
        justify-content: space-between;
    }

    .subscription-included-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-right: 20px;
        margin-left: 20px;
        margin-bottom: 38px;
    }

    .consultation {
        background-position-x: -540px;
        margin-bottom: 45px
    }

    .header-consultation {
        font-size: 24px;
        line-height: 29px;
        letter-spacing: -0.015em;
        padding-top: 53px;
        width: auto;
    }

    .order-consultation {
        width: 360px;
        height: auto;
        margin: 30px auto 58px auto;
    }

    .order-consultation-title {
        font-size: 24px;
        line-height: 31px;
        letter-spacing: -0.015em;
    }

    .order-consultation-text {
        margin-bottom: 4px;
    }

    .order-consultation-input {
        height: 44px;
        margin-bottom: 2px;
    }

    .order-consultation-button {
        margin-top: 6px;
        height: 44px;
    }

    .service-subscription {
        margin-bottom: 45px;
    }

    .service-subscription-question {
        font-size: 24px;
        line-height: 31px;
        letter-spacing: -0.015em;
        margin-bottom: 15px;
    }

    .service-subscription-description {
        width: auto;
        line-height: 30px;
        margin-bottom: 25px;
    }

    .service-subscription-img {
        width: 100px;
        height: 100px;
    }

    .service-subscription-block {
        width: auto;
    }

    .service-subscription-item-title {
        font-size: 16px;
        line-height: 19px;
        letter-spacing: -0.015em;
        margin: 5px 5px 10px 9px;
    }

    .service-subscription-item-description {
        width: auto;
        margin: 0 4px 9px 9px;
        font-size: 16px;
        line-height: 19px;
        letter-spacing: -0.015em;
    }

    .service-subscription-list {
        margin-bottom: 30px;
    }

    .service-subscription-item {
        flex-wrap: nowrap;
        margin-bottom: 23px;
    }

    .select-car {
        margin-bottom: 45px;
    }

    .select-car-title {
        font-weight: 800;
        font-size: 24px;
        line-height: 31px;
        margin-bottom: 20px;
    }

    .wrapper-select-car {
        width: 94%;
    }

    .select-car-list {
        flex-direction: column;
        align-items: center;
        flex-wrap: wrap;
        margin-bottom: -10px;
    }

    .select-car-item {
        width: 359px;
        height: auto;
        margin-bottom: 30px;
        margin-right: 0;
        margin-left: 0;
    }

    .advanced-info.visible {
        transform: translateY(-531px);
    }

    .plashka-orange-text {
        font-size: 15px;
    }

    .plashka-normal-text {
        font-size: 13px;
    }

    .select-car-code {
        margin-bottom: 33px;
    }

    .select-car-image-block {
        width: 359px;
        height: 243px;
    }

    .select-car-parameter-list {
        margin-left: 5px;
        margin-right: 5px;
        padding-bottom: 14px;
        border-bottom: 1px solid #A7A7A7;
        margin-bottom: 20px;
    }

    .select-car-item-title {
        margin-left: 11px;
    }

    .select-car-item-price {
        margin-left: 11px;
        margin-bottom: 27px;
    }

    .button-block {
        margin-right: 12px;
        margin-left: 12px;
    }

    .button-live-pic {
        width: 144px;
        height: 42px;
    }

    .button-live-pic:hover {
        width: 142px;
        height: 40px;
    }

    .button-want-this-car {
        width: 144px;
        height: 42px;
    }

    .button-want-this-car:hover {
        width: 142px;
        height: 40px;
    }

    .none-item-image {
        width: 358px;
        height: 228px;
    }

    .none-item-description-advanced {
        padding-bottom: 20px;
    }

    .button-pick-up-car {
        margin-right: 0;
        margin-left: 0;
    }

    .section-test-drive {
        height: 320px;
        margin-bottom: 90px;
    }

    .section-test-drive-title {
        font-size: 24px;
        line-height: 29px;
        padding-top: 31px;
        margin-bottom: 26px;
        max-width: 460px;
    }

    .test-drive-img {
        width: 390px;
        height: auto;
        margin-left: -2px;
        margin-top: -49px;
        z-index: 1;
    }


    .test-drive-button {
        width: 186px;
        height: 48px;
        z-index: 993;
        margin-right: 0;
    }

    .test-drive-button:hover {
        width: 184px;
        height: 46px;
        margin-right: 1px;
    }

    .section-review {
        margin-bottom: 35px;
    }

    .review-title {
        font-size: 24px;
        line-height: 31px;
        margin-bottom: 53px;
    }

    .review-item {
        max-width: 279px;
    }

    .next-arrow {
        width: 33px;
        height: 57px;
    }

    .prev-arrow {
        width: 33px;
        height: 57px;
    }

    .review-item-img {
        width: 74px;
        height: 74px;
        margin-bottom: 3px;
    }

    .review-user-info-block {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        margin-top: -38px;
        margin-left: 0;
        margin-bottom: 0;
        flex-direction: column;
    }

    .review-username {
        margin-left: 0;
        font-size: 16px;
        line-height: 20px;
    }

    .review-comment-block {
        margin-left: 14px;
        margin-top: 8px;
        width: auto;
        flex-direction: column;
        margin-bottom: 20px;
    }

    .review-comment-img {
        width: 20px;
        height: 18px;
        margin-bottom: 8px;
    }

    .review-comment {
        padding-top: 0;
        margin-left: 0;
        font-size: 14px;
        line-height: 18px;
    }

    .watch-review {
        margin-bottom: 13px;
        margin-right: 15px;
    }

    .review-list {
        margin: 0 15px 20px;
    }

    .review-point {
        width: 6px;
        height: 6px;
        margin-right: 3px;
        background-size: 6px 6px;
    }

    .review-point.active {
        background-size: 6px 6px;
    }

    .footer-content {
        flex-direction: column;
        margin-bottom: 26px;
    }

    .footer-header {
        padding-top: 22px;
    }

    .footer-header-logo {
        width: 125px;
        height: 28px;
    }

    .footer-header-button {
        width: 122px;
        height: 34px;
    }

    .footer-header-button:hover {
        width: 120px;
        height: 32px;
    }

    .footer-header {
        margin-bottom: 22px;
    }

    .link-list {
        margin-bottom: 40px;
    }

    .footer-messenger-list {
        justify-content: flex-start;
        margin-bottom: 20px;
    }

    .messenger-item {
        margin-right: 12px;
    }

    .footer-social-title {
        margin-top: 40px;
    }

    .footer-social-list {
        justify-content: flex-start;
    }

    .footer-email-social {
        padding-right: 0;
    }

    .social-item {
        margin-right: 18px;
    }

    .footer-end {
        padding-bottom: 18px;
        text-align: left;
    }

    .section-faq {
        margin-bottom: 60px;
    }

    .faq-title {
        font-size: 24px;
        line-height: 31px;
        margin-bottom: 4px;
    }

    .faq-item {
        margin-bottom: 15px;
    }

    .faq-description {
        margin-bottom: 25px;
    }

    .faq-question {
        font-size: 16px;
        margin-left: 9px;
    }

    .faq-header-item-block {
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .faq-answer {
        margin-left: 9px;
        margin-bottom: 9px;
    }

    .modal-application .block {
        width: 344px;
    }

    .modal-application .close {
        width: 22px;
        height: 22px;
        margin-top: 16px;
        margin-right: 16px;
    }

    .modal-application .title {
        font-size: 24px;
        line-height: 31px;
        margin-bottom: 2px;
    }

    .modal-application .description {
        margin-left: 16px;
        margin-right: 16px;
        margin-bottom: 33px;
    }

    .application-form {
        width: 248px;
    }

    .application-form .name-phone {
        margin-bottom: 5px;
        flex-direction: column;
    }

    .modal-application label {
        margin-bottom: 3px;
        margin-top: 10px;
    }

    .modal-application .name-input {
        width: 248px;
        height: 44px;
        margin-bottom: 5px;
    }

    .modal-application .phone-input {
        width: 248px;
        height: 44px;
    }

    .modal-application .email-input {
        width: 248px;
        height: 44px;
        margin-bottom: 5px;
    }

    .error-message.phone {
        white-space: pre-line;
        width: auto;
    }

    .modal-application .button {
        margin-bottom: 38px;
    }

    .modal-application .send {
        width: 248px;
        height: 44px;
    }

    .modal-application .send:hover {
        width: 246px;
        height: 42px;
    }

    .modal-life-photo-wrapper {
        margin: 0 10px 5px 10px;
    }

    .modal-life-photo-block {
        max-width: 450px;
    }

    .block-for-carousel {
        width: 386px;
    }

    .image-modal-life-photo {
        width: 356px;
        margin-left: 15px;
    }

    .life-photos-list {
        margin: 0 44px 15px 46px;
    }

    .life-photo-item {
        margin-right: 4px;
        max-width: 23.9%;
    }

    .life-photo-point-item {
        width: 6px;
        height: 6px;
        margin-right: 3px;
    }

    .life-photo-item.active {
        transform: translateY(-9px);
    }

}

@media screen and (max-width: 550px) {
    .subscription-included-item {
        margin-right: 0;
        margin-left: 0;
    }
}

@media screen and (max-width: 508px) {
    .test-drive-img {
        margin-top: -20px;
    }

    .section-test-drive {
        height: 350px;
    }
}


@media screen and (max-width: 470px) {
    .section-test-drive-title {
        max-width: 360px;
    }

    .section-test-drive {
        height: 410px;
    }

    .test-drive-img {
        margin-top: 15px;
    }
}

@media screen and (max-width: 465px) {
    .card-item-content {
        width: 176px;
        height: 141px;
    }

    .modal-life-photo-wrapper {
        margin: 0 10px 5px 10px;
    }

    .modal-life-photo-block {
        margin: 0 10px;
    }

    .block-for-carousel {
        margin: 0 10px;
        width: auto;
    }

    .image-modal-life-photo {
        width: 100%;
        margin-left: 0;
    }

    .life-photos-list {
        margin: 0 8% 15px 9%;
    }

    .life-photo-item {
        margin-right: 1%;
        max-width: 24%;
    }

    .life-photo-point-item {
        width: 6px;
        height: 6px;
        margin-right: 3px;
    }

    .life-photo-item.active {
        transform: translateY(-9px);
    }
}

@media screen and (max-width: 410px) {
    .test-drive-img {
        width: 320px;
        margin-top: 15px;
    }

    .section-test-drive {
        height: 378px;
    }
}

@media screen and (max-width: 395px) {
    .card-item-content {
        width: 140px;
        height: 141px;
    }


}

@media screen and (max-width: 390px) {
    .intro {
        background: url("../img/main-image-mobile.png") no-repeat center;
    }

    .select-car-image-block {
        width: 99%;
        height: auto;
    }

    .select-car-item {
        width: 99%;
        display: flex;
        flex-direction: column;
    }

    .none-item-image {
        width: 99%;
        height: auto;
    }

    .button-pick-up-car {
        width: 80%;
        margin-bottom: 25px;
    }

    .none-item-description {
        font-size: 19px;
    }

    .subscription-included-list {
        width: 90%;
    }

    .button-pick-up-car-wrapper {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

@media screen and (max-width: 375px) {
    .car {
        width: 379px;
        height: 220px;
        margin-left: 3px;
    }

    .intro-title {
        font-size: 32px;
    }

    .subscription-included-list {
        width: 100%;
    }

    .section-test-drive-title, .header-consultation {
        font-size: 22px;
    }

    .faq-title, .header-subscription, .service-subscription-question, .select-car-title, .order-consultation-title {
        font-size: 20px;
    }

    .select-car-show-more, .none-item-title {
        font-size: 18px;
    }

    .none-item-description-advanced, .none-item-description, .select-car-item-title, .select-car-item-price {
        font-size: 16px;
    }

    .plashka-orange-text, .footer a, .footer p, .footer-link, .faq-answer, .faq-question, .faq-description, .service-subscription-finish-link, .service-subscription-finish, .service-subscription-item-description, .service-subscription-description, .subscription-description, .service-subscription-item-title, .order-consultation-description {
        font-size: 14px;
    }

    .card-item-link {
        font-size: 13px;
    }

    .review-comment, .plashka-normal-text {
        font-size: 12px;
    }

    .parameter-text {
        font-size: 10px;
    }

    .image-parameter {
        width: 15px;
        height: 15px;
    }

    .service-subscription-img {
        width: 80px;
        height: 80px;
    }

    .footer-contacts-messengers {
        max-width: 250px;
    }

    .footer-email-social {
        max-width: 250px;
    }

    .plashka-normal-text.complectation {
        margin-top: 15px;
    }

    .text-holder {
        padding-top: 25px;
    }

}

@media screen and (max-width: 356px) {
    .test-drive-img {
        width: 267px;
        height: auto;
    }
}

@media screen and (max-width: 315px) {
    .card-item-content {
        width: 240px;
    }
}

@media screen and (max-width: 300px) {
    .image-parameter {
        width: 15px;
        height: 15px;
    }

    .button-live-pic {
        width: 120px;
        height: 42px;
    }

    .button-want-this-car {
        max-width: 140px;
        height: 42px;
    }

    .car {
        width: 374px;
        height: 198px;
        margin-top: -320px;
        margin-left: 0;
    }

    .section-test-drive {
        height: 373px;
    }

    .footer {
        overflow: hidden;
    }

    .social-item {
        margin-right: 10px;
    }

    .subscription-included-list {
        width: auto;
    }

    .subscription-included-list {
        justify-content: center;
    }

    .order-consultation-button {
        width: 90%;
    }

    .order-consultation-input {
        width: 90%;
    }

    .parameter-text {
        font-size: 8px;
        letter-spacing: -0.04em;
    }
}

@media screen and (max-height: 462px) {

    .modal-application .close {
        width: 15px;
        height: 15px;
        margin-top: 15px;
        margin-right: 15px;
    }

    .modal-application .title {
        font-size: 22px;
        line-height: 19px;
        margin-bottom: 2px;
    }

    .modal-application .description {
        line-height: 16px;
        margin-bottom: 10px;
    }

    .application-form .name-phone {
        margin-bottom: 10px;
    }

    .modal-application label {
        line-height: 15px;
    }

    .modal-application .name-input {
        height: 38px;
    }

    .modal-application .phone-input {
        height: 38px;
    }

    .modal-application .email-input {
        height: 38px;
        margin-bottom: 5px;
    }

    .modal-application .button {
        margin-bottom: 10px;
    }

    .modal-application .send {
        height: 38px;
    }

    .modal-application .email {
        margin-bottom: 10px;
    }

}


@media screen and (max-height: 593px) {

    .modal-life-photo-block {
        max-width: 540px;
    }

    .block-for-carousel {
        width: 491px;
    }

    .modal-life-photo-wrapper {
        margin: 0 70px 15px 70px;
    }

    .header-modal-life-photo {
        margin: 10px 12px 10px 32px;
    }

    .name-car {
        font-size: 26px;
        line-height: 25px;
        letter-spacing: -0.015em;
        color: #000000;
    }

    .image-modal-life-photo {
        width: 274px;
    }

    .life-photos-list {
        margin: 0 118px 5px 132px;
    }

    .life-photo-item {
        max-width: 20.5%;
        margin-right: 13px;

    }

    .life-photos-list > div {
        margin-top: 12px;
    }

    .life-photo-point-list {
        margin-bottom: 5px;
    }

    .life-photo-point-item {
        width: 6px;
        height: 6px;
        margin-right: 3px;
    }
}
