*{
    text-decoration: none;
    list-style-type: none;
}


:root{
    --main-blue: rgb(65, 128, 210);
    --light-bg:#f8f9fa;
    --dark-blue:rgb(30, 45, 59);
}

body{
    height: 100svh;
    max-width: 100svw;
    font-family: "Indie Flower", cursive;
}

header{
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding :10px 30px;
}

nav{
    display: flex;
    align-items: center;
    justify-content: space-between;

    /* background-color: lightpink; */
    /* gap: 20px; */
    width: 80%;

}

nav ul{
    list-style-type: none;

    display: flex;
    gap: 10px;
}

nav ul li a{
    color: rgb(88, 88, 88);
    font-weight: bold;
}

.sign-in{
    padding: 5px 15px;
    background-color: var(--main-blue);
    color: white;

    border-radius: 15px;
    border: 1px solid var(--main-blue);
}

.sign-up{
    padding: 5px 15px;
    background-color: white;
    color: var(--main-blue);

    border-radius: 15px;
    border: 1px solid var(--main-blue);
}

/* pricing */

.pricing{
    min-height: 80%;
    background-color: var(--light-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;

    gap: 30px;
    padding: 30px;
}

.p-card{
    background-color: white;
    border-radius: 20px;
    text-align: center;

    padding: 30px;
    height: 50%;
    width: 300px;
    box-shadow: 0px 0px 10px rgba(128, 128, 128, 0.703);
}

.p-card ul{
    text-align: start;
}

.p-card p, ul li i{
    color:var(--main-blue);
}

.p-card p{
    font-size: 24px;
}

.start{
    padding: 10px 25px;
    background-color:var(--main-blue);
    color: white;

    border-radius: 15px;
    border: 1px solid var(--main-blue);

}

/* .about */

.about{
    display: flex;
    justify-content: center;
    align-items: center;
}

.about img{
    width: 40%;
}

.about-text{
    width: 40%;
}

.about-text ul{
    padding: 0px;
}

.info{
    display: flex;
    gap: 50px;
}

.info .count{
    font-size: 30px;
    font-weight: bold;
}

.info .data{
    text-transform: uppercase;
    color: gray;
    font-size: 13px;
    font-weight: bold;
}



/* flex------------------------ */

.parent{
    padding: 10px;
    height: 80%;
    background-color: rgb(216, 190, 219);

    display: flex;
    gap: 10px;
    flex-direction: row;
    justify-content: start;
    align-items: start;
    align-content: start;
    /* flex-wrap: wrap; */
}

.parent div{
    width: 200px;
    height: 70px;
    box-shadow:0px 0px 10px gray;

    padding: 10px;
    /* margin: 10px; */
}

.item1{
    background-color: lightblue;

    flex-shrink: 0;
    flex-grow: 2;
}

.item2{
    background-color: lightcoral;
    flex-grow: 1;
}

.item3{
    background-color: lightgreen;
    flex-basis: 250px;
}


/* media query */

/* 
max-width : 0-number.
min-width: >number.

*/

 @media (max-width:768px){
   nav{
    display: none;
   }

    .about{
        flex-direction: column;

    }

    .about img{
        width: 70%;
    }

    .about-text{
        width: 80%;
    }
}