.categories-bg {
  background-color: #dedede;
  padding: 15px;
  margin: 10px;
  border-radius: 15px;
}
.categories-detail {
  padding: 15px;
  margin: 10px;
  border-radius: 15px;
}

.blogsinfo .infoin img {
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
  max-width: 100%;
  max-height: 250px;
}

.blogsinfo .infoin {
  border: 1px solid #068f51;
  border-radius: 20px;
  padding: 10px;
  box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
  transition: 0.5s;
  margin-bottom: 30px;
  height: 100%;
}
.blogsinfo .infoin:hover {
  box-shadow: rgba(0, 0, 0, 0.45) 20px 30px 40px -30px;
  border: 1px solid #08492c;
}

.multiline {
  width: 500px;
  display: block;
  display: -webkit-box;
  max-width: 100%;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.blog-carousel img {
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
  max-width: 100%;
  height: 450px;
  border: 2px solid #068f51;
}

@media (min-width: 768px) {
  .datedis .title5 {
    display: block;
    width: 100%;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
@media (max-width: 768px) {
  .blog-carousel img {
    object-fit: contain;
    height: auto;
  }
}
.fade-image {
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-image:hover {
  opacity: 0.8;
  transform: scale(1.05);
}



