.blog-banner {
  background-image: url(/IMAGE/banner/b19.jpg);
  height: 40vh;
  color: white;
  text-align: center;
}
.blog-banner h2 {
  padding-top: 6rem;
  color: white;
}

.blog-box-container {
  padding: 130px;
}
.blog-box {
  display: flex;
  align-items: center;
  width: 100%;
}
.blog-img {
  width: 50%;
  margin-right: 40px;
}
.blog-box img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  margin-bottom: 2rem;
}
.blog-details {
  width: 50%;
  line-height: 1.8;
}
.blog-btn {
  padding: 10px 15px;
  color: white;
  background-color: green;
  border: none;
  border-radius: 4px;
}
@media screen and (max-width: 477px) {
  .blog-box-container {
    padding: 10px;
}
.blog-details p {
  font-size: 13px;
  color: #465b52;
}

.blog-box img {
  width: 115%;
  height: 230px;
  object-fit: cover;
  margin-bottom: 2rem;
}
}