@keyframes shine {
  from {
    opacity: 0;
    left: 0%;
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 0;
    left: 100%;
  }
}
.blog-banner {
  position: relative;
}
.blog-banner::before {
  content: "";
  position: absolute;
  bottom: -238%;
  right: 0%;
  width: 340px;
  height: 468px;
  background: url(../../../assets/images/Vectors/vector.png) no-repeat;
  z-index: 0;
  transform: scaleY(1) scaleX(-1);
  background-size: contain;
  opacity: 0.4;
}
.blog-banner::after {
  content: "";
  position: absolute;
  bottom: -338%;
  left: 0%;
  width: 340px;
  height: 468px;
  background: url(../../../assets/images/Vectors/vector.png) no-repeat;
  z-index: 0;
  transform: scaleY(1);
  background-size: contain;
  opacity: 0.4;
}
.blog-banner .bg-wrapper {
  margin-top: 160px;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 540px) {
  .blog-banner .bg-wrapper {
    margin-top: 120px;
  }
}
.blog-banner .bg-wrapper::before {
  top: -50%;
  left: 60%;
}
.blog-banner .bg-wrapper h1 {
  max-width: 576px;
  margin-bottom: 20px;
  margin: 0 auto 20px;
  text-align: center;
  font-weight: 700;
  font-size: 48px;
}
.blog-banner .bg-wrapper p {
  max-width: 548px;
  margin: auto;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.3;
  color: var(--black);
  text-align: center;
}
@media only screen and (max-width: 540px) {
  .blog-banner .bg-wrapper p {
    max-width: 90%;
    margin: 20px auto 0;
  }
}

.blog-listing-banner {
  padding: 100px 0 40px 0;
  margin-top: var(--headerheight);
  text-align: center;
}
.blog-listing-banner h1 {
  font-weight: 700;
  font-size: 48px;
  line-height: 50px;
  text-align: center;
  color: var(--white);
  margin-bottom: 10px;
}
.blog-listing-banner p {
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: var(--white);
  text-align: center;
  max-width: 521px;
  margin: auto;
}

.blog-secA {
  padding: 0 0 50px 0;
}
.blog-secA .grid-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
  padding: 50px 0 50px 0;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 991px) {
  .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);
    padding: 40px 0 0px 0;
  }
}
.blog-secA .grid-box .grid-box-item {
  width: 100%;
  border-radius: 5px;
  background: var(--white);
  overflow: hidden;
  position: relative;
  transition: 0.4s ease;
  box-shadow: 0px 8px 24px 0px rgba(149, 157, 165, 0.2);
  border: 1px solid #D4D4D4;
  z-index: 1;
}
.blog-secA .grid-box .grid-box-item:hover {
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.blog-secA .grid-box .grid-box-item:hover .btn2 {
  color: white;
}
.blog-secA .grid-box .grid-box-item:hover .btn2::after {
  opacity: 1;
}
.blog-secA .grid-box .grid-box-item:hover .top img {
  scale: 1.2;
}
.blog-secA .grid-box .grid-box-item .top {
  height: 265px;
  overflow: hidden;
  position: relative;
  position: relative;
}
.blog-secA .grid-box .grid-box-item .top::before {
  content: "";
  display: block;
  width: 0px;
  height: 86%;
  position: absolute;
  top: 7%;
  left: 0%;
  opacity: 0;
  background: white;
  box-shadow: 0 0 55px 12px white;
  transform: skewX(-20deg);
  z-index: 1;
}
.blog-secA .grid-box .grid-box-item .top:hover::before {
  animation: shine 0.4s linear;
  animation-fill-mode: none;
}
.blog-secA .grid-box .grid-box-item .top img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.5s ease;
}
.blog-secA .grid-box .grid-box-item figcaption {
  padding: 30px;
}
@media only screen and (max-width: 540px) {
  .blog-secA .grid-box .grid-box-item figcaption {
    padding: 20px;
  }
}
.blog-secA .grid-box .grid-box-item figcaption h4 {
  color: black;
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
}
@media only screen and (max-width: 540px) {
  .blog-secA .grid-box .grid-box-item figcaption h4 {
    font-size: 18px;
    line-height: 1.1;
  }
}
.blog-secA .grid-box .grid-box-item figcaption p {
  font-weight: 600;
  font-size: 14px;
  line-height: 24px;
}

