@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&display=swap");

/*
========================
GOBAL CSS START
========================
*/

:root {
    --cairo: "Cairo", sans-serif;
    /* --yellow: #fcb700; */
    /* --yellow: #36B041; */
    --dark-green: #36B041;
}

body {
    font-family: var(--cairo);
    font-size: 16px;
    font-weight: 400;
    background: #fff;
    color: #1c1c1c;
}

html,
body,
header,
footer,
main,
nav,
section,
div,
menu,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
strong,
i,
ol,
ul,
li,
form,
label,
button {
    margin: 0;
    padding: 0;
}

ol,
ul {
    list-style: none;
}

button:focus,
a:focus,
input:focus,
textarea:focus,
select:focus {
    outline: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
    -moz-transition: 0.2s all ease;
}

a:visited,
a:hover,
a:active {
    text-decoration: none;
}

img {
    max-width: 100%;
}

::selection {
    color: white;
    background: #ff7675;
}

::-webkit-selection {
    color: white;
    background: #ff7675;
}

::-moz-selection {
    color: white;
    background: #ff7675;
}

.scrolltotop {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    background: #1ebe73;
    text-align: center;
    font-size: 22px;
    color: #ffffff;
    position: fixed;
    right: 30px;
    bottom: 25px;
    display: none;
    animation: lab_top_up 5s linear infinite;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 1;
}

.scrolltotop img {
    width: 14px;
    margin-top: -4px;
}

@keyframes lab_top_up {
    0% {
        transform: translateY(-15px);
    }
    50% {
        transform: translateY(0px);
    }
    100% {
        transform: translateY(-15px);
    }
}

.pluse,
.pluse2 {
    position: relative;
    top: 10px;
    left: -7px;
    z-index: -1;
}

.pluse::before,
.pluse2::before {
    width: 40px;
    height: 40px;
}

.pluse::after,
.pluse::before,
.pluse2::after,
.pluse2::before {
    background: #1ebe73;
    border-radius: 50%;
    left: 50%;
    top: 50%;
    display: block;
    content: "";
    position: absolute;
    top: 4px;
    left: -1px;
}

.pluse::after,
.pluse2::after {
    width: 30px;
    height: 30px;
    background: transparent;
    margin-left: -15px;
    margin-top: -15px;
}

.pluse::before {
    -webkit-animation: pluse_animate 2.5s infinite linear;
    animation: pluse_animate 2.5s infinite linear;
}

.pluse2::before {
    -webkit-animation: pluse_animate 3s infinite linear;
    animation: pluse_animate 3s infinite linear;
}

@keyframes pluse_animate {
    0% {
        opacity: 1;
        -webkit-transform: translate(-50%, -50%) scale(0.3);
        transform: translate(-50%, -50%) scale(0.3);
    }
    100% {
        opacity: 0;
        -webkit-transform: translate(-50%, -50%) scale(2);
        transform: translate(-50%, -50%) scale(2);
    }
}

/*===============
 GOBAL CSS END  
 ============== */
.header-top {
    padding: 8px 0;
    background-color: var(--dark-green);
}

.header-top a {
    font-size: 15.2px;
    font-weight: 700;
    color: #fff;
}

.head-closer {
    color: #fff;
    font-size: 22px;
    cursor: pointer;
}

.header-nav {
    background-color: #00349D;
    height: auto;
    padding: 15px 0;
    transition: all 0.7s ease;
}

.logo-area {
    padding-bottom: 15px;
}

.logo-area img {
    height: 40px;
}

.actual-menu ul {
    display: flex;
    gap: 5px;
}

.actual-menu ul li a {
    color: #fff;
    padding: 4px 6px;
    font-size: 15px;
    font-weight: 700;
    position: relative;
}

.actual-menu ul li:after {
    content: "";
    display: block;
    width: 0%;
    height: 3px;
    background-color: var(--dark-green);
    position: absolute;
    right: 0;
    bottom: -4px;
    transition: 0.3s;
}

.actual-menu ul li:hover:after {
    width: 100%;
}

.actual-menu ul li {
    position: relative;
}

.actual-menu ul ul {
    display: flex;
    flex-direction: column;
    position: absolute;
    gap: 0;
    right: 0;
    box-shadow: rgba(0, 0, 0, 0.04) 0px 3px 5px;
    transform: translateY(15px);
    width: 235px;
    max-height: 500px;
    scrollbar-color: #c0c0c0 #f0f0f0;
    overflow: auto;
    transition: 0.3s;
    opacity: 0;
    visibility: hidden;
    z-index: 2;
    background-color: #fff;
    padding: 0;
}

