@font-face {
  font-family: NewSansArabic;
  src: url(../fonts/alfont_com_NeoSansArabic.ttf);
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
}
body{
    font-family: NewSansArabic !important;
font-weight: 500;
font-style: normal;
font-size:14px;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
-o-user-select: none;
user-select: none;
}
a{
    text-decoration: none;
}
a:hover{
    text-decoration: none;
}
ul{
    list-style: none;
    margin: 0;
    padding: 0;
}
:root {
    --light-background-color: #fff;
    --color-heading:#23282D;
    --color-paragrphe:#161616;
    --btn-bg-color:#161616;
    --color-meta-author:#161616;
    --color-meta-date: #818181;
    --color-label:#161616;
    --border-bottom-color:#e9ecef; 
}
.dark:root{
    --dark-background-color: #161616;
    --color-heading:#fff;
    --color-paragrphe:#d2d2d2;
    --btn-bg-color:#39b07e;
    --color-meta-author:#fff;
    --color-meta-date: #818181;
    --color-label:#fff;
    --border-bottom-color:#49494b;
}
body{
    background-color:var(--light-background-color);
    counter-reset: my-post-number;
    transition: 0.3s;
    font-family: ropa-sans-arabic, sans-serif;
    font-style: normal;
    font-weight: 100;
}
body.dark{
    background-color: var(--dark-background-color);
}

/*Basic Layout*/

/*paddin Style*/
.pr-0{
    padding-right: 0;
}
.pl-0{
    padding-left: 0;
}
.mb-20{
    margin-bottom: 20px;
}
.mr-1rem{
    margin-left: 1rem;
}
/*width Style*/
.width-63{
    max-width: 63%;
}
.width-85{
    max-width: 85%;
}
/*Border Style*/


/*sidebar*/
.sidebar-section{
    position: fixed;
    height: 100%;
    top: 0;
    left: -320px;
    display: flex;
    width: 320px;
    flex-direction: column;
    background: #fff;
    z-index: 99999;
    transition: .4s;
    overflow: hidden;
    transform: translate3d(0,0,0);
}
.sidebar-section.active {
    transform: translate3d(320px,0,0);
}
.sidebar-section .sidebar-header{
    background-color: #161616;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    min-height: 60px;

}
.sidebar-section .sidebar-header .nav-sidebar{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.sidebar-section .sidebar-header .nav-sidebar .logo{width: 200px;}
.sidebar-section .sidebar-header .nav-sidebar .logo img{
    width: 100%;
    height: 100%;
}
.sidebar-section .sidebar-header .nav-sidebar #close-btn {
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    color: #fff;
    font-size: 1.25rem;
}
.sidebar-section .aside-sidebar{
    overflow-x: hidden;
    overflow-y: auto;
    flex: 1;
    padding: 20px;
}
.sidebar-section .aside-sidebar .menu-primary-container .menu li:not(:last-child){
    border-bottom: 1px solid #ced4da;
}
.sidebar-section .aside-sidebar .menu-primary-container .menu .menu-item-has-children{
    position: relative;
    width: 100%;
}
.sidebar-section .aside-sidebar .menu-primary-container .menu li a{
    font-size: 0.875rem;
    font-weight: 700;
    color: #161616;
    text-transform: capitalize;
    display: block;
    padding:0.5rem;
}
.sidebar-section .aside-sidebar .menu-primary-container .menu .menu-item-has-children a{
    padding-right: 20px;
    width: calc(100% - 20px);
    position: relative;
}
.sidebar-section .aside-sidebar .menu-item-has-children ul.sub-menu{
    position: relative;
    max-height: 0;
    transition: all 0.5s ease;
    visibility: hidden;
    opacity: 0;
}
.sidebar-section .aside-sidebar .menu-item-has-children ul.sub-menu h6{
    font-size: 0.9rem;
    padding-left: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid #ced4da;
}
.sidebar-section .aside-sidebar .menu-item-has-children ul.sub-menu ul.main-menu li,
.sidebar-section .aside-sidebar .menu-item-has-children ul.sub-menu ul.most-read-menu li{border-bottom: none;}
.sidebar-section .aside-sidebar .menu-item-has-children ul.sub-menu li a{font-weight: 400;}
.sidebar-section .aside-sidebar .menu-item-has-children ul.sub-menu ul.most-read-menu li a::before{
    content: "\f105";
    font-family: 'Font Awesome 5 Pro';
    position: absolute;
    left: -4px;
    top: 8px;
    font-size: 0.9rem;
}
.sidebar-section .aside-sidebar .menu-item-has-children.menu-item-expand ul.sub-menu{
    max-height:600px;
    visibility: visible;
    opacity: 1;
}
.sidebar-section .aside-sidebar .menu-primary-container .menu .menu-item-has-children span{
    position: absolute;
    right: 0;
    top: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    margin-left: auto;
    cursor: pointer;
}
.sidebar-section .aside-sidebar .menu-primary-container .menu .menu-item-has-children span::after{
    content: "\f107";
    font-family: 'Font Awesome 5 Pro';
    font-weight: 700;
}
.sidebar-section .aside-sidebar .menu-primary-container .menu .menu-item-has-children.menu-item-expand span::after{
    content: "\f106";
}
.sidebar-section .aside-sidebar .info-sidebar{
    margin-top: 1rem;
}
.overlay {
    display: none;
    position: fixed;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    z-index: 998;
    opacity: 0;
    transition: all 0.5s ease-in-out;
}
.overlay.active {
    display: block;
    opacity: 1;
}

