* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: none;
}

:root {
    --text-color: #1D2130;
    --text-light-color: #fff;
    --gradient-color-1: #D798E1;
    --gradient-color-2: #9BFFA5;
    --gradient-color-3: #AED3FF;
    --gradient-color-4: #C9D4EF;
    --gradient-color-5: #CACFFA;
    --card-bg-color: #E0E4FC;
    --l-gradinet-color-1: #373FFF;
    --l-gradinet-color-2: #3ACAF8;
    --placeholder-color: #a5a6ac;
    --border-color: #d1d5db;
    --nav-bg-color: #f4f8fc;
    --input-bg-color: #2b2e3c46;
}

html {
    font-size: 10px;
}

a {
    text-decoration: none;
}



.nav {
    width: 100%;
    padding: 5rem;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 2rem;
    background-color: transparent;
}

.nav-icon-mobile {
    display: none;
}

.menu-icon-mobile {
    animation: 1s rotateicon1;
}


.menu-im-cl {
    display: none;
    animation: 1s rotateicon;
}


@keyframes rotateicon {
    from {
        transform: rotate(0);
    }

    to {
        transform: rotate(45deg);
    }
}

@keyframes rotateicon1 {
    from {
        transform: rotate(45deg);
    }

    to {
        transform: rotate(0deg);
    }
}

.nav-mobile {
    display: none;
    flex-direction: column;
    padding: 0 3rem;
    align-items: flex-end;
    gap: 1rem;
    position: absolute;
    background-color: var(--nav-bg-color) ;
    z-index: 999999;
    right: 3rem;
    border-radius: 1rem; 
    padding: 1rem .6rem;
}

.nav-child-mobile {
    font-size: 1.6rem;
    color: var(--text-color);
}

.active-mobile {
    font-size: 1.63rem;
    font-weight: 600;
}

.nav-mobile.nav-mobile-active {
    display: flex;
}


.nav-child {
    font-size: 2.2rem;
    color: var(--text-color);
    font-weight: 600;
}


.active {
    padding: 1.5rem 2rem;
    background-color: var(--text-color);
    color: var(--text-light-color);
    border-radius: 1rem;
}

