@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 video, .blog-banner img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.blog-banner .bg-wrapper {
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 320px;
}
@media only screen and (max-width: 540px) {
  .blog-banner .bg-wrapper {
    top: inherit;
    bottom: 0;
  }
}
.blog-banner .bg-wrapper .heading {
  max-width: 400px;
  margin: 0 auto;
  text-align: center;
}
.blog-banner .bg-wrapper .heading p {
  font-family: Lato;
  font-weight: 500;
  color: var(--white);
  opacity: 0.7;
  margin-top: 15px;
}
@media only screen and (max-width: 540px) {
  .blog-banner .bg-wrapper .heading p {
    text-align: center;
  }
}

.blog-secA {
  padding: 70px 0;
  overflow: hidden;
}
@media only screen and (max-width: 991px) {
  .blog-secA {
    padding: 45px 0;
  }
}
@media only screen and (max-width: 540px) {
  .blog-secA {
    padding: 35px 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 {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: 0.3s ease;
  cursor: pointer;
  display: block;
  border: 1px solid rgb(235, 235, 235);
  box-shadow: 0px 8px 24px 0px rgba(149, 157, 165, 0.2);
}
.blog-secA .grid .blog-card .img {
  position: relative;
  overflow: hidden;
}
.blog-secA .grid .blog-card .img img {
  width: 100%;
  display: block;
  transition: all 0.2s ease-in;
}
.blog-secA .grid .blog-card:hover .img img {
  transform: scale(1.08);
}
.blog-secA .grid .blog-card .content {
  padding: 24px;
}
@media only screen and (max-width: 540px) {
  .blog-secA .grid .blog-card .content {
    padding: 15px;
  }
}
.blog-secA .grid .blog-card .content h6 {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--black);
  line-height: 1.3;
}
@media only screen and (max-width: 1366px) {
  .blog-secA .grid .blog-card .content h6 {
    font-size: 18px;
  }
}
@media only screen and (max-width: 540px) {
  .blog-secA .grid .blog-card .content h6 {
    font-size: 14px;
  }
}
.blog-secA .grid .blog-card .content p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text);
}/*# sourceMappingURL=blog.css.map */