@keyframes shine {
  from {
    opacity: 0;
    left: 0%;
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 0;
    left: 100%;
  }
}
.blog-banner {
  position: relative;
  color: white;
  overflow: hidden;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media only screen and (max-width: 1024px) {
  .blog-banner {
    height: 70vh;
  }
}
@media only screen and (max-width: 991px) {
  .blog-banner {
    height: 60vh;
  }
}
.blog-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 47.79%, rgba(0, 0, 0, 0.75) 88.57%), linear-gradient(180deg, rgba(0, 0, 0, 0) 46.07%, rgba(0, 0, 0, 0.7) 89.64%);
}
.blog-banner .bg-wrapper {
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 93%;
}
@media only screen and (max-width: 540px) {
  .blog-banner .bg-wrapper {
    top: inherit;
    bottom: 0;
  }
}
.blog-banner .bg-wrapper .heading {
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
}
.blog-banner .bg-wrapper .heading p {
  font-family: "Circular";
  font-weight: 300;
  color: var(--white);
  font-size: 30px;
  margin-top: 15px;
}
@media only screen and (max-width: 540px) {
  .blog-banner .bg-wrapper .heading p {
    text-align: center;
  }
}

.blog-secA {
  padding: 70px 0;
}
.blog-secA .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media only screen and (max-width: 1024px) {
  .blog-secA .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 540px) {
  .blog-secA .grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.blog-secA .grid .blog-card .img-wrapper {
  overflow: hidden;
}
.blog-secA .grid .blog-card .img-wrapper img {
  width: 100%;
  height: auto;
  transition: all 0.3s ease;
  display: block;
}
.blog-secA .grid .blog-card .img-wrapper:hover img {
  transform: scale(1.05);
}
.blog-secA .grid .blog-card .content {
  margin-top: 15px;
}
.blog-secA .grid .blog-card .content p {
  font-size: 20px;
  color: var(--white);
  margin-bottom: 5px;
}
.blog-secA .grid .blog-card .content .date {
  font-size: 14px;
  color: var(--text);
  margin-top: 5px;
}/*# sourceMappingURL=blog.css.map */