.blog-detail-banner {
  position: relative;
  color: white;
  overflow: hidden;
  height: calc(100vh - var(--headerheight));
  z-index: 1;
  margin-top: calc(var(--headerheight));
}
@media only screen and (max-width: 1024px) {
  .blog-detail-banner {
    height: 80vh;
  }
}
@media only screen and (max-width: 991px) {
  .blog-detail-banner {
    height: 50vh;
  }
}
@media only screen and (max-width: 540px) {
  .blog-detail-banner {
    height: 50vh;
  }
}
.blog-detail-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(270deg, rgba(0, 0, 0, 0) 23.08%, rgba(0, 0, 0, 0.85) 100%);
}
.blog-detail-banner .common-background video, .blog-detail-banner .common-background img {
  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-detail-banner .common-background .container {
    padding: 0;
  }
}
.blog-detail-banner .common-background .container .bg-wrapper {
  position: absolute;
  z-index: 1;
  width: 90%;
  left: 50%;
  bottom: 25%;
  transform: translate(-50%);
}
@media only screen and (max-width: 991px) {
  .blog-detail-banner .common-background .container .bg-wrapper {
    bottom: 10%;
  }
}
@media only screen and (max-width: 540px) {
  .blog-detail-banner .common-background .container .bg-wrapper {
    bottom: 10%;
    margin-left: 0;
  }
}
.blog-detail-banner .common-background .container .bg-wrapper h1 {
  padding-left: 20px;
  border-left: 8px solid var(--white);
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 36px;
  line-height: 40px;
  max-width: 790px;
  color: white;
}
@media only screen and (max-width: 991px) {
  .blog-detail-banner .common-background .container .bg-wrapper h1 {
    max-width: 70%;
    line-height: 1.2;
    font-size: 40px;
  }
}
@media only screen and (max-width: 768px) {
  .blog-detail-banner .common-background .container .bg-wrapper h1 {
    max-width: 100%;
    font-size: 38px;
    line-height: 1.1;
    text-align: center;
    padding: 0 20px;
    margin-bottom: 20px;
    border-left: 0;
  }
}
@media only screen and (max-width: 540px) {
  .blog-detail-banner .common-background .container .bg-wrapper h1 {
    font-size: 18px;
  }
}
.blog-detail-banner .common-background .container .bg-wrapper p {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.6980392157);
  max-width: 609px;
}
@media only screen and (max-width: 768px) {
  .blog-detail-banner .common-background .container .bg-wrapper p {
    text-align: center;
    max-width: 90%;
    margin: auto;
    font-size: 15px;
    line-height: 1.3;
  }
}
@media only screen and (max-width: 540px) {
  .blog-detail-banner .common-background .container .bg-wrapper p {
    font-size: 14px;
    font-weight: normal;
  }
}

.blog-details-secA {
  background: var(--bgcolor);
  overflow: hidden;
}
.blog-details-secA .container {
  max-width: 980px;
}
.blog-details-secA .content {
  padding: 50px 0px;
  width: 100%;
  margin: auto;
}
.blog-details-secA .content p {
  font-size: 16px;
  color: var(--text);
  line-height: 24px;
  text-align: justify;
  margin: 16px 0px;
}
.blog-details-secA .content h2 {
  font-size: 36px;
  line-height: 36px;
  margin-bottom: 15px;
  margin-top: 30px;
  color: var(--primary);
}
.blog-details-secA .content h3 {
  font-size: 28px;
  line-height: 28px;
  margin-bottom: 15px;
  margin-top: 30px;
  color: var(--primary);
}
@media only screen and (max-width: 540px) {
  .blog-details-secA .content h3 {
    font-size: 22px;
    line-height: 26px;
  }
}
.blog-details-secA .content h4 {
  font-size: 24px;
  line-height: 24px;
  margin-bottom: 15px;
  margin-top: 30px;
  color: var(--primary);
  font-weight: 600;
}
.blog-details-secA .content h5 {
  font-size: 20px;
  line-height: 20px;
  margin-bottom: 15px;
  margin-top: 30px;
  color: var(--primary);
  font-weight: 600;
}
@media only screen and (max-width: 540px) {
  .blog-details-secA .content h5 {
    font-size: 18px;
    line-height: 18px;
  }
}
.blog-details-secA .content h6 {
  font-size: 16px;
  line-height: 18px;
  margin-bottom: 15px;
  margin-top: 30px;
  color: var(--primary);
}
.blog-details-secA .content ul {
  margin-left: 10px;
  margin-top: 15px;
}
.blog-details-secA .content li {
  margin-left: 40px;
  list-style-type: disc;
  font-size: 16px;
  line-height: 24px;
  color: #666;
}
.blog-details-secA .content li::marker {
  font-size: 22px;
  color: #0A3481;
}
.blog-details-secA .content .title {
  color: black;
  font-weight: 600;
  font-size: 20px;
  line-height: 26px;
  letter-spacing: 0%;
  margin-bottom: 20px;
}
.blog-details-secA .content .description {
  font-size: 14px;
  font-weight: 400;
  color: #666666;
  text-align: justify;
  margin-bottom: 20px;
}
.blog-details-secA .content ul li {
  margin-left: 40px;
  list-style-type: disc;
}
.blog-details-secA .content ul li::marker {
  font-size: 22px;
  color: #0A3481;
}
.blog-details-secA .content ul .description {
  font-size: 14px;
  font-weight: 400;
  color: #666666;
  text-align: justify;
  margin-bottom: 10px;
}

