@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    font-family: "Poppins", sans-serif;
    margin: 0px;
}

body {
    background: rgb(245, 245, 245)
}
.fst {
    display: flex;
    align-items: center;
    box-sizing: border-box;
    
    padding: 10px 20px 10px 20px;

    font-size: 13px;
    color: rgb(77, 77, 77);
    & p {
        cursor: pointer;
    }
    background-color: rgb(239, 239, 239);
}

ul {
    list-style: none;
}

.main-nav   {
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    padding: 15px 10px;
    & ul {
        display: flex;
        justify-content: center;
        align-items: center;
        gap:3vw;
    }
    background-color: rgb(245, 245, 245);
    font-size: 13px;
}

.verification-line {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0px;
    box-sizing: border-box;
    font-size: 13px;
    background-color: white;
}

.hero {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    min-height: 50vh;
}

.hero-line {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 70px;
    font-weight: 600;
    width: 60vw;
    box-sizing: border-box;
    padding: 50px 50px;
    line-height: 1.2;
}
.hero-connections {
    display: flex;
    justify-content: center;
    font-size: 13px;
    flex-direction: column;
    & a {
        text-decoration: none;
        text-align: right;
        color: rgb(0, 76, 255);
    }
    line-height: 2;
}

.verification-line a {
    color: rgb(0, 76, 255);
}

.hero-connections a:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
}

.products-nav {
    display: flex;
    align-items: center;
    box-sizing: border-box;
    padding: 30px 9vw;
}

.products-nav ul {
    display: flex;
    justify-content: space-between;
    gap:3rem;
    font-size: 16px;
    & li {
        cursor: pointer;
        transition: 0.3s;
    }
}

.products-nav ul li:hover {
    color: gray;  
}

.products-nav ul li u {
    font-weight: 600;
}

.models-line {
    display: flex;
    align-items: center;
    box-sizing: border-box;
    padding: 5vh 12vw 0px 12vw;
    font-size: 26px;
    font-weight: 540;
    color: rgb(100, 100, 100);
    flex-wrap: nowrap;
}
.models-line span {
    color: black;
    text-decoration: none ;
}

nav ul li {
    cursor: pointer;
}


footer {
    margin-bottom: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    box-sizing: border-box;
    color: rgb(83, 83, 83);
    border-top: 1px solid gray;
    font-size: 12px;
}

footer span {
    font-weight: 500;
    color: rgb(0, 0, 0);
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



.product-cards {
    display: flex;
    justify-content: space-evenly;
    align-items: stretch;
    flex-direction: row;
    box-sizing: border-box;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    padding: 1rem 5rem;
    gap:1rem;
}

.card {
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    padding: 2rem;
    justify-content: space-evenly;
    background-color: white;
    border-radius: 1rem;
    gap: 1rem;
    box-shadow: 0px 0px 20px 1px rgba(0, 0, 0, 0.03);
}

.product-cards::-webkit-scrollbar {
    display: none;
}

.card p {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    gap:1rem;
    font-size: 13px;
}

.card p a {
    color: white;
    background-color: rgb(0, 110, 255);
    padding: 0.6rem 1rem;
    border-radius: 2rem;
    justify-content: center;
    align-items: center;
}
.card img {
    width: 300px;
}

.tnc {
    display: flex;
    padding: 8vh 20vw;
    font-size: 11px;
    color: rgb(50, 50, 50);
}

/* =========================
   RESPONSIVE DESIGN
========================= */

@media (max-width: 1024px){

    .hero{
        flex-direction: column;
        gap: 2rem;
        padding: 2rem;
    }

    .hero-line{
        width: 100%;
        font-size: 50px;
        text-align: center;
        padding: 2rem 1rem;
    }

    .hero-connections{
        align-items: center;
    }

    .products-nav{
        overflow-x: auto;
        padding: 2rem;
    }

    .products-nav ul{
        width: max-content;
    }

    .models-line{
        padding: 3rem 2rem 0rem 2rem;
        font-size: 22px;
    }

    .tnc{
        padding: 4rem 2rem;
    }
}


/* =========================
   MOBILE
========================= */

/* =========================
   TABLET
========================= */

@media (max-width: 1024px){

    .main-nav{
        padding: 1rem;
    }

    .main-nav ul{
        gap: 1.5rem;
        flex-wrap: wrap;
    }

    .verification-line{
        padding: 1rem 2rem;
        text-align: center;
        line-height: 1.6;
    }

    .hero{
        flex-direction: column;
        gap: 2rem;
        padding: 2rem;
    }

    .hero-line{
        width: 100%;
        font-size: 52px;
        text-align: center;
        padding: 1rem;
    }

    .hero-connections{
        align-items: center;
    }

    .products-nav{
        padding: 2rem;
    }

    .products-nav ul{
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }

    .models-line{
        padding: 2rem;
        font-size: 22px;
        text-align: center;
    }

    .product-cards{
        padding: 2rem;
        gap: 1.5rem;
    }

    .card{
        min-width: 24rem;
    }

    .card img{
        width: 100%;
        max-width: 280px;
        margin: auto;
    }

    .tnc{
        padding: 4rem 2rem;
        line-height: 1.8;
    }

    footer{
        text-align: center;
        padding: 1rem;
        line-height: 1.6;
    }
}


/* =========================
   MOBILE
========================= */

@media (max-width: 768px){

    body{
        overflow-x: hidden;
    }

    .fst{
        justify-content: center;
        text-align: center;
        font-size: 11px;
        padding: 0.8rem;
    }

    .main-nav{
        padding: 1rem;
        overflow-x: hidden;
    }

    .main-nav ul{
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;

        width: 100%;
    }

    .verification-line{
        padding: 1rem;
        text-align: center;
        line-height: 1.7;
        font-size: 12px;
    }

    .hero{
        flex-direction: column;
        gap: 1rem;
        padding: 2rem 1rem;
    }

    .hero-line{
        width: 100%;
        font-size: 36px;
        text-align: center;
        padding: 1rem;
        line-height: 1.3;
    }

    .hero-connections{
        align-items: center;
        text-align: center;
    }

    .products-nav{
        padding: 1rem;
        overflow-x: hidden;
    }

    .products-nav ul{
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;

        width: 100%;
        font-size: 14px;
    }

    .models-line{
        padding: 2rem 1rem 0rem 1rem;
        font-size: 18px;
        text-align: center;
        line-height: 1.5;
    }

      .models-line{
        font-size: 16px;
        white-space: nowrap;
    }

    /* PRODUCT CARDS */

    .product-cards{
        flex-direction: column;

        overflow-x: hidden;
        overflow-y: visible;

        padding: 1rem;

        align-items: center;
        justify-content: center;

        gap: 1rem;
    }

    .card{
        width: 100%;
        min-width: 100%;

        padding: 1.5rem;

        transform: scale(1);
    }

    .card img{
        width: 100%;
        max-width: 250px;

        margin: auto;
    }

    .card h1{
        font-size: 28px;
        text-align: center;
    }

    .card p{
        flex-direction: column;
        align-items: center;

        text-align: center;

        gap: 1rem;
    }

    .card p span{
        line-height: 1.6;
    }

    .tnc{
        padding: 3rem 1rem;

        font-size: 10px;
        line-height: 1.8;
    }

    footer{
        text-align: center;

        padding: 1rem;

        line-height: 1.7;
        font-size: 11px;
    }
}