/* =========================
   		SECTION - 1
========================= */
/* ====================================
   Service HERO
==================================== */

.blog-sec-1-section {
  position: relative;
  overflow: hidden;

  height: 400px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-sec-1-bg {
  position: absolute;
  inset: 0;

  overflow: hidden;
}

.blog-sec-1-parallax-img {
  position: absolute;

  top: -15%;
  left: 0;

  width: 100%;
  height: 130%;

  object-fit: cover;

  will-change: transform;
}

.blog-sec-1-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;

  background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55));
}

.blog-sec-1-container {
  position: relative;
  z-index: 3;

  max-width: 1500px;
  width: 90%;

  padding: 0 40px;
}

.blog-sec-1-content {
  text-align: center;
}

/* TITLE */

.blog-sec-1-title {
  color: #ffffff;

  font-size: 56px;
  font-weight: 700;

  line-height: 1.1;

  margin-bottom: 20px;
  font-family: var(--secondary-font);
}

/* BREADCRUMB */

.blog-sec-1-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 12px;

  color: #ffffff;

  font-size: 18px;
  font-weight: 500;
}

.blog-sec-1-breadcrumb a {
  color: #ffffff;

  text-decoration: none;

  transition: 0.3s;
}

.blog-sec-1-breadcrumb a:hover {
  color: #facc15;
}

.blog-sec-1-breadcrumb span:last-child {
  color: #facc15;
}

/* ====================================
   RESPONSIVE
==================================== */

@media (max-width: 1200px) {
  .blog-sec-1-section {
    height: 500px;
  }

  .blog-sec-1-title {
    font-size: 52px;
  }
}

@media (max-width: 992px) {
  .blog-sec-1-section {
    height: 450px;
  }

  .blog-sec-1-title {
    font-size: 48px;
  }
}

@media (max-width: 768px) {
  .blog-sec-1-section {
    height: 400px;
  }

  .blog-sec-1-container {
    padding: 0 24px;
  }

  .blog-sec-1-title {
    font-size: 40px;
  }

  .blog-sec-1-breadcrumb {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .blog-sec-1-section {
    height: 340px;
  }

  .blog-sec-1-title {
    font-size: 34px;
  }

  .blog-sec-1-breadcrumb {
    gap: 8px;
    font-size: 14px;
  }
}




/* =========================
   		SECTION - 2
========================= */



.blog-sec-2-section {
  padding: 120px 0;
  background: #f8fafc;
}

.blog-sec-2-container {
  max-width: 1100px;
  margin: auto;
  padding: 0 40px;
}

/* FEATURED IMAGE */

.blog-sec-2-featured-image {
  border-radius: 28px;
  overflow: hidden;
  margin-bottom: 35px;
}

.blog-sec-2-featured-image img {
  width: 100%;
  display: block;
}

/* META */

.blog-sec-2-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;

  margin-bottom: 20px;

  color: #64748b;
}

.blog-sec-2-category {
  color: #facc15;
  font-weight: 700;
}

/* TITLE */

.blog-sec-2-title {
  font-size: 64px;
  line-height: 1.15;

  margin-bottom: 40px;

  color: #111827;
}

/* CONTENT */

.blog-sec-2-body {
  color: #475569;

  font-size: 18px;
  line-height: 2;
}

.blog-sec-2-body p {
  margin-bottom: 28px;
}

.blog-sec-2-body h3 {
  font-size: 34px;
  color: #111827;

  margin: 50px 0 20px;
}

/* QUOTE */

.blog-sec-2-quote {
  margin: 50px 0;

  padding: 40px;

  border-left: 5px solid #facc15;

  background: white;

  border-radius: 18px;

  font-size: 28px;
  line-height: 1.6;

  color: #111827;
}

/* INLINE IMAGE */

.blog-sec-2-inline-image {
  margin: 50px 0;

  border-radius: 24px;

  overflow: hidden;
}

.blog-sec-2-inline-image img {
  width: 100%;
  display: block;
}

/* LATEST */

.blog-sec-2-latest {
  margin-top: 120px;
}

.blog-sec-2-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  font-size: 13px;
  font-weight: 700;

  letter-spacing: 2px;

  margin-bottom: 20px;
}

.blog-sec-2-tag::before {
  content: "";

  width: 8px;
  height: 8px;

  background: #facc15;
}

.blog-sec-2-latest-title {
  font-size: 48px;
  margin-bottom: 50px;
}

.blog-sec-2-latest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */

.blog-sec-2-card {
  background: white;

  border-radius: 24px;

  overflow: hidden;

  transition: 0.3s;
}

.blog-sec-2-card:hover {
  transform: translateY(-8px);
}

.blog-sec-2-card-image {
  overflow: hidden;
}

.blog-sec-2-card-image img {
  width: 100%;
  height: 250px;

  object-fit: cover;

  transition: 0.5s;
}

.blog-sec-2-card:hover img {
  transform: scale(1.08);
}

.blog-sec-2-card-content {
  padding: 28px;
}

.blog-sec-2-card-category {
  color: #facc15;

  font-size: 14px;
  font-weight: 700;
}

.blog-sec-2-card h3 {
  margin: 15px 0;

  font-size: 24px;
  line-height: 1.4;
}

.blog-sec-2-card a {
  color: #111827;
  text-decoration: none;
  font-weight: 700;
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .blog-sec-2-latest-grid {
    grid-template-columns: 1fr;
  }

  .blog-sec-2-title {
    font-size: 48px;
  }
}

@media (max-width: 768px) {
  .blog-sec-2-container {
    padding: 0 24px;
  }

  .blog-sec-2-title {
    font-size: 38px;
  }

  .blog-sec-2-latest-title {
    font-size: 34px;
  }

  .blog-sec-2-quote {
    font-size: 22px;
    padding: 25px;
  }
}
