.blogs{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 70vh;
    margin-top: 80px;
    background: url(images/afriglobal.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .blog{
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      width: 100vw;
      height: 100%;
      background-color: rgb(12, 12, 12, 0.7);
      
  }
  .blog p{
    width: 80%;
    max-width: 600px;
    color: var(--secondary-color);
    margin: 10px;
    text-align: center;
  }
  
.right-btn{
    align-items: center;
    width: auto;
    min-width: 100px;
    margin-top: 15px;
    margin-bottom: 15px;
    text-align: center;
    margin-bottom: 5px;
    color: var(--text-color);
    background-color: var(--dark-gold);
    border: none;
    padding: 5px 6px;
    border-radius: 5px;
    box-shadow: 2px 2px 2px rgba(31, 29, 29, 0.5);
    flex-shrink: 0;
    min-width: 90px;
    cursor: pointer;
    transition: 0.3s;
    margin: 10px;
  }
  .right-btn:hover{
    box-shadow: 0px 0px 25px rgb(236, 193, 112, 0.6);
  }




  .blog-section{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100%;
    padding-left: 10px;
    padding-top: 30px;
    margin: 20px 0px;
    padding-bottom: 20px;
  }
  .blog-section h2{
    text-align: center;
    color: var(--primary-color);
    margin: 10px;
  }
  .blog-container{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 90%;
    height: 100%;
    box-shadow: 0px 0px 25px rgba(31, 29, 29, 0.5);
    padding: 5px;
    margin: 20px;
  }
  .blog-container h3{
    text-align: center;
    color: var(--primary-color);
    margin: 5px;
  }
  .blog-item{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
  }
  .blog-item1{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex: 1;
    height: 260px;
    min-width: 250px;
  }
  .blog-item2{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex: 1;
    min-width: 250px;
    height: 260px;
  }
.blog-item2 img{
   width: 100%;
   height: 100%;
   
}
.blog-item1 p{
 margin: 5px;
 color: var(--text-color);
}