@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');
@import url('https://fonts.googleapis.com/css2?family=Satisfy&display=swap');
*{

    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'poppins';
}




.header-div{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5vw 3vw;
    width: 100%;
    height: 15vh;
}

.logo-div{
    height: 14vh;
    width: 7vw;
}

.logo-div img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.ph-no{
    color: rgb(3, 3, 3);   
    font-size: 1.5em;
    margin-top: 1vw;
}

.blog-section{
    width: 100%;
    height: 150vh;
}

.banner-div{
    display: flex;
    box-sizing: border-box;
    flex-direction: row;
    justify-content: space-between;
    gap: 2vw;
    padding: 2vw 2vw;
    width: 100vw;
    height: 60vh;
}

.banner-div img{

    width: 100%;
    height: 100%;
    border-radius: 0.5vw; 
}

.headings-div{
    height: 13vh;
    font-size: 1.5em;
    text-align: center;
}



.all-blogs{
    display: flex;
    padding: 1vw 0vw;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2vw;
    width: 100%; 
}
.blog-content{
    width: 100%;
   padding: 1.2vw .5vw;
}

.blog-div{
    display: flex;
    flex-direction: column;   
    height: 60vh;
    width: 25vw;
    box-shadow: 1px 2px 8px;
    border-radius: .5vw;
}

.blog-div img{
    height: 40vh;
    width: 100%;
    border-radius: 0.5vw;
}

.blog-div button{
    width: 100%;
    height: 6vh;
    margin-top: 0.5vw;
    font-size: 1.2vw;
    color: white;
    padding: 0vw 3vw;
    background-color: orange;
    border-radius: 0.3vw;   
}

.blog-div h2{
    margin-top: 0.5vw;
    font-size: 1.1vw;

    text-align: center;
}

.blog-div p{

    text-align: center;
}




@media (max-width: 480px) {

    .header-div{
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0.5vw 3vw;   
        width: 100%;
        height: 10vh; 
    }
    
    .logo-div{
        height: 10vh;
        width: 18vw;
    }
    
    .logo-div img{
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
    
    .ph-no{
        color: rgb(3, 3, 3);   
        font-size: 3.2vw;
    }
    
    .blog-section{
        width: 100%;
        height: auto; 
    }
    
   

    .headings-div{
        height: 8vh;
        font-size: 1em;
        text-align: center;
    }

   
    
    .all-blogs{
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        gap: 2vw;
        width: 100%; 
    }
    .blog-content{  
       padding: 1.5vw 1vh;
    }
    
    .blog-div{
        display: flex;
        flex-direction: column;  
        height: 60vh;
        width: 90vw;
        padding: 2vw 2vw;
        box-shadow: 1px 2px 8px;
    }
    
    .blog-div img{
        height: 40vh;
        width: 82vw;
        border-radius: 1.5vw; 
    }
    
    .blog-div button{
        width: 82vw;
        height: 5.5vh;
        margin-top: 1vw; 
        color: white;
        padding: 0vw 3vw;
        background-color: orange;
        border-radius: 0.8vw;  
        font-size: 5vw;
    }
    
    .blog-div h2{
        margin-top: 1vw;
    
        text-align: center;
        font-size: 1.3em;
    }
    
    .blog-div p{
    
        text-align: center;
        margin-top: 1vw;
    }

    
}







