

@charset "UTF-8";

/* Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Lato",  sans-serif;
  --nav-font: "Inter",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #171717; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #007a5e; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}





/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}



/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--background-color);
  transition: all 0.5s;
  z-index: 997;
  padding: 10px 0 0 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.header .top-row {
  padding-bottom: 0px;
}

.header .top-row .logo {
  text-decoration: none;
}

.header .top-row .logo img {
  max-height: 40px;
  margin-right: 10px;
}

.header .top-row .logo .sitename {
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  margin: 0;
}

.header .social-links a {
  color: #010101;
  padding: 0 8px;
  display: inline-block;
  font-size: 18px;
  transition: 0.3s;
}

.header .social-links a:hover {
  color: var(--accent-color);
}

@media (max-width: 1200px) {
  .header .social-links {
    padding-right: 40px;
  }
}

.header .search-form {
  position: relative;
  width: 250px;
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0;
}

.header .search-form .form-control {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 7px 40px 7px 15px;
  background: transparent;
  transition: 0.3s;
  color: var(--default-color);
  font-size: 14px;
}

.header .search-form .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.header .search-form .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: none;
}

.header .search-form button {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 15px;
  margin: 0;
  color: var(--heading-color);
  transition: 0.3s;
}

.header .search-form button:hover {
  color: var(--accent-color);
}

@media (max-width: 1200px) {
  .header .search-form {
    display: none;
  }
}

.header .nav-wrap {
  background-color:#007a5e;
  margin-top: 10px;
  display: flex;
  justify-content: center;
}

.header .mobile-nav-toggle {
  position: fixed;
  top: 20px;
  right: 5px;
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: #ffffff;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
color: #fff;
        padding: 11px 22px;
        font-size: 14px;
        font-family: Poppins, sans-serif;
        font-weight: 700;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
        line-height: 23px;
        text-transform: uppercase;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: #e8ebed;
  }

 
}

.navtags {
  background: linear-gradient(90deg,#6bd7b9  0%,#007a5e 77%);
}

.navtags .taglink {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  white-space: nowrap;
  padding: 2px 0;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;   /* Firefox */
}
.navtags .taglink::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}

.navtags .taglink a {
  font-size: 13px;
  display: inline-block;
  padding: 6px 12px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  transition: background 0.3s ease, color 0.3s ease;
  white-space: nowrap;
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

 

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: #fff;
  background: #010101;
  font-size: 15px;
  padding: 80px 0 0;
  position: relative;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}



.footer .footer-brand h1 .sitename,
.footer .footer-brand .logo .sitename {
  font-size: 26px;
  letter-spacing: 0.8px;
  color: #ddd;
}

.footer .footer-brand .tagline {
  color:#fff;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 300;
  margin: 12px 0 0;
}

.footer .social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background-color: transparent;
  color: #fff;
  transition: all 0.3s ease;
  text-decoration: none;
  border: 1px solid #fff;
}

.footer .social-links a:hover {
  background-color: #007a5e;
  color: #fff;
  transform: translateY(-3px);
  border-color: #fff;
}

.footer .social-links a i {
  font-size: 16px;
}

.footer .footer-links-grid h5 {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.footer .footer-links-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links-grid ul li {
  margin-bottom: 12px;
}

.footer .footer-links-grid ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 300;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 10px;
}

.footer .footer-links-grid ul li a::before {
  content: "→";
  position: absolute;
  left: 0;
  opacity: 0;
  transition: all 0.3s ease;
  color: #0acffe;
}

.footer .footer-links-grid ul li a:hover {
  color: #0acffe;
  padding-left: 16px;
}

.footer .footer-links-grid ul li a:hover::before {
  opacity: 1;
}

.footer .footer-cta h5 {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 18px;
  
}




