/*--------------------------------------------------------------
# Slider Section
--------------------------------------------------------------*/
.slider {
    background-color: transparent;
  }
  
  .slider .swiper-pagination .swiper-pagination-bullet {
    background-color: color-mix(in srgb, rgb(239, 174, 21), 90%, rgb(239, 174, 21) 15%);
  }
  
  .slider .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #efae15;
  }
  
  .slider .swiper-wrapper {
    height: auto !important;
  }
  
  .slider .swiper-slide {
    min-height: 500px;
    position: relative;
    display: flex;
    align-items: flex-end;
    background-repeat: no-repeat;
    background-size: cover;
  }
  
  .slider .swiper-slide::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: color-mix(in srgb, rgb(43, 42, 42), transparent 50%);
  }
  
  @media (max-width: 575px) {
    .slider .swiper-slide {
      min-height: 300px;
    }
  }
  
  .slider .swiper-button-prev:after,
  .slider .swiper-button-next:after {
    font-size: 24px;
    color: color-mix(in srgb, rgb(239, 174, 21), transparent 0%);
  }
  
  .slider .content {
    padding: 60px 80px;
    max-width: 800px;
    position: relative;
  }
  
  .slider .content a,
  .slider .content p {
    color: white;
    font-size: 20px;
  }

  .slider .content h2 a{
    color: white;
    font-size: 40px;
  }

  /*--------------------------------------------------------------
# Trending Category Section
--------------------------------------------------------------*/
.trending-category .post-entry {
    margin-bottom: 30px;
    /* margin-top: 30px; */
  }
  
  .trending-category .post-entry img {
    margin-bottom: 30px;
  }
  
  .trending-category .post-entry h2 {
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2;
  }
  
  .trending-category .post-entry h2 a {
    color: black;
  }
  
  .trending-category .post-entry h2 a:hover {
    text-decoration: underline;
    color: #007676;
  }
  
  .trending-category .post-entry.lg h2 {
    font-size: 40px;
    line-height: 1;
  }
  
  .trending-category .post-meta {
    font-size: 11px;
    letter-spacing: 0.07rem;
    text-transform: uppercase;
    font-weight: 600;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
    margin-bottom: 10px;
  }
  
  .trending-category .custom-border {
    border-color: color-mix(in srgb, var(--default-color), transparent 90%) !important;
  }
  
  @media (max-width: 768px) {
    .trending-category .custom-border {
      border: none !important;
    }
  }
  
  .trending-category .author .photo {
    margin-right: 10px;
  }
  
  .trending-category .author .photo img {
    width: 40px;
    border-radius: 50%;
    margin-bottom: 0;
  }
  
  .trending-category .author .name h3 {
    margin: 0;
    padding: 0;
    font-size: 15px;
    font-family: var(--default-font);
  }
  
  .trending-category .trending {
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }
  
  .trending-category .trending>h3 {
    color: var(--default-color);
    padding: 20px;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }
  
  .trending-category .trending .trending-post {
    padding: 0;
    margin: 0;
  }
  
  .trending-category .trending .trending-post li {
    padding: 0;
    margin: 0;
    list-style: none;
    display: block;
  }
  
  .trending-category .trending .trending-post li a {
    display: block;
    padding: 20px;
    border-bottom: 3px solid color-mix(in srgb, rgb(239, 174, 21), transparent 90%);
    position: relative;
    overflow: hidden;
    z-index: 2;
  }
  
  .trending-category .trending .trending-post li a .number {
    position: absolute;
    z-index: 1;
    font-size: 5rem;
    left: -10px;
    top: -20px;
    font-weight: 700;
    font-family: var(--heading-font);
    color: color-mix(in srgb, black, transparent 95%);
  }
  
  .trending-category .trending .trending-post li a h3 {
    font-size: 15px;
    color: black;
    transition: 0.3s;
    line-height: 2;
  }
  
  .trending-category .trending .trending-post li a .author {
    color: color-mix(in srgb, var(--default-color), transparent 50%);
    font-weight: 500;
  }
  
  .trending-category .trending .trending-post li a:hover h3 {
    color: #efae15;
    text-decoration: underline;
  }
  
  .trending-category .trending .trending-post li:last-child a {
    border-bottom: none;
  }

