@font-face {
    font-family: Proxima;
    src: url("../Font/Mark\ Simonson\ \ Proxima\ Nova\ Regular.otf");
}

:root {
    --gray: #323941;
    --aqua: #009EFF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Proxima;
}

a {
    text-decoration: none;
}

ul,
ol {
    list-style: none;
}

.site {
    max-width: 1376px;
    margin: auto;
    border: 1px solid red;
}

.container {
    width: 80%;
    margin: auto;
}

nav {
    background: var(--gray);
    padding: 20px 0;
    position: sticky;
    top: -10px;
    z-index: 9999;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-menu {
    display: flex;
    gap: 15px;
}

.navbar-menu a {
    color: #fff;
    font-weight: 400;
    font-size: 18px;
    letter-spacing: 1px;
    position: relative;
}

.navbar-menu a::before {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--aqua);
    left: 0;
    top: 100%;
    transition: .5s;
}

.navbar-menu a:hover::before {
    width: 100%;
}

.social-icons {
    display: flex;
    gap: 20px;
}

.card-shopping {
    color: white;
    position: relative;
}

.card-shopping i {
    font-size: 20px;
}

.card-shopping span {
    display: inline-block;
    background: var(--aqua);
    width: 15px;
    height: 15px;
    border-radius: 50%;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -8px;
    right: -8px;
}

.social-icons .fa-instagram {
    color: white;
    font-size: 22px;
}

.social-icons p {
    font-size: 17px;
    color: white;
    font-weight: 500;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.login {
    display: flex;
    align-items: center;
    gap: 10px;
}

.login p {
    font-weight: 600;
    font-size: 13px;
}

.login a {
    color: var(--aqua);
    text-decoration: underline;
    width: 90px;
    display: inline-block;
    font-weight: 400;
    font-size: 13px;
}



.category .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.category {
    background: var(--gray);
}

.category-item {
    padding: 20px 30px;
    text-align: center;
    transition: .4s;
}

.category-item:hover {
    background: var(--aqua);
}

.category-item:hover p {
    opacity: 1;
}

.category-item p {
    font-weight: 700;
    font-size: 18px;
    color: #ffffff;
    opacity: 0.7;
    text-transform: uppercase;
    white-space: nowrap;
}

.category-item img {
    height: 80px;
}

.line {
    width: 100%;
    height: 1px;
    background: white;
    opacity: 0.1;
}

.shipping {
    background: var(--aqua);
    text-align: center;
    color: white;
    font-size: 18px;
    font-weight: 400;
    text-transform: uppercase;
    padding: 15px 0;
    letter-spacing: 2px;
}








.afisha {
    padding: 20px 0;
}

.afisha .container {
    height: 100%;
    display: flex;
    justify-content: space-between;
}

.afisha .left {
    width: 60%;
}

.afisha .stock {
    color: #6ACD68;
    border: 2px solid #6ACD68;
    background: white;
    border-radius: 0;
    padding: 3px 15px;
    font-size: 13px;
    font-weight: 400;
}

.afisha .left h1 {
    text-transform: uppercase;
    font-size: 80px;
    font-weight: 700;
    font-family: sans-serif !important;
    line-height: 70px;
    padding: 15px 0;
}

.product {
    width: 100%;
    border: 1px solid #999;
    padding: 20px;
}

.product .text-one {
    font-size: 18px;
}

.product .group-1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 15px;
}

.product .group-1 li {
    border: 1px solid #999;
    padding: 10px 50px;
    font-size: 13px;
}

.product .group-2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    gap: 15%;
}

.product .group-2 div:nth-of-type(1) p {
    font-size: 18px;
}

.product .group-2 div:nth-of-type(1) h3 {
    font-size: 35px;
    font-weight: bold;
    font-family: sans-serif !important;
}

.product .group-2 div:nth-of-type(2) p {
    color: var(--aqua);
    font-size: 18px;
}

.product .group-2 img {
    width: 120px;
}