.site-inner{
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
main{
    flex: 1 0 auto;
}
/*Header section*/
.header-section{
    background-color:#161616;
    border-bottom: 1px solid #494949;
}

.header-section .logo-section{
    position: relative; 
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 100%;

}
.header-section .logo-section .img-logo{
    width: 100%;
    margin: 0 auto;
}
.header-section .logo-section .img-logo img{
    width: 100%;
    height: 40px;
}
.header-section .logo-section .navbar-toggler-icon i{
    color: #fff;
    font-size: 22px;
    cursor: pointer;
}
.header-section .all-menu {
    border-left: 1px solid #494949;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.header-section .all-menu .top-header{
    border-bottom: 1px solid #494949;
    position: relative;
    width: 100%;
}
.header-section .all-menu .top-header::before{
    content: '';
    position:absolute;
    width: 0;
    height: 1px;
    left: 100%;
    bottom: -1px;
    background-color: #494949;
}
.header-section .all-menu .top-menu{
    display: flex;
    align-items: center !important;
    flex-wrap: wrap;
    visibility:visible;
    position: relative;
}
.header-section .all-menu .top-menu .header-info {
    display: flex;
    flex: 1 1 auto;
    padding:0 20px;
    direction: rtl;
}
.header-section .all-menu .top-menu .header-info span{
    color: #fff;
    padding: 15px 0;
    font-size: 14px;
    text-transform: capitalize;
    font-weight: 500;
}
.header-section .all-menu .top-list{
    margin-left: auto !important;
    display: flex;
    flex: 1;
    justify-content: center;
    align-items: center;
}
li.nav-item.menu-item-has-children {
    margin-right: 10px;
}
.header-section .all-menu .top-list .header-toggle{
    position: relative;
    display: flex;
    align-items: center;
}
.header-section .all-menu .top-list .header-toggle i,
.header-section .all-menu .top-list .header-cart ,
.header-section .all-menu .top-list .search-icon{
    width: 1rem;
    color: #fff;
    display: inline-block;
}
.header-section .all-menu .top-list .search-icon .bx{
    color:#fff;
}
.header-section .all-menu .top-list .header-toggle label{
    margin: 0;
}
.index-item span{
    color: white; 
    font-weight: normal !important; 
    font-size: 14px !important;
}
.header-section .all-menu .top-list .header-toggle label.switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 17px;
    line-height: 17px;
    margin: 0 0.25rem;
}
.header-section .all-menu .top-list .header-toggle .switch input{
    opacity: 0;
    width: 0;
    height: 0;
}
.header-section .all-menu .top-list .slider{
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #a4a4a5;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}
.header-section .all-menu .top-list .slider:before {
    position: absolute;
    content: "";
    height: 12px;
    width: 12px;
    left: 0;
    bottom: 0;
    top: 0;
    margin: auto;
    margin-left: 0.125rem;
    background-color: #fff;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
.header-section .all-menu .top-list input:checked + .slider {background-color: #494949;}
.header-section .all-menu .top-list input:checked + .slider:before {
    -webkit-transform: translateX(24px);
    -ms-transform: translateX(24px);
    transform: translateX(24px);
}
.header-section .all-menu .top-list .slider.round {border-radius: 0.5rem;}
.header-section .all-menu .top-list .slider.round:before {border-radius: 50%;}
.header-section .all-menu .top-list a.header-cart{margin-left: 10px;}
.header-section .all-menu .top-list span.search-icon{margin-left: 10px; cursor:pointer;padding-top: 4px;}
.header-section .search-section{
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #161616;
    width: 100%;
    z-index: 10;
    border-bottom: 1px solid #494949;
    padding-top: 1rem;
    padding-bottom: 1.5rem;
}
.header-section .search-section .search-group{
    position: relative;
    padding: 0 40px;
}
.header-section .search-section .search-group button{
    position: absolute;
    display: flex;
    top: 0;
    padding: 0;
    background-color: transparent;
    border: none;
    text-align: center;
    color: #fff;
}
.header-section .search-section .search-group .search-button{
    left: 0;
    justify-content: flex-start;
    width:40px;
}
.header-section .search-section .search-group .close-button{
    right: 0;
    justify-self:flex-end;
}
.header-section .search-section .search-group .search-input{
    width: 100%;
    border: none !important;
    outline: none !important;
    background: none;
    color: #fff;
}
.header-section .all-menu .navbar{padding:0.5rem 0 0.5rem 0;}
.header-section .all-menu .navbar nav{
    display: flex;
    flex: 1 1 auto;
}
.header-section .all-menu .bottom-menu .menu-list{
    display: flex;
    flex-direction: row;
}
.header-section .all-menu .bottom-menu .menu-list li a.nav-link,
.header-section .all-menu .bottom-menu ul.more-links li a{
    font-weight: 600;
    color: #fff;
    text-transform: capitalize;
    position: relative;
}

.header-section .all-menu .bottom-menu .menu-list li a.nav-link span,
.header-section .all-menu .bottom-menu  ul.more-links li a.nav-link span{
    position: relative;
}
.header-section .all-menu .bottom-menu .menu-list li a.nav-link span::before,
.header-section .all-menu .bottom-menu  ul.more-links li a.nav-link span::before{
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    bottom: -4px;
    background-color: #858585;
    transition: 0.5s;
    opacity: 0;
}
.header-section .all-menu .bottom-menu .menu-list li a.nav-link:hover,
.header-section .all-menu .bottom-menu  ul.more-links li a.nav-link:hover{color: #39b07e;}

.header-section .all-menu .bottom-menu  ul.more-links li a.academy_link:hover{color: rgba(0, 0, 0, 0.72);}

.header-section .all-menu .bottom-menu .menu-list li a.nav-link:hover span::before,
.header-section .all-menu .bottom-menu  ul.more-links li a.nav-link:hover span::before{opacity: 1;}

.header-section .all-menu .bottom-menu nav ul.menu-list ul.children li{padding:0.7rem;}

.header-section .all-menu .bottom-menu nav ul.menu-list ul.children li:not(:last-child){
    border-bottom: 1px solid #a4a4a5;
}
.header-section .all-menu .bottom-menu .menu-list li ul.children li a,
.header-section .all-menu .bottom-menu ul.more-links li.menu-item-has-children ul li a{
    color: #161616;
    font-weight: 400;
}
.header-section .all-menu .bottom-menu nav > ul li.menu-item-has-children > a:before,
.header-section .all-menu .bottom-menu ul.more-links li.menu-item-has-children a.nav-link::before{
    content: "\f107";
    font-family: 'Font Awesome 5 Pro';
    font-weight: 500;
    position: absolute;
    right: -2px;
    top: 9px;
    font-size: 17px;
}
.header-section .all-menu .bottom-menu nav ul li.menu-item-has-children div.children-menu,
.header-section .all-menu .bottom-menu ul.more-links li.menu-item-has-children div.children-menu{
    position: absolute;
    top: calc(100%);
    padding:1rem 0.5rem;
    background-color: #fff;
    -webkit-box-shadow: 0 9px 1.25rem 0 rgba(143, 132, 215, .40);
    box-shadow: 0 9px 1.25rem 0 rgba(143, 132, 215, .40);
    min-width: 13.75rem;
    opacity: 0;
    visibility: hidden;
    z-index: 12;
    transition: all 1s ease-out;
    transform: translateY(0);
}
/*.header-section .all-menu .bottom-menu nav ul li.menu-item-has-children div.children-menu,
.header-section .all-menu .bottom-menu ul.more-links li.menu-item-has-children div.children-menu{
    min-width:400px;
}*/
.header-section .all-menu .bottom-menu nav ul li.menu-item-has-children:hover div.children-menu,
.header-section .all-menu .bottom-menu ul.more-links li.menu-item-has-children:hover div.children-menu{
    opacity: 1;
    visibility: visible;
    transform: translateY(10px);
}
.header-section .all-menu .bottom-menu nav ul li.menu-item-has-children div.children-menu .content-list h6{
    font-size: 20px;
    font-weight: 800;
    text-transform: capitalize;
}
.header-section .all-menu .bottom-menu nav ul li.menu-item-has-children div.children-menu .content-list .children-list{
    display: flex;
    justify-content: space-between;
}

.header-section .all-menu .bottom-menu nav ul li.menu-item-has-children div.children-menu .content-list .children-list .left-list {
    flex: 0 0 120px;
}
.header-section .all-menu .bottom-menu nav ul li.menu-item-has-children div.children-menu .content-list .children-list .right-list {
    flex: 0 0 calc(100% - 120px);
}

.header-section .all-menu .bottom-menu nav ul li.menu-item-has-children div.children-menu .content-list .children-list .left-list li a,
.header-section .all-menu .bottom-menu nav ul li.menu-item-has-children div.children-menu .content-list .children-list .right-list li a{
    color: #161616;
    font-size: 16px;
}
.header-section .all-menu .bottom-menu nav ul li.menu-item-has-children div.children-menu .most-read ul li a{
    color: #161616;
    font-size: 16px;
    position: relative;
}
.header-section .all-menu .bottom-menu nav ul li.menu-item-has-children div.children-menu .most-read  ul li a::before{
    content: "\f104";
    font-family: 'Font Awesome 5 Pro';
    font-weight: 700;
    position: absolute;
    left: -15px;
    top: -1px;
    font-size: 0.9rem;
}
.header-section .all-menu .bottom-menu nav ul li.menu-item-has-children div.children-menu .most-read{
    padding:0 10px;
    padding-left: 32px;
}
.header-section .all-menu .bottom-menu nav ul li.menu-item-has-children div.children-menu .most-read h6{
    font-size: 16px;
    font-weight: 800;
    text-transform: capitalize;
}
.header-section .all-menu .bottom-menu ul.more-links{
    display: flex; 
    justify-content: flex-end;
    margin-left: auto !important;
} 

/*mobile header*/
.header-section .header-inner-mobile{
    display: flex;
    justify-content: space-around;
    align-items: stretch;
    position: relative;
    transition: 0.25s;
    line-height: 60px;
    padding: 10px 0;
}
.header-section .header-inner-mobile .left-section{
    display: flex;
    flex: 1;
    align-items: center;
}
.header-section .header-inner-mobile .left-section .navbar-toggler-icon{
    height: auto;
    color: #fff;
}
.header-section .header-inner-mobile .left-section .navbar-toggler-icon i{
    color: #fff;
    font-size: 22px;
    cursor: pointer;
}
.header-section .header-inner-mobile .center-section{
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: center;
}
.header-section .header-inner-mobile .center-section .desktop-img-logo{
    display: block;
    width: 250px;
}
.header-section .header-inner-mobile .center-section .desktop-img-logo img{
    width: 100%;
    height: 100%;
}
.header-section .header-inner-mobile .center-section .mobile-img-logo{
    display: none;
    width: 60px;
    max-height: 40px !important;
}
.header-section .header-inner-mobile .center-section .mobile-img-logo img{
    width: 100%;
    height: 100%;
    display: inline-block;
    padding-bottom: 20px;
} 
.header-section .header-inner-mobile .right-section{
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: flex-end;
}
.header-section .header-inner-mobile .right-section .header-toggle-mobile {
    display:flex;
    align-items: center;
    cursor: pointer;
    width: 2rem;
    height: 2rem;
    position: relative;
}
.header-section .header-inner-mobile .right-section .header-toggle-mobile .toggle-icon{
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    text-align: center;
    height: 2rem;
    line-height: 2rem;
    font-size: 1rem;
    color: #fff;
}
.header-section .header-inner-mobile .right-section .header-toggle-mobile .toggle-icon.sun{
    opacity: 0;
    pointer-events: none;
}
.header-section .header-inner-mobile .right-section .header-toggle-mobile .toggle-icon.moon{
    opacity: 1;
    pointer-events: auto;
}
.header-section .header-inner-mobile .right-section .header-toggle-mobile.active .toggle-icon.moon{
    opacity: 0;
    pointer-events: none;
}
.header-section .header-inner-mobile .right-section .header-toggle-mobile.active .toggle-icon.sun{
    opacity: 1;
    pointer-events: auto;
}
.header-section .header-inner-mobile .right-section .search-icon{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
    color: #fff;
} 

.header-section .all-menu .bottom-menu .nav-link + span.more,
.mobile-overlay {
    display: none;
}

@media (max-width: 1023px) {
    .header-inner-desktop .logo-section,
    .header-inner-desktop .all-menu .top-header,
    .header-inner-desktop .border-right,
    .header-section .all-menu .bottom-menu nav > ul li.menu-item-has-children > a:before, 
    .header-section .all-menu .bottom-menu ul.more-links li.menu-item-has-children a.nav-link::before {
        display: none;
    }
    
    .mobile-overlay {
        background: rgba(0, 0, 0, 0.5);
        z-index: 99999;
        position: fixed;
        top: 0;
        right: 0;
        left: 0;
        bottom: 0;
    }
    
    .header-inner-desktop .bottom-menu {
        position: fixed;
        top: 0;
        left: -250px;
        bottom: 0;
        z-index: 999999;
        background: #000;
        overflow-y: auto;
        height: 100vh;
        display: block;
        width: 250px;
        transition: all .5s ease-in-out;
    }
    
    .header-inner-desktop .bottom-menu.open {
        left: 0;
    }
    
    .header-section .all-menu .navbar nav,
    .header-section .all-menu .bottom-menu .menu-list,
    .header-section .all-menu .bottom-menu ul.more-links,
    .header-section .all-menu .bottom-menu nav ul li.menu-item-has-children div.children-menu .content-list .children-list,
    header .languages {
        display: block;
    }
    .header-section .all-menu .bottom-menu ul.more-links {
        padding: 0px;
    }
    .header-section .all-menu .bottom-menu nav ul li.menu-item-has-children div.children-menu,
    .header-section .all-menu .bottom-menu ul.more-links li.menu-item-has-children div.children-menu{
        position: static;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        color: #fff;
        background: #222;
        transform: none !important;
        display: none;
        padding: 0 20px;
        transition: none !important;
    }
    li.nav-item.menu-item-has-children {
        margin: 0;
        position: relative;
    }
    .header-section .all-menu .bottom-menu nav ul li.menu-item-has-children div.children-menu li a,
    .header-section .all-menu .bottom-menu ul.more-links li.menu-item-has-children ul li a {
        color: #fff !important;
        display: block;
        padding-top: 8px;
        padding-bottom: 8px;
    }
    .header-inner-desktop .children-menu .col-md-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .header-section .all-menu .bottom-menu .nav-link + span.more {
        display: inline-block;
        color: #fff;
        position: absolute;
        top: 3px;
        right: 10px;
        background: #222;
        padding: 2px 5px;
        z-index: 99;
    }
    
}


/*Main Section*/
.main-section{
    padding-bottom: 20px;
    padding-top: 20px;

}
.main-section .main-content{
    position: relative;
    padding-top: 135px;
}
.main-section .main-content::before{
    content: '';
    position: absolute;
    top: 0;
    width: 100%;
    left: 0;
    right: 0;
    height: 85%;
    background:#161616;
}
.main-section .main-content .main-imge{
    width: 100%;
    height: 375px;
}
.main-section .main-content .main-imge img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.main-section .main-content .main-info{
    position: absolute;
    top: 20%;
    padding: 0px 0 20px 0px;
}
.main-section .main-content .main-info h2{
    font-size: 32px;
    margin-left: -2.65em;
    max-height: 136px;
    overflow: hidden;
}
.main-section .main-content .main-info h2 a{
    background-color: #39b07e;
    color: #161616;
    line-height: 76px;
    font-weight: 700;
    padding: 10px;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
}
.main-section .main-content .main-info .category{
    color:#fff;
}
.main-section .main-content .main-info .category a {
    color: #fff;
    text-transform: uppercase;
    font-size: 0.6255rem;
    font-weight: 700;
    background-color: #0000004d;
    padding: 5px 8px;
    letter-spacing: 1.2px;
}
.main-section .main-content .main-info .post-meta {
    margin-top: 1rem;
    display: flex;
    text-transform: uppercase;
}
.main-section .main-content .main-info .post-meta .author-meta{
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}
.main-section .main-content .main-info .post-meta .author-meta a{color: #fff;}
.main-section .main-content .main-info .post-meta .author-meta a .cs-by{margin-right: 5px;}
.main-section .main-content .main-info .post-meta .author-meta a .cs-author{font-weight: 600;}
.main-section .main-content .main-info .post-meta .date-meta{color: #818181;}

.main-section .wedgit-content{
    padding-top: 25px;
    padding-bottom: 20px;
}
.main-section .wedgit-content .all-tcontent{
    cursor: pointer;
    display:flex;
} 
.main-section .wedgit-content .all-tcontent .thumb-content{
    display: flex;
    align-items: center;
    position: relative;
    width: 300px;
    height: 100%;
    margin-bottom: 10px;
}
.main-section .wedgit-content .all-tcontent .thumb-content .background-overlay{
    flex: none;
    position: relative;
    opacity: 0;
    height: 160px;
    width: 100%;
    -webkit-transition: 0.6s;
    transition: 0.6s;
}
.main-section .wedgit-content .all-tcontent .thumb-content .background-overlay img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.main-section .wedgit-content .all-tcontent .thumb-content .background-overlay::before{
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 9;
    background-color: #0b0b075e;
    opacity: 1;

}
.main-section .wedgit-content .all-tcontent .thumb-content:hover .background-overlay{opacity: 1;}
.main-section .wedgit-content .all-tcontent .thumb-content .entry-content{
    position: absolute;
    display:flex;
    flex-direction: column;
    padding-left: 10px;

}
.main-section .wedgit-content .all-tcontent .thumb-content .entry-content h2{
    font-size: 20px;
    z-index: 999;
    position: relative;
    font-weight: 600;
    display: flex;
    color: var(--color-heading);
    height:70px;
    margin-bottom: 1rem;
}
.main-section .wedgit-content .all-tcontent .thumb-content:hover .entry-content h2{
    color: #fff;
}
.main-section .wedgit-content .all-tcontent .thumb-content .entry-content h2 span{
    padding: 0 12px;
}
.main-section .wedgit-content .all-tcontent .thumb-content .entry-content h2::before{
    text-align: center;
    counter-increment:my-post-number;
    content: counter(my-post-number);
    color: #ced4da;
    border-right: 1px solid #ced4da;
    padding-right: 5px;
    padding-left: 5px;
    height: 40px;
    line-height: 40px;
    font-size: 2rem;
    position: relative;
}
.main-section .wedgit-content .all-tcontent .thumb-content:hover .entry-content h2::before{
    color: #fff;
    border-left-color:#fff ;
}
.main-section .wedgit-content .all-tcontent .thumb-content .entry-meta{
    display: flex;
    justify-content:flex-start;
    color: #818181;
    font-size: 0.75rem;
    z-index: 999;
    margin-left: 2.5rem;
    margin-top: 0.5rem;

}
.main-section .wedgit-content .all-tcontent .thumb-content:hover .entry-date{color: #fff;}
.main-section .wedgit-content .all-tcontent .thumb-content .entry-meta .category-icon,
.main-section .wedgit-content .all-tcontent .thumb-content .entry-meta .meta-analyis {
    margin-right: 2rem;
    text-transform: capitalize;
}

/*News Section*/
.news-section{
    padding-top: 50px;
    padding-bottom: 50px;
}
/*.title h3{
    padding-bottom: 10px;
    font-size: 24px;
    font-weight: 700;
    color: var(--color-heading);
}*/

.news-section .news-content .mean-news{
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 20px;
}
.news-section .news-content .mean-news .mean-img {
    height:405px;
    position: relative;
}
.news-section .news-content .mean-news .mean-img::before{
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 9;
    background-color:#00000029;
    opacity: 1;
    -webkit-transition: 0.25s;
    transition: 0.25s;
}
.news-section .news-content .mean-news .mean-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-section .news-content .mean-news .mean-info{
    left: 20px;
    bottom: 20px;
    z-index: 999;
}
.news-section .news-content .mean-news .mean-info .category a{
    background-color: #0000004d;
    color: #fff;
    font-weight: 700;
    padding: 10px;
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 1.2px;
    line-height: 32px;

}
.news-section .news-content .mean-news .mean-info h2 {
    margin-top: 0.5rem;
    margin-bottom: 0;
    padding: 0.35em 0;
    font-size: 2.2rem;
}
.news-section .news-content .mean-news .mean-info h2 a{
    color: #161616;
    font-weight: 700;
    background-color: #39b07e;
    line-height: 65px;
    padding: 10px;
}
.news-section .news-content .mean-news .mean-info .post-meta{
    margin-top: 0.5rem;
    display: flex;
    font-size: 0.6522rem;
}
.news-section .news-content .mean-news .mean-info .post-meta .author-meta,
.news-section .news-content .mean-news .mean-info .post-meta .date-meta{
    position: relative;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
}
.news-section .news-content .mean-news .mean-info .post-meta .author-meta a {
    color: #fff;
}
.news-section .news-content .mean-news .mean-info .post-meta .author-meta a .cs-by{
    margin-right: 0.2rem;
}
.news-section .news-content .mean-news .mean-info .post-meta .author-meta a .cs-author{font-weight: 700;}

.news-section .news-content .mean-news .mean-info .post-meta .date-meta::before{
    content: '.';
    font-weight: 600;
    margin-right: 0.5em;
}

.news-section .news-content .stock-section .info .title h3 span{
    color: var(--color-heading);
    font-size: 1.2rem;
}
.news-section .news-content .stock-section .info .date span{
    color: #818181;
    font-size: 0.875rem;
}
.news-section .news-content .stock-section .all-content .post:not(:last-child){
    border-bottom: 1px solid var(--border-bottom-color);
}

.news-section .news-content .stock-section .all-content .post h4{
    font-size: 22px;
    margin-top: 1rem;
}
.news-section .news-content .stock-section .all-content .post:first-child{
    margin-top:-8px;
}
.news-section .news-content .stock-section .all-content .post h4 a{
    color: var(--color-heading);
}
.news-section .news-content .stock-section .all-content .post .post-meta{
    font-size: 14px;
    margin-bottom: 9px;
}
.news-section .news-content .stock-section .all-content .post .post-meta .meta-date span{
    text-transform: uppercase;
    position: relative;
    color: #818181;
    font-size:14px;
}
/*Section*/
.world-section{
    padding-top: 50px;
    padding-bottom: 50px;
}

.world-section .etry-outer{
    padding-bottom: 40px;
}
.world-section .etry-outer .entry-img{
    height: 210px;
    position: relative;
}

.world-section .etry-outer .entry-img .over-img{
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background-color: #0b0b075e;
    opacity: 0;
    transition: 0.5s;
}
.world-section .etry-outer .entry-img .over-img span{color: #fff; font-weight: 500;}
.world-section .etry-outer .entry-img:hover .over-img{opacity: 1;}
.world-section .etry-outer .entry-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.world-section .etry-outer .entry-content{
    margin-top: 1.8rem;
}
.world-section .etry-outer .entry-content .category a{
    background-color: #39b07e;
    color: #fff;
    text-transform: uppercase;
    padding: 8px;
    letter-spacing: 2px;
    font-weight: 500;
    font-size: 14px;
}
.world-section .etry-outer .entry-content .entry-title h3{
    font-size: 1.25rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--color-paragrphe);
    height:50px;
}
.world-section .etry-outer .entry-content .entry-title h3 a{
    color: var(--color-heading);
    line-height: 1.25;
}

.world-section .etry-outer .entry-content .entry-desc p{
    color: var(--color-paragrphe);
    font-size: 18px;
    margin-bottom: 0;
}
.entry-date{
    font-size: 16px;
    text-transform: uppercase;
    color: #818181;
    margin-top:10px;
    letter-spacing: 1px;
    z-index: 999;
}
.main-info .entry-date{
    color:#fff;
}
.thumb-content .entry-date{
    color: #818181;
    padding-left: 20px;
}
.world-section .read-more{
    margin-top: 3rem;
}
.world-section .read-more span{
    background-color:var(--btn-bg-color);
    color: #fff;
    padding: 1rem 2rem;
    display:flex;
    justify-content: center;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}

/*Podcast Section*/
.podcast-section{
    padding-top: 50px;
    padding-bottom: 50px;
}
.title h3{
    color: var(--color-heading);
    border-bottom: 3px solid var(--border-bottom-color);
    margin-bottom: 30px;
    padding-bottom: 10px;
    font-weight: 700;
    text-transform: capitalize;
}
.podcast-section .podcat-content{
    display: flex;
    margin-bottom: 30px;
}
.podcast-section .podcat-content .podcast-img{
    flex: none;
    align-self: flex-start;
    width: 80px;
    height: 80px;
    margin-right: 1rem;
}
.podcast-section .podcat-content .podcast-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.podcast-section .podcat-content .podcast-info .podcast-title{
    font-size: 1rem;
}
.podcast-section .podcat-content .podcast-info .podcast-title a span{
    color: var(--color-heading);
    text-transform: capitalize;
    height: 34px;
    display: inline-block;
    font-size:18px;
}
.podcast-section .podcat-content .podcast-info .podcast-meta{
    margin-top: 1rem;
    font-size: 0.6255rem;
    text-transform: uppercase;
    color: #818181;
}
.podcast-section .banner-advertis {
    height: 240px;
}
.podcast-section .banner-advertis img{
    width: 100%;
    height: 100%;
}

/*Latest section*/
.latest-section{
    padding-top: 50px;
    padding-bottom: 50px;
}

.latest-section .entry-content{
    margin-top: 1rem;
}
.latest-section .entry-content .entry-thumbnail{
    display: flex;
    
}
.latest-section .entry-content .entry-thumbnail:not(:first-child){
    border-top: 1px solid var(--border-bottom-color);
    margin-top: 20px;
    padding-top: 20px;
}
.latest-section .entry-content .entry-thumbnail .entry-img{
    flex: none;
    align-self:flex-start;
    margin-right: 1.5rem;
    margin-bottom: 1rem;
    width: 280px;
    height: 160px; 
}
.latest-section .entry-content .entry-thumbnail .entry-img img{
    width: 100%;
    height: 100%;
}
.latest-section .entry-content .entry-thumbnail .entry-info .category a{
    font-size: 0.7rem;
    background-color: #39b07e;
    color: #fff;
    padding: 5px 8px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}
.latest-section .entry-content .entry-thumbnail .entry-info .entry-title{
    margin-top: 1rem;
    margin-bottom: 1rem;
    line-height: 0.9;
}
.latest-section .entry-content .entry-thumbnail .entry-info .entry-title a span{
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--color-heading);
    text-transform: capitalize;
}
.latest-section .entry-content .entry-thumbnail .entry-info .entry-meta{
    margin-top: 2rem;
    display: flex;
    text-transform: uppercase;
}
.latest-section .entry-content .entry-thumbnail .entry-info .entry-meta .author-meta a{
    margin-right: 0.5rem;
    color:var(--color-meta-author);
}
.latest-section .entry-content .entry-thumbnail .entry-info .entry-meta .cs-by{margin-right: 0.2rem;}
.latest-section .entry-content .entry-thumbnail .entry-info .entry-meta .author-meta .cs-author{
    font-weight: 700;
}
.latest-section .entry-content .entry-thumbnail .entry-info .entry-meta .date-meta{
    color: var(--color-meta-date);
}
.latest-section .entry-content .entry-thumbnail .entry-info .entry-meta .date-meta::before{
    content: '.';
    font-weight: 600;
    margin-right: 0.5rem;
}
.latest-section .entry-content .read-more{
    margin-top: 3rem;
}
.latest-section .entry-content .read-more span{
    background-color: var(--btn-bg-color);
    color: #fff;
    padding: 1rem 2rem;
    display:flex;
    justify-content: center;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}
.latest-section .banner-advertis{
    margin-top: 20px;
    padding-top: 20px;
    margin-bottom: 20px;
    height: 1000px;
}
.latest-section .banner-advertis img{
    width: 100%;
    height: 100%;
}
/*Footer Section*/
.footer-section {
    background-color: #161616;
    padding-top: 80px;
    padding-bottom: 20px;
    border-top: 1px solid #494949;
}
.footer-section .about-us-footer h3,
.footer-section .group-links-footer h3, 
.footer-section .contact-us-footer h3{
    color: #a5efcb;
    text-transform: capitalize;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.footer-section .about-us-footer .text-footer{
    color: #fff;
    text-transform: capitalize;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 1rem 2.5rem 1rem 0;
}
.footer-section .group-links-footer{margin-bottom: 2rem;}
.footer-section .group-links-footer .more-links {
    display: flex;
    padding-top: 0.5rem;
}
.footer-section .group-links-footer .other-links{margin-left: 50px;}
.footer-section .group-links-footer .links-lists li a,
.footer-section .group-links-footer .other-links li a{
    color: #fff;
    text-transform: capitalize;
    font-weight: 500;
    position: relative;
    transition: 0.35s;
}
.footer-section .group-links-footer .links-lists li,
.footer-section .group-links-footer .other-links li{padding:4px 0;}
.footer-section .group-links-footer .links-lists li a:hover,
.footer-section .group-links-footer .other-links li a:hover{color: #a5efcb;}
.footer-section .group-links-footer .links-lists li a span,
.footer-section .group-links-footer .other-links li a span{
    margin-right: 0.3rem;
    font-size: 0.5rem;
}
.footer-section .contact-us-footer .social-media-links{display: flex;}
.footer-section .contact-us-footer .social-media-links .social-media-icon{margin-right: 1.7rem;}
.footer-section .contact-us-footer .social-media-links .social-media-icon a span{
    color: #fff;
    transition: 0.25s;
}
.footer-section .contact-us-footer .social-media-links .social-media-icon a:hover span.facebook-icon{color: #4867aa;}
.footer-section .contact-us-footer .social-media-links .social-media-icon a:hover span.twitter-icon{color:#1d9bf0 ;}
.footer-section .contact-us-footer .social-media-links .social-media-icon a:hover span.youtube-icon{color:#ff0000;}
.footer-section .contact-us-footer .social-media-links .social-media-icon a:hover span.linkedIn-icon{color:#0077b0;}
.footer-section .contact-us-footer .social-media-links .social-media-icon a:hover span.instagram-icon{color: #e6683c;}
.footer-section .contact-us-footer .email {margin-top: 1.2rem;display: flex;}
.footer-section .contact-us-footer .email span,
.footer-section .contact-us-footer .email a{
    color: #fff;
    margin-right: 0.5rem;
}
.footer-section .contact-us-footer .email a{font-weight: 500;}
.footer-section .copyright-section{
    margin-top: 1.5rem;
    border-top: 1px solid #e9ecef;
    padding-top: 1rem;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
}
.footer-section .copyright-section a{
    color: #a5efcb;
    text-transform: capitalize;
}
/*News Page*/
.main-content-page{
    margin-top:110px;
    
}
.news-page{
    padding-top: 50px;
    padding-bottom: 50px;
}
.news-page .title{
    margin-bottom: 2rem;
    margin-top: 2rem;
}
.news-page .title h1{
    padding-bottom: 1rem;
    font-weight: 700;
    text-transform: capitalize;
    color: #39b07e;
}
.news-page .content .news-posts .details-post{
    border: 1px solid var(--border-bottom-color);
    padding: 20px;
    display: flex;
    flex-direction: row;
    margin-top: -1px;
}
.news-posts .details-post .title-post a{
    font-size: 24px;
    z-index: 999;
    position: relative;
    font-weight: 600;
    display: flex;
    color: var(--color-heading);
}
.news-page .content .news-posts .details-post .img-post {
    width: 350px;
    margin-right: 2rem;
    position: relative;
    height:275px;
}
.news-page .content .news-posts .details-post .img-post .img-background img{
    width: 100%;
    height: 275px;
}
.news-page .content .news-posts .details-post .img-post .overlay{
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background-color: #0b0b075e;
    opacity: 0;
    transition: 0.5s;
}
.news-page .content .news-posts .details-post .img-post:hover .overlay{opacity: 1;}
.news-page .content .news-posts .details-post .img-post .overlay .read-more{
    font-weight: 600;
    color: #fff;
    text-transform: capitalize;
    font-size: 0.9rem;
}
.news-page .content .news-posts .details-post .img-post .overlay .meta-post{
    color: #fff;
    font-size: 0.6522rem;
    text-transform: uppercase;
    margin-top: auto;
}
.news-page .content .news-posts .details-post .content-post {
    display: flex;
    flex-direction: column;
    max-width: 100%;
    flex: 1;
}
.news-page .content .news-posts .details-post .content-post .category-post{margin-bottom: 1rem;}
.news-page .content .news-posts .details-post .content-post .category-post span{
    font-size: 0.7rem;
    text-transform: uppercase;
    background-color: #39b07e;
    color: #fff;
    padding: 8px 10px;
    font-weight: 700;
    letter-spacing: 1.2px;
    margin-right: 5px;
}
.news-page .content .news-posts .details-post .content-post .title-post span{
    margin-top: 1rem;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--color-heading);
}
.news-page .content .news-posts .details-post .content-post .text-post{
    font-size: 16px;
    font-weight: 400;
    color: var(--color-paragrphe);
    margin-top: 1rem;
}
.news-page .content .news-posts .details-post .content-post .meta-post{
    margin-top: 1rem;
    display: flex;
    text-transform: uppercase;
    font-size: 0.67rem;
}
.news-page .content .news-posts .details-post .content-post .meta-post .author-meta{
    margin-right: 0.5rem;
    color: var(--color-meta-author);
}
.news-page .content .news-posts .details-post .content-post .meta-post .author-meta .cs-author{
    font-weight: 700;
}
.news-page .content .news-posts .details-post .content-post .meta-post .date-meta{
    position: relative;
    color: var(--color-meta-date);
} 

.news-page .check-box-section{
    margin-bottom: 2rem;
    padding:0 0.5rem;
}
.news-page .check-box-section .checkbox-category{
    margin-bottom: 0.5rem;
    color: var(--color-label);
}
.news-page .check-box-section .checkbox-category label{
    font-weight: 600;
    text-transform: capitalize;
    margin-left: 20px;
    cursor:pointer;
}
.news-page .pagination-section{
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}
.news-page .pagination-section ul.page-numbers {display: flex;}
.news-page .pagination-section ul.page-numbers li a{
    border: 1px solid transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    min-height: 40px;
    color: var(--color-heading);
    font-weight: 700;
    font-size: 0.95rem;
}
.news-page .pagination-section ul.page-numbers li a span.page-number{padding: 0.5rem 0.75rem;} 
.news-page .pagination-section ul.page-numbers li a span.current{
    color: #fff;
    background-color: var(--btn-bg-color);
}

/*News Details Page*/
.news-details-page{
    padding-top: 50px;
    padding-bottom: 50px;
}
.news-details-page .row .col-lg-4{order: 2;}
.news-details-page .row .col-lg-8{order: 1;}
.news-details-page .title{margin-top: 2rem;}
.news-details-page .title h1{
    padding-bottom: 1rem;
    font-weight: 700;
    text-transform: capitalize;
    color: #39b07e;
}

.news-details-page .cs-breadcrumbs .breadcrumbs-list li{display: inline-block;}
.news-details-page .cs-breadcrumbs .breadcrumbs-list li span{
    color: var(--color-paragrphe);
    font-size: 16px;
    text-transform: capitalize;
}
.news-details-page .cs-breadcrumbs .breadcrumbs-list li span.title{font-weight: 600;}
.news-details-page .cs-breadcrumbs .breadcrumbs-list li span.icon{margin: 0 0.5rem;}
.news-details-page .content-details {margin-top: 20px;}
.news-details-page .content-details .main-category a span{
    background-color: #39b07e;
    color: #fff;
    padding: 5px 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-size: 0.7rem;
    transition: 0.25s;
}
.news-details-page .content-details .main-category a:hover{background-color: #39b07e;}
.news-details-page .content-details h1.main-title{
    margin-top: 1.25rem;
    font-weight: 700;
    color: var(--color-heading);
}
.news-details-page .content-details .meta-post {
    margin-top: 1rem;
    display: flex;
    color: var(--color-heading);
}
.news-details-page .content-details .meta-post .author-meta, 
.news-details-page .content-details .meta-post .date-post{
    margin-right: 0.5rem;
}
.news-details-page .content-details .meta-post .author-meta ,
.news-details-page .content-details .meta-post .date-post,
.news-details-page .content-details .meta-post .time-reading{
    margin-top:5px;
}
.news-details-page .content-details .meta-post .author-meta .cs-by{margin-right: 0.3em;}
.news-details-page .content-details .meta-post .author-meta .cs-author{font-weight: 700;}
.news-details-page .content-details .meta-post .author-meta .cs-author a{
    color:initial;
}

.news-details-page .content-details .meta-post .date-post::before,
.news-details-page .content-details .meta-post .time-reading::before{
    content: "�1�4��";
    font-weight: 600;
    margin-right: 0.4em;
}
.news-details-page .content-details .meta-post .time-reading .icon-time {
    margin-right: 0.5rem;
}
.news-details-page .content-details .main-img {
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
}
.news-details-page .content-details .main-img img{
    width: 100%;
    height: 100%;
}
.news-details-page .content-details .news-details p{
    margin-bottom: 10px;
    margin-top: 10px;
    font-size: 1rem;
    color: var(--color-paragrphe);
}
.news-details table{
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
}
.news-details-page .content-details .news-details ul{
    margin-bottom: 32px;
    margin-top: 32px;
}
.news-details-page .content-details .news-details ul li{
    position: relative;
    padding-left: 2.5rem;
    color: var(--color-paragrphe);
}
.news-details-page .content-details .news-details ul li::before{
    position: absolute;
    content: '';
    width: 0.25rem;
    height: 0.25rem;
    margin-top: 0.75rem;
    left: 1rem;
    background-color: #a4a4a5;
    border-radius: 50%;
}
.news-details-page .aside-section {max-width:85%;}
.news-details-page .social-media-links h5.title,
.news-details-page .trending-news h5.title{
    color: var(--color-heading);
    font-weight: 800;
    text-transform: capitalize;
    margin-bottom: 1.5rem;
    border-bottom: 4px solid var(--border-bottom-color);
    padding-bottom: 1em;
}
.news-details-page .social-media-list {
    display:flex;
    justify-content: flex-start;
    margin: 0 -0.125rem;
    margin-bottom: 1rem;
}
.news-details-page .social-media-list .social-media-items{
    flex: 1 1 auto;
    display: flex;
    justify-content: center;
}
.news-details-page .social-media-list .social-media-items a span{
    color: var(--color-heading);
    transition:all 0.5s;
}
.news-details-page .social-media-list .social-media-items a:hover span.facebook-icon{color: #4867aa;}
.news-details-page .social-media-list .social-media-items a:hover span.twitter-icon{color:#1d9bf0 ;}
.news-details-page .social-media-list .social-media-items a:hover span.youtube-icon{color:#ff0000;}
.news-details-page .social-media-list .social-media-items a:hover span.linkedIn-icon{color:#0077b0;}
.news-details-page .social-media-list .social-media-items a:hover span.instagram-icon{color: #e6683c;}
.news-details-page .trending-news{margin-top: 30px;}
.news-details-page .trending-news a:not(:first-child) .wedigt-post-items{
    border-top: 1px solid var(--border-bottom-color);
    margin-top: 20px;
    padding-top: 20px;
}
.news-details-page .trending-news a .wedigt-post-items{
    display: flex;
}
.news-details-page .trending-news .wedigt-post-items .post-img{
    flex: none;
    align-self: flex-start;
    width: 80px;
    margin-right: 1rem;
    position: relative;
}
.news-details-page .trending-news .wedigt-post-items .post-img .background-img{
    height: 80px;
}
.news-details-page .trending-news .wedigt-post-items .post-img .background-img img{
    width: 100%;
    height: 100%;
}
.news-details-page .trending-news .wedigt-post-items .post-img .background-overlay{
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: #0b0b075e;
    display: flex;
}
.news-details-page .trending-news .wedigt-post-items .post-img .background-overlay::before{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    opacity: 1;
    transition: 0.25s;
    font-size: 2rem;
    content: counter(my-post-number);
    counter-increment: my-post-number;
    transform: translateY(0);
}
.news-details-page .trending-news .wedigt-post-items .post-img .background-overlay::after{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    opacity: 1;
    transition: 0.25s;
    content: "\f178";
    font-family: 'Font Awesome 5 Pro';
    font-size: 1.5rem;
    transform: translateY(100%);
}
.news-details-page .trending-news .wedigt-post-items .post-img:hover .background-overlay::after{
    transform: translateY(0);
}
.news-details-page .trending-news .wedigt-post-items .post-img:hover .background-overlay::before{
    transform: translateY(-100%);
}
.news-details-page .trending-news .wedigt-post-items .info-post{
    display: flex;
    flex-direction: column;
}
.news-details-page .trending-news .wedigt-post-items .info-post h3{
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-heading);
    transition: 0.25s;
    margin-bottom: 0;
}
.news-details-page .trending-news .wedigt-post-items .info-post h3:hover{
    color: #a4a4a5;
}
.news-details-page .trending-news .wedigt-post-items .info-post .meta-post{
    margin-top: 1rem;
}
.news-details-page .trending-news .wedigt-post-items .info-post .meta-post .date-post{
    color: var(--color-meta-date);
    text-transform: uppercase;
    font-size: 0.67rem;
}
.page-item.active .page-link{
    background-color: #39b07e;
    border-color: #39b07e;
}
.page-link{
    color:var(--color-heading);
}
.page-link:hover{
    color:#39b07e;
}

/* Checkbox Design */
.main {
  position: relative;
  margin-bottom: 12px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.main input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
}

/* On mouse-over, add a grey background color */
.main:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.main input:checked ~ .checkmark {
  background-color:#39b07e;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.main input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.main .checkmark:after {
  right: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 0 3px 3px;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.news-details-page .banner-advertis{
    width: 735px;
    margin:0 auto;
    height: 250px;
    margin-bottom: 0.5rem;
}
.news-details-page .banner-advertis img{
    width: 100%;
    height: 100%;
}
header.fixed{
    z-index: 9999999 !important;
}
.news-details p, .news-details span{
    color:#fff;
}