@import url('https://fonts.googleapis.com/css2?family=Big+Shoulders:opsz,wght@10..72,100..900&family=Figtree:ital,wght@0,300..900;1,300..900&family=Fraunces:ital,opsz,wght@0,9..144,100..900;1,9..144,100..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Karla:ital,wght@0,200..800;1,200..800&family=Kumbh+Sans:wght@100..900&family=League+Spartan:wght@100..900&family=Lexend+Deca:wght@100..900&family=Manrope:wght@200..800&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Outfit:wght@100..900&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&family=Red+Hat+Display:ital,wght@0,300..900;1,300..900&family=Young+Serif&display=swap');


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

:root {
    --red: hsl(0, 78%, 62%);
    --cyan: hsl(180, 62%, 55%);
    --orange: hsl(34, 97%, 64%);
    --blue: hsl(212, 86%, 64%);
    --grey-500: hsl(234, 12%, 34%);
    --grey-400: hsl(212, 6%, 44%);
    --white: hsl(0, 0%, 100%);
}

body{
    font-family: "Poppins", sans-serif;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

header{
    margin-top: 2rem;
    text-align: center;
}
header p:nth-child(1){
    font-size: 2rem;
    color: var(--grey-400);
    font-weight: 300;
}
header h2 {
    font-size: 1.9rem;
    font-weight:600;
    color: var(--grey-500);
}
header p:nth-child(3){
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--grey-400);
    padding: 1rem 33vw;
}
section{
    padding: 0 10vw;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.3rem;
    margin-top: 2rem;
}
.card p{
    font-size: 0.8rem;
    color: var(--grey-400);
    font-weight: 300;
    margin: 0.5rem 0 1rem;
}
.card h3{
    font-size: 1.1rem;
    color: var(--grey-500);
    font-weight: 600;
}

section  .card{
    padding: 1.2rem 2rem;
    height: 200px;
    width: 300px;
    /* box-shadow: -1px 9px 32px -6px rgba(0,0,0,0.75); */
    box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.2);
}
.middle{
    display: flex;
    flex-direction: column;
    gap: 2.3rem;
}

.card img{
    width: 50px;
    float: right;
}

.four{
    border-top: 5px solid var(--blue);
    border-radius: 0.4rem;
}
.two{
    border-top: 5px solid var(--red);
    border-radius: 0.4rem;
}
.three{
    border-top: 5px solid var(--orange);
    border-radius: 0.4rem;
}
.one{
    border-top: 5px solid var(--cyan);
    border-radius: 0.4rem;
}





