/* =========================
             sec - 1
   =========================*/
.blog-list-sec-1 {
    position: relative;
    width: 100%;
    /* min-height: 550px; */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 136px 20px;
    background: #0b0b0b url(../images/sec-3-bg.webp) center / cover no-repeat;
    background-size: cover;
    overflow: hidden;
}

/* CONTENT */
.blog-list-sec-1-container {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1420px;
  width: 100%;
}

/* TITLE */
.blog-list-sec-1-title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

/* BREADCRUMB */
.blog-list-sec-1-breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;

  font-size: clamp(14px, 1.2vw, 16px);
  color: #aaa;
}

.blog-list-sec-1-breadcrumb a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-list-sec-1-breadcrumb a:hover {
  color: #8fff9c;
}

.blog-list-sec-1-breadcrumb span {
  color: #ffffff;
}







/* =========================
             sec - 2
   =========================*/

/* ===============================
   BLOG LIST SECTION
================================= */

.blog-list-sec-2 {
  padding: 100px 0;
  background: #f5f5f5;
      border-radius:50px 50px 0 0;
    margin-top: -50px;
    position: relative;
}

.blog-list-sec-2-container {
  width: 90%;
  max-width: 1400px;
  margin: auto;
}

/* Header */

.blog-list-sec-2-head {
  margin-bottom: 60px;
}

.blog-list-sec-2-tag {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #111;
  margin-bottom: 15px;
}

.blog-list-sec-2-title {
  font-size: 58px;
  line-height: 1.1;
  color: #000;
  font-weight: 700;
  max-width: 550px;
}

/* Blog Grid */

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

/* Blog Card */

.blog-list-sec-2-item {
  background: #fff;
  border-radius: 26px;
  overflow: hidden;
  transition: 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

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

.blog-list-sec-2-image {
  height: 270px;
  overflow: hidden;
}

.blog-list-sec-2-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s ease;
}

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

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

.blog-list-sec-2-date {
  font-size: 14px;
  font-weight: 600;
  color: #666;
  display: block;
  margin-bottom: 14px;
}

.blog-list-sec-2-heading {
  font-size: 28px;
  line-height: 1.3;
  color: #000;
  margin-bottom: 15px;
  font-weight: 700;
}

.blog-list-sec-2-text {
  font-size: 17px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 22px;
}

.blog-list-sec-2-readmore {
  font-size: 16px;
  font-weight: 700;
  color: #00542f;
  text-decoration: none;
}

.blog-list-sec-2-readmore:hover {
  color: #000;
}

/* ===============================
   Responsive
================================= */

@media (max-width: 1100px) {
  .blog-list-sec-2-wrap {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .blog-list-sec-2-wrap {
    grid-template-columns: 1fr;
  }

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

  .blog-list-sec-2-btn {
    padding: 16px 26px;
    font-size: 16px;
  }

  .blog-list-sec-2-image {
    height: 240px;
  }

  .blog-list-sec-2-heading {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
	
	.blog-list-sec-2 {
  padding: 50px 0;
		border-radius:30px 30px 0 0;}
}


@media (max-width: 480px) {
  .blog-list-sec-2-title {
    font-size: 32px;
  }

  .blog-list-sec-2-content {
    padding: 22px;
  }

  .blog-list-sec-2-heading {
    font-size: 22px;
  }

  .blog-list-sec-2-text {
    font-size: 15px;
  }
}

