@keyframes shine {
  from {
    opacity: 0;
    left: 0%;
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 0;
    left: 100%;
  }
}
.about-secA {
  background: var(--gray);
  height: calc(100vh - 140px);
  overflow: hidden;
  position: relative;
}
@media only screen and (max-width: 991px) {
  .about-secA {
    height: calc(50vh - 140px);
  }
}
.about-secA img, .about-secA video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about-secA::before {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(360deg, rgba(0, 0, 0, 0.7) 40%, rgba(102, 102, 102, 0) 94%);
}
.about-secA .content {
  position: absolute;
  left: 50%;
  bottom: 80px;
  transform: translateX(-50%);
  text-align: center;
  width: 100%;
  max-width: 350px;
  margin: 0 auto;
}
@media only screen and (max-width: 540px) {
  .about-secA .content {
    max-width: 310px;
    bottom: 40px;
  }
}
.about-secA .content h1 {
  color: var(--white);
  margin-bottom: 10px;
}
.about-secA .content p {
  color: var(--white);
  opacity: 0.9;
}

.blog-secB {
  padding: 70px 0;
}
@media only screen and (max-width: 991px) {
  .blog-secB {
    padding: 50px 0;
  }
}
@media only screen and (max-width: 540px) {
  .blog-secB {
    padding: 35px 0;
  }
}
.blog-secB .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media only screen and (max-width: 991px) {
  .blog-secB .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 540px) {
  .blog-secB .grid {
    grid-template-columns: 1fr;
  }
}
.blog-secB .grid .card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0px 7px 29px 0px rgba(100, 100, 111, 0.2);
  display: block;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
@media only screen and (max-width: 540px) {
  .blog-secB .grid .card {
    border-radius: 8px;
  }
}
.blog-secB .grid .card:hover {
  box-shadow: 0px 12px 36px 0px rgba(100, 100, 111, 0.28);
}
.blog-secB .grid .card:hover .card-img img {
  transform: scale(1.04);
}
.blog-secB .grid .card .card-img {
  overflow: hidden;
  height: 250px;
}
@media only screen and (max-width: 991px) {
  .blog-secB .grid .card .card-img {
    height: 220px;
  }
}
@media only screen and (max-width: 540px) {
  .blog-secB .grid .card .card-img {
    height: 200px;
  }
}
.blog-secB .grid .card .card-img img {
  width: 100%;
  display: block;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}
.blog-secB .grid .card .card-content {
  padding: 20px;
}
@media only screen and (max-width: 767px) {
  .blog-secB .grid .card .card-content {
    padding: 15px;
  }
}
@media only screen and (max-width: 540px) {
  .blog-secB .grid .card .card-content {
    padding: 12px;
  }
}
.blog-secB .grid .card .card-content p:not(:last-child) {
  margin-bottom: 20px;
  font-weight: 600;
}
@media only screen and (max-width: 767px) {
  .blog-secB .grid .card .card-content p:not(:last-child) {
    margin-bottom: 10px;
  }
}
.blog-secB .grid .card .card-content p:last-child {
  color: rgb(102, 102, 102);
  font-weight: 500;
}/*# sourceMappingURL=blogs.css.map */