:root {
    --primary-font: "Roboto", sans-serif;
    --secondary-font: "Inter", sans-serif;
    --theme-color: #2f90bc;
    --dark-color: #242424;
    --info-color: #ffffff;
    --text-color: #808080;
    --primary-font-size: 16px;
    --primary-transition-effect: all 0.35s linear;
}

html {
    scroll-behavior: smooth;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-size: var(--primary-font-size);
}

body {
    font-family: var(--secondary-font);
    font-weight: 500;
    background-color: #f0f1f2;
}

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

ul,
li {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

a,
a:hover,
a:focus {
    text-decoration: none;
    outline: inherit;
    color: inherit;
    transition: var(--primary-transition-effect);
}

img {
    max-width: 100%;
}

.link {
    color: var(--theme-color);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid;
    position: relative;
    margin-right: 20px;
}

.link .lnr {
    font-weight: 600;
    font-size: 15px;
    position: absolute;
    top: 4px;
    right: -19px;
}

.section-padding {
    padding: 70px 0;
}

.section-heading,
.section-heading span,
.section-heading u {
    font-size: 38px;
    font-weight: 500;
    line-height: 42px;
    margin-bottom: 15px;
    color: var(--theme-color);
    /* opacity: 0.9; */
}

.section-heading span {
    color: var(--theme-color);
}

.section-heading.white {
    color: var(--info-color);
}

.section-info {
    color: var(--dark-color);
    line-height: 25px;
    opacity: 0.8;
    font-size: 15px;
}

.section-info.white {
    color: var(--info-color);
}

.primary-color {
    color: var(--primary-color);
}

.container {
    max-width: 1320px;
    padding-left: 15px;
    padding-right: 15px;
    margin: 0 auto;
}

@media (max-width:1440px) {
    .container {
        max-width: 1350px;
    }
}

.primary-button {
    border: 1px solid var(--primary-color);
    background: var(--primary-color);
    padding: 16px 30px;
    display: flex;
    color: var(--dark-color);
    line-height: 1;
    cursor: pointer;
    /* font-weight: 600; */
    transition: all 0.35s ease-in-out;
    font-family: var(--primary-font);
    border-radius: 32px;
    /* text-transform: uppercase; */
    font-size: 17px;
    align-items: center;
    max-width: max-content;
}

.primary-button:hover,
.primary-button:focus {
    border-color: var(--info-color);
    background: var(--info-color);
    color: var(--dark-color);
    box-shadow: 0 0 40px rgb(21 39 84 / 33%);
}

.primary-button .lnr {
    margin-left: 6px;
    font-weight: 600;
}

.primary-button.white-btn {
    border: 1px solid var(--info-color);
    background: var(--info-color);
    color: var(--dark-color);
    /* font-weight: 600; */
}

.primary-button.white-btn .lnr {
    font-weight: 600;
}

.primary-button.white-btn:hover,
.primary-button.white-btn:focus {
    border-color: var(--info-color);
    background: var(--info-color);
    color: var(--dark-color);
    opacity: 0.8;
}

.primary-button.white-btn.shadow-btn {
    box-shadow: 0 0 40px rgb(21 39 84 / 13%);
}

.primary-button.red-btn {
    border: 1px solid var(--secondary-color);
    background: var(--secondary-color);
    color: var(--info-color);
    /* font-weight: 600; */
}

.primary-button.xl-button {
    padding: 15px 44px;
}

@media (max-width:480px) {
    .primary-button {
        font-size: 16px;
    }
}

/* header css start */
.site-header {
    background-color: var(--info-color);
}
.site-logo {
    display: block;
    width: 230px;
    padding: 45px 0;
}
.ad-img-block {
    display: inline-block;
}
.main-nav {
    border-top: 2px solid var(--theme-color);
}
.main-nav .nav-list {
    display: flex;
    flex-wrap: wrap;
}
.main-nav .nav-list .nav-link {
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: var(--primary-font);
    padding: 15px;
}
.main-nav .nav-list .active .nav-link,
.main-nav .nav-list .nav-link:hover,
.main-nav .nav-list .nav-link:focus {
    color: var(--theme-color);
}
.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
#news-search {
    position: relative;
    background: transparent;
    border: 0;
    padding: 0 10px;
}
#news-search i {
    color: #b6b6b6;
    transition: var(--primary-transition-effect);
}
#news-search:hover i {
    color: var(--theme-color);
}
.header-search {
    position: relative;
}
.nav-search {
  display: flex;
  position: absolute;
  right: 0;
  top: 100%;
  max-height: 0;
  z-index: 1;
  opacity: 0;
  overflow: hidden;
  transform: translateY(-10px);
  transition: all 0.4s ease;
}

