/* Blog Details CSS Start */

.blog-det {
  background-color: #000000;
  color: #FFFFFF;
  padding: 140px 0 60px 0;
}

.blog-det .w-25, .blog-det .w-50, .blog-det .w-75  {
  margin-right: auto!important;
  margin-left: auto!important;
  display: block;
  margin-bottom: 60px
}

.blog-det h1 {
  font-family: "ReclineRegular";
  font-size: 55px;
  margin-bottom: 20px;
}

.blog-info {
  padding: 0 20px;
}

.blog-info h6 {
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 40px;
}

.blog-info .blog-cat-gap {
  display: flex;
  gap: 10px;
}

.blog-info a, .blog-info .blog-cat-gap div {
  color: #FFFFFF;
  text-decoration: none;
  border: 1px solid #FFFFFF;
  padding: 5px 12px 7px 12px;
  display: inline-block;
}

.blog-info a:hover {
  color: #000000;
  background-color: #FFFFFF; 
}

.blog-info img {
  margin: 20px 0 40px 0;
  /* padding-top: 20px */
}

.blog-excerpt h4 {
  line-height: 1.5;
  font-family: "ReclineRegular";
}

.blog-excerpt {
  margin-bottom: 60px;
  /* margin-top: 60px; */
}

.blog-det-content h2, .blog-det-content h3, .blog-det-content h4, .blog-det-content h4, .blog-det-content h6, .blog-det-content p {
  margin-bottom: 20px;
}

.blog-det-content h1, .blog-det-content h2, .blog-det-content h3, .blog-det-content h4, .blog-det-content h4, .blog-det-content h6 {
  font-family: "ReclineRegular";
}

.blog-det-content h4 {
  font-size: 34px;
}

.blog-det-content p {
  font-size: 18px;
}

.blog-det-content .w-50 p:last-child {
  /*margin-bottom: 50px;*/
}

.blog-det-content img {
  margin-bottom: 40px;
}

.blog-det-author {
  padding-top: 30px;
}

.blog-det-author h6 {
  font-size: 20px;
}

.blog-det-author h6 span {
    font-size: 13px;
    margin-top: 5px;
    color: #E2E2E2
}

.blog-det-author p {
  margin-top: 20px;
  font-size: 16px;
  font-style: italic;
  color: #E2E2E2;
}

.blog-det-author img {
  border-radius: 50%;
  object-fit: cover;
}

.blog-det-related {
  width: 88%;
  margin-left: auto;
  padding-top: 70px;
  color: #FFFFFF;
}

.blog-det-related h6 {
  font-family: "ReclineRegular";
  font-size: 34px;
  margin-bottom: 35px;
}

.blog-det-related .owl-stage{
  padding-left: 0px !important;
}

.blog-det-related .owl-nav {
  position: absolute;
  top: -16%;
  right: 12%;
}

.blog-det-related button.owl-next {
  margin-left: 30px;
}

.blog-det-related a {
  text-decoration: none;
  color: #FFFFFF;
}

.blog-category {
  font-size: 14px;
  margin-bottom: 12px;
}

.blog-title {
  font-size: 25px;
}

.blog-title {
  font-family: "ReclineRegular";
  width: fit-content;
}

.blog-det-related .blog-title {
  color: #FFFFFF;
}

.blog-desc {
  font-size: 18px;
  color: #E2E2E2;
}

.blog-det ul {
  margin-bottom: 20px;
  line-height: 2;
}

/* .blog-title a:hover {
  text-decoration: underline;
}  */

/* Blog Details CSS End */

/* Blog Listing CSS Start */

.blog-listing {
    padding: 140px 20px 60px 20px;
    width: 85%;
    margin: 0 auto;
    color: #000000;
}

.blog-listing a {
    text-decoration: none;
}

.blog-breadcrumb {
    font-family: "ReclineRegular";
    font-size: 30px;
    display: flex;
    gap: 7px;
    margin-bottom: 40px;
}

.blog-breadcrumb a {
    font-family: "ReclineRegular";
    color: #000000;
    text-decoration: none;
}

.blog-breadcrumb a:hover {
    text-decoration: underline;
}

.blog-listing .blog-category a, .blog-listing .blog-category, .blog-listing .blog-desc {
    color: #474747;
}

.blog-listing .blog-title a {
    color: #000000;
}

.blog-listing .listing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 60px;
}

.blog-title {
    position: relative;
    color: #000000;
}

.blog-title::after {
    content: "";
    display: block;
    height: 2px;
    background: currentColor;
    width: 0;
    transition: width 0.3s ease;
    position: absolute;
    left: 0;
    bottom: -3px;
}

.blog-title:hover::after {
    width: 100%;
}

.listing-grid div:hover .blog-title::after, .featured-post:hover .blog-title::after, .blog-det-related .item:hover .blog-title::after {
    width: 100%;
}

 .blog-category a {
    color: #E2E2E2;
    display: block
 }

/* Blog Listing CSS End */

/* Blog Details page Grid and Transition CSS Start */

.img-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.zoom-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    will-change: transform;
    overflow: hidden;
    transform-origin: center;
}

