@import url('https://fonts.googleapis.com/css2?family=Barlow+Semi+Condensed:wght@400;500;600;700&display=swap');


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.main{
    font-family: 'Barlow Semi Condensed', sans-serif;
    background-color: hsl(214, 17%, 92%);
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 150px 100px;
}

.content_con{
    height: 100%;
    display: flex;
}

.cards{
    width: 80%;
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
}

.side_card{
    width: 20%;
}

.top_cards{
    height: 50%;
    display: flex;
    justify-content: center;

}

.bottom_cards{
    height: 50%;
    margin: 20px 0 0 0;
    display: flex;
}

.card1 {
    background-color: hsl(263, 55%, 52%);
    background-image: url("https://res.cloudinary.com/dsw536m3y/image/upload/v1748775168/bg-pattern-quotation_pfeq0n.svg");
    background-repeat: no-repeat;
    background-position: right top;
    background-position-x: 450px;
    background-size: 130px;
    width: 70%;
    margin: 0 30px 0 0;
}

.card2{
    background-color: hsl(217, 19%, 35%);
    margin: 0 30px 0 0;
    width: 30%;
}

.card3{
    background-color: hsl(0, 0%, 100%);
    width: 30%;
    margin: 0 30px 0 0;
}

.card4{
    background-color: hsl(219, 29%, 14%);
    width: 70%;
    margin: 0 30px 0 0;
}

.card5{
    background-color: hsl(0, 0%, 100%);
}

.card1, .card2, .card3, .card4, .card5{
    border-radius: 10px;
    padding: 30px;
    box-shadow: 10px 10px 20px black ;

}

.card1, .card2, .card4{
    color: white;
}

.card3,.card5{
    color: black;
}

.info{
    display: flex;
}

.pro_img_con{
    height: 45px;
    width: 45px;
    border-radius: 50%;
    background-color: hsl(214, 17%, 92%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile{
    width: 40px;
    height: 40px;
    border-radius: 100px;
}

.pro_text_con{
    margin-left: 20px;
}

.text1{
    margin: 20px 0;
    font-size: 22px;
    font-weight: 500;
}

@media(max-width: 360px){
    .main{
        flex-direction: column;
        width: 100vw;
        padding: 20px;
    }
    .content_con{
        flex-direction: column;
    }
    .cards{
        width: 100%;
    }
    .side_card{
        width: 100%;
    }
    .top_cards, .bottom_cards{
        flex-direction: column;
        width: 100%;
    }
    .card1, .card2, .card3, .card4, .card5{
        width: 100%;
        margin-bottom: 20px;
    }
}