.top-shadow{
    position: absolute;
    height: 35rem;
    left: 0;
    top: 0;
    width: 100%;
    background: linear-gradient(0, rgba(20, 18, 35, 0), rgba(20, 18, 35, .56) 58.85%, rgba(20, 18, 35, .686) 85.42%);
    z-index: 2;
}

.screen-hover__content.cars .screen-hover__content-title:before {
    content: "";
    display: block;
    width: .61rem;
    height: .6rem;
    background-color: #fff;
    position: absolute;
    top: -2.5rem;
}

.screen-image__title:before {
    content: "";
    display: block;
    width: .61rem;
    height: .6rem;
    background-color: #fff;
    position: absolute;
    top: -1.6rem;
}

@media (max-width: 767px) {
    .screen-ids__title br {
        display: none;
    }

    .screen-hover__content.cars .screen-hover__content-title:before {
        display: none;
    }
}

.header-info {
    display: flex;
    flex-direction: row;
    grid-gap: 2.4rem;
}
.header-info__item.dc div{
    font-weight: 300;
    font-size: 1.4rem;
    font-family: PingFang-SC-Light;
    cursor: pointer;
}
.header-info__item.dc{
    position: relative;
}
.header-info__item.dc .dc__list{
    visibility: hidden;
    display: flex;
    flex-direction: column;
    position: absolute;
    left: 0;
    top: 100%;
    background-color: rgba(0,0,0,.2);
    border-radius: .5rem;
    padding: 1rem;
    opacity: 0;
    z-index: 102;
    transition: opacity ease .9s;
}
.header .header-info__item.dc:hover .dc__list{
    visibility: visible;
    opacity: 1;
}
.header.scrolled .header-info__item.dc:hover .dc__list{
    visibility: visible;
    opacity: 1;
    top: calc(100% + .6rem);
}
.header-info__item.dc .dc__list .dc__list-item{
    white-space: nowrap;
    display: flex;
    flex-direction: column;
}
.header-info__item.dc .dc__list .dc__list-item span:first-child{
    font-weight: 600;
    font-family: PingFang-SC-Regular;
}
.header-info__item.dc .dc__list .dc__list-item span:nth-child(2){
    padding-left: 1rem;
    margin-bottom: 1rem;
}
.header-info__item.dc .dc__list .dc__list-item:hover{
    text-decoration: underline;
}
@media (max-width: 767px) {
    .header-info__item.email a:last-child{
        display: none;
    }
    .header-info__item.dc {
        display: none;
    }
}
.header-menu {
    margin-left: calc(50% - 50rem - 10rem);
}
@media(max-width: 767px) {
    .screen-idriving__play {
        position: absolute;
        width: 5rem;
        height: 5rem;
        padding: 1.25rem;
        object-fit: contain;
        top: calc(50% - 2.5rem + 12rem);
        left: calc(50% - 2.5rem);
        border-radius: 50%;
        background: hsla(0, 0%, 50.6%, .1);
        -webkit-backdrop-filter: saturate(180%) blur(.78rem);
        backdrop-filter: saturate(180%) blur(.78rem);
        z-index: 0;
    }

    .screen-idriving .video-popup {
        position: fixed;
        z-index: 101;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: #000;
        display: none;
    }

    .screen-idriving .video-popup .video-popup__inner {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 2rem;
        height: 100%;
    }

    .video-popup video {
        width: 100%;
        height: 25rem;
        object-fit: contain;
    }

    .video-popup__close {
        position: absolute;
        top: 2rem;
        right: 2rem;
        color: #bdbdbd;
        font-size: 5rem;
        line-height: 1rem;
    }

    .screen-hover__hidden-item {
        display: none;
        padding: 2rem 2.75rem 0;
        min-height: 21rem;
    }

    .screen-hover__hidden-title {
        color: #fff;
        font-size: 2.8rem;
        line-height: 3.2rem;
        margin-bottom: 1rem;
        text-align: center;
    }

    .screen-hover__hidden-text {
        color: #fff;
        text-align: center;
        font-size: 1.4rem;
        line-height: 1.8rem;
    }

    .screen-hover__hidden-item.active {
        display: block;
    }
}

