.showBlogsContainer {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  height: 80vh;
}

.showBlogsContainer h3 {
  color: green;
}

.showBlogsContainer h1 {
  font-size: 55px;
  margin-top: 20px;
  color: #5e5f5e;
}

.showBlogsContainer > div {
  width: 40%;
}

.showBlogsContainer img {
  width: 100%;
  height: 100%;
}
.sectBlogsTxtDiv h2 {
  margin: 30px 0px;
  font-size: 30px;
  color: rgb(52, 52, 52);
}
.sectBlogsTxtDiv p,
li {
  margin: 20px 0px;
  line-height: 28px;
  font-size: 18px;
  color: rgb(37, 37, 37);
  word-spacing: 3px;
}
.sectBlogsTxtDiv {
  width: 70%;
  margin-left: 15%;
}
li {
  margin: 20px 30px;
}

@media screen and (max-width: 950px) {
  .showBlogsContainer > div {
    width: 90%;
  }
  .showBlogsContainer {
    flex-direction: column;
  }
  .showBlogsContainer h1 {
    font-size: 36px;
  }
  
  .showBlogsContainer img {
    width: 100%;
    height: 300px;
    object-fit: contain;
  }

  .sectBlogsTxtDiv {
    width: 90%;
    margin-left: 5%;
  }
  
.sectBlogsTxtDiv p,
li {
  font-size: 16px;
  margin: 10px 0px;
}
}
