@keyframes shine {
  from {
    opacity: 0;
    left: 0%;
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 0;
    left: 100%;
  }
}
html {
  background: var(--bgcolor);
}

.blogs-secA {
  position: relative;
  top: 80px;
  height: auto;
  text-align: center;
  margin-bottom: 165px;
}
.blogs-secA .heading {
  position: relative;
  margin-top: 70px;
  margin-bottom: 100px;
}
.blogs-secA .heading h1 {
  font-family: Poppins;
  color: var(--white);
  font-weight: 600;
  font-size: 36px;
  line-height: 45px;
  text-align: center;
  margin-bottom: 20px;
}
.blogs-secA .heading p {
  color: var(--text);
  font-family: Poppins;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  max-width: 400px;
  margin: auto;
}
.blogs-secA .blog-list-wrap {
  height: auto;
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(3, 1fr);
}
@media only screen and (max-width: 991px) {
  .blogs-secA .blog-list-wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 540px) {
  .blogs-secA .blog-list-wrap {
    grid-template-columns: repeat(1, 1fr);
  }
}
.blogs-secA .blog-list-wrap figure {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 75%);
  width: 100%;
}
.blogs-secA .blog-list-wrap figure img {
  position: relative;
  z-index: -1;
  width: 100%;
}
.blogs-secA .blog-list-wrap .blog-col {
  position: relative;
  overflow: hidden;
}
.blogs-secA .blog-list-wrap .blog-col:hover img {
  transform: scale(1.07);
  transition: 0.5s ease;
}
.blogs-secA .blog-list-wrap .blog-col .figinfo {
  padding: 0px 20px 50px 20px;
  position: absolute;
  text-align: left;
  left: 0;
  bottom: 0;
}
.blogs-secA .blog-list-wrap .blog-col .figinfo .date {
  display: flex;
  align-items: center;
  padding-block: 20px;
}
.blogs-secA .blog-list-wrap .blog-col .figinfo .date img {
  margin-right: 10px;
}
.blogs-secA .blog-list-wrap .blog-col .figinfo .date p {
  font-family: Poppins;
  font-weight: 450;
  font-size: 14px;
  line-height: 100%;
  color: var(--white);
}
.blogs-secA .blog-list-wrap .blog-col .figinfo .description h5 {
  font-family: Poppins;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.3;
  color: var(--white);
}
.blogs-secA .logo-bottom {
  margin: 50px 0;
  text-align: center;
}
.blogs-secA .logo-bottom img {
  width: 62px;
}
.blogs-secA .logo-bottom a {
  font-family: Poppins;
  font-weight: 500;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 5px;
  text-align: center;
  text-transform: uppercase;
  color: var(--primary);
  list-style-type: none;
}/*# sourceMappingURL=blogs.css.map */