.actual-menu ul ul li a {
    font-size: 13px;
    color: #00349D;
    text-align: right;
    padding: 10px;
    white-space: normal;
    border-bottom: 1px solid #f3f5f7;
    display: block;
    width: 100%;
}

.actual-menu ul ul li:after {
    display: none;
}

.actual-menu ul ul li a:hover {
    background-color: #f3f5f7;
}

.actual-menu ul li:hover ul {
    transform: translateY(4px);
    opacity: 1;
    visibility: visible;
}

.actual-menu ul ul li:last-child a {
    border-bottom: 0;
}

.menu-left {
    margin-right: -50px;
}

.menu-left .search-input {
    position: relative;
}

.menu-left .search-input input {
    background: #316ade;
    border: 0;
    color: #fff;
    display: block;
    width: 100%;
    height: 31px;
    padding: 5px 10px;
    font-weight: 700;
    font-size: 12px;
    outline: 0;
}

.menu-left .search-input input:focus {
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.menu-left .search-input i {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    cursor: pointer;
}

.menu-left .search-input input::placeholder {
    color: #fff;
}

.menu-left ul {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 13px;
    justify-content: center;
}

.menu-left ul li {
    position: relative;
}

.menu-left ul li a {
    font-size: 14px;
    color: #fff;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
}

.menu-left ul li:after {
    content: "";
    display: block;
    width: 0%;
    height: 3px;
    background-color: var(--dark-green);
    position: absolute;
    right: 0;
    bottom: -4px;
    transition: 0.3s;
}

.menu-left ul li:hover:after {
    width: 100%;
}

.menu-left ul li a i {
    background: #ce2b39;
    color: #fff;
    font-size: 7px;
    width: 17px;
    height: 17px;
    line-height: 17px;
    display: inline-block;
    text-align: center;
    transform: translateY(2px);
}

.header-nav.menu-sticky {
    position: fixed;
    height: auto;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
    z-index: 2;
    animation: slideDown 0.55s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

.menu-sort-logo {
    display: none;
    transform: translateY(-5px);
}

.menu-sort-logo img {
    height: 38px;
}

.header-nav.menu-sticky .menu-sort-logo {
    display: block;
}

.header-nav.menu-sticky .menu-sort-logo:after {
    display: none;
}

.header-nav.menu-sticky .logo-area {
    display: none;
}

.header-nav.menu-sticky .toggle-comp {
    display: none;
}

.header-nav.menu-sticky .menu-left .search-input i {
    transform: translateY(100%);
    left: 35px;
}

.header-nav.menu-sticky .actual-menu {
    padding-top: 7px;
}

.header-nav.menu-sticky .actual-menu ul li::after {
    bottom: 10px;
}

.header-nav.menu-sticky .menu-left ul {
    padding-top: 12px;
}

.sm-bottombar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #00349D;
    padding: 10px 14px;
    padding-top: 15px;
    z-index: 2;
}

.sm-bottombar ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row-reverse;
    max-width: 720px;
}

.sm-bottombar ul li a {
    display: flex;
    flex-direction: column;
}

.sm-bottombar ul li img {
    height: 18px;
}

.sm-bottombar ul .bottombar-logo img {
    height: 35px;
}

.sm-bottombar ul li a span {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    display: block;
    padding-top: 3px;
    transition: 0.3s;
}

.sm-bottombar ul li a:hover span {
    color: var(--dark-green);
}

.offcanvas {
    width: calc(100% - 80px) !important;
}

.offcanvas-start .offcanvas-header {
    padding-top: 10px;
    padding-bottom: 14px;
    border-bottom: 1px solid #f4f4f4;
    background-color: #00349D;
}

.offcanvas-start .offcanvas-header img {
    height: 23px;
}

.offcanvas-start .offcanvas-header .btn-close {
    background-image: none;
    font-size: 30px;
    opacity: 1;
    box-shadow: none;
}

.offcanvas-start .offcanvas-header .btn-close i {
    color: #fff;
}

.offcanvas-start .offcanvas-header .btn-close i:hover {
    color: var(--dark-green);
}

.offcanvas-start .offcanvas-body {
    padding: 0;
    padding-top: 22px;
    padding-bottom: 20px;
}

