
html, body {
    height: 100%;
    margin: 0;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
.blogs_wrapper{
  max-width: 1520px;
  display: flex;
  margin: 50px auto;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.blog_wrapper{
  margin: 0 auto;
  width: 100%;
  flex: 1;
}
.blog_title_wrapper{
    width: 100%;
    background: url(../icons/pattern_girl.webp) no-repeat #2b2b2b;
    margin: 0 auto 50px;
    border-radius: 50px;
}
.h1_blog{
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 64px;
    line-height: 145%;
    text-align: center;
    color: var(--white);
    margin: 0 auto;
    padding: 30px 0 20px 0;
}

.blog_content_wrapper{
  max-width: 1290px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}


.blogs{
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 34px;
    line-height: 145%;
    text-align: center;
    color: var(--black);
    text-align: center;
    
}

@media (max-width: 1024px) {
  .blog_wrapper{
    max-width: 1024px;
    
  }

  .blogs_wrapper{
    gap: 20px;
    margin: 30px auto;
  }
  .blog_title_wrapper{
    margin: 0 auto 30px;
    border-radius: 0px;
  }

  .h1_blog {
    font-weight: 400;
    font-size: 54px;
    line-height: 154%;
    text-align: center;
    padding: 20px 0 10px 0;
  }
 
}
@media (max-width: 768px) {
  .blog_wrapper{
    max-width: 768px;
  }
  .blog_title_wrapper{
    margin: 0 auto 20px;
  }
  

  .h1_blog {
    font-size: 44px;
    line-height: 166%;
    text-align: center;
    padding: 20px 0 10px 0;
  }
  
  

}
@media (max-width: 320px) {
  .blog_wrapper{
    max-width: 320px;
  }
  .blogs_wrapper{
    margin: 15px auto;
  }
  .blog_title_wrapper{
    margin: 0 auto 15px;
  }

  .h1_blog {
    font-size: 34px;
    line-height: 112%;
    padding: 15px 0 10px 0;
  }
  
  .girls {
    gap: 15px;
  }
  

}