#blogBanner {
  height: 50vh;
  /* background-image: url(../img/converge/convergeBG.png); */
  background-image: url(../img/Service/buis.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
}
#bann {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.6);
  height: 50vh;
  width: 100%;
}
#blogBanner h1 {
  font-size: 50px;
  color: white;
}
#blogPost {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0px;
  margin: 50px 0px;
}
#blogPost h1 {
  font-size: 45px;
}
#blogPost h1::after {
  content: "";
  display: block;
  width: 250px;
  height: 1px;
  background: rgb(82, 82, 82);
  margin: auto;
  margin-top: 20px;
}
.blogsList {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-evenly;
  padding: 0px 40px;
}

.eachBlogBox {
  width: 28vw;
  margin: 15px 0px;
  height: 430px;
  border-radius: 10px;
  box-shadow: 0px 0px 5px 2px rgba(207, 207, 207, 0.75);

  cursor: default;
}
.eachBlogBox:hover {
  scale: 0.99;
  transition: 1s;
  box-shadow: none;
  border: 1px solid #e5e5e5;
}
.eachBlogBox img {
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.eachBlogBox p {
  font-size: 16px;
  margin: 10px 15px;
  /* line-height: 23px; */
  color: #565656;
  height: 90px;
}

.eachBlogBox h2 {
  font-size: 18px;
  margin: 10px 15px;
  /* line-height: 28px; */
  color: #00774c;
  height: 60px;
  display: flex;
  align-items: center;
  /* background-color: grey; */
}

.eachBlogBox button {
  background-color: white;
  border: none;
  outline: none;
  color: #00774c;
  font-size: 17px;
  margin: 10px 15px 20px 15px;
  cursor: pointer;
}

@media screen and (max-width: 900px) {
  .eachBlogBox {
    width: 40vw;
  }

  .eachBlogBox h2 {
    font-size: 16px;
  }
  .eachBlogBox p {
    font-size: 14px;
  }
  .blogsList {
    padding: 0px 10px !important;
  }
}
@media screen and (max-width: 700px) {
  .blogsList {
    padding: 0px 10px !important;
  }
  .eachBlogBox {
    width: 80vw;
    height: fit-content ;
  }
  .eachBlogBox p {
    font-size: 14px;
    height: fit-content;
  }
  .eachBlogBox h2 {
    font-size: 18px;
    height: 40px;
  }
}