.offcanvas-start ul li a {
    display: block;
    width: 100%;
    padding: 11px 20px;
    position: relative;
    font-weight: 700;
    color: #00349D;
    border-bottom: 1px solid #edeff3;
}

.offcanvas-start ul ul li a {
    border-bottom: 0;
}

.offcanvas-start ul ul li a:hover {
    color: var(--dark-green);
}

.offcanvas-start ul li a i {
    font-size: 12px;
    position: absolute;
    right: 30px;
    top: 52%;
    transform: translateY(-50%);
}

.offcanvas-header .btn-close {
    margin-top: -19px;
    margin-right: -5px;
}

.accordion-container .accordion-title {
    position: relative;
}

.accordion-container .accordion-title::before {
    content: "\f107";
    font-weight: 700;
    font-family: FONTAWESOME;
    position: absolute;
    height: 100%;
    width: 48px;
    top: 50%;
    transform: translateY(-50%);
    line-height: 45px;
    left: 0;
    text-align: center;
    transition: all 0.3s ease-in-out;
    background-color: #edeff3;
    font-size: 13px;
}

.accordion-container .accordion-title.open:before {
    background-color: #316ade;
    color: #fff;
}

.accordion-container .accordion-title.open {
    background-color: #edeff3;
    border: 0;
    box-shadow: none;
}

.offcanvas-start .accordion-content {
    padding-top: 15px;
    padding-left: 100px;
}

.offcanvas-start .accordion-content li a {
    padding-left: 45px;
    font-size: 14.5px;
    padding-top: 11px;
    padding-bottom: 11px;
}

.sidebar-search {
    display: flex;
    align-items: center;
    color: #1c1c1c;
    padding-bottom: 5px;
    border-bottom: 1px solid #edeff3;
    margin: 0 18px;
}
.sidebar-search input {
    border: 0;
    background-color: transparent;
    display: block;
    width: 100%;
}

.sidebar-search i {
    font-size: 22px;
}

.sidebar-button ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 7px;
    margin-top: 22px;
    margin-left: 18px;
    margin-right: 18px;
}

.sidebar-button ul li {
    text-align: center;
}

.sidebar-button ul li a {
    border: 1px solid #ddd;
    color: #1c1c1c;
    font-size: 15px;
    padding: 20px 8px;
    display: flex;
    justify-content: center;
    gap: 5px;
}

.sidebar-button ul li a:hover {
    color: var(--dark-green);
}

.sidebar-button ul li a i {
    background: #ce2b39;
    color: #fff;
    font-size: 7px;
    width: 17px;
    height: 17px;
    line-height: 17px;
    display: inline-block;
    text-align: center;
    position: static;
    transform: translate(0);
    margin-top: 2px;
}

/* header-cards-tabs */
.tab-button-wrap {
    overflow: auto;
}

.header-cards-tabs .skltbs-tab-group {
    display: inline-flex;
    gap: 10px;
    padding: 10px;
    padding-left: 50px;
    z-index: 1;
    position: relative;
    min-width: 890px;
    width: 100px;
}

.header-cards-tabs .skltbs-tab-group:after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: #e2e2e4;
    position: absolute;
    bottom: 11px;
    z-index: -1;
    left: 0;
}

.header-cards-tabs .skltbs-tab-group button {
    color: #777;
    font-weight: 800;
    font-size: 15px;
    padding: 10px 10px;
    border: 0;
    border-bottom: 3px solid transparent;
    background-color: transparent;
    transition: 0.3s;
    white-space: nowrap;
}

.header-cards-tabs .skltbs-tab-group button:hover,
.header-cards-tabs .skltbs-tab-group button.skltbs-active {
    border-color: var(--dark-green);
    color: var(--dark-green);
}

.card-selection-wrap {
    padding-top: 8px;
    padding-bottom: 8px;
    overflow-x: scroll;
}

.card-slctn-inner {
    display: flex;
    gap: 15px;
}

.bg-success {
    background-color: #198754;
}

.bg-danger {
    background-color: #dc3545;
}

.card-slctn-inner .single-card {
    text-align: left;
    text-align: initial;
    height: 75px;
    width: 220px;
    min-width: 220px;
    padding: 10px;
}

.single-card table {
    color: #fff;
    margin: 0;
    font-size: 12px;
}

.caret_icon_down,
.caret_icon_up {
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    height: 0;
    width: 0;
    border-bottom: 10px solid #fff;
}

.single-card table th {
    font-size: 14px;
    font-weight: 700;
    line-height: 15px;
}