.nav-search.active {
    max-height: 100px;
    opacity: 1;
    transform: translateY(15px);
    z-index: 1;
    background: var(--info-color);
    padding: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-top: 4px solid var(--theme-color);
}
.nav-search .search-input {
    border: 1px solid #ddd;
    height: 40px;
    padding: 10px;
    margin-right: 10px;
}
:focus-visible {
    outline: 0;
}
.nav-search .search-btn {
    background: var(--theme-color);
    padding: 6px 12px;
    border: 0;
    color: var(--info-color);
    text-transform: uppercase;
    font-weight: 500;
    font-family: var(--primary-font);
}
/* header css end */
/* notification bar css start */
.latest-news-notification-bar {
    background: var(--info-color);
    padding: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin: 20px 0;
    display: flex;
    justify-content: space-between;
}
.latest-news-notification-item {
    display: flex;
    /* flex-wrap: wrap; */
    align-items: center;
    margin-right: 30px;
    background: #f5f5f5;
    padding-right: 10px;
}
.latest-news-notification-img {
    width: 75px;
    height: 60px;
    margin-right: 15px;
    display: block;
    overflow: hidden;
}
.latest-news-notification-img img {
    object-fit: cover;
    object-position: center center;
    width: 100%;
    height: 100%;
}
.latest-news-notification-title {
    display: block;
    margin-bottom: 1px;
}
.latest-news-notification-title a {
    font-size: 16px;
    font-weight: 700;
    font-family: var(--primary-font);
    display: block;
    white-space: nowrap;
}
.latest-news-notification-title a:hover,
.latest-news-notification-title a:focus {
    color: var(--theme-color);
}
.latest-news-notification-date-time {
    font-family: var(--primary-font);
    font-size: 12px;
    color: #8a8a8c;
}
.latest-news-icon {
    font-size: 18px;
    text-transform: uppercase;
    font-family: var(--primary-font);
    background-color: var(--theme-color);
    color: var(--info-color);
    text-align: center;
    padding: 12px;
    margin-right: 0;
    line-height: 36px;
    min-height: 60px;
    flex: 0 0 12%;
    font-weight: 600;
    position: relative;
}
.latest-news-icon i {
    font-weight: 600;
    font-size: 17px;
    margin-right: 4px;
}
.latest-news-icon:before {
    content: "";
    z-index: 1;
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    border-bottom: 12px solid transparent;
    border-top: 12px solid transparent;
    border-left: 12px solid var(--theme-color);
}
.latest-news-toggle {
    min-height: 60px;
    padding: 0 10px;
    background-color: var(--theme-color);
    min-width: 45px;
    text-align: center;
    color: var(--info-color);
    line-height: 60px;
    cursor: pointer;
}
/* Marquee container */
.latest-news-marquee {
  overflow: hidden;
  flex: 1;
}

/* Moving track */
.latest-news-track {
  display: flex;
  /* gap: 40px; */
  animation: scrollNews 15s linear infinite;
  will-change: transform;
}
.latest-news-marquee:hover .latest-news-track {
  animation-play-state: paused;
}
/* Pause animation */
.latest-news-track.pause {
  animation-play-state: paused;
}

/* Animation */
@keyframes scrollNews {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-100%, 0, 0);
  }
}
/* notification bar css start */

.banner-news-listing {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}
.banner-news-listing .banner-news-card {
    width: calc(50% - 5px);
    position: relative;
    overflow: hidden;
}
.banner-news-listing .banner-news-card::before {
    content: "";
    position: absolute;
    pointer-events: none;
    /* top: 80px; */
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
    height: 110px;
}
.banner-news-card-img {
    height: 211px;
    margin-bottom: 0;
}
.banner-news-card-img a {
    display: block;
}
.banner-news-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}
.banner-news-card .post-title {
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 10px;
    margin-bottom: 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 25px;
}
.banner-news-card .post-title a {
    font-size: 18px;
    /* line-height: 1; */
    font-weight: 500;
    color: var(--info-color);
    /* display: block; */
    text-decoration: none;
    background-image: linear-gradient(currentColor, currentColor);
    background-size: 0% 1px;
    background-repeat: no-repeat;
    background-position: 0 90%;
    transition: background-size 0.3s ease;
    /* display: block; */
}

