@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600&display=swap");

:root{
    --primary:#33337b;
    --second: #66a8c3;
    --black:#222;
    --grey6:#666;
    --bg:#fff;
    --white:#fff;
    --light-color:#f4f4f4;
    --border:1px solid rgba(0,0,0,.1);
    --box-shadow:0 5px 10px rgba(0,0,0,.2);
    --box-border: 0.2rem solid var(--primary);
}

*{
    font-family: 'Poppins', sans-serif;
    margin:0; padding:0;
    box-sizing: border-box;
    outline: none; border:none;
    text-decoration: none;
    transition:all .3s cubic-bezier(.16,.8,.62,1.52);
}


*::selection{
    background:var(--primary);
    color:var(--bg);
}

html{
    font-size: 62.5%;
    font-weight: 200;
    overflow-x: hidden;
}

html::-webkit-scrollbar{
    width:1rem;
}

html::-webkit-scrollbar-track{
    background: var(--light-color);
}

html::-webkit-scrollbar-thumb{
    background: var(--primary);
}

body{
    background:var(--bg);
}

a{
    text-decoration: none;
}


.container{
    margin: 0 2rem;
    /* display: flex;
    flex-direction: column; */
}

.header{
    height: 5rem;
    background: var(--white);
    display: flex;
    justify-content: space-between;
}
aa-logo{
    height: 50px
}
.header .brand{
    padding-top: 0.5rem;
}
.header .brand img{
    width: 80%;
    min-width: 180px;
}
.right{
    display: flex;
}

.toshop img{
    height: 3rem;
}

@media (max-width:480px){
    .header{
        height: 4rem;
    }
    .header .brand img{
        width: 70%;
        min-width: 180px;
    }
    .toshop img{
        height: 2.2rem;
    }
    .aa-logo{
        display: none;
    }
}

.bar{
    width:100%; 
    height:4px; 
    background: var(--second);
    clear:both;
}

/*--- PG START ---*/
.title-box{
    display: flex;
    justify-content: space-between;
}
.title{
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 500;
}
.link{
    display: flex;
    justify-items: center;
    align-items: center;
    gap: .5rem;
}
.link .next{
    height: 1.5rem;
    background: #666;
}
.link .next img{
    height: 100%;
}
.link .title a{
    font-size: 1.2rem;
    color: var(--primary);
    font-weight: 500;
    align-self: center;
}
.link .title a:hover{
    color: var(--second);
}
/*--- PG END ---*/

/*---data-box START---*/
.data-box{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0.25rem;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 2rem;
}
.data-txt{
    background: #fff;
    padding: .5rem;
}
.data-txt:hover{
    box-shadow: var(--box-shadow);
}
.model_title{
    font-size: 1.5rem;
    font-weight: 600;
}
.subtitle{
    color: var(--black);
    line-height: 14px;
    margin-bottom: .5rem;
}
.txt{
    line-height: 14px;
}
.txt:hover{
    background: var(--light-color);
}
/*---data-box END---*/

footer{
    font-size: 1rem;
    font-weight: 500;
    color: var(--grey6);
    background-color:#fff;
    display: flex;
    gap: .5rem;
    align-content: center;
}

footer .foot-txt{
    align-self: center;
}


/* probox START */
.probox{
    margin: 0 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    height: 100vh;
}
.probox .data-txt:hover{
    box-shadow: none;
}
.probox .pro-txt{
    display: flex;
}
.probox .pro-txt .country{
    width: 7rem;
}
.probox .footer-area{
    margin-top: auto;
}

@media (max-width:480px){
    .pro-txt{
        flex-direction: column;
    }
    .country{
        font-weight: 700;
    }

    .foot-txt{
        line-height: 1.4rem;
    }
    
}