.blog-details-secB {
  position: relative;
}
.blog-details-secB .upper-sec {
  padding: 0 !important;
}
.blog-details-secB .swiper-nav {
  width: 98% !important;
  max-width: 98% !important;
}
.blog-details-secB .swiper-wrapper {
  padding: 30px 0 50px 0;
}
@media only screen and (max-width: 768px) {
  .blog-details-secB .swiper-wrapper {
    padding: 30px 0 50px 0;
  }
}
@media only screen and (max-width: 540px) {
  .blog-details-secB .swiper-wrapper {
    padding: 20px 0px 50px 0;
  }
}
.blog-details-secB .swiper-wrapper .swiper-slide {
  line-height: 0;
  box-shadow: 0px 8px 24px 0px rgba(149, 157, 165, 0.2);
  border: 1px solid #D4D4D4;
  background: var(--white);
  border-radius: 5px;
  overflow: hidden;
  transition: 0.4s ease;
}
.blog-details-secB .swiper-wrapper .swiper-slide .grid-box-item {
  width: 100%;
  border-radius: 5px;
  background: var(--white);
  overflow: hidden;
  position: relative;
  transition: 0.4s ease;
  box-shadow: 0px 8px 24px 0px rgba(149, 157, 165, 0.2);
  border: 1px solid #D4D4D4;
  z-index: 1;
}
.blog-details-secB .swiper-wrapper .swiper-slide .grid-box-item:hover {
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.blog-details-secB .swiper-wrapper .swiper-slide .grid-box-item:hover .btn2 {
  color: white;
}
.blog-details-secB .swiper-wrapper .swiper-slide .grid-box-item:hover .btn2::after {
  opacity: 1;
}
.blog-details-secB .swiper-wrapper .swiper-slide .grid-box-item:hover .top img {
  scale: 1.2;
}
.blog-details-secB .swiper-wrapper .swiper-slide .grid-box-item .top {
  height: 265px;
  overflow: hidden;
  position: relative;
  position: relative;
}
.blog-details-secB .swiper-wrapper .swiper-slide .grid-box-item .top::before {
  content: "";
  display: block;
  width: 0px;
  height: 86%;
  position: absolute;
  top: 7%;
  left: 0%;
  opacity: 0;
  background: white;
  box-shadow: 0 0 55px 12px white;
  transform: skewX(-20deg);
  z-index: 1;
}
.blog-details-secB .swiper-wrapper .swiper-slide .grid-box-item .top:hover::before {
  animation: shine 0.4s linear;
  animation-fill-mode: none;
}
.blog-details-secB .swiper-wrapper .swiper-slide .grid-box-item .top img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.5s ease;
}
.blog-details-secB .swiper-wrapper .swiper-slide .grid-box-item figcaption {
  padding: 30px;
}
@media only screen and (max-width: 540px) {
  .blog-details-secB .swiper-wrapper .swiper-slide .grid-box-item figcaption {
    padding: 20px;
  }
}
.blog-details-secB .swiper-wrapper .swiper-slide .grid-box-item figcaption h4 {
  color: black;
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
}
@media only screen and (max-width: 1024px) {
  .blog-details-secB .swiper-wrapper .swiper-slide .grid-box-item figcaption h4 {
    font-size: 18px;
    line-height: 1.2;
  }
}
@media only screen and (max-width: 540px) {
  .blog-details-secB .swiper-wrapper .swiper-slide .grid-box-item figcaption h4 {
    font-size: 16px;
  }
}
.blog-details-secB .swiper-wrapper .swiper-slide .grid-box-item figcaption p {
  font-weight: 600;
  font-size: 14px;
  line-height: 24px;
}/*# sourceMappingURL=blog.css.map */