.hero-template {
    background: url("/images/hero/template.jpg");
    background-position: center;
    background-size: cover;
    height: 75vh;
    margin-top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
    justify-content: center;
  }
  
  .hero-template h1 {
    letter-spacing: 5px;
    font-weight: 400;
    font-family: "Lato";
    margin-top: 10px;
  }

  .hero-template span {
    letter-spacing: 16px;
    font-weight: 500;
    font-family: "Lato";
  }
  

  .main-template {
    padding: 8vh 5%;
    color: #173254;
    background-color: #ECECEF;
  }

  .top-details {
    display: flex;
    justify-content: space-between;
    margin: 2vh 0;
  }

  .top-details span {
    font-family: 'Oswald';
    letter-spacing: 2px;
  }

  .blog-img img{
    width: 100%;
    height: 800px;
    object-fit: cover;
    background-position: center;
}

  .main-template h3, .main-template ul li, .main-template a {
    color: #173254;

  }
  .main-template ul, .main-template ol {
    margin-left: -10px;
  }
  .main-template ul li, .main-template ol li {
    margin: 2vh 0;
    position: relative;
  }

.main-template ol li::marker {
  font-weight: 700;
}
  .main-template ul li::before  {
    content: "";
    display: inline-block;
    background-image: url("/images/dot.png");
    background-size: contain; /* Ensure the checkmark scales properly */
    background-repeat: no-repeat;
    width: 20px; /* Adjust width based on your checkmark size */
    height: 20px; /* Adjust height based on your checkmark size */
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%); /* Vertically center the checkmark */
  }
  #pdf,  #back {
    position: relative;
    margin-left: 35px;
  }

  #pdf {
    padding-left: 5px;
    letter-spacing: 2px;

  }

  #back {
    padding-left: 45px;
    letter-spacing: 2px;
  }
  #pdf::before  {
    content: "";
    display: inline-block;
    background-image: url("/images/pdf.png");
    background-size: contain; /* Ensure the checkmark scales properly */
    background-repeat: no-repeat;
    width: 30px; /* Adjust width based on your checkmark size */
    height: 34.5px; /* Adjust height based on your checkmark size */
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%); /* Vertically center the checkmark */
  }

  #back::before  {
    content: "";
    display: inline-block;
    background-image: url("/images/arrleft.png");
    background-size: contain; /* Ensure the checkmark scales properly */
    background-repeat: no-repeat;
    width: 63px; /* Adjust width based on your checkmark size */
    height: 20px; /* Adjust height based on your checkmark size */
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%); /* Vertically center the checkmark */
  }

/* Gallery container styling */
.gallery {
    display: flex;
    gap: 0; /* No gap between the large image and the small ones */
    justify-content: space-between;
    width: 100%; /* Ensure the gallery takes full width */
    padding-bottom: 5vh;
    border-bottom: 1px solid #17325433;
  }
  
  /* Left side large image (60%) */
  .gallery-left {
    flex: 6; /* Large image takes 60% of the width */
  }
  
  .gallery-left img {
    width: 100%;
    height: 100%; /* Set the height to 100% to match the right side */
    object-fit: cover; /* Ensure the image covers the container while maintaining aspect ratio */
    display: block;
  }
  
  /* Right side smaller images (40%) */
  .gallery-right {
    display: flex;
    flex-direction: column; /* Stack the smaller images vertically */
    flex: 4; /* Right side will take 40% of the width */
    height: 100%; /* Ensure it matches the height of the left image */
    gap: 0;
  }
  
  .gallery-right a {
    flex: 1; /* Ensure both smaller images take equal space */
  }
  
  .gallery-right img {
    width: 100%;
    height: 100%; /* Fill the height of each container */
    object-fit: cover; /* Ensure images cover the container while maintaining aspect ratio */
    display: block;
  }

  .post-share {
    display: flex;
    align-items: center;
    gap: 20px;
  }

  


  @media (max-width: 768px) {
    .gallery {
      flex-direction: column;
    }
  
    .main-template ul li::before  {
      width: 12px; /* Adjust width based on your checkmark size */
      height: 12px; /* Adjust height based on your checkmark size */
    }
  
    .gallery-right {
      flex-direction: row;
    }
  
    .gallery-right img {
      width: 100%;
    }

    .blog-img img{
      height: 300px;
  }

  
  .top-details {
    margin: 50px 0 2vh 0;
  }

  }
  