.home-container {
  width: 100%;
  display: flex;
  min-height: 100vh;
  overflow-x: hidden;
  align-items: center;
  flex-direction: column;
}
.home-blog-post-card {
  width: 100%;
  display: flex;
  max-width: var(--dl-size-size-maxwidth);
  box-shadow: 5px 5px 10px 0px rgba(18, 18, 18, 0.1);
  transition: 0.3s;
  flex-direction: column;
  justify-content: space-between;
}
.home-blog-post-card:hover {
  transform: scale(1.02);
}
.home-image {
  width: 100%;
  height: 100%;
  max-height: 50rem;
  object-fit: cover;
  border-radius: 0px;
}
.home-container1 {
  width: 100%;
  display: flex;
  padding: var(--dl-space-space-twounits);
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
  background-color: var(--dl-color-gray-white);
}
.home-text {
  color: var(--dl-color-gray-500);
  margin-top: var(--dl-space-space-unit);
  font-weight: 700;
  margin-bottom: var(--dl-space-space-unit);
}
.home-text1 {
  font-size: 1.5rem;
  text-align: center;
  font-weight: 300;
}
.home-separator {
  width: 40%;
  height: 1px;
  margin-top: var(--dl-space-space-unit);
  margin-bottom: var(--dl-space-space-unit);
  background-color: var(--dl-color-gray-900);
}
.home-link {
  color: var(--dl-color-gray-700);
  font-weight: 700;
  text-decoration: none;
}
@media(max-width: 991px) {
  .home-link {
    color: var(--dl-color-gray-700);
    font-weight: 700;
  }
}
@media(max-width: 479px) {
  .home-text {
    color: var(--dl-color-gray-500);
    font-weight: 700;
  }
  .home-text1 {
    font-size: 1.5rem;
    font-weight: 300;
  }
}