.footer .footer-bottom {
  margin-top: 20px;
  padding: 15px 0;
  border-top: 1px solid color-mix(in srgb, #fff, transparent 50%);
}

.footer .footer-bottom .footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 768px) {
  .footer .footer-bottom .footer-bottom-content {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

.footer .footer-bottom .footer-bottom-content p {
  margin: 0;
  color: color-mix(in srgb, #fff transparent 40%);
  font-size: 14px;
  font-weight: 300;
}

.footer .footer-bottom .footer-bottom-content p .sitename {
  color:#fff;
  font-weight: 500;
}

.footer .footer-bottom .footer-bottom-content .credits {
  font-size: 13px;
  color: color-mix(in srgb, #fff transparent 50%);
}

.footer .footer-bottom .footer-bottom-content .credits a {
  color: #007a5e;
  text-decoration: none;
  font-weight: 400;
}

.footer .footer-bottom .footer-bottom-content .credits a:hover {
  text-decoration: underline;
}

@media (max-width: 991px) {
  .footer .footer-links-grid {
    margin-bottom: 30px;
  }

  .footer .footer-cta {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 60px 0 0;
  }

  .footer .row {
    text-align: center;
  }

  .footer .footer-brand,
  .footer .footer-links-grid,
  .footer .footer-cta {
    margin-bottom: 40px;
  }

  .footer .footer-links-grid .col-6 {
    margin-bottom: 30px;
  }

  .footer .footer-links-grid h5 {
    text-align: left;
  }

  .footer .footer-links-grid ul {
    text-align: left;
    display: inline-block;
  }
}



/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}





/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
  background-image: url("../img/bg/dotted-world-1.webp");
  background-position: left center;
  background-repeat: no-repeat;
  position: relative;
}

@media (max-width: 640px) {
  .contact {
    background-position: center 50px;
    background-size: contain;
  }
}

.contact:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

.contact .info-item+.info-item {
  margin-top: 40px;
}

.contact .info-item i {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-size: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .php-email-form {
  height: 100%;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 10%);
  border-color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}


.main{background:#fbfbfc;}

.title h2{font-size:25px; color:#007a5e; font-weight: 700; line-height: 32px; margin-bottom: 20px;}

/* home */

.trending-now {background: #f4f5f6; padding:30px 0px;}
.trending-now .title h1{font-size:18px; font-weight: 700;    margin-bottom: 15px;}

.trending-now .trending-post .heading a {color:#000; font-size:15px; font-weight: 500;}

.trending-now .trending-post .heading a:hover{color:#007a5e; transition:ease-in-out 0.3s;}
.trending-now .trending-post {display:flex; align-items: center;}
.trending-now .trending-post img{    width: 75px;
    height: 75px;
    border-radius: 50%;
    margin-right: 20px;}



    /* news card latest */
.latest-post .post-item {
  position: relative;
}

.latest-post .post-item .post-img img {
  border-radius: 10px;
}

.latest-post .post-item .post-img:after {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  width: 100%;
  height: 100%;
  background: linear-gradient(1deg, #0000007e, #0a0a0a77);
}


.latest-post .post-item .content {
  position: absolute;
  bottom: 10px;
  padding: 7px 22px;
}

.latest-post .post-item .content .title a:hover{color:#007a5e;}
.latest-post .post-item .content .title a {
  color: #fff;
}

.latest-post .post-item .content .title {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}




.latest-post .post-item {
  margin-bottom: 20px;
}



/* post */


.post-news .blog-box .blog-post .heading a{color:#060606; font-size: 24px; font-weight: 700; line-height: 32px; }

.post-news .blog-box .blog-post .heading {margin:12px 0px;}
.post-news .blog-box .blog-post p{font-size: 17px;
    font-weight: 400;
    line-height: 31px;
    color: #000;}

    .post-news .blog-box .post-meta ul{list-style: none; padding-left: 0px;}
    .post-news .blog-box .post-meta ul li{padding-right: 10px;}
    .post-news .blog-box .post-meta ul li:after{    content: "/";
    margin-left: 5px;}
    .post-news .blog-box .post-meta ul li a{color:#060606;}


    .sidebar .side-post-item h4 a{    font-size: 18px;
    font-weight: 700;
    color: #010101;}
  
  .sidebar .side-post{    border-bottom: 1px solid #ddd;   padding-top: 10px;  padding-bottom: 12px;}


  .sidebar {position: sticky; top:111px;}
  /* bbreadcrum */

    .breadcrumb-section {background: #010101; padding:30px 0px;}
    .breadcrumb-item+.breadcrumb-item::before {color: #fff !important;}
    .breadcrumb-item+.breadcrumb-item {color:#fff; font-weight: 700;}

    .breadcrumb-section .breadcrumb li a {color:#007a5e; font-weight: 700;  }

    /* category */


    /* Main Wrapper */
.category-post {
 
  border-radius: 12px;
  padding: 20px 0;
  margin-bottom: 30px;
}

/* Post Image */
.category-post .post-img {
  overflow: hidden;
  border-radius: 10px;
}

.category-post .post-img img {
  width: 100%;
  height: auto;
  transition: transform 0.4s ease;
  border-radius: 10px;
}

.category-post .post-img img:hover {
  transform: scale(1.05);
}

/* Post Content */
.category-post .post-content {
  padding: 10px;
}

.category-post .post-content h2 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 26px;
  color:#010101;
}

.category-post .post-content h2 a {
  text-decoration: none;
  color: #222;
  transition: color 0.3s;
}

.category-post .post-content h2 a:hover {
  color: #007a5e; /* Bootstrap primary color */
}

.category-post .post-content p {
  font-size: 15px;
  color: #010101;
  margin-bottom: 12px;
}

/* Meta Info */
.category-post .post-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  color: #777;
}

.category-post .post-content ul li {
  margin-right: 12px;
}

.category-post .post-content ul li a {
  text-decoration: none;
  color: #007a5e;
}

.category-post .post-content ul li a:hover {
  text-decoration: underline;
}

    .category-post .post-meta ul{list-style: none; padding-left: 0px;}
    .category-post .post-meta ul li{padding-right: 10px;}
    .category-post .post-meta ul li:after{    content: "/";
    margin-left: 5px;}
    .category-post .post-meta ul li a{color:#060606;}

    .category-post .categoyrlist {border-bottom: 1px solid #ddd; padding-bottom: 20px; padding-top:20px;}


    .sidebar {border:1px solid #007a5e; border-radius: 10px; padding:15px; background: #eeeeee;}

    .footer .footer-brand img {background: #fff; padding:5px; border-radius: 5px;}

    /* single post */

    .single-post .post-content h1{    font-size: 40px;
    font-weight: 700;
    color: #010101; 
  margin-top:20px;}

  .single-post .post-content p, .single-post .post-content ul li, .single-post .post-content ol li{font-size:18px; line-height: 29px; text-align: justify; color:#010101; }



   .single-post .post-content .post-meta ul{list-style: none; padding-left: 0px;}
    .single-post .post-content .post-meta ul li{padding-right: 10px;}
    .single-post  .post-content .post-meta ul li:after{    content: "/";
    margin-left: 5px;}
    .single-post .post-content .post-meta ul li a{color:#060606;}
  
      .single-post .post-content ul.aiexplore{ list-style: none; padding-left:0px; gap:10px; margin-top:15px;}
      .single-post .post-content ul.aiexplore li {border-radius: 25px;}
      .single-post .post-content ul.aiexplore li a{    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    
    color: #fff;
    border-radius: 25px;
    font-weight: bold;
    text-decoration: none;
    font-size: 14px;}

    .single-post .post-content ul.aiexplore li:nth-child(1){background-color: #10a37f;}
    .single-post .post-content ul.aiexplore li:nth-child(2){background-color: #6f42c1;}
    .single-post .post-content ul.aiexplore li:nth-child(3){background-color: #1c1c1e;}
    .single-post .post-content ul.aiexplore li:nth-child(4){background-color: #4285F4;}

    .single-post .post-content .tags {    display: flex;
    flex-wrap: wrap;
    gap: 10px;}
    .single-post .post-content .tags a:hover{background: #007a5e; color:#fff; box-shadow:0 2px 7px #00519d86;}
    .single-post .post-content .tags a {     font-size: 14px;
    font-weight: 500;
    padding: .3em .85em; color:#000000; background:transparent; border: 1px solid #ddd;}



    /* social media */


    .share-row{display:flex;flex-wrap:wrap;gap:0px}
    
    .share-row .btn{
      display:inline-flex;
      align-items:center;
      gap:10px;
      border-radius: 0px;
      padding:10px 12px;
      border:1px solid #b9b9b9;
      cursor:pointer;
      font-weight:600;
      font-size:14px;
  
      min-width:90px;
      justify-content:center;
 
    }

    .facebook{color:#1877f2}
    .twitter{color:#1da1f2}
    .linkedin{color:#0a66c2}
    .pinterest{color:#bd081c}
    .whatsapp{color:#25d366;}
    .copy{color:#6c6f76}
    .share-api{color:#000000}
    .small{min-width:120px;padding:8px 10px;font-size:13px}
    .meta{
      margin-top:14px;
      display:flex;
      gap:10px;
      flex-wrap:wrap;
      align-items:center;
    }


    /* author */

    .single-post .author {margin-top:50px;}
    .single-post .author .author-pic {text-align: center;     position: relative;}
    .single-post .author .author-pic::before{    position: absolute;
    content: "";
    top: 2rem;
    width: calc(50% - 50px);
    height: 1px;
    left: 0;
    background:  #e8ebf0;}
    .single-post .author .author-pic::after{  position: absolute;
    content: "";
    top: 2rem;
    width: calc(50% - 50px);
    height: 1px;
    right: 0;
    background:  #e8ebf0;}
    .single-post .author p{font-size:18px; font-weight: 500; text-align: justify; color:#010101;}
    .single-post .author .author-pic img{width: 70px; height: 70px; border-radius: 50px;}

    .related-post .post-item h2 a:hover{color:#007a5e;}
    .related-post .post-item h2 a{color:#010101;}
    .related-post .post-item h2 {  font-size: 18px;
  font-weight: 700;
  padding:10px 0px;
  margin-bottom: 8px;
  line-height: 26px;
  color:#010101;}
  
    .related-post .post-meta ul{list-style: none; padding-left: 0px;}
    .related-post .post-meta ul li{padding-right: 10px;}
    .related-post .post-meta ul li:after{    content: "/";
    margin-left: 5px;}
    .related-post .post-meta ul li a{color:#060606;}


    .single-post h3{font-size:18px; font-weight: 700; color: #000;}
    .single-post h2{font-size:20px; font-weight: 700; color: #000;}

    @media (max-width:991px) {
      .trending-now .trending-post{margin-bottom: 20px;}
      .post-news .blog-box .blog-post .heading a {font-size: 18px; line-height: 17px; font-weight: 700;}
      .post-news .blog-box .blog-post .heading h2{line-height: 17px; }
      .post-news .blog-box .blog-post p {
    font-size: 15px;
    font-weight: 400;
    line-height: 26px;
    color: #000;
}

.sidebar .side-post-item h4 a {
    font-size: 14px;
    font-weight: 700;
    color: #010101;
}
    .footer .footer-links-grid h5 {
        text-align: center!important;
    }
.category-post .post-content h2{font-size:18px;}
.category-post .post-meta ul li a{font-weight: 700;}
.post-news .blog-box .post-meta ul{    flex-wrap: wrap; }
.post-news .blog-box .post-meta ul li a {font-weight: 700;}
.single-post .post-content h1{font-size: 25px;}
.single-post .post-content .post-meta ul li {font-size:13px; font-weight: 500; color:#858585}
.single-post .post-content .post-meta ul li a{color:#858585;}
.related-post .post-item h2{font-size: 15px;}


    }

  

    .latest-post .owl-carousel .owl-nav {
    position: absolute;
    top: -34%;
    right: 0%;
    width: 100%;
    display: flex;
    justify-content: end;
}

.latest-post .owl-carousel .owl-nav button {
    background: #64d1b3 !important;
    color: #fff !important;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}
