#part7 {
  width: 100%;
  height: 100vh;
  background-color: #fafafa;
  font-family: "Poppins", sans-serif;
}
.part7 {
  display: flex;
  flex-direction: column;
  gap: 25px;
  width: 70%;
  justify-content: center;
  margin: auto;
  padding: 3%;
  /* border: 1px solid black; */
}
#part7-heading {
  font-weight: bolder;
  font-size: 40px;
  line-height: 5vh;
}
#part7-heading,
#part7-text {
  text-align: center;
  margin: 1vh auto;
  width: 70%;
}
#part7-text {
  width: 55%;
  font-size: 30px;
}
#part7-cont {
  display: flex;
  flex-direction: row;
  flex-flow: wrap;
  gap: 2.5vw;
  width: 80%;
  margin: 5vh auto;
  /* border: 1px solid black; */
}
.blog1,
.blog2,
.blog3 {
  display: flex;
  flex-direction: column;
  width: 30%;
  max-height: 60vh;
  border: 1px solid #cccaca;
  border-radius: 0.5vw;
  /* position: relative; */
  justify-content: space-between;
  background-color: white;
}
.blog1:hover {
  transform: translateY(0.5vh);
}
.blog2:hover {
  transform: translateY(0.5vh);
}
.blog3:hover {
  transform: translateY(0.5vh);
}
.blog-img {
  width: 100%;
  height: 100%;
  max-height: 20vh;
  border-radius: 0.5vw;
}
.blog {
  margin-top: 1vh;
  text-align: left;
  margin: 1vh 1vw;
  font-size: 16px;
}
.blog-cont {
  text-align: left;
  margin-left: 1vw;
  font-size: 24px;
}
.blog-link {
  display: block;
  text-align: right;
  margin-right: 1vw;
  font-size: 20px;
  margin-top: 2vh;
  margin-bottom: 1vh;
}
@media screen and (max-width: 1200px) {
  #part7 {
    background-color: #fafafa;
  }
  #part7-cont {
    width: 100%;
    justify-content: center;
  }
  .blog1,
  .blog2,
  .blog3 {
    width: 30%;
    max-height: 70vh;
    margin: auto;
  }
}
@media screen and (max-width: 900px) {
  #part7 {
    background-color: #fafafa;
  }
  #part7-cont {
    width: 80%;
    max-height: 60vh;
    justify-content: center;
  }
  .blog1,
  .blog2,
  .blog3 {
    width: 45%;
    margin: auto;
  }
}
@media screen and (max-width: 600px) {
  #part7 {
    background-color: #fafafa;
  }
  #part7-cont {
    width: 100%;
    justify-content: center;
    /* flex-direction: column; */
  }
  .blog1,
  .blog2,
  .blog3 {
    width: 60%;
    margin: auto;
  }
}