/* terpenes-myrcene.html css */
  /*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 25px 0;
    position: relative;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    margin-top: 5.5em;
  }
  
  .page-title h1 {
    font-size: 24px;
    font-weight: 700;
  }
  
  .page-title .breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 18px;
    font-weight: 400;
    color: #007676;
  }
  
  .page-title .breadcrumbs ol li+li {
    padding-left: 10px;
    color: #007676;
  }
  
  .page-title .breadcrumbs ol li+li::before {
    content: "/";
    display: inline-block;
    padding-right: 10px;
    /* color: color-mix(in srgb, var(--default-color), transparent 70%); */
    color: #007676;
  }

  /*--------------------------------------------------------------
# Blog Details Section
--------------------------------------------------------------*/
.blog-details {
    padding-bottom: 30px;
  }
  
  .blog-details .article {
    background-color: var(--surface-color);
    padding: 30px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  }

  .blog-details .container {
    width: 100%; /* Make it full width */
    max-width: 1200px; /* Or set a maximum width */
    margin: 0 auto; /* Center it if it's less than 100% width */
    padding: 0 20px; /* Optional: Add padding to the sides */
}
  
  .blog-details .post-img {
    margin: -30px -30px 20px -30px;
    overflow: hidden;
  }
  
  .blog-details .title {
    color:black;
    font-size: 28px;
    font-weight: 700;
    padding: 0;
    margin: 30px 0;
    text-align: center;
    text-shadow:0 1px 2px #efae15;
  }
  
  .blog-details .content {
    margin-top: 20px;
    color: rgb(0, 0, 0);
  }
  
  .blog-details .content h3 {
    font-size: 22px;
    margin-top: 30px;
    font-weight: bold;
  }

  .blog-details .content h4 {
    font-size: 19px;
    margin-top: 30px;
    font-weight: bold;
  }
  
  .blog-details .content blockquote {
    overflow: hidden;
    background-color: color-mix(in srgb, var(--default-color), transparent 95%);
    padding: 60px;
    position: relative;
    text-align: center;
    margin: 20px 0;
  }
  
  .blog-details .content blockquote p {
    color: var(--default-color);
    line-height: 1.6;
    margin-bottom: 0;
    font-style: italic;
    font-weight: 500;
    font-size: 22px;
  }
  
  .blog-details .content blockquote:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: var(--accent-color);
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .blog-details .content .single-post-img {
    display: block; /* Ensure the image is treated as a block element */
    width: 350px;
    height: 250px;
    margin: 0 auto; /* Center horizontally */
    text-align: center; /* This is not needed for centering the image */
}

  
  .blog-details .meta-top {
    margin-top: 20px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
  }
  
  .blog-details .meta-top ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    align-items: center;
    padding: 0;
    margin: 0;
  }
  
  .blog-details .meta-top ul li+li {
    padding-left: 20px;
  }
  
  .blog-details .meta-top i {
    font-size: 16px;
    margin-right: 8px;
    line-height: 0;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
  }
  
  .blog-details .meta-top a {
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    font-size: 14px;
    display: inline-block;
    line-height: 1;
  }
  
  .blog-details .meta-bottom {
    padding-top: 10px;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }
  
  .blog-details .meta-bottom i {
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    display: inline;
  }
  
  .blog-details .meta-bottom a {
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    transition: 0.3s;
  }
  
  .blog-details .meta-bottom a:hover {
    color: var(--accent-color);
  }
  
  .blog-details .meta-bottom .cats {
    list-style: none;
    display: inline;
    padding: 0 20px 0 0;
    font-size: 14px;
  }
  
  .blog-details .meta-bottom .cats li {
    display: inline-block;
  }
  
  .blog-details .meta-bottom .tags {
    list-style: none;
    display: inline;
    padding: 0;
    font-size: 14px;
  }
  
  .blog-details .meta-bottom .tags li {
    display: inline-block;
  }
  
  .blog-details .meta-bottom .tags li+li::before {
    padding-right: 6px;
    color: var(--default-color);
    content: ",";
  }
  
  .blog-details .meta-bottom .share {
    font-size: 16px;
  }
  
  .blog-details .meta-bottom .share i {
    padding-left: 5px;
  }

  
  /* Sidebar css */
  /*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
/* .widgets-container {
    margin: 40px 0 30px 0;
  }
  
  .widget-title {
    color: var(--heading-color);
    font-size: 20px;
    font-weight: 600;
    padding: 0 0 0 10px;
    margin: 0 0 20px 0;
    border-left: 4px solid var(--accent-color);
  }
  
  .widget-item {
    margin-bottom: 30px;
    background-color: color-mix(in srgb, #007676, transparent 98%);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    padding: 30px;
    border-radius: 5px;
  }
  
  .widget-item:last-child {
    margin-bottom: 0;
  }
  
  .blog-author-widget img {
    max-width: 120px;
    margin-right: 20px;
  }
  
  .blog-author-widget h4 {
    font-weight: 600;
    font-size: 24px;
    margin-bottom: 0px;
    padding: 0;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
  } */
  
  /* .blog-author-widget .social-links {
    margin: 5px 0;
  }
  
  .blog-author-widget .social-links a {
    color: color-mix(in srgb, var(--default-color), transparent 60%);
    margin-right: 5px;
    font-size: 18px;
  }
  
  .blog-author-widget .social-links a:hover {
    color: var(--accent-color);
  } */
  
  .blog-author-widget p {
    font-style: italic;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin: 10px 0 0 0;
  }
  
  .search-widget form {
    background: var(--background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 75%);
    padding: 3px 10px;
    position: relative;
    border-radius: 50px;
    transition: 0.3s;
  }
  
  .search-widget form input[type=text] {
    border: 0;
    padding: 4px 10px;
    border-radius: 4px;
    width: calc(100% - 40px);
    background-color: var(--background-color);
    color: var(--default-color);
  }
  
  .search-widget form input[type=text]:focus {
    outline: none;
  }
  
  .search-widget form button {
    background: none;
    color: var(--default-color);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    border: 0;
    font-size: 16px;
    padding: 0 16px;
    transition: 0.3s;
    line-height: 0;
  }
  
  .search-widget form button i {
    line-height: 0;
  }
  
  .search-widget form button:hover {
    color: var(--accent-color);
  }
  
  .search-widget form:is(:focus-within) {
    border-color: var(--accent-color);
  }
  
  .recent-posts-widget .post-item {
    display: flex;
    margin-bottom: 15px;
  }
  
  .recent-posts-widget .post-item:last-child {
    margin-bottom: 0;
  }
  
  .recent-posts-widget .post-item img {
    width: 80px;
    margin-right: 15px;
  }
  
  .recent-posts-widget .post-item h4 {
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 5px;
  }
  
  .recent-posts-widget .post-item h4 a {
    color: var(--default-color);
    transition: 0.3s;
  }
  
  .recent-posts-widget .post-item h4 a:hover {
    color: var(--accent-color);
  }
  
  .recent-posts-widget .post-item time {
    display: block;
    font-style: italic;
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
  }
  
  .tags-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .tags-widget ul li {
    display: inline-block;
  }
  
  .tags-widget ul a {
    background-color: color-mix(in srgb, var(--default-color), transparent 94%);
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    border-radius: 50px;
    font-size: 14px;
    padding: 5px 15px;
    margin: 0 6px 8px 0;
    display: inline-block;
    transition: 0.3s;
  }
  
  .tags-widget ul a:hover {
    background: var(--accent-color);
    color: var(--contrast-color);
  }
  
  .tags-widget ul a span {
    padding-left: 5px;
    color: color-mix(in srgb, var(--default-color), transparent 60%);
    font-size: 14px;
  }
  

  
  /* .blog-author-widget-2 .social-links {
    margin: 5px 0;
  }
  
  .blog-author-widget-2 .social-links a {
    color: color-mix(in srgb, var(--default-color), transparent 60%);
    margin: 0 3px;
    font-size: 18px;
  }
  
  .blog-author-widget-2 .social-links a:hover {
    color: var(--accent-color);
  } */
  
  .blog-author-widget-2 p {
    font-style: italic;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin: 10px 0 0 0;
  }

  .custom-footer-blog {
    position: relative; /* Ensure the footer is positioned relatively */
    /* margin-top: 3em; */
    padding-bottom: 20px;
    z-index: 1; /* Ensure the content stays above the pseudo-element */
}