.banner-news-card .post-title a:hover,
.banner-news-card .post-title a:focus {
  background-size: 100% 1px;
}

.banner-news-slider .banner-news-card-img {
    overflow: hidden;
    height: 432px;
}
.banner-news-slider .banner-news-card .post-title {
    position: absolute;
    bottom: 20px;
    left: 25px;
    right: 25px;
    line-height: 42px;
}
.banner-news-slider .banner-news-card::before {
    content: "";
    position: absolute;
    pointer-events: none;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
    height: 140px;
}
.banner-news-slider .banner-news-card .post-title a {
    font-size: 34px;
}
.banner-news-card {
    position: relative;
}
.banner-news-slider {
    /* margin-bottom: 0; */
    position: relative;
}
.banner-news-slider .slick-dots {
    bottom: 50%;
    right: 0;
    width: auto;
    transform: translateY(50%);
}
.banner-news-slider .slick-dots li {
    display: block;
    margin: 5px 10px;
}
.banner-news-slider .slick-dots li button {
    background-color: var(--info-color);
    opacity: 0.8;
    width: 16px;
    height: 16px;
}
.banner-news-slider .slick-dots li.slick-active button {
    background-color: var(--theme-color);
}
.visually-hidden {
    display: none;
}

/* ad css start */
.ad-banner a {
    display: block;
}
.ad-banner img {
    width: 100%;
    height: auto;
}
/* ad css end */

/* new category css start */
.news-block-wrapper {
    background-color: var(--info-color);
    padding: 30px 20px;
}
.block-heading {
    border-bottom: 2px solid #f0f0f0;
    margin-bottom: 20px;
    padding-bottom: 6px;
    line-height: 30px;
}
.block-heading span {
    text-transform:capitalize;
    font-family:var(--primary-font);
    font-size:24px;
    font-weight:700;
    height:40px;
    line-height:32px;
    position: relative;
}
.block-heading span::before {
    content: '';
    width: 100%;
    height: 2px;
    background: linear-gradient(176deg, var(--theme-color), transparent);
    position: absolute;
    left: 0;
    bottom: -10px;
}
.news-card-v1-img {
    position: relative;
    margin-bottom: 10px;
}
.news-card-v1-img .news-meta {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    margin-bottom: 0;
    display: flex;
    justify-content: space-between;
}
.new-meta-badge {
    background: var(--theme-color);
    color: var(--info-color);
    font-size: 12px;
    padding: 5px 10px;
    display: block;
    line-height: 15px;
}
.news-card-v1-img a {
    display: block;
    height: 179px;
}
.news-card-v1-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.news-card-v1-content h2 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 23px;
    min-height: 56px;
}
.news-card-v1-content h2 a {
    font-size: 18px;
    /* line-height: 1; */
    font-weight: 600;
    color: var(--dark-color);
    /* display: block; */
    text-decoration: none;
    background-image: linear-gradient(currentColor, currentColor);
    background-size: 0% 1px;
    background-repeat: no-repeat;
    background-position: 0 90%;
    transition: var(--primary-transition-effect);
    /* display: block; */
}

.news-card-v1-content h2 a:hover,
.news-card-v1-content h2 a:focus {
  background-size: 100% 1px;
  color: var(--theme-color);
}
.news-card-v1-content p {
    color: #8a8a8c;
    font-size: 15px;
    margin-bottom: 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
/* new category css end*/
/* new category v2 css start*/
.news-card-v2 {
    display: flex;
    align-items: center;
}
.news-card-v2-img {
    width: 35%;
    height: 124px;
    margin-right: 25px;
    margin-bottom: 0;
    position: relative;
}
.news-card-v2-img a {
    display: block;
    height: 100%;
}
.news-card-v2-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.news-card-v2-content {
    width: 65%;
}
.news-card-v2-content h2 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 20px;
    margin-bottom: 14px;
}
.news-card-v2-content h2 a {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-color);
    text-decoration: none;
    background-image: linear-gradient(currentColor, currentColor);
    background-size: 0% 1px;
    background-repeat: no-repeat;
    background-position: 0 90%;
    transition: var(--primary-transition-effect);
}