.header-info__item.phone img {
    width: 2.5rem;
    height: 2.5rem;
    object-fit: contain;
    margin-right: 1rem;
}
.header-info__item.dc img {
    width: 2.5rem;
    height: 2.5rem;
    object-fit: contain;
    margin-right: 1rem;
}
@media(max-width: 767px){
    .footer-soc {
        grid-template-columns: repeat(2, 1fr);
    }
}
.popup {
    display: none;
    align-items: center;
    justify-content: center;
    position: fixed;
    padding: 2rem;
    z-index: 101;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, .5);
}
.popup__inner {
    margin: 0 auto;
    width: 100%;
    height: 50rem;
    background-color: #fff;
    position: relative;
}
.popup__image {
    width: 100%;
    height: 25rem;
}
.popup__image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}
.popup__close {
    position: absolute;
    right: 0;
    top: 0;
    width: 3rem;
    height: 3rem;
    z-index: 10;
    cursor: pointer;
}
.popup__close svg{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.popup__close svg path{
    fill: #fff;
}
.popup__content form{
    display: flex;
    flex-direction: column;
    grid-gap: 1rem;
    padding: 2rem;
}
.popup__input input{
    width: 100%;
    height: 4.2rem;
    padding: 1rem;
    border-radius: .2rem;
    border:.05rem solid #bdbdbd;
    font-family: PingFang-SC-Light;
    font-size: 1.6rem;
    color: #000;
    outline: none;
}
.popup__input .error{
    font-size: 1.2rem;
    color: red;
    margin-top: .5rem;
    font-family: PingFang-SC-Light;
}
.popup__success {
    display: none;
    padding: 2rem;
    font-family: PingFang-SC-Light;
    font-size: 2rem;
    text-align: center;
    font-weight: 500;
}
.popup__btn {
    cursor: pointer;
}
.popup__btn button{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 4.2rem;
    padding: 1rem;
    border-radius: .2rem;
    border: none;
    cursor: pointer;
    background-color: #6f42c1;
    font-family: PingFang-SC-Light;
    font-size: 1.6rem;
    color: #fff;
    outline: none;
}
.popup__sogl {
    display: flex;
    flex-direction: row;
    align-items: center;
    grid-gap: .6rem;
    cursor: pointer;
}
.popup__sogl label{
    font-size: 1.2rem;
    display: inline-block;
    line-height: 1.4rem;
    color:#bdbdbd;
    cursor: pointer;
}

.popup__sogl .checkbox {
    position: absolute;
    z-index: -1;
    opacity: 0;
    cursor: pointer;
}
.popup__sogl .checkbox+label {
    display: inline-flex;
    align-items: center;
    user-select: none;
}
.popup__sogl .checkbox+label::before {
    content: '';
    display: inline-block;
    width: 1em;
    height: 1em;
    flex-shrink: 0;
    flex-grow: 0;
    border: 1px solid #adb5bd;
    border-radius: 0.25em;
    margin-right: 0.5em;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 50% 50%;
}
.popup__sogl .checkbox:checked+label::before {
    border-color: #6f42c1;
    background-color: #6f42c1;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e");
}
@media(min-width: 768px){
    .popup__inner {
        width: 55rem;
    }
    .popup__image {
        height: 30rem;
    }
    .screen-bottom__btn {
        left: 15rem;
    }
    .popup__input {
        min-height: 6rem;
    }
    .popup__success {
        font-size: 2.7rem;
    }
}
@media (max-width: 767px) {
    .header-info__item.phone img {
        width: 2.15rem;
        height: 2.15rem;
    }
    .header-info__item.email svg {
        margin-top: .3rem;
    }
    .header-info {
        flex-direction: row-reverse;
        grid-gap: 1.2rem;
    }
}

.testdrive-form{
    width: 100%;
    height: 17rem;
    background-color: #141223;
    padding: 0 7.3rem;
}
.testdrive-form__wrap{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    position: relative;
    height: 100%;
}
.testdrive-form{}

.testdrive-form__title {
    font-family: JiduSansCN4-Regular;
    font-size: 4.4rem;
    font-weight: 500;
    line-height: 4.4rem;
    color: #fff;
    margin-bottom: 1.4rem;
    white-space: nowrap;
    z-index: 4;
    position: relative;
}
.testdrive-form__subtitle {
    font-family: JiduSansCN4-Regular;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 2.24rem;
    color: #fff;
}
.testdrive-form__input input{
    font-family: JiduSansCN4-Regular;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.76rem;
    padding: 1.7rem 2rem;
    border: 1px solid #FFFFFF;
    color: #f2f2f2;
    height: 5.2rem;
    width: 30rem;
    background-color: transparent;
}
.testdrive-form__input input::placeholder{
    color: #fff;
}
.testdrive-form__btn button {
    font-family: JiduSansCN4-Regular;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.76rem;
    padding: 1.7rem 2rem;
    border: 1px solid #141223;
    height: 5.2rem;
    width: 30rem;
    background-color: #fff;
    cursor: pointer;
}
.testdrive-form__btn label {
      cursor: pointer;  
}
.testdrive-form__r form {
    display: flex;
    flex-direction: row;
    align-items: center;
    grid-gap: 1rem;
    width: 61rem;
    flex-wrap: wrap;
}
.testdrive-form__sogl {
    display: flex;
    flex-direction: row;
    align-items: center;
}
.testdrive-form__sogl label {
    font-family: JiduSansCN4-Regular;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.44rem;
    color: #fff;
}
.testdrive-form__sogl .checkbox:checked+label::before {
    border-color: #6f42c1;
    background-color: #6f42c1;
    background-image: url(data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e);
}
.testdrive-form__sogl .checkbox {
    position: absolute;
    z-index: -1;
    opacity: 0;
    cursor: pointer;
}
.testdrive-form__sogl .checkbox+label::before {
    content: '';
    display: inline-block;
    width: 1em;
    height: 1em;
    flex-shrink: 0;
    flex-grow: 0;
    border: 1px solid #adb5bd;
    border-radius: 0.25em;
    margin-right: 0.5em;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 50% 50%;
}
.testdrive-form__m {
    position: absolute;
    width: 68rem;
    left: calc(50% - 34rem);
    bottom: 0;
}
.testdrive-form__m img {
    mix-blend-mode: exclusion;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media(max-width: 767px){
    .testdrive-form {
         height: 39.2rem;
         width: 100%;
         padding: 4rem 1.5rem;
    }
    .testdrive-form__wrap {
        flex-direction: column;
    }
    .testdrive-form__title {
        font-size: 2.85rem;
        line-height: 2.85rem;
        width: 66.666%;
        white-space: unset;
    }
    .testdrive-form__subtitle {
        font-size: 1.75rem;
        line-height: normal;
        width: 48%;
        margin-bottom: 4.5rem;
    }
    .testdrive-form__m {
       position: absolute;
        width: 25rem;
        height: 25rem;
        left: unset;
        bottom: unset;
        right: -2rem;
        top: -4rem;
    }
    .testdrive-form__m img {
        object-fit: cover;
    }
    .testdrive-form__r form {
        flex-direction: column;
        width: 100%;
    }
    .testdrive-form__input {
        width: 100%;
    }
    .testdrive-form__btn {
        width: 100%;
    }
    .testdrive-form__input input {
        width: 100%;
        height: 5.778rem;
    }
    .testdrive-form__btn button {
        width: 100%;
        height: 5.778rem;
    }
    .testdrive-form__sogl label {
        font-size: 1.5rem;
        line-height: 1.8rem;
        text-indent: -2.5rem;
        padding-left: 2.5rem;
    }
    
}



.footer__r {
    flex-wrap: wrap;
    grid-gap: 1.2rem;
}
.footer__company{
    display: block;
    width: 100%;
    color: #fff;
}
.footer__company,
.footer__company a {
    font-size: 1.4rem;
}
@media(max-width: 767px){
    .footer__r {
        justify-content: center;
    }
    .footer__company,
    .footer__company a {
        text-align: center;
    } 
}

.info-widget {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    padding: 1.5rem 3rem;
    border-radius: 1rem 1rem 0 0;
    background-color: #000;
    z-index: 10000000001;
    box-shadow: 3px 5px 15px rgba(0, 0, 0, 0.66);
    height: 7.6rem;
    overflow: hidden;
}
.info-widget__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.info-widget__content p{
    font-size: 1.6rem;
    line-height: 1.6rem;
    color: #fff;
    margin: 0 0 1rem;
}
.info-widget__content a{
   font-size: 2rem;
   font-weight: 600;
   line-height: 2rem;
   color: #fff; 
   text-decoration: none;
}
@media(max-width: 767px){
    .info-widget{
        display: none;
        bottom: env(safe-area-inset-bottom, 0);
    }
}