.product .group-3 {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.product .group-3 button {
    background: var(--aqua);
    color: #fff;
    width: 50%;
    border: none;
    height: 50px;
    text-transform: uppercase;
    font-size: 18px;
    font-family: sans-serif !important;
    font-weight: bold;
}

.afisha .payment {
    font-size: 18px;
    display: flex;
    gap: 10px;
    margin-block: 10px;
}


.afisha .payment span {
    color: var(--aqua);
    display: flex;
    align-items: center;
    font-family: sans-serif !important;
    font-weight: bold
}

.afisha .payment span span {
    color: green;
}

.afisha .right {
    width: 40%;
    position: relative;
    overflow: hidden;
}

.afisha .right img {
    width: 100%;
}

.dots {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 5px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 20px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: gray;
}

.dot-active {
    background: var(--aqua);
}

.carousel img {
    width: 100%;
}

.infos {
    padding: 40px 0;
}

.infos .container {
    display: flex;
    flex-direction: column;
}

.infos ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.infos ul li {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px 15px;
    width: 100%;
}

.infos ul li:last-child {
    background: var(--aqua);
    color: #fff !important;
}

.infos ul li:last-child p {
    color: #fff;
}

.infos ul p {
    width: 120px;
    color: #999;
}

.infos ol {
    background: #F6F6F6;
    padding: 30px 20px;
    display: flex;
    justify-content: space-between;
}

.infos .ol-one li:first-child {
    width: 60%;
}

.infos .ol-one li:first-child h1 {
    font-size: 25px;
    text-transform: uppercase;
}

.infos .ol-one li:first-child p {
    font-size: 18px;
    padding-top: 20px;
    color: #323941;
}

.infos .ol-one li:last-child {
    background: url(../image/Polygon\ 2.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    width: 200px;
    height: 200px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-size: 80px;
    font-family: sans-serif !important;
    font-weight: bold;
}

.infos .ol-one li:last-child span {
    font-size: 27px;
}

.infos .ol-two {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    display: none;
}

.infos .ol-two li h3 {
    font-size: 24px;
    font-weight: 700;
    line-height: 31px;
    text-align: center;
    font-family: sans-serif !important;
    margin-block: 15px;
}

.infos .ol-two li p {
    font-size: 18px;
    color: var(--gray);
    text-align: center;
    margin-bottom: 50px;
}






.packing-list {
    padding: 50px 0;
    background: linear-gradient(180deg, white, #EFEFEF);
}

.packing-list .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.packing-list h2 {
    font-size: 50px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 25px;
}

.packing-list .video {
    width: 50%;
}

.packing-list .video iframe {
    width: 100%;
}

.circle {
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: var(--aqua);
}

.circle .devices {
    display: flex;
    align-items: center;
    justify-content: center;
}






/*

ADAPTATSIYA
(2200px < ) 2K
(1368px - 2200px) DEKSTOP
(768px - 1368px) TABLET
(300px - 768px) MOBILE

 */

.social-icons .fa-phone {
    display: none;
}



@media (max-width:1360px) {
    .line {
        display: none;
    }

    .category {
        display: flex;
        align-items: center;
        justify-content: start;
        overflow-x: scroll;
    }

    .category .container {
        width: 100% !important;
    }

    .protective {
        display: none;
    }

    .afisha .carousel {
        min-width: 400px;
        margin-top: 50px;
    }

    .page-seven {
        overflow: hidden !important;
    }

    .download {
        padding: 60px !important;
    }

    .ninebot {
        padding: 5% !important;
    }

    .ninebot .png {
        margin-top: 60px;
        width: 60% !important;
    }
}

@media (max-width: 1100px) {
    .container {
        width: 95%;
    }

    .infos .container {
        padding: 20px 0;
    }

    .infos .ol-one {
        display: none;
    }

    .infos {
        background: #F6F6F6;
        padding: 0;
    }

    .infos .container {
        flex-direction: column-reverse;
    }

    .infos ul {
        justify-content: space-evenly;
    }

    .infos .ol-two {
        display: flex;
    }

    .infos .ol-two li:nth-child(1) {
        text-align: center;
    }

    .infos ul li {
        background: white;
        width: 86px;
        height: 63px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .infos ul li p {
        display: none;
    }

    .afisha {
        overflow: hidden;
    }

    .afisha .right {
        overflow: hidden;
    }

    .afisha .right img {
        width: 100%;
    }

    .circle .devices {
        margin-right: 25px !important;
        margin-top: 25px !important;
    }

    .packing-list .container {
        flex-direction: column-reverse;
        position: relative;
        padding-top: 90px;
    }

    .packing-list .container h2 {
        font-size: 30px;
        text-align: center;
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
    }

    .packing-list .container .video {
        width: 98%;
        margin-top: 40px;
    }

    .packing-list .container .video iframe {
        width: 100%;
    }

    .packing-list .circle {
        width: 300px;
        height: 300px;
    }

    .packing-list .circle .devices img {
        width: 100%;
        margin-left: 5%;
    }

    .page-three {
        padding-left: 5% !important;
    }

    .page-four {
        flex-direction: column !important;
        padding-left: 0 !important;
    }

    .page-four img {
        width: 100%;
    }

    .page-four div {
        padding: 0 5%;
    }

    .page-four h2 {
        font-size: 40px !important;
    }

    .page-five {
        padding-left: 0 !important;
        flex-direction: column-reverse;
    }

    .page-five img {
        width: 100%;
        margin-bottom: 20px;
    }

    .page-five div {
        padding: 0 5%;
    }

    .page-six {
        flex-direction: column;
        padding: 5% 0 !important;
    }

    .page-six img {
        width: 100%;
    }

    .page-eight {
        padding: 0 !important;
        flex-direction: column-reverse;
    }

    .page-eight img {
        width: 100%;
    }

    .page-eight div {
        width: 100% !important;
        text-align: center;
        padding: 30px 0;
    }

    .page-nine {
        flex-direction: column;
        padding: 0 !important;
        text-align: center;
    }

    .page-nine h2 {
        margin-top: 30px !important;
    }

    .page-nine img {
        width: 100%;
    }

    .page-seven {
        padding: 0 !important;
        height: 100% !important;
        display: flex !important;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .page-seven div {
        position: static !important;
        width: 100% !important;
        margin-top: 20px;
        padding: 0 5% !important;
    }

    .page-seven div p {
        margin-bottom: 60px !important;
    }

    .page-seven img:last-child {
        display: none !important;
    }

    .page-seven .battary {
        display: block !important;
        width: 100%;
    }

    .download {
        padding: 40px !important;
    }

    .download .manual {
        flex-direction: column;
        height: 100% !important;
        text-align: center;
        gap: 30px !important;
    }

    .download .manual .img {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .download .manual .img img {
        width: 120% !important;
    }

    .download .manual .div {
        padding: 0 5% 5% 5% !important;
    }

    .download .manual .div div {
        display: flex !important;
        align-items: center;
        justify-content: center;
    }

    .reviews ul li:nth-child(2) {
        display: none !important;
    }

    .ninebot {
        padding: 3% !important;
        background: linear-gradient(180deg, #FFFFFF 0%, #F5F5F5 100%);
    }

    .ninebot .left {
        display: none !important;
    }

    .ninebot button:first-child {
        display: block !important;
        margin: auto !important;
        margin-block: 40px !important;
    }

    .ninebot h1 {
        font-size: 75px !important;
        line-height: 70px !important;
        text-align: center;
    }

    .ninebot .png {
        display: none;
    }

    .ninebot .product-2 {
        display: block !important;
    }

    .ninebot .product-2 .group-3 {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px 0 !important;
    }

    .ninebot .product-2 .group-3 button {
        margin: 0 !important;
    }

    .ninebot .protective {
        display: block !important;
    }

    .ninebot .img {
        width: 100%;
        margin-top: 30px;
        display: block !important;
    }

    .ninebot .payment-2 {
        display: inline-block !important;
    }

    .ninebot .payment-2 span {
        display: inline-block !important;
    }

    .ninebot .partner-2 {
        display: block !important;
    }

    footer .footer-links {
        gap: 30px !important;
    }

    .packing-list .video {
        width: 80% !important;
        height: 100%;
    }
}

@media (max-width:900px) {
    .afisha .right .carousel {
        display: none;
    }

    .social-icons p {
        position: relative;
    }

    .social-icons .fa-phone {
        display: block;
    }

    .social-icons p span {
        position: absolute;
        display: inline-block;
        padding: 5px 20px;
        background: var(--gray);
        white-space: nowrap;
        top: 100%;
        right: 0;
        display: none;
    }

    .social-icons .fa-phone:hover+span {
        display: block;
    }

    .shipping {
        display: none;
    }

    .left {
        width: 100% !important;
    }

    .right {
        width: 0 !important;
    }

    .left .stock {
        margin: auto;
        display: block;
    }

    .left h1 {
        font-size: 37px !important;
        line-height: 34px !important;
        text-align: center;
    }

    .afisha .left .carousel-2 {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        padding-bottom: 40px;
    }

    .afisha .left .carousel-2 img {
        width: 266px;
        height: 100%;
        text-align: center;
    }

    .afisha .right .dots {
        display: none;
    }

    .afisha .carousel-2 .dots {
        bottom: -35%;
    }

    .afisha .protective {
        display: inline-block;
    }

    .afisha .card-1,
    .afisha .card-2 {
        display: none;
    }

    .afisha .product {
        display: none;
    }

    .afisha .product-2 {
        display: block;
    }

    .afisha .partner img {
        width: 40px;
        height: 25px;
    }

    .afisha .protective {
        width: 100%;
        margin: auto;
        margin-block: 30px;
    }

    .accessories h1 {
        font-size: 35px !important;
    }

    .accessories .options {
        overflow-x: scroll;
        flex-wrap: nowrap !important;
    }

    .accessories .options li {
        width: 250px !important;
    }

    .accessories .options h3 {
        text-align: start;
    }

    .accessories .options li p {
        font-size: 12px;
    }

    .accessories .options li .price-2 {
        font-size: 16px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .accessories .options li h3 {
        font-size: 18px;
    }

    .accessories .options li p {
        text-align: start;
    }

    .accessories .more .see-more {
        display: none;
    }

    .page-one img:first-child {
        width: 600px;
    }

    .page-one h2 {
        font-size: 28px !important;
    }

    .page-three img {
        width: 100%;
    }

    .page-three {
        flex-direction: column-reverse !important;
        padding: 0 !important;
    }

    .page-three div {
        width: 100% !important;
    }

    .page-three h2 {
        font-size: 28px !important;
        line-height: 24px !important;
        margin-top: 20px;
    }

    .page-three p {
        font-size: 15px;
        margin-bottom: 60px;
    }

    .page-three div:first-child {
        padding: 0 5% !important;
    }

    .page-five h2 {
        font-size: 40px !important;
        line-height: 45px !important;
    }

    .page-six h2 {
        font-size: 40px !important;
    }

    .page-eight div {
        padding: 30px 5% !important;
    }

    .page-eight h2 {
        font-size: 40px !important;
        line-height: 45px !important;
        line-height: 35px !important;
    }

    .page-nine div {
        padding: 0 5% !important;
    }

    .page-seven div {
        padding: 0 5% !important;
    }

    .page-seven div h2 {
        font-size: 30px !important;
        line-height: 30px !important;
    }

    .page-seven div p {
        margin-bottom: 40px !important;
    }

    .download .manual {
        padding: 0 5% 5% 5% !important;
    }

    .download .manual ul {
        gap: 20px;
    }

    .specifications h1 {
        font-size: 30px !important;
    }

    .specifications .add {
        font-size: 14px !important;
        margin-top: 0 !important;
    }

    .specifications ul {
        gap: 15px !important;
    }

    .control .icons {
        display: flex;
        align-items: center;
        flex-direction: column;
        width: 100% !important;
    }

    .control .icons ul {
        justify-content: center !important;
    }

    .control .icons ul li {
        width: calc(100% / 3) !important;
    }

    .control .tel {
        display: flex !important;
        align-items: center;
        justify-content: center;
    }

    .control .phone {
        display: none !important;
    }

    .control .phone-2 {
        width: 100%;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .control .phone-2 img {
        width: 100%;
        margin-bottom: 0 !important;
        margin-top: 20px !important;
        margin-left: 40%;
    }

    .ninebot h1 {
        font-size: 60px !important;
        line-height: 55px !important;
    }

    footer .container {
        flex-direction: column !important;
        gap: 40px;
    }

    footer .footer-links {
        width: 100% !important;
        flex-direction: column !important;
        gap: 10px !important;
        align-items: center;
        justify-content: center;
        margin-bottom: 30px;
    }

    footer .footer-links a {
        font-size: 18px;
        text-align: center;
    }
}

.bars {
    display: none;
}

@media (max-width:780px) {
    .bars {
        display: inline-block;
        border: none;
        background: none;
        font-size: 24px;
    }

    .bars:focus+.navbar-menu {
        display: flex;
    }

    nav {
        background: white;
        position: sticky;
        top: 0;
    }

    nav i {
        color: var(--gray) !important;
    }

    .navbar {
        position: relative;
    }

    .navbar-menu {
        position: absolute;
        top: 100%;
        background: var(--gray);
        flex-direction: column;
        position: absolute;
        left: 0;
        width: 100%;
        text-align: center;
        padding: 20px 0;
        display: none;
    }

    .afisha .carousel-2 .dots {
        bottom: -25% !important;
    }

    .social-icons {
        flex-direction: row-reverse;
        align-items: center;
    }

    .login {
        display: none;
    }

    .header {
        padding: 0;
    }

    .header>a {
        position: fixed;
        top: 12px;
        z-index: 99999;
        left: 50%;
        transform: translateX(-50%);
    }

    .header>a img {
        width: 150px;
    }

    .afisha .carousel-2 .dots {
        bottom: -10%;
    }

    .packing-list iframe {
        width: 100% !important;
    }

    .page-one h3 {
        font-size: 18px !important;
    }

    .page-one .imperassive li img {
        width: 60% !important;
    }

    .page-one,
    .imperassive li p {
        font-size: 12px !important;
    }

    .page-two h1 {
        font-size: 28px !important;
        line-height: 30px !important;
    }

    .page-two h1 span {
        font-size: 22px !important;
        color: var(--aqua);
    }

    .page-three h2 {
        font-size: 22px !important;
    }

    .page-four h2 {
        font-size: 28px !important;
        margin-bottom: 10px !important;
        line-height: 35px !important;
    }

    .page-five h2 {
        font-size: 25px !important;
        line-height: 35px !important;
    }

    .page-five p {
        font-size: 15px !important;
    }

    .page-six h2 {
        font-size: 25px !important;
        margin-bottom: 10px !important;
    }

    .page-six p {
        font-size: 15px;
    }

    .page-eight {
        text-align: center;
    }

    .page-eight h2 {
        font-size: 25px !important;
        margin: 30px 0 10px 0 !important;
    }

    .page-eight p {
        margin-bottom: 20px !important;
    }

    .page-nine h2 {
        font-size: 25px !important;
        margin-bottom: 10px !important;
        text-align: start;
    }

    .page-nine p {
        font-size: 15px;
        text-align: start;
    }

    .page-two .table .left-li {
        display: none;
    }

    .page-two .table .right-li .first {
        display: block !important;
    }

    .page-two .table .right-li li {
        font-size: 16px !important;
        margin-bottom: 5px !important;
    }

    .page-seven div h2 {
        font-size: 25px !important;
        line-height: 25px !important;
    }

    .page-seven div p {
        font-size: 15px;
        margin-bottom: 40px;
    }

    .download .manual ul li {
        display: flex;
        align-items: center;
        flex-direction: column;
    }

    .download {
        padding: 40px 5px 10px 5px !important;
    }

    .download .manual h2 {
        font-size: 35px !important;
        line-height: 35px !important;
    }

    .download .manual h2 span {
        display: inline-block !important;
    }

    .download .manual ul li {
        width: calc(100% / 3) !important;
    }

    .specifications {
        padding: 50px 0 !important;
    }

    .specifications ul {
        justify-content: space-evenly !important;
    }

    .specifications ul li {
        width: 50% !important;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .specifications h1 {
        line-height: 30px !important;
    }

    .specifications ul .li-circle {
        display: flex !important;
    }

    .specifications ul li:nth-child(3),
    .specifications ul li:nth-child(4),
    .specifications ul li:nth-child(5) {
        display: none !important;
    }

    .specifications .e-two {
        display: none !important;
    }

    .specifications .max {
        display: block !important;
    }

    .specifications .properties {
        display: none !important;
    }

    .specifications ol .odd {
        background: #f5f5f5;
    }

    .specifications .kilometr {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-top: 20px;
    }

    .specifications ol li .kilometr p {
        width: 30%;
        color: var(--gray) !important;
        font-size: 18px !important;
    }

    .specifications .div {
        display: none !important;
    }

    .specifications .div-two {
        display: flex !important;
        align-items: center;
        flex-direction: column;
        gap: 30px;
    }

    .specifications .div-two p {
        font-size: 25px;
        font-family: sans-serif !important;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .specifications .div-two button {
        width: 170px;
        height: 46px;
        background: var(--aqua);
        border: none;
        text-transform: uppercase;
        font-size: 18px;
        color: white;
    }

    .specifications .gift {
        display: none !important;
    }

    .specifications .protective-two {
        display: flex !important;
    }

    .specifications .kilometr {
        display: flex !important;
    }

    .reviews {
        position: relative !important;
        padding-inline: 5% !important;
    }

    .reviews ul li img {
        width: 100%;
    }

    .reviews ul li:nth-child(1) {
        display: none !important;
    }

    .reviews ul li:nth-child(5) {
        position: absolute;
        right: 5%;
        top: 25%;
        transform: translateY(-50%);
    }

    .control h1 {
        font-size: 25px !important;
    }

    .control .text {
        font-size: 15px !important;
    }

    .control .text span {
        display: inline-block !important;
    }

    .ninebot h1 {
        font-size: 35px !important;
        line-height: 40px !important;
    }

    .other-models {
        padding: 40px 0 !important;
    }

    .other-models h1 {
        font-size: 40px !important;
    }

    .other-models .text {
        padding: 10px 0 !important;
    }
    .other-models ul {
        overflow-x: scroll;
        flex-wrap: nowrap !important;
        gap: 20px;
    }
    .other-models ul li {
        width: 100% !important;
    }
    .other-models ul .find input{
        font-size: 13px !important ;
        padding: 0;
    }
}

@media (max-width:410px) {
    .afisha .carousel-2 .dots {
        bottom: -30% !important;
    }

    .packing-list .circle {
        width: 100%;
        height: 100%;
    }

    .packing-list .devices {
        width: 100%;
    }

    .packing-list .devices img {
        width: 100%;
        margin-left: 0px !important;
    }

    .packing-list .video {
        width: 100% !important;
        height: 100%;
    }

    .page-one .imperassive li img {
        width: 80% !important;
    }

    .page-four p {
        font-size: 15px !important;
    }

    .page-two .table .right-li li {
        font-size: 13px !important;
        margin-bottom: 0 !important;
    }

    .accessories h1 {
        font-size: 25px !important;
    }

    .download .manual .img img {
        margin-left: -120px !important;
    }

    .download .manual h2 {
        font-size: 25px !important;
    }

    .reviews ul li:nth-child(5) {
        width: 50px !important;
        height: 50px !important;
        top: 15%;
    }

    .reviews ul li:nth-child(5) .fa-solid {
        font-size: 30px;
    }

    .other-models h1 {
        font-size: 30px !important;
    }
}

.left .carousel-2 {
    display: none;
}

.page-eight .middle {
    display: none;
}

.protective {
    border: 6px solid #009EFF;
    padding: 20px 10px;
    display: none;
    margin: 20px 0;
}

.protective ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.protective h3 {
    font-size: 20px;
    text-transform: uppercase;
}

.protective p {
    font-size: 14px;
    color: var(--gray);
    letter-spacing: 1px;
}

.protective img {
    transform: rotate(-90deg);
}

.product-2 {
    border: 4px solid #999;
    padding: 10px;
    display: none;
}

.product-2 .text-one {
    font-size: 18px;
    text-align: center;
}

.product-2 .group-1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5px;
}

.product-2 .group-1 li {
    width: calc(100% / 3);
    border: 2px solid #999;
    text-align: center;
    font-size: 18px;
    padding: 10px 0;
    margin: 10px 0;
}

.product-2 .group-1 li span {
    display: block;
    color: var(--aqua);
    font-weight: 700;
    font-family: sans-serif !important;
}

.product-2 .group-2 p {
    font-size: 22px;
    color: var(--gray);
    text-align: center;
    margin-top: 10px;
}

.product-2 .group-2 h3 {
    font-size: 38px;
    font-family: sans-serif !important;
    font-weight: 700;
    color: var(--gray);
    text-align: center;
    margin-bottom: 20px;
}

.product-2 .group-3 {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.product-2 .group-3 button {
    background: var(--aqua);
    color: #fff;
    width: 50%;
    border: none;
    height: 50px;
    text-transform: uppercase;
    font-size: 18px;
    font-family: sans-serif !important;
    font-weight: bold;
}




.accessories {
    padding: 75px 0;
}

.accessories .options {
    overflow: hidden;
}

.accessories .options li .back {
    width: 133px;
    height: 133px;
    border-radius: 50%;
    background: #eeeeee;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.accessories h1 {
    font-size: 50px;
    font-weight: 700;
    text-align: center;
    color: var(--gray);
    font-family: sans-serif !important;
    text-transform: uppercase;
}

.accessories .options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.accessories .options li {
    width: calc(100% / 3);
    text-align: center;
    padding: 25px;
}

.accessories .options li h3 {
    font-size: 25px;
    text-transform: uppercase;
    font-weight: 700;
    font-family: sans-serif !important;
    color: var(--gray);
    margin-block: 15px;
}

.accessories .options li p {
    font-size: 13px;
    color: #999;
    line-height: 16px;
    font-weight: 400;
    font-family: sans-serif !important;
}

.accessories .options li span {
    font-size: 18px;
    color: var(--gray);
    margin-block: 20px;
    display: inline-block;
}

.accessories .options li button {
    width: 130px;
    height: 42px;
    color: #c6c6c6;
    font-size: 13px;
    border: 1px solid #c6c6c6;
    text-transform: uppercase;
    display: block;
    margin: auto;
    background: white;
    transition: .3s;
}

.accessories .options li button:hover {
    background: var(--aqua);
    border: none;
    color: #ffffff;
}

.accessories .more {
    display: flex;
    justify-content: center;
}

.accessories .see-more {
    width: 230px;
    height: 48px;
    background: var(--aqua);
    font-size: 18px;
    border: none;
    color: #ffffff;
    text-transform: uppercase;
    margin-top: 30px;
    display: inline-block;
}

.immg {
    width: 100%;
    position: relative;
}

.immg img {
    width: 100%;
}

.immg .image-2 {
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
}





.page-one {
    background: #F5F5F5;
    padding-top: 60px;
}

.page-one h2 {
    font-size: 50px;
    font-weight: 700;
    text-align: center;
    font-family: sans-serif !important;
    color: var(--gray);
    margin-bottom: 60px;
}

.imperassive {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.imperassive li {
    width: 25%;
    text-align: center;
    margin-bottom: 50px;
}

.imperassive li img {
    width: 40% !important;
}

.imperassive li h3 {
    font-size: 35px;
    font-weight: 300;
    color: var(--aqua);
}

.imperassive li p {
    font-size: 18px;
    font-weight: 400;
    color: #999;
}



.page-two {
    padding: 30px 0;
}

.page-two h1 {
    font-size: 50px;
    font-weight: 700;
    line-height: 60px;
    text-align: center;
    font-family: sans-serif !important;
    text-transform: uppercase;
    color: var(--gray);
}

.page-two h1 span {
    display: block;
    font-family: sans-serif !important;
    font-weight: 700 !important;
}

.page-two .table {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.page-two .table div:first-child ul li,
.page-two .table div:last-child ul li {
    font-size: 18px;
    color: #999;
    margin-bottom: 15px;
}

.page-two .circles img {
    width: 100%;
}

.page-two .table .right-li .first {
    display: none;
}



.page-three {
    background: #0E0E16;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
    padding-left: 10%;
    overflow: hidden;
}

.page-three div {
    width: 50%;
}

.page-three h2 {
    font-size: 50px;
    font-weight: 700;
    line-height: 60px;
    text-transform: uppercase;
}

.page-three p {
    font-size: 18px;
    font-weight: 400;
    line-height: 22px;
    color: #ffffffc4;
    margin-top: 30px;
}

.page-three img {
    width: 100%;
    overflow: hidden;
}



.page-four {
    padding-right: 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-four div h2 {
    font-size: 50px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: sans-serif !important;
    letter-spacing: -1px;
    color: var(--gray);
    line-height: 60px;
    margin-bottom: 30px;
}

.page-four div p {
    font-size: 18px;
    color: var(--gray);
    line-height: 22px;
    font-weight: 400;
    margin-bottom: 30px;
}



.page-five {
    background: linear-gradient(90deg, #141D37 1%, #0E0E16 20%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 10%;
    color: white;
}

.page-five h2 {
    font-size: 50px;
    font-weight: 700;
    line-height: 60px;
    text-transform: uppercase;
}

.page-five p {
    font-size: 18px;
    font-weight: 400;
    line-height: 22px;
    opacity: 0.8;
    margin-block: 30px;
}

.page-five span {
    color: #6c6c6c;
    display: block;
    margin-top: 30px;
}


.page-six {
    text-align: center;
    padding: 60px 0;
}

.page-six h2 {
    text-transform: uppercase;
    font-size: 50px;
    font-weight: 700;
    line-height: 60px;
    font-family: sans-serif !important;
    letter-spacing: -1px;
    margin-bottom: 25px;
}

.page-six p {
    font-size: 18px;
}



.page-seven {
    width: 100%;
    height: 550px;
    padding-left: 10%;
    position: relative;
    background: linear-gradient(90deg, #141D37 1%, #0E0E16 20%);
    color: white;
}

.page-seven div {
    width: 750px;
    position: absolute;
    top: 70px;
    left: 150px;
}

.page-seven img {
    float: right;
}

.page-seven .battary {
    display: none;
}

.page-seven h2 {
    font-size: 50px;
    font-weight: 700;
    line-height: 60px;
    font-family: sans-serif !important;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.page-seven p {
    font-size: 18px;
    font-weight: 400;
    opacity: 0.8;
}




.page-eight {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-right: 10%;
}

.page-eight div {
    width: 450px;
}

.page-eight h2 {
    text-transform: uppercase;
    font-size: 50px;
    font-weight: 700;
    line-height: 60px;
    color: var(--gray);
    font-family: sans-serif !important;
    margin-bottom: 30px;
}

.page-eight p {
    font-size: 18px;
    font-weight: 400;
    line-height: 22px;
    color: var(--gray);
}



.page-nine {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 10%;
    background: linear-gradient(90deg, #141D37 1%, #0E0E16 20%);
    color: white;
    margin-bottom: 70px;
}

.page-nine h2 {
    text-transform: uppercase;
    font-size: 50px;
    font-weight: 700;
    line-height: 60px;
    font-family: sans-serif !important;
    margin-bottom: 30px;
}

.page-nine p {
    font-size: 18px;
    font-weight: 400;
    line-height: 22px;
    opacity: 0.8;
}





.download {
    background: #F5F5F5;
    padding: 80px;
    overflow: hidden;
}

.download .container .manual {
    border: 5px solid var(--aqua);
    background: white;
    display: flex;
    align-items: center;
    height: 320px;
    gap: 50px;
}

.download .manual div:nth-child(1) img {
    margin-left: -200px;
    margin-top: 20px;
}

.download .manual div:nth-child(2) {
    padding: 30px 0;
}

.download .manual h2 {
    font-size: 50px;
    font-weight: 700;
    line-height: 60px;
    font-family: sans-serif !important;
    text-transform: uppercase;
}

.download .manual h2 span {
    display: block;
}

.download .manual ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-block: 20px;
}

.download .manual ul li:nth-child(1) {
    width: 42%;
}

.download .manual ul li {
    width: calc(100% / 3);
    display: flex;
    align-items: center;
    gap: 10px;
}

.download .manual button {
    width: 250px;
    height: 40px;
    color: white;
    background: var(--aqua);
    border: none;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    cursor: pointer;
}




.specifications {
    padding: 100px 0;
}

.specifications h1 {
    font-family: sans-serif !important;
    font-size: 50px;
    font-weight: 700;
    line-height: 61px;
    text-align: center;
    text-transform: uppercase;
    color: var(--gray);
}

.specifications .add {
    text-align: center;
    margin-block: 20px;
    color: var(--gray);
}

/* .specifications .lists{
    overflow-x: scroll;
    margin-bottom: 30px;
    position: relative;
} */

.specifications ul .max {
    display: none;
}

.specifications ul {
    display: flex;
    align-items: center;
    justify-content: start;
}

.specifications ul li {
    width: 25%;
}

.specifications ul .li-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    display: none;
}

.specifications ul .li-circle div {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--aqua);
    display: flex;
    align-items: center;
    justify-content: center;
}

.specifications ul .li-circle div {
    font-size: 110px;
    color: white;
}

.specifications ul .li-circle h3 {
    font-size: 20px;
    color: #999;
}

.specifications ul li p {
    text-transform: uppercase;
    font-family: sans-serif !important;
    font-size: 18px;
    font-weight: 700;
    line-height: 22px;
    margin-top: 20px;
}

.specifications ol {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
    margin-bottom: 60px;
    z-index: -1;
}

.specifications ol li {
    width: 100%;
}

.specifications ol li p {
    font-size: 18px;
    color: var(--aqua);
}

.specifications ol li .line {
    width: 100%;
    height: 3px;
    background: var(--gray);
    margin-block: 7px;
}

.specifications ol li .properties {
    display: flex;
    align-items: center;
}

/* .specifications .gradient{
    position: absolute;
    top: 0;
    right: -55%;
    transform: rotate(270deg);
    width: 100%;
    height: 120%;
} */

.specifications .properties p {
    width: 25%;
    color: var(--gray);
}

.specifications .div {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.specifications .div .buy {
    text-align: center;
}

.specifications .div .buy p {
    font-size: 25px;
    font-family: sans-serif !important;
    font-weight: 700;
    margin-bottom: 10px;
}

.specifications .div .buy button {
    width: 170px;
    height: 46px;
    background: var(--aqua);
    border: none;
    text-transform: uppercase;
    font-size: 18px;
    color: white;
}

.specifications .gift {
    width: 100%;
    border: 6px solid var(--aqua);
    margin-top: 130px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
}

.specifications .gift h2 {
    text-transform: uppercase;
    font-family: sans-serif !important;
    font-size: 50px;
    font-weight: 700;
    line-height: 60px;
}

.specifications .gift p {
    font-size: 18px;
    color: var(--gray);
}

.specifications .protective-two {
    border: 6px solid #009EFF;
    padding: 20px 10px;
    display: none;
    margin: 20px 0;
}

.specifications .protective-two ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.specifications .protective-two {
    width: 100%;
}

.specifications .protective-two .gear {
    width: 70%;
}

.specifications .protective-two .gear-two img {
    width: 60%;
    transform: rotate(-90deg);
}

.specifications .protective-two h3 {
    font-size: 20px;
    text-transform: uppercase;
}

.specifications .protective-two p {
    font-size: 14px;
    color: var(--gray);
    letter-spacing: 1px;
    text-transform: none;
    font-size: 14px;
    font-weight: normal;
    line-height: 22px;
    margin-top: 10px;
}

.specifications .right {
    position: absolute;
    right: 10%;
    top: 44%;
    width: 70px;
    height: 70px;
    background: white;
    border: 4px solid var(--aqua);
    font-size: 40px;
    display: flex;
    align-items: center;
    color: var(--aqua);
    justify-content: center;
}

.specifications .right i {
    transform: rotate(180deg);

}

.specifications .div-two {
    display: none;
}

.specifications .kilometr {
    display: none;
}

.reviews {
    padding: 70px 0;
    background: #F5F5F5;
}

.reviews h1 {
    font-family: sans-serif !important;
    font-size: 50px;
    font-weight: 700;
    line-height: 60px;
    text-align: center;
    color: var(--gray);
    text-transform: uppercase;
    margin-bottom: 40px;
}

.reviews ul {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.reviews ul li:nth-child(1),
.reviews ul li:nth-child(5) {
    width: 70px;
    height: 70px;
    background: white;
    border: 4px solid var(--aqua);
    font-size: 40px;
    display: flex;
    align-items: center;
    color: var(--aqua);
    justify-content: center;
    margin-top: 210px;
}

.control {
    background: linear-gradient(0deg, #EEEEEE 0%, rgba(245, 245, 245, 0.79) 43.81%, rgba(255, 255, 255, 0) 82.46%),
        linear-gradient(0deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2));
    overflow: hidden;
}

.control h1 {
    font-family: sans-serif !important;
    font-size: 50px;
    font-weight: 700;
    text-align: center;
    padding-top: 70px;
    text-transform: uppercase;
}

.control p {
    font-size: 18px;
    line-height: 22px;
    text-align: center;
    margin-top: 20px;
}

.control p span {
    display: block;
}

.control .phone-2 {
    overflow: hidden;
}

.control .phone-2 img {
    width: 100%;
}

.control .box {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 50px;
}

.control .icons {
    width: 40%;
    margin-top: 30px;
}

.control .icons ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: end;
}

.control .icons ul li {
    display: flex;
    align-items: center;
    justify-content: center;
}

.control .phone {
    width: 50%;
    margin-right: -100px;
}

.control .phone img {
    width: 100%;
}

.control .icons .phone {
    display: none;
}

.control .phone-2 {
    display: none;
}



.ninebot {
    padding: 60px 0 60px 10%;
    position: relative;
}

.ninebot button {
    width: 89px;
    height: 27px;
    border: 1px solid #6ACD68;
    color: #6ACD68;
    background: white;
    margin-bottom: 20px;
}

.ninebot h1 {
    text-transform: uppercase;
    font-size: 108px;
    font-weight: 700;
    font-family: sans-serif !important;
    line-height: 95px;
    color: var(--gray);
}

.ninebot .product {
    width: 48%;
    margin: 30px 0;
}

.ninebot .pay {
    color: #999;
    font-size: 18px;
    margin-bottom: 10px;
}

.ninebot .png {
    position: absolute;
    top: 20%;
    right: 2%;
}

.ninebot .img {
    display: none;
}

.ninebot .png img {
    width: 100%;
}

.ninebot .partner-2 {
    display: none;
}

.ninebot .payment-2 {
    font-size: 18px;
    display: flex;
    gap: 10px;
    margin-block: 10px;
    display: none;
}

.ninebot .payment-2 span {
    color: var(--aqua);
    display: flex;
    align-items: center;
    font-family: sans-serif !important;
    font-weight: bold
}

.ninebot .payment-2 span span {
    color: green;
}

.ninebot .partner-2 img {
    width: 40px;
    height: 25px;
}



.other-models {
    padding: 90px 0;
}

.other-models h1 {
    font-family: sans-serif !important;
    font-size: 50px;
    font-weight: 700;
    line-height: 61px;
    text-align: center;
    color: var(--gray);
}

.other-models p {
    font-size: 18px;
    text-align: center;
    padding: 30px 0;
}

.other-models .mode {
    overflow: hidden;
}

.other-models ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.other-models ul li {
    width: 25%;
    text-align: center;
    padding: 20px 0 30px 0;
}

.other-models ul li h3 {
    font-size: 25px;
    font-weight: 700;
    font-family: sans-serif !important;
    color: var(--gray);
    margin: 15px 0;
}

.other-models ul li span {
    font-size: 18px;
    color: var(--gray);
}

.other-models ul li button {
    margin: auto;
    display: block;
    width: 129px;
    height: 42px;
    background: white;
    border: 2px solid #c6c6c6;
    color: #c6c6c6;
    margin-top: 15px;
}

.other-models ul li button:hover {
    background: var(--aqua);
    color: white;
    border: 2px solid var(--aqua);
}

.other-models ul li:nth-child(7) {
    padding: 0px 0 30px 0;
}

.other-models ul li:nth-child(7) h3 {
    margin-top: -10px;
}

.other-models ul li:last-child{
    border: 4px solid var(--aqua);
}

.other-models ul li:last-child p {
    color: #999;
    font-size: 16px;
    padding: 0;
    margin-top: 10px;
}

.other-models input {
    outline: none;
    display: block;
    width: 80%;
    margin: auto;
    padding: 5px 30px;
    font-size: 16px;
    border: none;
}







footer {
    background: #32393F;
    padding: 20px 0;
}

footer .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

footer .logo-two {
    opacity: 0.3;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

footer .logo-two .californiya {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 5px;
}

footer .logo-two .californiya img:last-child {
    margin-left: -30px;
}

footer .footer-links {
    display: flex;
    justify-content: center;
    gap: 60px;
}

footer .footer-links a {
    color: #ffffff;
    font-size: 13px;
    opacity: 0.9;
    letter-spacing: 1px;
}