.news-card-v2-content h2 a:hover,
.news-card-v2-content h2 a:focus {
  background-size: 100% 1px;
  color: var(--theme-color);
}
.news-card-v2-content p {
    color: #8a8a8c;
    font-size: 15px;
    margin-bottom: 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.trending-col {
    padding: 0 5px;
}
.trending-slider .slick-track {
    margin: 0 -5px;
}
.trending-slider.slick-dotted.slick-slider {
    margin-bottom: 0;
    position: relative;
}
.trending-slider .slick-dots {
    bottom: inherit;
    top: -60px;
    right: 0;
    width: auto;
}
.trending-slider .slick-dots li {
    margin: 0 2px;
}
.trending-slider .slick-dots li button {
    background-color: var(--text-color);
    opacity: 0.2;
    width: 16px;
    height: 16px;
}
.trending-slider .slick-dots li.slick-active button {
    background-color: var(--theme-color);
    opacity: 1;
}
/* new category v2 css end*/

/* news listing wrapper css start */
.news-listing-wrapper {
    background-color: var(--info-color);
    padding: 20px;
}
.news-listing-wrapper .news-card-v2-img {
    height: 213px;
}
.news-listing-wrapper .news-card-v2-content h2 a {
    font-size: 22px;
}
.news-listing-wrapper .news-card-v2-content h2 {
    line-height: 25px;
}
.news-card-v2-content .read-more {
    margin-top: 12px;
    display: inline-block;
    font-size: 15px;
}
.news-card-v2-content .read-more:hover {
    color: var(--theme-color);
}
.news-card-v2-content .read-more i {
    font-size: 14px;
    vertical-align: middle;
    transition: var(--primary-transition-effect);
}
.news-card-v2-content .read-more:hover i {
    transform: translateX(3px);
}
.news-listing-wrapper .news-card-v2 + .news-card-v2 {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}
.news-card-v2-post-cat {
    position: absolute;
    left: 10px;
    top: 10px;
    background: var(--theme-color);
}
.news-card-v2-post-cat a {
    color: var(--info-color);
    font-size: 14px;
    line-height: 1.2;
    padding: 5px 8px;
}

/* news listing wrapper css end */

/* pagination css start */
.pagination {
    display: flex;
    list-style: none;
    padding: 0px;
    margin-top: 30px;
}
.pagination li a {
    display: block;
    padding: 6px 12px;
    text-decoration: none;
    border: 1px solid var(--theme-color);
    color: var(--theme-color);
    margin: 0 4px;
    transition: var(--primary-transition-effect);
    line-height: 1.2;
}
.pagination li a.active {
    background-color: var(--theme-color);
    color: var(--info-color);
}
.pagination li a:hover:not(.active) {
    background-color: var(--theme-color);
    color: var(--info-color);
}
/* pagination css end */
/* news listing css start */
.news-listing-search {
    background: var(--info-color);
    padding: 20px;
}
.news-listing-search label {
    display: block;
    font-weight: 600;
    font-size: 18px;
}
.news-listing-search form {
    display: flex;
}
.news-listing-search .search-input {
    border: 1px solid #ddd;
    height: 40px;
    padding: 10px;
    margin-right: 10px;
    width: 100%;
}
.news-listing-search .search-btn {
    background: var(--theme-color);
    padding: 6px 12px;
    border: 0;
    color: var(--info-color);
    text-transform: uppercase;
    font-weight: 500;
    font-family: var(--primary-font);
}
/* news listing css end */
.ads-wrap-block {
    background-color: var(--info-color);
    padding: 20px;
}
.news-categories-list {
    background-color: var(--info-color);
    padding: 20px;
}
.news-categories-list ul li a {
    color: var(--dark-color);
    font-size: 15px;
    display: block;
    padding: 10px 0 10px 20px;
    line-height: 1.2;
    position: relative;
}
.news-categories-list ul li a:hover {
    color: var(--theme-color);
    transform: translateX(5px);
}
.news-categories-list ul li:first-child a {
    padding-top: 0;
}
.news-categories-list ul li:first-child a:before {
    top: 5px;
}
.news-categories-list ul li:last-child a {
    padding-bottom: 0;
}
.news-categories-list ul li a:before {
    content: "";
    position: absolute;
    left: 0;
    top: 15px;
    width: 8px;
    height: 8px;
    border-bottom: 1px solid var(--theme-color);
    border-right: 1px solid var(--theme-color);
    transform: rotate(-45deg);
}
.news-categories-list ul li + li a {
    border-top: 1px solid #ececec;
}

/* footer css start */
.site-footer {
    margin-top: 60px;
    padding-top: 70px;
    background-color: #161616;
    position: relative;
    /* border-top: 5px solid #2f90bc; */
}
.site-footer:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(47, 144, 188, 1) 100%);
    z-index: 0;
    opacity: 0.1;
}
.site-footer .container-fluid {
    padding-left: 30px;
    padding-right: 30px;
}
.footer-new-links ul {
    padding-top: 10px;
}
.footer-heading {
    color: var(--info-color);
    font-size: 17px;
    font-weight: 900;
    margin-bottom: 25px;
    padding-left: 15px;
    position: relative;
    text-transform: uppercase;
}
.footer-heading:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    top: 0;
    width: 2px;
    background: var(--theme-color);
}
.footer-links ul li a {
    display: inline-block;
    color: var(--info-color);
    font-weight: 500;
    /* font-size: 15px; */
    opacity: 0.9;
    padding-left: 20px;
    position: relative;
    font-family: var(--primary-font);
}
.footer-links ul li a:hover,
.footer-links ul li a:focus {
    color: var(--info-color);
}
.footer-links ul li a:before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    border-bottom: 2px solid var(--theme-color);
    border-right: 2px solid var(--theme-color);
    transform: rotate(-45deg);
}
.footer-links li + li,
.footer-address-links li + li {
    margin-top: 10px;
}
.footer-address-links ul li a {
    display: inline-block;
    color: var(--info-color);
    font-weight: 500;
    /* font-size: 16px; */
    opacity: 0.9;
    padding-left: 25px;
    position: relative;
}
.footer-address-links ul li a:hover,
.footer-address-links ul li a:focus {
    color: var(--info-color);
}
.footer-address-links ul li a i {
    position: absolute;
    left: 0;
    top: 5px;
    color: var(--theme-color);
    font-size: 15px;
}
.social-icons a i {
    width: 40px;
    height: 40px;
    border: 1px solid var(--theme-color);
    background-color: var(--theme-color);
    color: var(--info-color);
    text-align: center;
    line-height: 40px;
    font-size: 18px;
    transition: var(--primary-transition-effect);
}
.social-icons a i:hover,
.social-icons a i:focus {
    border-color: var(--info-color);
    background-color: var(--info-color);
    color: var(--theme-color);
}
.site-footer .ads-wrap-block {
    padding: 5px;
}
.copyright {
    background: #202020;
    margin-top: 50px;
    padding-top: 20px;
    padding-bottom: 20px;
    border-top: 1px solid;
}
.copyright p {
    margin-bottom: 0;
    color: var(--info-color);
    text-align: center;
    opacity: 0.9;
    font-weight: 400;
    font-size: 15px;
}
.footer-new-links li a {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 85px;
    padding-bottom: 5px;
    padding-top: 5px;
}
.footer-new-links li figure {
    height: 60px;
    width: 70px;
    margin-bottom: 0;
    position: absolute;
    left: 0;
}
.footer-new-links li figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.footer-new-links li h4 {
    color: var(--info-color);
    font-size: 16px;
    font-weight: 600;
    opacity: 0.9;
    line-height: 24px;
    margin-bottom: 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.footer-new-links {
    padding-right: 40px;
}
.footer-new-links li + li {
    margin-top: 20px;
}
/* breadcrumb css start */
.page-breadcrumb-wrapper {
    background-color: var(--info-color);
    padding: 15px 20px;
}
.breadcrumb {
    background-color: transparent;
    padding: 0;
    margin-bottom: 0;
}
ul.breadcrumb li {
  display: inline;
}
ul.breadcrumb li+li:before {
  padding: 8px;
  color: var(--dark-color);
  content: "/\00a0";
}
ul.breadcrumb li a {
  color: var(--dark-color);
  text-decoration: none;
}
ul.breadcrumb li a:hover {
  color: var(--theme-color);
}
/* breadcrumb css end */
/* news detail css start */
.news-detail-wrapper {
    padding: 20px;
    background-color: var(--info-color);
}
.news-detail-wrapper .post-categories {
    margin-bottom: 20px;
}
.post-cat-item {
    color: var(--info-color);
    font-size: 14px;
    line-height: 1.2;
    padding: 5px 10px;
    background: var(--theme-color);
}
.post-cat-item:hover,
.post-cat-item:focus {
    color: var(--info-color);
}
.post-cat-title {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 12px;
}
.post-cat-content {
    padding-top: 30px;
}
.post-cat-content p {
    color: #404040;
}
.post-cat-content h4 {
    font-size: 20px;
    margin-bottom: 10px;
}
.post-cat-content .social-icons a i:hover {
    border-color: var(--theme-color);
}
/* news detail css start */