.card-con {
    padding: 5rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.card-con-header {
    max-width: 80rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 5rem 0;
    position: relative;
    gap: 5rem;


}

.gradient {
    width: 100%;
    height: 100%;
    position: absolute;
    background: radial-gradient(circle at bottom,
            var(--gradient-color-1),
            var(--gradient-color-2),
            var(--gradient-color-3),
            var(--gradient-color-4),
            var(--gradient-color-5));
    filter: blur(250px);
    z-index: -1;
}

.cc-header {
    font-size: 5.6rem;
    font-weight: 700;
    color: var(--text-color);
    text-align: center;
}

.cc-text {
    font-size: 2.2rem;
    color: var(--text-color);
    text-align: center;
}

.search {
    width: calc(100% - 10rem);
    display: flex;
    gap: 1rem;
    background-color: var(--text-light-color);
    padding: 1rem 2rem;
    border-radius: 1rem;
    align-items: center;
}

.search input {
    color: var(--text-color);
    outline: none;
    border: none;
    width: 50rem;
    border-right: solid 2px var(--placeholder-color);
    height: 3rem;
}

.search input::placeholder {
    color: var(--placeholder-color);
    font-size: 1.6rem;
}

.city {
    width: 15rem;
    display: flex;
    font-size: 1.8rem;
    color: var(--placeholder-color);
    align-items: center;
    gap: .5rem;
    position: relative;
}

.cityParametr {
    display: flex;
}


.privateCity {
    display: none;
    flex-direction: column;
    position: absolute;
    width: 12rem;
    top: 2rem;
    background-color: var(--gradient-color-4);
    padding: 1rem;
    height: 10rem;
    overflow-x: hidden;
    overflow-y: auto;

    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.privateCity::-webkit-scrollbar {
    width: 8px;
}

.privateCity::-webkit-scrollbar-track {
    background: var(--card-bg-color);
    border-radius: 4px;
}

.privateCity::-webkit-scrollbar-thumb {
    background-color: #6366f1;
    border-radius: 4px;
    border: 2px solid var(--card-bg-color);
}

.privateCity::-webkit-scrollbar-thumb:hover {
    background-color: var(--l-gradinet-color-1);
}

.search button {
    width: 15rem;
    height: 5rem;
    background-color: var(--text-color);
    color: var(--text-light-color);
    border: none;
    border-radius: 2rem;
    font-size: 1.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search button ion-icon {
    display: none;
}

.card-box {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.card {
    flex: 1 1 360px;
    max-width: 360px;
    margin-top: 5rem;
    background-color: #f0f3fc;
    border-radius: 2rem;
}



.card-text {
    padding: 2rem;
}

.bmw {
    background-color: var(--gradient-color-3);
    border-radius: 2rem;
}

.bmw img,
.assus img {
    padding: 2rem;
}


.wrangler,
.assus {
    background-color: var(--gradient-color-5);
    border-radius: 2rem;
}

.wrangler img {
    padding: 2rem;
}

.card-img img {
    width: 100%;
    height: 20rem;
    object-fit: cover;
    border-radius: 2rem;
}

.price p,
.product-name p {
    font-size: 2.2rem;
    font-weight: 700;
}

.product-date {
    display: flex;
    font-size: 1.8rem;
    gap: .5rem;
}

.more-box {
    margin-top: 5rem;
}

.more-box button {
    padding: 2rem;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-light-color);
    background-color: var(--text-color);
    border: none;
    border-radius: 2rem;
}





.advant {
    padding: 50px;
}

.advantTitle {
    font-size: 20px;
    font-weight: 350;
    color: blue;
    text-align: center;
    padding-bottom: 20px;

}

.advantHeader {
    font-size: 50px;
    font-weight: 600;
    text-align: center;
    padding-bottom: 50px;
}

.advantLightblue {
    background-color: rgb(217, 234, 239);
    padding: 50px 50px 50px 30px;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: calc((100% - 1500px) / 3);
}

.advantItem {
    width: 500px;
    padding: 10px;
}

.advantItemImg {
    width: 40px;
    object-fit: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0 5px 0;
}

.advantItemImg img {
    width: 100%;
}

.advantItem p {
    width: 100%;
    padding: 5px 0;
    font-size: 28px;
}


.text {
    width: 100%;
    font-size: 42px !important;
    font-weight: 600;
}

.advantUseRules {
    display: flex;
    justify-content: space-between;
}

.useRulesLeft {
    width: 700px;
}

.rulesTextTitle {
    font-size: 20px;
    font-weight: 400;
    padding-bottom: 30px;
}

.rulesTextLorem {
    font-size: 70px;
    font-weight: 700;
    padding-bottom: 35px;
}

.rulesItemLorem {
    font-size: 20px;
}

.arrowImg {
    background-color: rgb(251, 133, 152);
    border-radius: 50px;
}

.useRulesRight {
    width: 694px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
}

.arrow-Text {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 10px 0px 20px 150px;
}

 .gradientText {
      background: linear-gradient(90deg, #2b32b2, #1488cc);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
     display: inline-block;
      font-weight: bold;
      font-size: 2.8rem;
      font-family: Arial, sans-serif;
    }

.arrow-Text p {
    font-size: 1.8rem;
}




/*  */


.userFeadback {
    width: 100%;
    padding: 5rem;
}

.feadbackHeader {
    width: 100%;
    font-size: 5.6rem;
    font-weight: 700;
    text-align: center;
    color: var(--text-color);
}

.feadbackCon {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-top: 5rem;
    flex-wrap: wrap;
}

.feadbackCard {
    width: 40rem;
    padding: 3rem;
    border: solid 1px var(--gradient-color-3);
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.userProfile {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.userName {
    font-size: 2rem;
    font-weight: 500;
    color: var(--text-color);
}

.workName {
    font-size: 1.6rem;
    color: var(--text-color);
}


.feadbackText {
    width: 100%;
}

.feadbackText p {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-color);
}

.userProfile img {
    width: 10rem;
    height: 10rem;
    object-fit: cover;
    border-radius: 50%;
}

.footer {
    width: 100%;
    background-color: var(--text-color);
    padding: 5rem 5rem 0;
    position: relative;
    display: flex;
    flex-direction: column;
}

.footerBox {
    display: flex;
    justify-content: space-between;
}

.footerCon {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footerCon p {
    font-size: 1.8rem;
    color: var(--placeholder-color);
}

.footerHeadText {
    font-size: 2rem !important;
    color: var(--text-light-color) !important;
}

.footerCon:last-child {
    padding: 0 3rem;
    justify-content: flex-end;
}

.input {
    width: 100%;
    display: flex;
    background-color: var(--input-bg-color);
    height: 5rem;
    border-radius: 1.5rem;
    overflow: hidden;
}

.input input {
    outline: none;
    border: none;
    background-color: var(--input-bg-color);
    color: var(--text-light-color);
    padding: 1rem;
}

.input input::placeholder {
    font-size: 1.2rem;
}

.input button {
    padding: 0 2rem;
    border-radius: 1rem;
}

.sosialInFooter {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 3rem 0;
    margin-top: 3rem;
}

.copyname {
    position: absolute;
    font-size: 1.6rem;
    color: var(--placeholder-color);
    bottom: 2.8rem;
}

.cta {
    margin: 0 auto;
    text-align: center;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.cta_inner {
    padding: 0 70px;
}

.gradient_background {
    background: radial-gradient(circle at bottom,
            var(--gradient-color-1),
            var(--gradient-color-2),
            var(--gradient-color-3),
            var(--gradient-color-4),
            var(--gradient-color-5));
    position: absolute;
    top: 100%;
    transform: translateY(-100px);
    left: 0;
    width: 100%;
    height: 1000px;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
}



.cta_title {
    font-size: 56px;
    font-weight: 700;
}

.cta_subtitle {
    font-size: 24px;
    padding: 20px 0;
}

.cta_button {
    display: inline-block;
    width: 160px;
    padding: 10px 0;
    background-color: var(--text-color);
    color: var(--text-light-color);
    border-radius: 8px;
    font-size: 18px;
}