.custom-footer-blog::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/background-image-new-2.jpg'); /* Path to your background image */
    background-size: cover; /* Ensure the image covers the entire footer */
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Prevent the image from repeating */
    opacity: 0.4; /* Set the opacity */
    z-index: -1;
}

@media (min-width: 340px) and (max-width: 766px) {
  .page-title{
    margin-top: 5.5em;
    color: #007676;
  }
  .page-title .breadcrumbs ol li+li a{
    color: #007676;
  }
  .slider .content {
    padding: 30px 40px;
  }
  .slider .content a,
  .slider .content p {
    color: white;
    font-size: 16px;
  }

  .slider .content h2 a{
    color: #ffffff;
    font-weight: bold;
    font-size: 15px;
  }
  .trending-category .post-entry.lg h2 {
    font-size: 25px;
    line-height: 1;
  }

  /* Image slider */
  /* Adjust the size of the slider */
  #slider .swiper-slide {
    background-size: cover;
    background-position: center;
    height: 300px; /* Adjust the height as needed */
}

/* Change the font size and layout of the text within the slide */
#slider .swiper-slide .content h2 {
    font-size: 18px; /* Make headings smaller for mobile devices */
}

#slider .swiper-slide .content p {
    font-size: 14px; /* Adjust the paragraph font size */
}

/* Adjust pagination bullets and navigation buttons */
.swiper-pagination {
    bottom: 10px; /* Move the pagination slightly upwards */
}

.swiper-button-next,
.swiper-button-prev {
    width: 25px;
    height: 25px;
}

/* Center the navigation buttons better for smaller screens */
.swiper-button-next {
    right: 10px;
}

.swiper-button-prev {
    left: 10px;
}

/* Ensure the container doesn't overflow on smaller screens */
#slider .container {
    padding: 0 10px;
}
/* Container */
.blog-details .container {
  padding: 0;
}
.blog-details .article {
  padding: 5px;
}
}

