@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');



body{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif !important;
    background-color:#fff !important;
}
.site-wrap{
    background-color: #0F1E18 ;
}
img{
    width: 100%;
}
.logo-wrapper{
    max-width: 130px;
    margin: 30px auto;
}
.logo-wrapper img{
    height: 100%;
}
.blog-wrapper{
    max-height:350px ;
    overflow: hidden;
    margin: 20px 0;
    height: 100%;
    position: relative;
}
.blog-img{
    height: 100%;
}
.blog-wrapper img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.blog-heading{
    position: absolute;
    width: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    display: flex;
    align-items: flex-end;
    background: rgb(255,255,255);
    background: linear-gradient(180deg, rgba(255,255,255,0) 3%, rgba(0,0,0,0.5046393557422969) 47%);
}

.blog-heading h1{
    color: #fff;
    font-size: 20px;
    padding: 20px;
    font-family: 'Poppins', sans-serif;
}

.footer-wrapper{
    background-color: #f1f1f1;
    color:grey;
    padding: 30px 0;
    margin-top: 50px;
}

  .footer-wrapper .footer-left {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100%;
}

.footer-wrapper .footer-left img {
    max-width: 100px;
}

.footer-middle p {
    color: #000;
}

.link-wrapper a {
    display: block;
    color: #000;
    text-decoration: none;
}

.main-img img{
    max-width: 85%;

    object-fit: cover;
    
}
.main-img{
    width: 100%;
    display: flex;
    justify-content: center;
}
.blog-content{
       font-family: 'Poppins';
     line-height:1.5;
     text-align:justify;
    color: #333;
    max-width: 100%;
    margin: 0 auto;
    padding-top: 50px;
}
@media only screen and (max-width: 600px) {
    .main-img img{
    max-width: 100%;
    max-height: 400px;
    object-fit: cover;
    
}

   .blog-content{
    text-align:left;
    
} 
}

.blog-content h2{
    margin-bottom: 25px;
}