.single-card table th.p_h {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.single-card table td {
    line-height: 10px;
    font-size: 12px;
    font-weight: 600;
}

.single-card table tr:nth-child(1) th:nth-child(2),
.single-card table tr:nth-child(2) td:nth-child(2),
.single-card table tr:nth-child(3) td:nth-child(2) {
    text-align: left !important;
}

.single-card table td.text-dim {
    font-size: 10px;
    opacity: 0.6;
}

.tabs-bott-text {
    color: rgb(119, 119, 119);
    font-size: 10px;
    font-weight: 800;
    padding-top: 14px;
    padding-bottom: 15px;
}

.page-categories-wrap {
    overflow: auto;
}

.page-categories {
    margin: 10px 0;
    min-width: 1150px;
    width: 100%;
}

.page-categories .CategoryTitle {
    font-size: 15px;
    font-weight: 900;
    margin-left: 23px;
    min-width: 90px;
    font: normal normal 700 15px/30px;
    color: #1c1c1c;
}

.page-categories ul {
    overflow-x: auto;
    display: flex;
    align-items: center;
    gap: 10px;
}

.page-categories ul li {
    font-size: 18px;
    font-weight: 700;
    white-space: nowrap;
    display: inline-block;
}

.page-categories ul li a {
    background: #f1f1f1;
    padding: 5px 20px;
    border-radius: 3px;
    text-decoration: none;
    color: var(--dark-green);
    font-weight: 800;
    font-size: 15px;
    display: block;
}

.page-categories ul li a:hover {
    background: #00349D;
    color: #fff;
}

/* page news wrap design  */

.post-grid-wrap {
    padding-top: 17px;
}

.right-post-wrap {
    background-image: url(images/right-post.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    color: #fff;
    align-items: flex-end;
    display: flex;
    margin-bottom: 32px;
    cursor: pointer;
    height: 0;
    width: 100%;
    padding-top: 80.7%;
}

.mainsection_newscontent {
    background-image: linear-gradient(0deg, #071d39 45%, #071d3900);
    padding: 30px;
    z-index: 1;
}

.mainsection_newscontent h1 {
    line-height: 20px;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.mainsection_newscontent h1 a {
    font-size: 24px;
    color: #fff;
    line-height: 38px;
}

.mainsection_newscontent h1 a:hover,
.mainsection_newscontent h3 a:hover {
    color: var(--dark-green);
}

.mainsection_newscontent h3 {
    line-height: 20px;
}

.mainsection_newscontent h3 a {
    font-size: 15px;
    color: #fff;
    font-weight: 700;
}

.mainsection_newscontent hr {
    margin: 8px 0;
}

.middle-news .single-news {
    margin-bottom: 40px;
}

.middle-news .single-news a span {
    font-size: 15px;
    font-weight: 700;
    color: #1c1c1c;
    display: block;
    margin-top: 14px;
    transition: 0.3s;
}

.middle-news .single-news a:hover span {
    color: var(--dark-green);
}

.middle-news .single-news .news-img {
    max-height: 180px;
    min-height: 120px;
}

.middle-news .single-news .news-img img {
    max-height: 180px;
    object-fit: cover;
    width: 100%;
}

.sidelist_sidebar .sidelist_themeTitle {
    border-top: 1px solid #777;
    padding-top: 5px;
}

.sidelist_sidebar .sidelist_themeTitle h4 {
    display: inline-block;
    border-top: 6px solid #0089d0;
    padding-top: 10px;
    margin-top: -11px;
    color: var(--dark-green);
    font-size: 20px;
    margin-bottom: 0.5rem;
    font-weight: 500;
    line-height: 1.2;
    font-weight: 800;
}

.dotListwrap,
.sideSimpleListWrap {
    position: relative;
    border-bottom: 4px solid #071d39;
}

.sidelist_links {
    margin: 0;
    padding: 10px 0 0 5px;
    height: 470px;
    overflow: auto;
}

.sidelist_links li {
    border-bottom: 1px solid #ddd;
    color: #fcb700;
    font-size: 16px;
    display: flex;
    align-items: baseline;
}

.sidelist_links li::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fcb700;
    margin-left: 0.5rem;
    display: inline-block;
    flex-shrink: 0;
}

.sidelist_links li a span,
.sidelist_links li span {
    color: #777;
    display: block;
    margin-bottom: 10px;
    margin-bottom: 5px;
    font-size: 12px;
    font-weight: 700;
}

.sidelist_links li a {
    font-size: 12px;
    font-weight: 800;
    color: #1c1c1c;
    display: block;
    text-decoration: none;
    line-height: 20px;
    padding-bottom: 20px;
}

.sidelist_links li a:hover {
    color: var(--dark-green);
}

/* bottom news area  */
.bottom-news-section {
    padding-top: 25px;
}

.bott-single-news ul li {
    display: flex;
    border-bottom: 1px solid #ddd;
    padding: 15px 0;
    justify-content: space-between;
}

.NewsList li .newsText {
    width: 70%;
    flex: 3 1;
    padding: 5px 0 0;
    margin-left: 100px;
}

.bott-single-news ul li a {
    font-size: 20px;
    font-weight: 700;
    overflow-wrap: break-word;
    color: #1c1c1c;
    margin-bottom: 5px;
    display: inline-block;
}

.bott-single-news ul li a:hover {
    color: var(--dark-green);
}

.bott-single-news li .newsText p {
    margin-bottom: 0;
}

.bott-single-news li .newsText p a {
    margin-left: 8px;
    font-size: 12px;
    display: inline-block;
    color: #00349D;
}

.bott-single-news li .newsText p a:hover {
    color: var(--dark-green);
}

.bott-single-news li .newsText p b {
    font-size: 12px;
    color: #777;
    font-weight: 700;
}

.bott-single-news li .newsImage {
    min-width: 190px;
    width: 100%;
    max-width: 190px;
}

/*======= market driver section style start hare ===== */

.market-driver-section {
    padding: 40px 0;
}

.marketDriverTab {
    display: flex;
    align-items: center;
    gap: 25px;
    width: 100%;
    overflow: hidden;
    overflow-x: auto;
    padding-bottom: 15px;
}
.marketDriverTab li a {
    display: block;
    padding: 5px 0;
    font-size: 15px;
    font-weight: 900;
    color: #777;
    border-bottom: 5px solid transparent;
    white-space: nowrap;
}
.marketDriverTab li a.active {
    border-color: #316ade;
}

.market-driver-main-card {
    background: #fafafa;
    border: 1px solid #ddd;
    border-top: 6px solid #316ade;
    padding: 25px 33px 10px;
    margin-top: 20px;
}

.market-driver-tab-content {
    padding-top: 25px;
}
.marketTabCard-sa h2 {
    font-size: 20px;
    font-weight: 900;
    color: #1c1c1c;
}

.marketChart table {
    width: 100%;
    padding: 5px;
}
.marketChart table td {
    padding: 8px;
    font-size: 12px;
    font-weight: 700;
    color: #212529;
    background: #fff;
}

.bg-light {
    background: #fff !important;
}
.winner-wrapper-sa {
    padding: 10px 0;
}

.marketChart table td.desc {
    max-width: 270px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    float: left;
    background: #fff;
    direction: ltr;
}
.md-percentage {
    color: #198754;
}

.tab-content {
    display: block;
}
.tab-content.active {
    display: block;
}

/*======== latest news top section style ======== */

.latest-news-top-area {
    padding-top: 20px;
}
.latest-news-Title {
    border-top: 6px solid #316ade;
    padding-top: 10px;
}
.latest-news-Title a {
    font-size: 24px;
    font-weight: 900;
    color: #36B041;
}

.latest-news-list-ss ul li {
    padding-top: 10px;
    padding-bottom: 20px;
    min-height: 115px;
    border-bottom: 1px solid #ddd;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.latest-news-list-ss ul li a.lt-news-title-ss {
    font-size: 20px;
    font-weight: 700;
    color: #1c1c1c;
}
.latest-news-list-ss ul li a:hover {
    color: var(--dark-green);
}
.lt-news-info a {
    color: #00349D;
    font-size: 12px;
    font-weight: 700;
}
.lt-news-info span {
    font-weight: 700;
    color: #7777;
    font-size: 12px;
}

/*======== cnbc video area start hare ======== */

.cnbc-video-section-sa {
    padding: 40px 0;
    background: #316ade;
}

.button-group-sa {
    display: flex;
    align-items: center;
    gap: 20px;
}
.button-group-sa a {
    font-size: 15px;
    font-weight: 700;
    height: 40px;
    padding: 4px 10px;
    border: 1px solid #f8f9fa;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.button-group-sa a:hover {
    background: var(--dark-green);
    color: #fff;
    border-color: var(--dark-green);
}

.button-group-sa a.bg-danger {
    border-color: #ce2b39;
    color: #fff;
}

.cnbc-video-topbar .titlebar-sa h2 {
    font-size: 32px;
    font-weight: 900;
    color: #fff;
}

.cnbc-video-card-sa {
    position: relative;
    border-top: 6px solid #36B041;
}

.cnbc-video-card-sa .cnbc-video-card-content {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 30px;
}

.cnbc-video-card-content a {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
}
.cnbc-video-card-content a:hover {
    color: var(--dark-green);
}

.cnbcVideoItems.video-card-sa img {
    height: auto !important;
}

.cnbcVideoItems .video-btn-duration button {
    border: none;
    width: 25px;
    height: 25px;
    border: 2px solid #36B041;
    background: var(--dark-green);
    color: #fff;
    font-size: 10px;
}
.cnbcVideoItems .video-btn-duration {
    height: 100%;
    align-items: start !important;
    padding-bottom: 5px;
}
.cnbcVideoItems .video-btn-duration h4 {
    font-size: 12px;
}

.cnbc-video-List li h4 {
    font-size: 15px;
    line-height: 23px;
    font-weight: 700;
    margin-right: 10px;
    color: #fff;
    transition: 0.3s;
}
.cnbcVideoItems.video-card-sa {
    width: 190px;
}
.cnbc-video-List li h4:hover {
    color: var(--dark-green);
}

/*========== social slider section style start hare ======== */

.slider-header-wp.social-slider-wp {
    border-top: 1px solid #777;
}
.social-slider-wp h2 {
    position: relative;
}
.social-slider-wp h2::before {
    content: "";
    width: 100px;
    height: 6px;
    background: var(--dark-green);
    position: absolute;
    right: 0;
    top: -22px;
}

.picks-thumb.social-images img {
    height: 430px;
}

.social-slider-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 10px 0;
}

.post-time-and-category {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.social-slider-content > a {
    font-size: 18px;
    font-weight: 900;
    color: #316ade;
}
.social-slider-content a:hover {
    color: var(--dark-green);
}
.post-time-and-category a {
    font-size: 16px;
    font-weight: 700;
    color: #006fff;
}
.post-time-and-category a:hover {
    color: var(--dark-green);
}
.post-time-and-category p {
    font-size: 16px;
    font-weight: 700;
}

/*============== Popular News Section style start hare ============= */

.popular-news-section {
    padding: 50px 0;
}

.primary-title-sa h2 {
    color: #36B041;
    font-weight: 900;
    font-size: 32px;
    margin-top: -6px;
    padding-top: 20px;
    display: inline-block;
    position: relative;
}
.primary-title-sa {
    border-top: 1px solid #777;
}
.primary-title-sa h2::before {
    content: "";
    width: 100px;
    height: 6px;
    background: #0089d0;
    position: absolute;
    right: 0;
    top: 0;
}

.numberCount-sa h1 {
    color: #cfd8e2;
    font-size: 45px;
    font-weight: 900;
}

.news-numberlist-wp {
    display: flex;
    align-items: stretch;
    padding-top: 20px;
    padding-bottom: 10px;
}
.news-numberlist-wp .single-newsNumber-sa {
    width: calc(100% / 5);
    border-right: 5px solid #f7f7f7;
    padding: 0 15px 10px 60px;
    color: #1c1c1c;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 255px;
}
.single-newsNumber-sa a {
    color: #1c1c1c;
    font-size: 14px;
    font-weight: 800;
}
.single-newsNumber-sa a:hover {
    color: #fcb700;
}

.primary-title-sa h2 a {
    color: #36B041;
}
.primary-title-sa h2 a:hover {
    color: #fcb700;
}

.primary-title-sa.border-yellow h2::before {
    background: var(--dark-green);
}

.news-thumb-sa a {
    display: block;
    max-height: 300px;
}
.news-thumb-sa a img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    max-height: 300px;
}

.single-news-card-sa {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.news-title-sa a {
    font-size: 24px;
    font-weight: 700;
    color: #1c1c1c;
}
.news-title-sa a:hover {
    color: var(--dark-green);
}

.news-category-time-sa a {
    font-size: 12px;
    font-weight: 700;
    color: #00349D;
}
.news-category-time-sa a:hover {
    color: var(--dark-green);
}
.news-category-time-sa p {
    font-size: 12px;
    font-weight: 700;
    color: #777777;
}

.h-300 {
    height: 300px !important;
}

.small-news-card .news-title-sa a {
    font-size: 20px;
}

.recent-news-top-sa {
    border-top: 6px solid #ddd;
}

.recent-news-top-sa h2 {
    font-size: 20px;
    font-weight: 900;
    color: #002f6c;
    margin-top: 10px;
}

.recent-news-card-sa ul {
    margin-top: 15px;
    max-height: 430px;
    overflow: hidden;
    overflow-y: auto;
    padding-left: 10px;
}
.recent-post-title-sa a {
    font-size: 15px;
    font-weight: 800;
}
.recent-post-title-sa a:hover {
    color: var(--dark-green);
}
.recent-news-info a {
    color: #005594;
    font-size: 12px;
    margin-right: 10px;
    display: inline-block;
    font-weight: 700;
}
.recent-news-info a:hover {
    color: var(--dark-green);
}
.recent-news-info span {
    font-size: 12px;
    font-weight: 700;
    color: #777777;
}

.recent-news-card-sa ul li {
    padding: 15px 0;
    border-bottom: 1px solid #ddd;
}

.recent-news-card-sa {
    border-bottom: 4px solid #071d39;
}

.h-170 {
    max-height: 170px !important;
    height: 170px !important;
}

.single-crypto-price a {
    display: flex;
    align-items: center;
    gap: 5px;
}

.crypto-up-down {
    background-color: transparent !important;
    margin-right: 5px;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    height: 0;
    width: 0;
}
.crypto-up-down.crypto-down {
    color: #dc3545 !important;
    border-top: 13px solid #dc3545;
}
.crypto-info-sa .crypto-name-sa {
    font-size: 14px;
    font-weight: 700;
    color: #1c1c1c;
}
.crypto-info-sa .crypto-name-sa:hover {
    color: var(--dark-green);
}
.crypto-info-sa .cryptoAmont {
    color: #1c1c1c;
    font-size: 20px;
    font-weight: 700;
}

.crypto-market-status .crypto-percantage {
    color: #1c1c1c;
    font-size: 16px;
    font-weight: 700;
}

.single-crypto-price .icon {
    width: 90px;
}

.more-post-btn button {
    min-width: 77px;
    font-size: 15px;
    font-weight: 700;
    height: 40px;
    padding: 0 10px;
    background-color: #fff;
    color: #316ade;
    border-color: #316ade;
    transition: 0.3s;
    border: 2px solid;
}
.more-post-btn button:hover {
    background: var(--dark-green);
    border-color: var(--dark-green);
    color: #fff;
}

.ads-card-one-sa {
    height: 200vh;
}
.ads-card-body a {
    position: sticky;
    top: 0;
    display: block;
}

.ads-card-two-sa {
    position: sticky;
    top: 0;
}

/*========= site footer style start hare ======== */

.site-footer {
    padding: 20px 0;
    background: #00349D;
    color: #fff;
}
.site-footer-wrapper .footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px;
    border-bottom: 1px solid #002f6c;
    margin-bottom: 30px;
}

.footer-logo img {
    max-width: 150px;
    width: 184px;
}
.footer-logo,
.app-download-links,
.footer-social-list {
    flex: 1;
}

.app-download-links a {
    width: 100px;
}

.footer-social-list ul {
    gap: 16px;
    margin-right: auto;
    justify-content: end;
}
.footer-social-list ul i {
    font-size: 18px;
}

.footer-links li a {
    color: #fff;
    text-decoration: none;
    padding: 5px 0;
    display: block;
    font-size: 12px;
    font-weight: 700;
}
.footer-links li a:hover {
    color: var(--dark-green);
}

.subscribe-wp-sa h3 {
    margin-bottom: 25px;
    font-size: 20px;
    font-weight: 700;
}

.subscribe-wp-sa form {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.subscribe-wp-sa form input {
    background: #316ade;
    border: 1px solid #002f6c;
    font-weight: 700;
    color: #fff;
    border-radius: 0;
    font-size: 10px;
    text-align: left;
    height: 40px;
    padding: 5px;
}
.subscribe-wp-sa form input::placeholder {
    color: #fff;
}

.subscribe-wp-sa form button {
    width: 111px;
    height: 40px;
    padding: 3px 5px;
    margin-top: 20px;
    background-color: #316ade;
    border: none;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    transition: 0.3s;
}
.subscribe-wp-sa form button:hover {
    background: var(--dark-green);
    color: #000;
}

.footer-bottom-wrapper {
    padding: 20px 0;
    margin-top: 90px;
}

.footer-bottom-wrapper p {
    font-size: 10px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
}

/* infographic section style  */

.inforgraphic-section-sa {
    background: #edeff3;
    padding: 37px 0 50px;
    color: #1c1c1c;
}

.titlebar-sa a {
    font-size: 32px;
    font-weight: 900;
    color: #36B041;
}
.titlebar-sa a:hover {
    color: var(--dark-green);
}

.inforgraphic-list-sa ul li {
    display: flex;
    align-items: start;
    gap: 15px;
}
.inforgraphic-list-sa ul li img {
    max-width: 190px;
}
.inforgraphic-list-sa ul li a {
    font-size: 15px;
    color: #316ade;
    font-weight: 700;
}
.inforgraphic-list-sa ul li a:hover {
    color: var(--dark-green);
}

.inforgraphic-list-sa ul {
    display: flex;
    flex-direction: column;
    gap: 25px;
    height: 100%;
    justify-content: space-between;
}

/*========= editor pick slider style ====== */

.editor-picks-section {
    padding: 50px 0;
}
.slider-header-wp h2 {
    font-size: 32px;
    font-weight: 900;
    color: #36B041;
}

.slider-control-btns button {
    background: transparent;
    border: none;
    font-size: 45px;
}
.slider-control-btns button:disabled {
    opacity: 0.4;
}
.picks-slider {
    overflow: hidden;
    padding: 25px 0;
}

.single-edit-picks .video-card-sa {
    border-top: 5px solid var(--dark-green);
    position: relative;
}

.single-edit-picks .video-btn-duration {
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.video-btn-duration button {
    border: none;
    width: 30px;
    height: 30px;
    border: 2px solid #36B041;
    background: var(--dark-green);
    color: #fff;
}
.video-btn-duration h4 {
    padding: 0 5px;
    font-size: 15px;
    font-weight: 500;
    color: #fff;
}

.single-edit-picks {
    position: relative;
}
.single-edit-picks .edit-pick-title {
    position: absolute;
    left: 0;
    width: 100%;
    background-image: linear-gradient(0deg, #071d39eb 30%, #071d3900);
    padding: 20px;
    position: absolute;
    bottom: 0;
}
.edit-pick-title h4 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    text-align: right;
}
.edit-pick-title h4 a:hover {
    color: var(--dark-green);
}

.picks-thumb img {
    height: 240px;
    object-fit: cover;
    width: 100%;
}

.picks-thumb.video-card-sa img {
    height: 234px;
}










/* Popup */
.video-popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 518px;
    background: white;
    padding: 0;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    border-radius: 10px;
    overflow: hidden;
    overflow-y: auto;
    height: 97vh;
}

/* Overlay */
.video-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999;
}

/* Close Button */
.video-close-btn {
    font-size: 14px;
    cursor: pointer;
    background: var(--dark-green);
    color: white;
    border: none;
    padding: 5px 8px;
    border-radius: 5px;
    line-height: 100%;
}

/* Swiper Container */
.video-slider-container {
    width: 77%;
    height: 100%;
}

/* Video Container */
.video-slide-item {
    position: relative;
}

.video-slide-item video {
    width: 100%;
    height: 700px;
    border-radius: 10px;
    object-fit: cover;
    object-position: center;
}

/* Hide Video Controls */
.video-slide-item video::-webkit-media-controls {
    display: none !important;
}

.video-slide-item video::-webkit-media-controls-enclosure {
    display: none !important;
}

.video-slide-item video::-webkit-media-controls-panel {
    display: none !important;
}

/* Mute Button */
.mute-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid #ddd;
}

.video-pop-inner {
    padding: 20px;
    position: relative;
}

.video-pop-slider-btn {
    background: transparent;
    border: 1px solid var(--dark-green);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    position: absolute;
    z-index: 10;
}
.video-pop-slider-btn i {
    color: var(--dark-green);
}
.video-pop-slider-btn.slider-prev-btn {
	right: 24px;
	top: 50%;
}
.video-pop-slider-btn.slider-next-btn {
	left: 24px;
	top: 50%;
}

.video-details-hare h2 {
    font-size: 24px;
    font-weight: 900;
    color: #1C1C1C;
}
.video-details-hare h4,
.video-details-hare p {
    font-size: 16px;
    font-weight: 700;
    color: #808080;
}
.video-details-hare p {
    padding-top: 15px;
}
.video-details-hare a {
    font-size: 16px;
    color: #00349D;
    font-weight: 700;
}
.video-details-hare {
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding-top: 15px;
}