@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600;1,800&display=swap');
*{
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    outline: none;
    border: none;
    text-decoration: none;
    transition: all .4s linear;
    box-sizing:border-box;
}

*::selection{
    background:rgb(35, 118, 251);
    color:#fff;
}

html{
    font-size: 60%;
    overflow-x: hidden;
    scroll-padding-top:5rem;
    scroll-behavior: smooth;
}

section{
    padding:5rem 10%;
}

.heading-link {
    text-align: center;

}

.heading-link{
    text-align: center;
}
  
.heading-link h2 {
    font-size: 4rem;
    text-transform: capitalize;
    color:rgba(10, 39, 134, 0.925);
    text-align: center;
}
  
.heading-link p {
    font-size: 2rem;
    line-height: 2;
    color:rgba(10, 39, 134, 0.925);
    text-align: center;
}
  
.heading-link a {
    color:rgba(10, 39, 134, 0.925);
}
  
.heading-link a:hover {
    color:rgb(245, 10, 120);
    text-decoration: underline;
}


.inform_about .content p{
    font-size: 2rem;
    line-height: 2;
    color:black;
    text-align:justify;
}

.inform_about .content h3{
    text-align: center;
    justify-content: center;
    font-size: 4rem;
    font-weight: 400;
    color:black;
}

@media(max-width:768px){
    .heading{
        width:40rem;
        font-size: 1.7rem;
    }
    .inform_about .content h3{
        font-size: 3rem;
    }
    .inform_about .content p{
        font-size: 1.5rem;
    }
}


#blog{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.b-con{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 0px;
    flex-wrap: wrap;
}
 
.blog-box{
    width:350px;
    background-color: #ffffff;
    border: 10px solid rgb(172, 208, 248);
    margin: 20px 20px;
}
.bimg{
    width:100%;
    height: 200px;
}
.bimg img{
    width:100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.blog-text{
    padding: 30px;
    display: flex;
    flex-direction: column;
}
.blog-text span{
    color: #408abb;
    font-size: 1.5rem;
}
.blog-text .blog-title{
    font-size: 3rem;
    font-weight: 500;
    color: #272727;
}
.blog-text p{
    color: #918b8b;
    font-size: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 20px 0px;
}
.blog-text a{
    color: #0f0f0f;
    font-size: 1.5rem;
}
.blog-text a:hover{
    color: #c76ac7;
    transition: all ease 0.3s;
}
 
 
@media(max-width:1200px){
 
    .blog-box{
        width: 300px;
    }
} 
@media(max-width:990px){
    .blog-box{
        width:70%;
    }
}
 
@media(max-width:450px){
   html{
      font-size: 30%;
    }
    .blog-box{
        margin: 20px 10px;
        width: 100%;
    }
    #blog{
        padding:20px;
    }
}

 
 
