@keyframes shine {
  from {
    opacity: 0;
    left: 0%;
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 0;
    left: 100%;
  }
}
.swiper-wrap {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
  flex-direction: column;
  height: 80vh;
  padding: 0 0 8rem;
  overflow: hidden;
}
@media only screen and (max-width: 540px) {
  .swiper-wrap {
    height: 55vh;
    padding: 0 0 3rem;
  }
}
.swiper-wrap::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
  background: linear-gradient(to top, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0.28) 51%, rgba(0, 0, 0, 0.1) 100%);
}
.swiper-wrap img, .swiper-wrap video {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}
.swiper-wrap ul {
  display: flex;
  justify-content: center;
  gap: 65px;
  margin: 40px 0 60px;
}
.swiper-wrap ul li {
  color: var(--litewhite);
  font-size: 14px;
  position: relative;
  cursor: pointer;
  text-transform: uppercase;
}
.swiper-wrap ul li::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--white);
  transition: 0.3s ease;
}
.swiper-wrap ul li.active {
  color: var(--white);
}
.swiper-wrap ul li.active::after {
  width: 100%;
}
.swiper-wrap .heading {
  text-align: center;
  z-index: 2;
}
.swiper-wrap .heading h2 {
  color: var(--white);
  font-size: 48px;
  text-transform: uppercase;
  margin: 10px 0 30px;
  transform: scale(1.4);
  font-family: "Optima";
}
@media only screen and (max-width: 540px) {
  .swiper-wrap .heading h2 {
    font-size: 24px;
  }
}
.swiper-wrap .heading h2 span {
  font-size: 20px;
  font-weight: 400;
  color: var(--white);
}
.swiper-wrap .heading p {
  color: var(--litewhite);
  width: 100%;
  max-width: 524px;
  margin: 0 auto;
}
@media only screen and (max-width: 540px) {
  .swiper-wrap .heading p {
    max-width: 255px;
    font-size: 13px;
  }
}

.blog {
  width: 100%;
  padding: 100px 0;
  background: #f9f9fb;
}
@media only screen and (max-width: 540px) {
  .blog {
    padding: 65px 0;
  }
}
.blog .section-header {
  text-align: center;
  margin-bottom: 60px;
}
.blog .section-header .section-title {
  font-size: 42px;
  font-weight: 700;
  color: #0a0a23;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.blog .section-header .section-subtitle {
  font-size: 16px;
  color: #666666;
  line-height: 1.6;
}
.blog .blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}
@media only screen and (max-width: 1024px) {
  .blog .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 768px) {
  .blog .blog-grid {
    grid-template-columns: 1fr;
  }
}
@media only screen and (max-width: 540px) {
  .blog .blog-grid {
    gap: 20px;
  }
}
.blog .blog-grid .blog-card {
  background: #ffffff;
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid #AEAEAE;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.blog .blog-grid .blog-card:hover {
  transform: translateY(-4px);
  cursor: pointer;
}
.blog .blog-grid .blog-card .card-image {
  width: 100%;
  height: 350px;
  overflow: hidden;
  position: relative;
}
@media only screen and (max-width: 1366px) {
  .blog .blog-grid .blog-card .card-image {
    height: 235px;
  }
}
@media only screen and (max-width: 540px) {
  .blog .blog-grid .blog-card .card-image {
    height: 195px;
  }
}
.blog .blog-grid .blog-card .card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s ease;
}
.blog .blog-grid .blog-card .card-image:hover img {
  transform: scale(1.1);
}
.blog .blog-grid .blog-card .card-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
@media only screen and (max-width: 1366px) {
  .blog .blog-grid .blog-card .card-content {
    padding: 15px;
  }
}
.blog .blog-grid .blog-card .card-content .card-title {
  font-size: 18px;
  font-weight: 700;
  color: #0a0a23;
  min-height: 56px;
}
@media only screen and (max-width: 540px) {
  .blog .blog-grid .blog-card .card-content .card-title {
    margin-bottom: 8px;
  }
}
.blog .blog-grid .blog-card .card-content .card-description {
  font-size: 14px;
  color: #666666;
  line-height: 1.5;
  margin-bottom: 20px;
  flex-grow: 1;
}
.blog .blog-grid .blog-card .card-content .card-button {
  padding: 12px 28px;
  background: transparent;
  border: 2px solid #0a0a23;
  border-radius: 25px;
  color: #0a0a23;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  align-self: flex-start;
}
.blog .blog-grid .blog-card .card-content .card-button:hover {
  background: #0a0a23;
  color: #ffffff;
}
.blog .leadMore {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 5rem 0 0;
}
@media only screen and (max-width: 540px) {
  .blog .leadMore {
    padding: 0;
  }
}
.blog .leadMore img {
  width: 120px;
}
.blog .leadMore span {
  color: var(--secondary);
  font-size: 16px;
}/*# sourceMappingURL=blog.css.map */