@keyframes shine {
  from {
    opacity: 0;
    left: 0%;
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 0;
    left: 100%;
  }
}
img, video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.5s ease;
}

.banner {
  color: unset;
  height: 100%;
  display: block;
  position: relative;
  position: relative;
}
.banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background: none;
}
.banner::before {
  z-index: 1;
  background: linear-gradient(270deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%), linear-gradient(180deg, rgba(0, 0, 0, 0) 14%, rgba(0, 0, 0, 0.6) 88%);
}
.banner .bg {
  height: 650px;
  line-height: 0;
}
@media only screen and (max-width: 1366px) {
  .banner .bg {
    height: calc(100vh - var(--headerheight));
  }
}
.banner .bg video, .banner .bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.banner .banner-wrapper {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  translate: 0 -50%;
  z-index: 2;
}
.banner .banner-wrapper h1, .banner .banner-wrapper h2 {
  max-width: 100%;
  font-size: 48px;
  line-height: 1.2;
  color: var(--white);
}
@media only screen and (max-width: 1280px) {
  .banner .banner-wrapper h1, .banner .banner-wrapper h2 {
    font-size: 44px;
  }
}
@media only screen and (max-width: 991px) {
  .banner .banner-wrapper h1, .banner .banner-wrapper h2 {
    font-size: 38px;
  }
}
@media only screen and (max-width: 768px) {
  .banner .banner-wrapper h1, .banner .banner-wrapper h2 {
    font-size: 34px;
  }
}
@media only screen and (max-width: 540px) {
  .banner .banner-wrapper h1, .banner .banner-wrapper h2 {
    font-size: 28px;
    line-height: 1.3;
  }
}
.banner .banner-wrapper p {
  color: var(--white);
  font-size: 16px;
  line-height: 1.4;
  margin-top: 10px;
}
@media only screen and (max-width: 768px) {
  .banner .banner-wrapper p {
    line-height: 1.2;
  }
}

.banner.blog-banner::before {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%), linear-gradient(180deg, rgba(0, 0, 0, 0) 14%, rgba(0, 0, 0, 0.6) 88%);
}
.banner.blog-banner .bg .banner-wrapper {
  top: unset;
  bottom: 20%;
  translate: 0 20%;
}
.banner.blog-banner .bg .banner-wrapper .heading {
  text-align: center;
  max-width: 440px;
  margin: 0 auto;
}

.blog_listing_wrapper {
  padding: 60px 0;
}
.blog_listing_wrapper .tab-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-bottom: 60px;
}
.blog_listing_wrapper .tab-nav li {
  position: relative;
  padding: 0 20px 15px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.3411764706);
  transition: 0.5s ease;
}
.blog_listing_wrapper .tab-nav li::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 0%;
  background-color: var(--primary);
  transition: 0.5s ease;
}
.blog_listing_wrapper .tab-nav li.active {
  color: var(--black);
}
.blog_listing_wrapper .tab-nav li.active::after {
  width: 100%;
}
.blog_listing_wrapper .tab-nav-content .tabs .main_wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 35px 30px;
}

.blogs_col {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--white);
  box-shadow: 0px 8px 24px 0 rgba(149, 157, 165, 0.2);
}
.blogs_col:hover figure img {
  transform: scale(1.1);
}
.blogs_col:hover figcaption h6 {
  color: var(--primary);
}
.blogs_col figure {
  position: relative;
  line-height: 0;
  overflow: hidden;
}
.blogs_col figure .tag {
  line-height: 1.2;
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--white);
  padding: 7px 15px;
  border-radius: 25px;
  font-size: 12px;
  font-weight: 500;
  color: var(--primary);
}
.blogs_col figcaption {
  padding: 25px;
}
.blogs_col figcaption h6 {
  font-size: 18px;
  font-weight: 500;
  color: var(--black);
  line-height: 1.3;
  transition: 0.5s ease;
}
.blogs_col figcaption p {
  margin-top: 25px;
  font-weight: 400;
  font-size: 16px;
}

.blog-details-banner.banner::before {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%), linear-gradient(180deg, rgba(0, 0, 0, 0) 14%, rgba(0, 0, 0, 0.6) 88%);
}
.blog-details-banner.banner .bg .banner-wrapper {
  top: unset;
  bottom: 15%;
  translate: 0 15%;
}
.blog-details-banner.banner .bg .banner-wrapper .heading {
  max-width: 520px;
}
.blog-details-banner.banner .bg .banner-wrapper .heading p {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 30px;
}
.blog-details-banner.banner .bg .banner-wrapper .heading h1 {
  font-size: 32px;
  font-weight: 500;
  margin: 0;
  font-family: "Sweet Sans Pro";
}

.blog_details {
  padding: 50px 0;
}
.blog_details .container {
  --container: 750px;
}

.more_blogs {
  padding: 50px 0;
}
.more_blogs .heading {
  text-align: center;
  margin-bottom: 45px;
}
.more_blogs .main_wrapper {
  position: relative;
}
.more_blogs .main_wrapper .swiper-nav button svg path {
  fill: none;
  stroke: var(--white);
}
.more_blogs .main_wrapper .more_blogs_slider {
  max-width: 98%;
  padding: 10px;
}
.more_blogs .main_wrapper .more_blogs_slider .blogs_col {
  box-shadow: 0px 0px 10px 0 rgba(149, 157, 165, 0.2);
}/*# sourceMappingURL=blog.css.map */