.grid-2, .grid-3, .grid-4 {
  display: grid !important;
  gap: 20px;	
  margin-bottom: 40px
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.grid-2 img, .grid-3 img, .grid-4 img {
  margin-bottom: 0 !important;
}

.blog-det video {
  margin-bottom: 30px
}

/* Blog Details page Grid and Transition CSS End */

/* Responsive CSS Start */

@media (min-width: 1366px) { 
	
  .blog-det .w-25, .blog-det .w-50, .blog-det .w-75 {
    margin-bottom: 4.392vw
  }
	
  .blog-det {
    padding: 10.249vw 0 4.392vw 0;
  }

  .blog-det h1 {
    font-size: 4.026vw;
    margin-bottom: 1.464vw;
  }
  
  .blog-info {
    padding: 0 1.464vw;
  }
  
  .blog-info h6 {
    font-size: 1.318vw;
    margin-bottom: 2.928vw;
  }
  
  .blog-info .blog-cat-gap {
    gap: 0.732vw;
  }
  
  .blog-info a, .blog-info .blog-cat-gap div {
    border: 0.073vw solid #FFFFFF;
    padding: 0.366vw 0.878vw 0.512vw 0.878vw;
  }
  
  .blog-info img {
    margin: 1.464vw 0 2.928vw 0;
    /* padding-top: 1.464vw */
  }
  
  .blog-excerpt {
    margin-bottom: 4.392vw;
    /* margin-top: 4.392vw; */
  }
  
  .blog-excerpt h4 {
    font-size: 1.757vw;
  }
  
  .blog-det video {
    margin-bottom: 2.196vw;
  }
  
  .blog-det-content h2, .blog-det-content h3, .blog-det-content h4, .blog-det-content h4, .blog-det-content h6, .blog-det-content p {
    margin-bottom: 1.464vw;
  }
  
  .blog-det-content h4 {
    font-size: 2.489vw;
  }
  
  .blog-det-content p {
    font-size: 1.318vw;
  }
  
  .blog-det-content .w-50 p:last-child {
    /*margin-bottom: 3.66vw;*/
  }
  
  .blog-det-content img {
    margin-bottom: 2.928vw;
  }
  
  .blog-det-author {
    padding-top: 2.196vw;
  }
  
  .blog-det-author h6 {
    font-size: 1.464vw;
  }
  
  .blog-det-author h6 span {
    font-size: 0.952vw;
    margin-top: 0.366vw;
  }
  
  .blog-det-author p {
    margin-top: 1.464vw;
    font-size: 1.171vw;
  }

  .blog-det-related {
    padding-top: 5.124vw;
  }
  
  .blog-det-related h6 {
    font-size: 2.489vw;
    margin-bottom: 2.562vw;
  }
  
  .blog-det-related button.owl-next {
    margin-left: 2.196vw;
  }
  
  .blog-det ul {
    margin-bottom: 1.464vw
  }
  
  .blog-category {
    font-size: 1.025vw;
    margin-bottom: 0.878vw;
  }
  
  .blog-title {
    font-size: 1.83vw;
  }
  
  .blog-desc {
    font-size: 1.318vw;
  }
  
  .blog-listing {
    padding: 10.249vw 1.464vw 4.392vw 1.464vw;
  }

  .blog-breadcrumb {
    font-size: 2.196vw;
    gap: 0.512vw;
    margin-bottom: 2.928vw;
  }

  .blog-listing .listing-grid {
    gap: 1.464vw;
    margin-top: 4.392vw;
  }
  
  .grid-2, .grid-3, .grid-4 {
    gap: 1.464vw;	
    margin-bottom: 2.928vw
  }
  
}

@media only screen and (max-width: 767px) {
  
  .blog-det {
    padding: 100px 0 60px 0;
  }

  .blog-det h1 {
    font-size: 35px;
    margin-bottom: 10px;
  }

  .w-50 {
    width: 75%!important;
  }

  .blog-excerpt h4 {
    font-size: 20px;
  }

  .blog-det-content h4, .blog-det-related h6 {
    font-size: 30px;
  }

  .blog-det-content p, .blog-det-author p, .blog-info h6, .blog-desc {
    font-size: 16px;
  }

  .blog-title {
    font-size: 20px;
  }
  
  .blog-listing {
    padding: 100px 0 60px 0;
  }
  
  .blog-det-related .owl-nav {
    display: block;
  }

}

@media only screen and (max-width: 576px) {

  .w-50, .w-75 {
    width: 100%!important;
  }
  
  .blog-det .w-25, .blog-det .w-50, .blog-det .w-75 {
    margin-bottom: 30px;
  }

  .blog-excerpt, .blog-det-content, .blog-det-author {
    padding-right: 20px;
    padding-left: 20px;
  }

  .blog-excerpt {
    margin-bottom: 30px;
    margin-top: 0;
  }

  .blog-excerpt h4 {
    font-size: 18px;
  }

  .blog-info .d-flex {
    /* display: unset !important; */
  }

  .blog-cat-gap {
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .blog-info a, .blog-info .blog-cat-gap div {
    padding: 5px 10px 7px 10px;
    font-size: 14px;
  }

  .blog-info h6 {
    margin-bottom: 30px;
  }

  .blog-det-related {
    width: 100%;
    padding-top: 40px;
    padding-left: 20px;
  }

  .blog-det-related .owl-nav {
    top: -21%;
    right: 6%;
  }

  .blog-det-related button.owl-next {
    margin-left: 30px;
  }
  
  .blog-listing .listing-grid {
    display: unset;
  }

  .blog-breadcrumb {
    font-size: 20px;
    margin-bottom: 25px;
  }

  .blog-listing figure {
    margin-top: 40px;
  }
  
  .grid-3, .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

}
