@keyframes shine {
  from {
    opacity: 0;
    left: 0%;
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 0;
    left: 100%;
  }
}
.blog-banner {
  position: relative;
  color: white;
  overflow: hidden;
  height: 90vh;
  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 .bg img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
  margin-top: var(--headerheight);
}
@media only screen and (max-width: 540px) {
  .blog-banner .bg .container {
    padding: 0;
  }
}
.blog-banner .bg .container .bg-wrapper {
  width: 100%;
  position: absolute;
  z-index: 1;
  bottom: 15%;
  text-align: center;
  left: 0;
}
@media only screen and (max-width: 991px) {
  .blog-banner .bg .container .bg-wrapper {
    bottom: 10%;
  }
}
@media only screen and (max-width: 540px) {
  .blog-banner .bg .container .bg-wrapper {
    bottom: 10%;
    margin-left: 0;
  }
}
.blog-banner .bg .container .bg-wrapper .btn {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 40px;
  margin: auto;
}
.blog-banner .bg .container .bg-wrapper .btn a {
  font-weight: 700;
}
@media only screen and (max-width: 540px) {
  .blog-banner .bg .container .bg-wrapper .btn {
    display: flex;
    justify-content: center;
    margin: auto;
  }
}
.blog-banner .bg .container .bg-wrapper h1 {
  font-weight: 700;
  line-height: 0.99;
  margin-bottom: 18px;
  max-width: 650px;
  margin: auto;
  margin-bottom: 20px;
}
@media only screen and (max-width: 768px) {
  .blog-banner .bg .container .bg-wrapper h1 {
    max-width: 540px;
  }
}
@media only screen and (max-width: 540px) {
  .blog-banner .bg .container .bg-wrapper h1 {
    max-width: 90%;
    text-align: center;
    margin: auto;
    font-size: 25px;
    line-height: 1.2;
  }
}
.blog-banner .bg .container .bg-wrapper p {
  font-family: "Poppins";
  font-weight: 500;
  font-size: 20px;
  line-height: 100%;
  color: var(--white);
  max-width: 100%;
}
@media only screen and (max-width: 991px) {
  .blog-banner .bg .container .bg-wrapper p {
    max-width: 100%;
    color: rgba(255, 255, 255, 0.8784313725);
  }
}
@media only screen and (max-width: 540px) {
  .blog-banner .bg .container .bg-wrapper p {
    max-width: 100%;
    font-size: 13px;
    line-height: 1.2;
    text-align: center;
    color: rgba(255, 255, 255, 0.8588235294);
    display: none;
  }
}

.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 {
  position: relative;
}
.blog-secA .grid-box .grid-box-item:hover figure img {
  scale: 1.1;
}
.blog-secA .grid-box .grid-box-item:hover::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:hover:hover::before {
  animation: shine 0.4s linear;
  animation-fill-mode: none;
}
.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 h2 {
  font-weight: 600;
  font-size: 20px;
  color: black;
  margin: 10px 0 20px 0;
  color: #232963;
}
.blog-secA .grid-box .grid-box-item figcaption p {
  font-size: 16px;
  color: var(--primary);
  font-weight: 400;
  color: #666666;
}

