.blog-hero{
    margin-top: 120px;
    padding: 20px;

    a{
        margin-right: 10px;
        
    }

    h2{
        text-align: center;
        font-size: 65px;
        font-family: Verdana, Geneva, Tahoma, sans-serif;
        font-weight: bold;
        margin-bottom: 0px;
    }
    p{
        text-align: center;
        font-family: 'poppins', sans-serif;
        font-size: 16px;
        margin-top: 10px;
    }
}




.blog{
    margin-top: 0;
    padding: 0px 10%;

    .blog-card{
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        

        .cards{
            box-shadow: 1px 2px 10px rgba(0, 0, 0, 0.274);
            background-color: rgb(184, 184, 184);
            margin-right: 10px;
            height: 320px;
            width: 240px;
            padding: 0px;
            border-radius: 7px;
            margin-bottom: 20px;
            position: relative;

            img{ 
                object-fit: cover;
                width: 100%;
                height: 100%;
                border-radius: 7px;
                border: none;
                outline: none;
                scale: 1;
                transition: .3s ease-in-out;
            }

            .blog-text{
                position: absolute;
                bottom: -30px;
                right: 0;
                background-color: #fff;
                padding: 10px 15px;
                border-radius: 5px;

                span{
                    font-weight: bold;
                    color: grey;
                    margin-bottom: 10px;
                }
                p{
                    margin-top: 10px;
                    font-weight: bold;
                }
            }
        }

        
    }
}

.blog-card .cards img:hover{
    scale: 1.1;
}




@media (max-width: 800px){


    .blog-hero{
    margin-top: 120px;
    padding: 20px;

    a{
        margin-right: 10px;
        
    }

    h2{
        text-align: center;
        font-size: 40px;
        font-family: Verdana, Geneva, Tahoma, sans-serif;
        font-weight: bold;
        margin-bottom: 0px;
    }
    p{
        padding: 20px;
        text-align: center;
        font-family: 'poppins', sans-serif;
        font-size: 15px;
        margin-top: 10px;
    }
}

    .blog{
        padding: 20px;

        .blog-card{
            .blog-text{
                span{
                    font-size: 13px;
                }
                p{
                    font-size: 15px;
                }
            }
        }
    }
}