@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: 80vh;
  }
}
@media only screen and (max-width: 991px) {
  .blog-banner {
    height: 50vh;
  }
}
@media only screen and (max-width: 540px) {
  .blog-banner {
    height: 60vh;
  }
}
.blog-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.85) 100%);
}
@media only screen and (max-width: 540px) {
  .blog-banner::before {
    background: linear-gradient(360deg, rgba(0, 0, 0, 0) 26.44%, rgba(0, 0, 0, 0.85) 100%), linear-gradient(177deg, rgba(0, 0, 0, 0) 43.27%, rgba(0, 0, 0, 0.65) 100%);
  }
}
.blog-banner .video-background video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}
@media only screen and (max-width: 540px) {
  .blog-banner .video-background .container {
    padding: 0;
  }
}
.blog-banner .video-background .container .bg-wrapper {
  width: 100%;
  position: absolute;
  z-index: 1;
  bottom: 10%;
  text-align: center;
  left: 0;
}
@media only screen and (max-width: 991px) {
  .blog-banner .video-background .container .bg-wrapper {
    bottom: 10%;
  }
}
@media only screen and (max-width: 540px) {
  .blog-banner .video-background .container .bg-wrapper {
    bottom: 10%;
    margin-left: 0;
  }
}
.blog-banner .video-background .container .bg-wrapper h1 {
  font-weight: 600;
  line-height: 0.99;
  margin-bottom: 18px;
  max-width: 450px;
  margin: auto;
  text-transform: capitalize;
  margin-bottom: 20px;
}
@media only screen and (max-width: 768px) {
  .blog-banner .video-background .container .bg-wrapper h1 {
    max-width: 540px;
  }
}
@media only screen and (max-width: 540px) {
  .blog-banner .video-background .container .bg-wrapper h1 {
    max-width: 90%;
    text-align: center;
    margin: auto;
    font-size: 25px;
    line-height: 1.2;
  }
}
.blog-banner .video-background .container .bg-wrapper p {
  font-family: "Poppins";
  font-weight: 500;
  font-size: 20px;
  line-height: 100%;
  color: var(--white);
  max-width: 595px;
  width: 100%;
  margin: 0 auto;
  line-height: 1.4;
  font-size: 16px;
  opacity: 0.8;
}
@media only screen and (max-width: 991px) {
  .blog-banner .video-background .container .bg-wrapper p {
    max-width: 100%;
    color: rgba(255, 255, 255, 0.8784313725);
  }
}
@media only screen and (max-width: 540px) {
  .blog-banner .video-background .container .bg-wrapper p {
    max-width: 80%;
    font-size: 13px;
    line-height: 1.2;
    text-align: center;
    color: rgba(255, 255, 255, 0.8588235294);
    margin: auto;
    padding-top: 10px;
  }
}

.blog-secA {
  padding: 70px 0 50px 0;
}
.blog-secA .grid-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 40px 20px;
}
@media only screen and (max-width: 1024px) {
  .blog-secA .grid-box {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media only screen and (max-width: 768px) {
  .blog-secA .grid-box {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 540px) {
  .blog-secA .grid-box {
    grid-template-columns: repeat(1, 1fr);
  }
}
.blog-secA .grid-box .grid-box-item {
  border: 1px solid #D5D5D5;
  border-radius: 10px;
  overflow: hidden;
}
.blog-secA .grid-box .grid-box-item:hover figure img {
  scale: 1.1;
}
.blog-secA .grid-box .grid-box-item figure {
  height: 270px;
  width: 100%;
  overflow: hidden;
}
.blog-secA .grid-box .grid-box-item figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s ease-in-out;
}
.blog-secA .grid-box .grid-box-item figcaption {
  padding: 20px;
}
.blog-secA .grid-box .grid-box-item figcaption span {
  font-weight: 500;
  color: #666666;
  font-size: 14px;
}
.blog-secA .grid-box .grid-box-item figcaption h5 {
  font-weight: 600;
  font-size: 20px;
  color: black;
  margin: 10px 0 20px 0;
  color: var(--black);
}
@media only screen and (max-width: 540px) {
  .blog-secA .grid-box .grid-box-item figcaption h5 {
    font-size: 18px;
  }
}
.blog-secA .grid-box .grid-box-item figcaption p {
  font-size: 16px;
  color: var(--primary);
  font-weight: 400;
  color: #666666;
}/*# sourceMappingURL=blog.css.map */