.blog-detail-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-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: 60vh;
  }
}
.blog-detail-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-detail-banner::before {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.85) 100%);
  }
}
.blog-detail-banner .banner-wrapper {
  width: 100%;
}
.blog-detail-banner .banner-wrapper .bg-image {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  height: 100%;
  width: 100%;
}
.blog-detail-banner .banner-wrapper .bg-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width: 540px) {
  .blog-detail-banner .banner-wrapper .container {
    padding: 0;
  }
}
.blog-detail-banner .banner-wrapper .container .bg-wrapper {
  position: absolute;
  z-index: 1;
  width: 100%;
  bottom: 20%;
  margin-left: 10px;
}
@media only screen and (max-width: 991px) {
  .blog-detail-banner .banner-wrapper .container .bg-wrapper {
    bottom: 40%;
  }
}
@media only screen and (max-width: 540px) {
  .blog-detail-banner .banner-wrapper .container .bg-wrapper {
    bottom: 14%;
    margin-left: 0;
  }
}
.blog-detail-banner .banner-wrapper .container .bg-wrapper h1 {
  font-weight: 600;
  font-size: 36px;
  line-height: 1.1;
  text-align: left;
  margin-bottom: 18px;
  max-width: 678px;
}
@media only screen and (max-width: 991px) {
  .blog-detail-banner .banner-wrapper .container .bg-wrapper h1 {
    max-width: 70%;
    line-height: 1.2;
    font-size: 30px;
  }
}
@media only screen and (max-width: 540px) {
  .blog-detail-banner .banner-wrapper .container .bg-wrapper h1 {
    max-width: 100%;
    font-size: 25px;
    line-height: 1.1;
    text-align: center;
    padding: 0 20px;
    margin-bottom: 8px;
  }
}
.blog-detail-banner .banner-wrapper .container .bg-wrapper p {
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: var(--white);
  width: 450px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 991px) {
  .blog-detail-banner .banner-wrapper .container .bg-wrapper p {
    max-width: 100%;
    color: rgba(255, 255, 255, 0.8784313725);
  }
}
@media only screen and (max-width: 540px) {
  .blog-detail-banner .banner-wrapper .container .bg-wrapper p {
    max-width: 100%;
    font-size: 13px;
    line-height: 1.2;
    text-align: center;
    color: rgba(255, 255, 255, 0.8588235294);
  }
}

.blog-details-secA {
  padding: 50px 0;
}
.blog-details-secA .container {
  max-width: 880px;
}
.blog-details-secA .content p {
  font-weight: 400;
  font-size: 16px;
  text-align: justify;
  margin-bottom: 25px;
  color: var(--text);
}
.blog-details-secA .content h2 {
  font-weight: 700;
  font-size: 28px;
  color: #1E0F44;
  margin: 40px 0 10px 0;
}
.blog-details-secA .content h3 {
  font-weight: 700;
  font-size: 18px;
  color: #1E0F44;
  margin: 40px 0 10px 0;
}
.blog-details-secA .content h4 {
  font-weight: 600;
  font-size: 16px;
  color: #1E0F44;
  margin: 40px 0 10px 0;
}
.blog-details-secA .content h5 {
  font-weight: 600;
  font-size: 14px;
  color: #1E0F44;
  margin: 40px 0 10px 0;
}
.blog-details-secA .content ul {
  margin-bottom: 20px;
  margin-left: 10px;
}
.blog-details-secA .content ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  color: var(--text);
}
.blog-details-secA .content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 12px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--gradient-a);
  transform: translateY(-50%);
}

.blog-details-secB {
  padding: 0 0 50px 0;
}
.blog-details-secB .upper-sec {
  padding: 0 !important;
}
.blog-details-secB .upper-sec h3 {
  font-weight: 700;
  font-size: 36px;
  line-height: 36px;
  text-align: center;
  color: var(--primary);
}
.blog-details-secB .swiper-nav button:hover svg path {
  fill: white;
}
.blog-details-secB .swiper-nav .swiper-button-disabled {
  pointer-events: none;
}
.blog-details-secB .swiper-wrapper {
  padding: 50px 0 20px 0;
}
.blog-details-secB .swiper-wrapper .swiper-slide {
  background: white;
  border: 1px solid #D5D5D5;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  background: var(--white);
}
.blog-details-secB .swiper-wrapper .swiper-slide:hover img {
  scale: 1.1;
}
.blog-details-secB .swiper-wrapper .swiper-slide::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:hover::before {
  animation: shine 0.4s linear;
  animation-fill-mode: none;
}
.blog-details-secB .swiper-wrapper .swiper-slide figure {
  height: 300px;
  overflow: hidden;
}
.blog-details-secB .swiper-wrapper .swiper-slide figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.5s ease;
}
.blog-details-secB .swiper-wrapper .swiper-slide figcaption {
  padding: 25px 55px 25px 25px;
}
.blog-details-secB .swiper-wrapper .swiper-slide figcaption h4 {
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  color: #232963;
  margin-bottom: 10px;
}
.blog-details-secB .swiper-wrapper .swiper-slide figcaption span {
  font-weight: 600;
  font-size: 14px;
  line-height: 24px;
  color: #666666;
}/*# sourceMappingURL=blog.css.map */