@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@400;500;600;700&display=swap');


h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
var,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video,
ul,
ol,
li {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    font-weight: normal;
    vertical-align: top;
    background: transparent;
    list-style: none;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

html,
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
	scroll-behavior: smooth;
}

body {
    font-family: "Barlow", sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 26px;
    color: #1e202a;
    padding: 0;
    margin: 0;
    text-size-adjust: none;
    -webkit-text-size-adjust: none;
    height: 100%;
    overflow-x: hidden;
}

*,
:after,
:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
}

img {
    display: block;
    max-width: 100%;
}
b, strong{
	font-weight: 700;
}

a {
    text-decoration: none;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    padding: 0;
    outline: none;
}

a,
span {
    display: inline-block;
}

ul {
    list-style: none;
}

a:hover {
    color: #4A6FD4;
}

h1,
.h1 {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.25;
    font-family: 'Barlow', sans-serif;
}

h1 a {
    color: #1e202a;
}

h2,
.h2 {
    font-size: 22px;
    font-weight: 600;
    line-height: 28px;
    letter-spacing: -0.2px;
    font-family: 'Barlow', sans-serif;
}

h3,
.h3 {
    font-size: 17px;
    font-weight: 600;
    line-height: 21px;
    letter-spacing: -0.2px;
    font-family: 'Barlow', sans-serif;
}

h4,
.h4 {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.2;
    text-transform: none;
    font-family: 'Barlow', sans-serif;
}

h5,
.h5 {
    font-size: 12px;
    font-weight: 500;
    line-height: 15px;
    font-family: 'Barlow', sans-serif;
}

p {
    font-size: 17px;
    line-height: 25px;
    font-weight: 400;
    font-family: 'Barlow', sans-serif;
}

h1:last-child,
.h1:last-child,
h2:last-child,
.h2:last-child,
h3:last-child,
.h3:last-child,
h4:last-child,
.h4:last-child,
h5:last-child,
.h5:last-child,
h6:last-child,
.h6:last-child,
p:last-child {
    margin-bottom: 0 !important;
}

#wrapper{
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    flex-direction: column;
    flex-direction: column;
    min-height: 100vh;

}
.container {
    max-width: 1500px;
    width: 100%;
    margin: 0 auto;
    padding-left: 50px;
    padding-right: 50px;
    position: relative;
}
.container.sm-container{
  max-width: 650px;
}

.md-container {
    max-width: 950px;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.mb-28 {
    margin-bottom: 28px;
}

.mt-20 {
    margin-top: 20px;
}

.relative {
    position: relative;
}

.flex {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
}

.space-between {
    justify-content: space-between;
    -webkit-justify-content: space-between;
    -ms-justify-content: space-between;
}

.justify-center {
    justify-content: center;
    -webkit-justify-content: center;
    -ms-justify-content: center;
}

.align-center {
    align-items: center;
    -webkit-align-items: center;
    -ms-align-items: center;
}
.flex-start {
    align-items: flex-start;
    -webkit-align-items: flex-start;
    -ms-align-items: flex-start;
}

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

/* Base Input and Textarea */
textarea,
input[type="text"],
input[type="email"],
input[type="reset"],
input[type="url"],
input[type="search"],
input[type="password"],
input[type="tel"]{
    width: 100%;
    border: 1px solid #a9a9a9;
    background-color: #fff;
    padding: 14px;
    font-size: 14px;
    color: #1E202A;
    font-family: 'Barlow', sans-serif;
    box-shadow: none;
    text-shadow: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

textarea:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus{
    border-color: #4d4d4d;
    outline: none;
    background-color: #fff;
}

input:not(:placeholder-shown) {
    border-color: #4d4d4d;
}

/* Error state */
.input-error {
    border-color: #E74C3C !important;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.2);
}

/* Textarea specific */
textarea {
    height: 150px;
    resize: none;
}

/* Smooth transitions for everything */
input,
textarea {
    transition: all 0.3s ease;
}

/* project css */
.header {
    width: 100%;
    position: relative;
}

.header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(90deg, #4a6fd4 0%, #A2F4BE 100%);
}


/* Prevent body scroll when menu is open */
body.lock {
  overflow: hidden;
}


.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0 16px 0;
    border-bottom: 1px solid #1E202A;
}

.header .logo {
    font-weight: 700;
    text-decoration: none;
}

.header .logo img {
    width: 180px;
}

nav .menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
	flex-flow: row wrap;
}

nav .menu li a {
    text-decoration: none;
    font-size: 17px;
    padding: 5px 15px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    line-height: 50px;
    font-weight: 500;
    color: #1E202A;
}

nav .menu li.active a,
nav .menu li.current-menu-item a,
nav .menu li a:hover {
    color: #4A6FD4;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #000;
    font-size: 2rem;
    cursor: pointer;
    padding: 5px;
    transition: transform 0.3s ease;
    z-index: 1001;
}

.menu-toggle.open {
    transform: rotate(90deg);
}

.site-tagline {
    padding-left: 10px;
    font-size: 12px;
    text-transform: uppercase;
    max-width: 130px;
    line-height: 1.2;
    display: inline-block;
}

.hamburger-menu {
    display: none;
    transition: all 0.3s ease-in-out;
}

.hamburger-menu:hover {
    cursor: pointer;
}

.hamburger-menu .menu-item {
    background: black;
	display: block;
	height: 3px;
	margin: 0 0 5px;
	transition: all 0.3s ease-in-out;
	width: 30px;
}

.hamburger-menu.open .menu-item {
    margin: 0 0 5px;
}

.post-slider {
    padding: 23px 0 26px 0;
}

.post-slider .title {
    padding-bottom: 9px;
	padding-right: 60px;
}

.post-slider .slider-btn {
    width: 80px;
    height: 25px;
    position: absolute;
    top: 0;
    right: 40px;
}

.post-slider .slider-btn .swiper-button-next,
.post-slider .slider-btn .swiper-button-prev {
    margin: 0;
    width: 20px;
    height: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #000;
}

.post-slider .swiper-button-next::after,
.post-slider .swiper-button-prev::after {
    font-size: 20px;
    font-weight: 700;
    transition: all .3s ease-in-out;
}

.post-slider .swiper-button-next:hover::after,
.post-slider .swiper-button-prev:hover::after {
    color: #4A6FD4;
}

.share-label,
.tags-label {
    font-weight: 500;
    font-size: 12px;
    margin-right: 10px;
}

.social-links li {
    margin-right: 12px;
}

.social-links li a {
    vertical-align: middle;
}

.social-links img {
    width: 16px;
    height: 16px;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.social-links img:hover {
    opacity: 1;
}

.vote-buttons button {
    border: 1px solid #a9a9a9;
    background: #fff;
    padding: 5px 10px;
    cursor: pointer;
    font-size: 16px;
    border-right: none;
}

.vote-buttons .vote-count {
    display: block;
    border: 1px solid #a9a9a9;
    padding: 1.5px 11px;
    font-weight: 600;
    font-size: 14px;
}

.post-tags {
    align-items: center;
    padding: 25px 0;
    border-bottom: 1px dotted #a9a9a9;
}

.tags-list li {
    margin-right: 10px;
}

.tags-list a,
.tags-list span{
    display: inline-block;
    border: 1px solid #a9a9a9;
    padding: 2px 20px;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.5px;
    color: #1e202a;
    transition: all 0.3s ease;
}

.tags-list a:hover,
.tags-list span:hover{
    background: #1e202a;
    color: #fff;
    border-color: #1e202a;
}
.next-previos-btn{
    padding: 25px 0;
}
.next-previos-btn a{
    padding: 5px 20px;
    background-color: #FFF;
    color: #1E202A;
    font-weight: 400;
    font-size: 14px;
    border: 1px solid #a9a9a9;
}
.next-previos-btn a:hover{
	background-color: #1E202A;
    color: #FFF;
}
.addtoany_list a, .widget .addtoany_list a{
	line-height:normal;
	display:block;
}
.share-left .addtoany_list a span{
	display:block !important;
}
.share-left .addtoany_list{
	vertical-align:middle;
}
.post-meta-bottom .post-comments form{
	margin:0 -6px;
}
.post-meta-bottom .post-comments .comment-form-comment,
.post-meta-bottom .post-comments .comment-notes,
.post-meta-bottom .post-comments .comment-form-cookies-consent,
.post-meta-bottom .post-comments .form-submit,
.post-meta-bottom .post-comments .logged-in-as{
	padding:0 6px;
}
.post-meta-bottom .post-comments .comment-form-author,
.post-meta-bottom .post-comments .comment-form-email,
.post-meta-bottom .post-comments .comment-form-url{
	width: calc(33.33% - 12px);
    margin: 0 6px 12px 6px;
    float: left;
	padding:0;
}
.post-meta-bottom .post-comments .submit{
	background: #1E202A;
   	padding: 14px 18px;
    font-size: 16px;
    color: #FFF;
	cursor:pointer;
	border:1px solid #1E202A;
	transition:all .3s ease-in-out;
}
.post-meta-bottom .post-comments .submit:hover{
	background: #4a6fd4;
	border-color:#4a6fd4;
}
.post-meta-bottom .post-comments .comment-notes,
.post-meta-bottom .post-comments .logged-in-as{
	margin: 12px 0px 20px;
}
.post-meta-bottom .post-comments .logged-in-as a{
	color:#4a6fd4;
}
.post-meta-bottom .post-comments .logged-in-as a:hover{
	color:#1E202A;
}




/*  footer  */
footer .footer-top {
    padding: 85px 0;
    border-top: 1px solid #1e202a;
    border-bottom: 1px solid #1e202a;
}

.fotter-content .colum {
    width: 50%;
    padding-right: 20px;
}

.footer-right h2 {
    letter-spacing: -0.7px;

}

.footer-right ul li a {
    font-size: 17px;
    letter-spacing: -0.2px;
    line-height: 21px;
    font-weight: 600;
    color: #1e202a;
    margin-bottom: 8px;
}

.footer-right ul li a:hover {
    color: #4a6fd4;
}

.copy-right {
    padding: 28px 0;
}

.copy-right p {
    font-size: 12px;
    line-height: 22px;
    font-weight: 400;
}




/* new css */

.news-feature-block {
    align-items: flex-start;
    margin-left: -15px;
    margin-right: -15px;
    margin-bottom: 64px;
}

.news-post-content h2 a {
    color: #1e202a;
}

.news-post-content h2 a:hover {
    color: #7d7d7d;
}

.news-post-content p {
    margin-bottom: 12px;
}

.post-info-date a,
.post-info-date span {
    color: #000000;
    font-family: 'Barlow', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

.post-info-date a img,
.post-info-date img {
    vertical-align: text-bottom;
    margin-right: 4px;
    display: inline-block;
}

.news-feature-block .left-content {
    width: 75%;
    padding: 0 15px;
}

.news-feature-block .right-content {
    width: 25%;
    position: sticky;
    top: 10px;
    padding: 0 15px;
}

.news-item {
    position: relative;
}

.news-post-list,
.news-post-list-inner-holder {
    margin-left: -15px;
    margin-right: -15px;
}

.news-post-list-inner-holder .news-post-image {
    padding: 0 15px;
    margin-bottom: 12px;
}

.news-post-list-inner-holder .news-post-image .post-info {
    flex-direction: column;
}

.news-post-list-inner-holder .news-post-image a.post-img {
    width: 40px;
    margin-right: 12px;
    padding: 4px;
    border: 1px solid #a9a9a9;
    border-radius: 5px;
	display: flex;
  justify-content: center;
  align-items: center;
	height: fit-content;
	min-height: 40px;
}

.posts-catagory-title {
    margin-bottom: 20px;
    font-weight: 500;
}

.news-post-list-inner-holder .news-layout2-item .news-post-image {
    padding-right: 20px;
    display: flex;
}

.post-top-content {
    display: flex;
}

.news-post-list-inner-holder .post-info-category {
    color: #1e202a;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.2;
}

.post-info-date {
    line-height: 1.2;
    margin-bottom: 0;
}


.catagory-card h4 {
	line-height: 1.7;
	padding-bottom: 10px;
	border-bottom: 1px dotted #a9a9a9;
	margin-bottom: 8px;
}

.catagory-card ul li a {
    font-size: 15px;
    line-height: normal;
    color: #1E202A;
    transition: all 0.3s ease;
    display: block;
    padding-top: 8px;
    padding-bottom: 8px;
    position: relative;
}

.catagory-card ul li a::before {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    background-image: url(../images/right-arrow.svg);
    background-position: center;
    background-repeat: no-repeat;
}

.catagory-card ul li a:hover {
    color: #4A6FD4;
}

.news-post-list-inner-holder .news-layout2-item .news-post-content {
    flex-grow: 1;
    width: min-content;
}

.news-post-list-inner-holder .news-layout2-item h2 {
    margin-top: 0;
    margin-bottom: 4px;
}


.pagination-btn-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    margin: 20px 0 30px;
    text-align: center;
}

.btn {
    display: block;
    padding: 10px;
    background-color: #4A6FD4;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: -0.2px;
    transition: background-color 0.3s ease;
    width: 100%;
    border: 1px solid #4A6FD4;
    cursor: pointer;
}

.pagination-btn-wrapper .btn {
    padding: 14px 20px;
    background-color: transparent;
    color: #4a6fd4;
    border: 1px solid #4a6fd4;
}

.btn:hover,
.pagination-btn-wrapper .btn:hover {
    background-color: #1e202a;
    color: #fff;
    border-color: #1e202a;
}

.t-score-img {
    margin-bottom: 42px;
}

.news-layout1-block {
    padding-left: 23px;
    border-left: 1px dotted #a9a9a9;
}

.news-layout1-block .title {
    margin-bottom: 0;
    border-bottom: 1px dotted #a9a9a9;
}
.news-post-sec{
    padding-top: 40px;
}
.news-post-sec .title {
    margin-bottom: 20px;
}


.category-list .layout1-item {
    padding-top: 25px;
    padding-bottom: 20px;
    border-bottom: 1px dotted #a9a9a9;
    position: relative;
    display: block;
    color: #1e202a;
    transition: all .3s ease-in-out;
    /* ✅ fixed */
}

.category-list .layout1-item:first-of-type {
    padding-top: 0;
    /* ✅ works even if other elements appear before it */
}

.category-list .layout1-item:last-child {
    border-bottom: none;
    margin-bottom: 0px;
}


.layout1-item-tag {
    margin-bottom: 8px;
	justify-content: space-between;
}

.category-list .layout1-item .tag {
    background: #4A6FD4;
    color: #fff;
    padding: 6px 8px;
    line-height: normal;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    margin-right: 10px;

}

.category-list .layout1-item h4 a:hover {
    color: #4A6FD4;
}

.category-list .layout1-item h4 a {
    color: #1e202a;
}

.category-list .layout1-item h5 {
    margin-top: 8px;
    font-size: 12px;
    font-weight: 400;
}

.more-category-btn {
    text-align: center;
    padding: 5px 10px;
}

.news-post-sec .news-layout1-block,
.news-detail-sec .news-layout1-block {
    padding-left: 0;
    border-left: none;
}

.news-detail-sec {
    padding-top: 28px;
}

.news-detail-sec .news-post .news-post-content {
    padding: 0 120px;
}

.news-detail-sec .news-post .news-post-content h2 {
    margin-top: 30px;
}

.post-meta-bottom {
    padding-top: 30px;
}

.post-share {
    justify-content: space-between;
    padding-bottom: 20px;
    border-bottom: 1px dotted #a9a9a9;
}

.share-label,
.tags-label {
    font-weight: 500;
    font-size: 12px;
    margin-right: 10px;
}

.social-links li {
    margin-right: 12px;
}

.social-links li a {
    vertical-align: middle;
}

.social-links img {
    width: 16px;
    height: 16px;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.social-links img:hover {
    opacity: 1;
}

.vote-buttons button {
    border: 1px solid #a9a9a9;
    background: #fff;
    padding: 5px 10px;
    cursor: pointer;
    font-size: 16px;
    border-right: none;
}

.vote-buttons .vote-count {
    display: block;
    border: 1px solid #a9a9a9;
    padding: 1.5px 11px;
    font-weight: 600;
    font-size: 14px;
}

.post-tags {
    align-items: center;
    padding: 25px 0;
    border-bottom: 1px dotted #a9a9a9;
}


/***** latest news ******/
.news-post-sec .news-item {
    border-top: 1px dotted #a9a9a9;
    padding-top: 30px;
    padding-bottom: 20px;
}

.news-post-sec .news-item:last-child {
    border-bottom: none;
	padding-bottom: 10px;
}

.tags-list li {
    margin-right: 10px;
	margin-bottom: 5px;
}

.tags-list a,
.tags-list span {
    display: inline-block;
    border: 1px solid #1E202A;
    padding: 2px 10px;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: #1e202a;
    transition: all 0.3s ease;
    cursor: pointer;
}

.tags-list a:hover,
.tags-list span:hover,
.tags-list span.active {
    background: #1e202a;
    color: #fff;
    border-color: #1e202a;
}

.totle-post {
    font-size: 12px;
    letter-spacing: .4px;
    line-height: 2.3;
    margin-top: 8px;
    margin-bottom: 20px;
}

.totle-post span {
    font-weight: 700;
}

.next-previos-btn {
    padding: 25px 0;
}

.next-previos-btn a {
    padding: 5px 20px;
    background-color: #f6f6f6;
    color: #c8c7c8;
    font-weight: 700;
    font-size: 14px;
}

.news-post-sec .page-ttl {
    margin-bottom: 0;
}

.news-post-sec h1,
.private-credit-sec h1{
    text-transform: uppercase;
    margin-bottom: 8px;
}

.news-post-sec .news-post-content p {
    margin-bottom: 24px;
}

.news-post-list-inner-holder {
    padding-left: 15px;
    padding-right: 15px;
}

.news-post-list-inner-holder .news-layout2-item .news-post-image {
    padding-left: 0;
}

.news-post-sec p {
    margin-bottom: 20px;
}

.category-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    font-family: 'Inter', sans-serif;
}

.post-detail-text {
    font-size: 14px;
    font-weight: 400;
    justify-content: flex-end;
}

.post-detail-text a {
    color: #1E202A;
    transition: all 0.3s ease;
}

.post-detail-text a:hover {
    color: #4A6FD4;
}

.post-detail-text a img {
    display: inline-block;
    vertical-align: middle;
    margin-left: 4px;
}

/* Rounded tag buttons */
.tag-btn {
    border: 1px solid #4A6FD4;
    color: #4A6FD4;
    background: transparent;
    border-radius: 9999px;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: -0.04px;
    padding: 7px 12px 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1.2;
    text-transform: uppercase;
	margin-right: 4px;
	margin-bottom: 4px;
}

.tag-btn:hover,
.tag-btn.active{
    background: #4A6FD4;
    color: #fff;
}

/* "+N more" text */
.more-tags {
    color: #8b8b8b;
    font-size: 14px;
    font-weight: 500;
    margin-left: 4px;
}
.podcast-block{
    align-items: center;
	flex-flow: inherit;
	justify-content: end;
}
.podcast-block a {
    color: #FFF;
    background: #1E202A;
    padding: 3px 13px 3px 30px;
    display: flex;
    gap: 4px;
    align-items: center;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: -0.04px;
    text-transform: uppercase;
    position: relative;
    transition: all .3s ease-in-out;
}

.podcast-block a:hover,
.podcast-block button:hover {
    background: #4A6FD4;
    color: #FFF;
}

.podcast-block button {
    transition: all .3s ease-in-out;
    background: #1e202a;
    border: none;
    cursor: pointer;
    border-radius: 100%;
    height: 32px;
    width: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 4px;
}

.podcast-block a.podcast-btn::after,
.podcast-block a.article-btn::after,
.podcast-block a.video-btn::after{
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 13px;
    height: 14px;
    width: 14px;
}

.podcast-block a.podcast-btn::after {
    background-image: url(https://staging.payout.ai/wp-content/uploads/2025/11/microphone-2.svg);
}

.podcast-block a.article-btn::after {
    background-image: url(https://staging.payout.ai/wp-content/uploads/2025/11/document-Text.svg);
}
.podcast-block a.video-btn::after {
    background-image: url(https://staging.payout.ai/wp-content/uploads/2025/11/play.svg);
}

.pupular-tags {
    margin-top: 16px;
}

.news-post-sec .catagory-layout .title {
    margin-bottom: 20px;
    padding-bottom: 16px;
    margin-top: 16px;
}

.news-post-sec .catagory-layout .title:first-child h4 {
    font-weight: 600;
}

.news-post-sec .catagory-layout .title h4 {
    font-weight: 500;
}

.news-post-sec .catagory-layout .title:first-child {
    margin-top: 0;
}





.hidden-tag {
  display: none;
}
.topic-card {
	margin-bottom:20px;
	padding-bottom:16px;
	border-bottom:1px dotted #a9a9a9
}
.topic-card .topic-title{
	margin-bottom:16px;
}
.topic-card .show-more-tags{
	font-size:14px;
	color:#1e202a;
	margin-top:12px;
}
.topic-card .show-more-tags a {
	color: #4A6FD4;
	font-weight:500;
}
.topic-card .show-more-tags a:hover {
    color:#1e202a;
}
/* private-credit */
.private-credit-sec {
    padding-top: 40px;
    padding-bottom: 40px;
}

.private-credit-sec .title {
    border-bottom: 1px dotted #a9a9a9;
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.cradit-list-block h2 {
    margin-bottom: 20px;
}

.cradit-list-block ul {
    margin: 0 -15px;
}
.news-detail-sec .related-articles ul {
    margin-left: -10px;
    margin-right: -10px;
}

.cradit-list-block ul li {
    width: 25%;
    padding: 0 15px;
    margin-bottom: 30px;
}
.news-detail-sec .related-articles ul li {
    width: 33.33%;
    padding: 0 10px;
}

.cradit-list-block .list-content,
.news-detail-sec .related-articles .list-content {
    padding-top: 20px;
}

.cradit-list-block .list-img,
.cradit-list-block .news-post-img,
.news-detail-sec .related-articles .list-img {
	background:#4a6fd4;
	height:160px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.cradit-list-block .list-content h3,
.news-detail-sec .related-articles .list-content h3 {
    padding-top: 12px;
    padding-bottom: 4px;
}

.cradit-list-block .list-content p {
    margin-bottom: 16px;
}

.cradit-list-block .list-content h3 a {
    color: #1e202a;
}
.cradit-list-block .list-content h3 a:hover {
    color: #4A6FD4;
}
.educational-list{
	margin-bottom: 30px;
/* 	padding-bottom: 30px;
	border-bottom: 1px solid #1e202a; */
}
.lable-tag {
    background: #4A6FD4;
    color: #fff;
    padding: 6px 8px;
    line-height: normal;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    margin-right: 10px;
}

.lable-tag:hover {
    color: #fff;
}
.hidden-tags-container{
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 4px;
}
.filter-clear {
    font-size: 14px;
    color: #4A6FD4;
    cursor: pointer;
    font-weight: 600;
    line-height: 1.2;
}

.filter-clear:hover {
    color: #11379e;
}

.filter-link {
    margin-bottom: 12px;
}
.active-filter {
    padding: 10px 0 20px;
    border-top: 1px dotted #a9a9a9;
    margin-top: 10px;
}

.active-filter .filter-active-ttl {
    font-size: 12px;
    line-height: 1.2;
    margin-bottom: 0;
}

.filter-tags .tag-btn {
    color: #FFFFFF;
    background: #4A6FD4;
    position: relative;
    padding-right: 24px;
}

.filter-tags .tag-btn::after {
    content: '×';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 4px;
    background: #FFFFFF;
    color: #4A6FD4;
    border-radius: 100%;
    width: 16px;
    height: 16px;
    font-size: 12px;
    line-height: 16px;
    text-align: center;
    cursor: pointer;
}

.news-detail-sec {
    padding-top: 28px;
}

.news-detail-sec .news-item {
    background: #4a6fd4;
    padding: 20px;
    border-radius: 8px;
}

.news-detail-sec .news-feature-block {
    margin-left: 0;
    margin-right: 0;
}

.news-detail-sec .news-post-list-inner-holder {
    margin-left: 0;
    margin-right: 0;
    padding: 0;
    margin-bottom: 30px;
}

.news-detail-sec .news-post-image a.post-img {
    width: 64px;
    height: 64px;
    background: white;
    border-color: #FFF;
}

.news-detail-sec .post-info-category {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
}


.news-detail-sec .post-info-date span img {
    filter: brightness(0) invert(1);
}

.news-detail-sec h1 {
    font-size: 30px;
    margin-bottom: 16px;
    color: #fff;
}

.news-detail-sec h1 a {
    color: #fff;
}

.news-detail-sec .post-info-date span {
    font-size: 14px;
    margin-top: 8px;
    color: #FFF;
}

.news-detail-sec .post-info-date span img,
.news-detail-sec .post-info-date img {
    width: 16px;
}

.news-detail-sec .tag-btn {
    border: 1px solid rgb(255, 255, 255, .3);
    color: #FFF;
}

.news-detail-sec .tag-btn:hover {
    background: #FFF;
    color: #4A6FD4;
}
.tags-wrapper{
	padding-top: 20px;
	margin-top: 30px;
	border-top: 1px dotted #a9a9a9;
}
.tags-wrapper h3{
	margin-bottom:14px;
}
.news-detail-sec .tags-wrapper .tag-btn {
    border: 1px solid #4A6FD4;
    color: #4A6FD4;
}
.news-detail-sec .tags-wrapper .tag-btn:hover{
	border: 1px solid #4A6FD4;
	color: #FFF;
	background: #4A6FD4;
}

.news-detail-sec .category-tags {
	margin-bottom: -4px;
}

.news-detail-sec .news-odio {
    background: #FFF;
    color: #4A6FD4;
    padding: 12px 24px;
    cursor: pointer;
    border: 1px solid #4A6FD4;
    border-radius: 4px;
    margin-top: 16px;
    gap: 8px;
    font-weight: 600;
    transition: all .3s ease-in-out;
}

.news-detail-sec .news-odio:hover {
    background: #4A6FD4;
    color: #FFF;
    border-color: #FFF;
}

.news-detail-sec .news-detail-content-block.ai-post {
    padding: 20px;
    background-color: rgb(74, 111, 212, .08);
    border-left: 4px solid #4A6FD4;
    margin-bottom: 30px;
}

.news-detail-sec .news-detail-content-block p {
    margin-bottom: 24px;
}
.news-detail-sec .news-detail-content-block p a,
.news-detail-sec .news-detail-content-block ul li a{
    color: #4A6FD4;
    font-weight: 600;
}
.news-detail-sec .news-detail-content-block p a:hover,
.news-detail-sec .news-detail-content-block ul li a:hover{
    color: #1e202a;
}
.news-detail-sec .news-detail-content-block h2{
	margin-bottom:14px;
}
.news-detail-sec .news-detail-content-block h3,
.about-fund-content h3{
    margin-bottom: 12px;
}
hr{
	background: red;
	outline: none;
	height: 0px;
	border: .5px solid #a9a9a9;
	margin: 30px 0;
}
.news-detail-sec .news-detail-content-block h3,
.about-fund-content h3{
	font-size: 20px;
}
.news-detail-sec .news-detail-content-block ul,
.about-fund-content ul{
	margin-bottom:16px;
	list-style: disc;
	padding-left: 16px;
}
.news-detail-sec .news-detail-content-block ul li,
.about-fund-content ul li{
	margin-bottom:8px;
	list-style: disc;
}

.news-detail-sec .full-article {
    padding-top: 22px;
    border-top: 1px dotted #a9a9a9;
}

.news-detail-sec .full-article h2 {
    margin-bottom: 10px;
}

.news-detail-sec .full-article p {
    font-size: 14px;
    margin-bottom: 10px;
}

.news-detail-sec .full-article a.btn {
    text-align: center;
    display: inline-block;
    width: auto;
    padding: 14px 22px;
}

.news-detail-sec .related-articles {
    margin-top: 30px;
    margin-bottom: 30px;
    padding-top: 30px;
    border-top: 1px dotted #a9a9a9;
}
.news-detail-sec .related-articles:last-child {
    margin-botton: 0;
}

.news-detail-sec .post-sourse-wrapper {
    padding-top: 30px;
    border-top: 1px dotted #a9a9a9;
}
.news-detail-sec .post-sourse-wrapper h3 {
    margin-bottom: 10px;
}
.news-detail-sec .post-sourse {
    display: flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}
.news-detail-sec .post-sourse .img {
    width: 48px;
    height: 48px;
	min-width: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: white;
    padding: 4px;
    border: 1px solid #a9a9a9;
    border-radius: 4px;
}
.news-detail-sec .post-sourse .info {
    padding-left: 12px;
}
.news-detail-sec .post-sourse .source-name {
    display: block;
    width: fit-content;
    font-weight: 500;
    color: #1e202a;
}
.news-detail-sec .post-sourse .link {
    color: #4A6FD4;
}
.news-detail-sec .post-sourse .link:hover {
    color: #1e202a;
}

.news-detail-sec .related-articles h2 {
    margin-bottom: 20px;
}

.news-detail-sec .related-articles .post-info-category {
    color: #1e202a;
    font-size: 14px;
    line-height: normal;
    display: block;
    width: fit-content;
    font-weight: 500;
}

.news-detail-sec .related-articles .news-item {
    background: #FFF;
}
.news-detail-sec .related-articles .news-item .news-post-content {
    padding: 16px;
    border: 1px solid #e4e4e4;
    border-radius: 8px;
}

.news-detail-sec .related-articles .category-tags .tag-btn {
    padding: 7px 9px 5px;
}
.news-detail-sec .related-articles .article-list{
    margin-left: -10px;
    margin-right: -10px;
}
.news-detail-sec .related-articles .news-item {
    width: 33.33%;
    padding: 0 10px;
}

.news-detail-sec .related-articles .news-post-image {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}
.news-detail-sec .related-articles .news-item .post-img {
    width: 40px;
    height: 40px;
    background: white;
    padding: 4px;
    border: 1px solid #a9a9a9;
    border-radius: 4px;
    margin-right: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.news-detail-sec .related-articles .news-item .post-info-date span {
    color: #1e202a;
    font-size: 12px;
    margin-top: 0;
}
.news-detail-sec .related-articles .news-item .post-info-date span img{
    filter: none;
    width: 14px;
}
.news-detail-sec .related-articles .news-item p,
.news-detail-sec .related-articles .list-content p {
    font-size: 14px;
    line-height: 1.2;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
.news-detail-sec .related-articles .list-content p {
    margin-bottom: 12px;
}
.news-detail-sec .related-articles .news-item h3{
    margin-top: 12px;
    margin-bottom: 12px;
}
.news-detail-sec .related-articles .news-item h3 a,
.news-detail-sec .related-articles .list-content h3 a {
    color: #1e202a;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
.news-detail-sec .related-articles .news-item h3 a:hover,
.news-detail-sec .related-articles .list-content h3 a:hover {
    color: #4A6FD4;
}

.news-detail-sec .related-articles .news-item .category-tags{
    margin-bottom: 8px;
}
.news-detail-sec .related-articles .news-item .tag-btn,
.news-detail-sec .related-articles .list-content .tag-btn {
    border: 1px solid #4A6FD4;
    color: #4A6FD4;
}
.news-detail-sec .related-articles .news-item .tag-btn:hover,
.news-detail-sec .related-articles .list-content .tag-btn:hover {
    border: 1px solid #4A6FD4;
    color: #FFF;
    background: #4A6FD4;
}

.news-detail-sec.pc-detail .news-post-list-inner-holder .news-item {
    overflow: hidden;
    height: 240px;
    padding: 0;
	display:flex;
	align-items: center;
	justify-content: center;
}
.news-detail-sec.pc-detail .news-post-list-inner-holder .news-item img {
    width: 100px;
    height: 100px;

}
.news-detail-sec.pc-detail .title {
    margin-bottom: 22px;
    padding-bottom: 22px;
    border-bottom: 1px dotted #a9a9a9;
}
.news-detail-sec.pc-detail .title .info {
    margin-bottom: 10px;
    row-gap: 8px;
}
.news-detail-sec.pc-detail .post-info-date {
    margin-right: 10px;
}
.news-detail-sec.pc-detail .post-info-date a,
.news-detail-sec.pc-detail .post-info-date span {
    margin: 0;
    font-size: 12px;
    color: #000;
}
.news-detail-sec.pc-detail h1 {
    color: #1e202a;
}

.back-feed-btn {
    margin-bottom: 20px;
}

.back-feed-btn a {
    color: #1e202a;
    font-weight: 500;
    font-size: 16px;
    padding-left: 20px;
    position: relative;
}

.back-feed-btn a::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%) rotate(180deg);
    left: 0px;
    height: 14px;
    width: 14px;
    background-image: url(../images/right-arrow.svg);
    background-position: center;
    background-repeat: no-repeat;
    transition: all .3s ease-in-out;
}

.back-feed-btn a:hover {
    color: #4A6FD4;
}

.back-feed-btn a:hover::after {
    filter: invert(39%) sepia(81%) saturate(2643%) hue-rotate(203deg) brightness(95%) contrast(97%);
    left: -2px;
}


.podcast-wrapper {
    padding-top: 40px;
    padding-bottom: 20px;
}

.podcast-title-box {
    background: #4a6fd4;
    padding: 30px 20px;
    border-radius: 8px;
    color: #FFFFFF;
}

.podcast-title-box .title-img {
    width: 64px;
    height: 64px;
    margin-left: auto;
    margin-right: auto;
    background: #FFFFFF;
    padding: 4px;
    border: 1px solid #FFFFFF;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 16px;
}

.podcast-title-box .title-img img {
    width: 40px;
    height: 40px;
}

.podcast-title-box h1 {
    margin-bottom: 4px;
}

.podcast-wrapper .podcast-content {
    padding: 20px 0;
}

.podcast-wrapper .podcast-content p {
    margin-bottom: 16px;
}

.podcast-recent-episodes .recent-episodes-title {
    margin-bottom: 16px;
    margin-top: 20px;
}

.podcast-recent-episodes .episodes-list .title {
    margin-bottom: 4px;
}

.podcast-recent-episodes .episodes-list .title h3 {
    font-size: 20px;
}
.podcast-recent-episodes .episodes-list .title h3 a{
	color: #1e202a;
}
.podcast-recent-episodes .episodes-list .title h3 a:hover{
	color: #7d7d7d;
}


.podcast-recent-episodes .episode-date {
    margin-bottom: 10px;
}

.podcast-recent-episodes .episode-date span {
    font-size: 14px;
    display: inline-block;
    display: flex;
    align-items: center;
}

.podcast-recent-episodes .episode-date span img {
    margin-right: 4px;
}

.podcast-recent-episodes .episode-date span.date {
    margin-right: 10px;
}

.podcast-recent-episodes .list-item {
    margin-bottom: 24px;
    border-top: 1px dotted #a9a9a9;
    padding-top: 20px;
}
.podcast-recent-episodes .list-item:last-child{
    padding-bottom: 30px;
    margin-bottom: 0;
}

.podcast-recent-episodes .list-item .btn {
    text-align: center;
    display: inline-flex;
    width: auto;
    padding: 10px 22px;
}

.podcast-recent-episodes .list-item .btn img {
    margin-right: 8px;
}
.subscribe-block h2{
    font-size: 20px;
}
.subscribe-block .category-tags .tag-btn{
    padding: 9px 12px 7px;
}
.podcast-wrapper .pagination-btn-wrapper{
	margin:0;
}
.subscribe-block{
	padding-top: 20px;
  border-top: 1px dotted #a9a9a9;
}
.wpcf7-form{
	padding-bottom:20px;
}
.form-title h2{
	margin-bottom:4px;
}
.form-title {
	margin-bottom: 20px;
	padding-top: 20px;
	border-top: 1px dotted #a9a9a9;
}
.form-list{
	display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
	margin: 0 -8px;
	
}
.form-list p{
	padding: 0 8px;
	padding-bottom: 16px;
}
.fund-form .form-list p{
	width: 33.33%;
}
.textarea-block .wpcf7-form-control-wrap{
	display: block;
}
.fund-form .submit{
	margin-top:20px;
	width: fit-content;
	position: relative;
}
.submit .wpcf7-submit{
	padding: 14px 40px;
	border: 1px solid #1e202a;
	background: #1e202a;
	color:#FFF;
	cursor: pointer;
	transition: all .3s ease-in-out;
	outline: none;
	width:100%;
}
.submit .wpcf7-submit:hover{
	background: #4A6FD4; 
	border-color: #4A6FD4;
}

.newsletter-form{
	margin: 0 -8px;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-flow: row wrap;
	flex-flow: row wrap;
}
.newsletter-form p{
	padding: 0 8px;
  	padding-bottom: 8px;
	width: 35%;
}
.newsletter-form p:last-child{
	position: relative;
	width: 30%;
}
.wpcf7-form-control-wrap {
	display: block;
}



.wpcf7-form .wpcf7-spinner {
	display: none;
	margin: 0 0 0 4px;
}
.wpcf7-form.submitting .wpcf7-spinner {
	display: block;
}
.wpcf7-spinner {
	position: absolute;
	right: 0;
	margin: 0;
	top: 0;
	transform: translateX(120%);
	width: 12px;
	height: 12px;
}
.wpcf7-spinner::before {
  top: 2px;
  left: 2px;
  width: 4px;
  height: 4px;
  transform-origin: 4px 4px;
}
.wpcf7-not-valid-tip, .error-message {
	margin-top: 2px;
	font-size: 12px;
	color: #FF2C2C;
}
.wpcf7 form .wpcf7-response-output {
	background-color: #4BB543;
	color: #ffffff;
	border: none;
	margin: 12px 0 0 0;
	padding: 8px 24px;
	font-size: 14px;
	font-weight: 500;
	border: 0;
	line-height: 1.4;
}
.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output, .wpcf7 form .wpcf7-response-output.wpcf7-validation-errors {
	background-color: #FF2C2C;
	color: #ffffff;
}


.newslatter-wrapper .icon-item-list {
    margin: 0 -13px;
	margin-top: 20px;
}

.newslatter-wrapper .icon-item-list .icon-item {
    width: 33.33%;
    padding: 0 13px;
    margin-bottom: 30px;
    text-align: center;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.newslatter-wrapper .icon-item-list .icon-item .icon {
    width: 50px;
    height: 50px;
    background: rgb(74, 111, 212, .08);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    margin-bottom: 10px;
}
.newslatter-wrapper .icon-item-list .icon-item .icon img{
	width: 20px;
}

.newslatter-wrapper .icon-item-list .icon-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.newslatter-wrapper .icon-item-list .icon-item p {
    font-size: 14px;
    line-height: 1.2;
}
.about-fund-content h2{
    margin-bottom: 8px;
}
.warning-block{
    background: #fffbeb;
    border-left: 4px solid #f59e0b;
    padding: 22px;
    margin-bottom: 10px;
	margin-top: 16px;
}
.warning-block p{
    font-size: 16px;
    line-height: 1.4;
}
.pagination-btn-wrapper .nav-links{
	text-align: center;
	font-size:0;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-flow: row wrap;
}
.pagination-btn-wrapper .nav-links .page-numbers{
	height:32px;
	min-width: 32px;
	padding: 0 12px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	font-size: 12px;
	font-weight:500;
	line-height: normal;
	transition: all .3s ease-in-out;
	color: #1e202a;
	margin: 0 4px;
	margin-bottom: 8px;
	cursor: pointer;
	background: rgb(30, 32, 42, .10);
	text-transform: uppercase;
	position: relative;
}
.pagination-btn-wrapper .nav-links .page-numbers.prev{
	padding:0 17px;
	padding-left: 30px;
}
.pagination-btn-wrapper .nav-links .page-numbers.next{
	padding:0 17px;
	padding-right: 30px;

}
.pagination-btn-wrapper .nav-links .page-numbers.prev::before,
.pagination-btn-wrapper .nav-links .page-numbers.next::before{
	content:'';
	position: absolute;
	top: 50%;
	height:14px;
	width:14px;
	background-image: url(../images/right-arrow.svg);
	background-position: center;
	background-repeat: no-repeat;
	transition: all .3s ease-in-out;
}
.pagination-btn-wrapper .nav-links .page-numbers.prev::before{
	transform: translatey(-50%) rotate(180deg);
	left:14px;
}
.pagination-btn-wrapper .nav-links .page-numbers.next::before{
	transform: translatey(-50%);
	right: 14px;
}
.pagination-btn-wrapper .nav-links .page-numbers.prev:hover::before,
.pagination-btn-wrapper .nav-links .page-numbers.next:hover::before{
	filter:	invert(39%) sepia(81%) saturate(2643%) hue-rotate(203deg) brightness(95%) contrast(97%);
}
.pagination-btn-wrapper .nav-links .page-numbers:hover{
	color:#4A6FD4;
}
.pagination-btn-wrapper .nav-links .page-numbers.current{
	background:#1E202A;
	color: #FFF;
}


/* .home-page .left-content > .title{
	padding-bottom:20px;
	margin-bottom: 30px;
	border-bottom: 1px dotted #a9a9a9;
} */
.today-news-grid {
	padding-top:20px;
	margin-top: 30px;
	border-top: 1px dotted #a9a9a9;
}
.layout-grid{
	margin: 0 -10px 0px;
}
.layout-grid .today-item{
	width: 33.33%;
	padding: 0 10px 20px;
}

.layout-grid .today-item .item-content{
	padding-top: 20px;
}
.layout-grid .today-item h2 {
	margin: 12px 0 4px 0 ;
}
.layout-grid .today-item h2 a{
	color: #1e202a;
}
.layout-grid .today-item h2 a:hover{
	color: #7d7d7d;
}
.layout-grid .today-item .today-thumb{
	display: block;
}
.layout-grid .today-item .today-thumb img{
	width: 100%;
}
.layout-grid .today-item a .item-tag{
	margin: 0;
}

.pulse-section {
	padding-bottom: 50px;
}
.pulse-section .title:first-of-type {
	padding-bottom: 20px;
	margin-bottom: 30px;
	border-bottom: 1px dotted #A9A9A9;
}
.pulse-section .title:first-of-type h2 {
	margin-bottom: 4px;
}
.pulse-section .date-info {
	margin-top: 20px;
}
.pulse-section .date-info p {
	margin-bottom: 0;
}
.pulse-section .date-info p:not(:last-child) {
	margin-right: 24px;
}
.pulse-section .story-content .content-left {
	width: 55%;
	padding-right: 30px;
}
.pulse-section .story-content .content-right {
	width: 45%;
	padding-left: 30px;
	border-left: 1px dotted #A9A9A9;
}
.pulse-section .story-list li {
	position: relative;
	z-index: 1;
}
.pulse-section .story-list li::before {
	content: '';
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 32px;
	height: 32px;
	background-color: #1E202A;
	border-radius: 100px;
	background-image: url("https://staging.payout.ai/wp-content/themes/payoutai/assets/images/export.svg");
	background-position: center;
	background-repeat: no-repeat;
	cursor: pointer;
	z-index: -1;
	transition: all .3s ease-in-out;
}
.pulse-section .story-list li:hover::before {
	background-color: #4A6FD4;
}
.pulse-section .story-list li a {
	display: block;
	color: #1E202A;
	font-weight: 600;
	padding: 16px 40px 16px 0;
	font-size: 18px;
}
.pulse-section .story-list li a:hover {
	color: #4A6FD4;
}
.pulse-section .story-list li:not(:last-child) {
	border-bottom: 1px dotted #A9A9A9;
}
.pulse-section .load-more-topic{
	width: fit-content;
	margin: 10px auto 0;
}
.pulse-section .load-more-topic span{
	color: #4A6FD4;
	font-weight: 500;
	cursor: pointer;
	transition: all .3s ease-in-out;
}
.pulse-section .load-more-topic span:hover{
	color: #1e202a;
}
.story-content {
	border-bottom: 1px dotted #A9A9A9;
	margin-bottom: 30px;
}
.pulse-section .content-block {
	padding-bottom: 30px;
}
.pulse-section .content-block h2 {
	margin-bottom: 16px;
}
.pulse-section .content-left h2 {
	margin-bottom: 0px;
}
.pulse-section .content-block p {
	margin-bottom: 20px;
}
.key-block > h3 {
	margin-bottom: 20px;
}
.key-block .list-group {
	margin: 0 -10px;
}
.key-block .list-group .list-item {
	width: calc(33.33% - 20px);
	margin-left: 10px;
	margin-right: 10px;
	padding-bottom: 30px;
	margin-bottom: 30px;
	border-bottom: 1px dotted #A9A9A9;
}
.key-block .list-group .list-item h4 {
	font-size: 22px;
	margin-bottom: 8px;
}
li.load-more-source span{
	border:none;
	padding:0;
	font-weight: 600;
	color:#4A6FD4;
}
li.load-more-source span.active{
	border:none;
	padding:0;
	color:#4A6FD4;
	background: none;
}
li.load-more-source span:hover{
	background:none;
	color:#1e202a;
}

/** 404 page **/
.py-404 {
	padding-top: 10vh;
	padding-bottom: 10vh;
	text-align: center;
}
.py-404 .btn{
	width:fit-content;
	margin-left: auto;
	margin-right: auto;
}
.py-404 h1 {
	font-size: 100px;
	line-height: 1;
	margin-block: 20px;
}
.py-404 h1 span {
	font-size: 38px;
	display: block;
}
.py-404 p{
	margin-bottom: 18px; 
}


@media (max-width: 1199px) {
	.header-left{
		min-width:310px;
		position:relative;
		z-index:10;
	}
	nav .menu li a{
		font-size: 16px;	
		padding: 5px 7px;
	}
	.header .logo img {
    	width: 150px;
	 }
}

@media (max-width: 991px) {
    .container {
        padding-left: 30px;
        padding-right: 30px;
    }

    .news-feature-block {
        flex-direction: column;
		margin-left: 0;
		margin-right: 0;
    }

    .news-feature-block .left-content {
        width: 100%;
		padding:0;
    }

    .news-feature-block .right-content {
        width: 100%;
		padding:0;
    }

    .t-score-img {
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
        display: block;
    }
	.news-post-list .news-post{
		width:50%;
	}


    .hamburger-menu {
        display: block;
		position: relative;
		z-index:10;
    }
	nav{
		position: fixed;
		top: 83px;
		left: 0;
		width: 100svw;
		height: 100svh;
		z-index: 5;
		-webkit-transition: all 0.3s ease-in-out;
		-moz-transition: all 0.3s ease-in-out;
		transition: all 0.3s ease-in-out;
		transform: translateY(calc(-100% - 100px));
		overflow: hidden;
		background: #FFF;
	}
	nav.open {
		transform: translateY(0);
	}
	nav.open .menu-main-menu-container{
		overflow-y: auto;
		height:100%;
	}
    #menu-main-menu-1{
        display: block;
    }
	nav.open #menu-main-menu-1{
		padding-bottom: 110px;
	}
	nav .menu li {
        padding: 0 30px;
    }

	nav .menu li a {
        border-bottom: 1px solid #a9a9a9;
        display: block;
    }

    /* Animate hamburger to X */
    .hamburger-menu.is-active .menu-item:first-child {
        transform: translateX(3px) rotate(45deg);
        transform-origin: 0px;
    }

    .hamburger-menu.is-active .menu-item:nth-child(2) {
        opacity: 0;
    }				

    .hamburger-menu.is-active .menu-item:nth-child(3) {
        transform: rotate(-45deg);
        transform-origin: 8px;
    }
	.news-post-sec,
	.private-credit-sec,
	.podcast-wrapper{
		padding-top:30px;
	}
	.private-credit-sec{
		padding-bottom:30px;
	}
	.news-feature-block{
		margin-bottom: 40px;
	}
	.pagination-btn-wrapper{
		margin-top: 0;
	    margin-bottom: 20px;	
	}
	.cradit-list-block ul li{
		width: 33.33%;
	}
	.pulse-section .story-content .content-left {
		width: 100%;
		padding-right: 0;
	}
	.pulse-section .story-content .content-right {
		width: 100%;
		padding-top: 30px;
		padding-left: 0;
		border-left: 0;
		border-top: 1px dotted #A9A9A9;
	}
	.key-block .list-group .list-item {
		width: calc(50% - 20px);
	}
	.pulse-section {
		padding-bottom: 30px;
	}
}

@media (max-width: 768px) {
	.container {
        padding-left: 20px;
        padding-right: 20px;
    }
	h1{
		font-size:28px;
	}
	p{
		font-size:16px;
		line-height: 22px;
	}
	 .header .logo img {
    	width: 140px;
	 }
	.post-slider .slider-btn {
	    right: 10px;
	 }
	.fotter-content .colum{
		width:100%;
		margin-bottom:20px;
		padding-right:0;
	}
	nav .menu li{
		padding:0 20px;
	}
	.fotter-content .colum:last-child{
		margin-bottom:0;
	}
	footer .footer-top{
		padding:30px 0
	}
	.news-feature-block .left-content{
		padding: 0px 0px 10px;
	}
	.news-feature-block{
		margin-bottom: 30px;
	}
	.totle-post{
		margin-top:0;
	}
	.cradit-list-block ul{
		margin: 0 -10px;
	}
	.cradit-list-block ul li{
		padding: 0 10px;
		margin-bottom: 20px;
		width:50%;
	}
	.fund-form .form-list p{
		width: 50%;
	}
	.newsletter-form p{
		width: 50%;
		padding-bottom: 16px;
	}
	.newsletter-form p:last-child{
		width: 100%;
	}
	.news-detail-sec h1{
		font-size: 24px;
	}
	.news-detail-sec .post-info-category{
		font-size: 16px;
	}
	.news-detail-sec .post-info-date span{
		font-size: 12px;
	}
	.news-detail-sec .post-info-date span img, .news-detail-sec .post-info-date img{
		width: 14px;
	}
	.news-detail-sec .news-post-image a.post-img{
		width: 54px;
		height: 54px;
	}
	.news-post-list-inner-holder .news-layout2-item .news-post-image{
		padding-right: 0;
		width: 100%;
	}
	.news-detail-sec .full-article a.btn{
		padding: 10px 22px;
	}
	.news-detail-sec .related-articles{
		margin-top: 20px;
		margin-bottom: 20px;
		padding-top: 20px;
	}
	.news-detail-sec .related-articles .news-item{
		width: 50%;
		margin-bottom: 20px; 
	}
	.news-detail-sec .post-sourse-wrapper{
		padding-top: 20px;
	}
	.news-detail-sec .related-articles ul li{
		width: 50%;
		margin-bottom: 20px;
	}
	.news-detail-sec .related-articles ul li:last-child{
		margin-bottom: 0;
	}
	.news-detail-sec .news-detail-content-block p{
		margin-bottom: 16px;
	}
	.news-detail-sec .news-detail-content-block ul li{
		font-size: 16px;
		line-height: 22px;
	}
	.layout-grid .today-item{
		width: 50%;
	}
	.py-404 h1 {
		font-size: 60px;
	}
	.py-404 h1 span {
		font-size: 24px;
	}
}
@media (max-width: 600px) {
	.mb-28{
		margin-bottom:18px;
	}
	.header-left {
	    flex-direction: column;
    	align-items: flex-start;
		min-width:auto;
	 }
	 .site-tagline {
    	padding-left: 0;
	    margin-top: 6px;
    	max-width: 220px;
  	}
	#menu-main-menu-1.open{
		top:104px;
	}
	nav .menu{
		top:104px;
	}
	.news-post-list .news-post{
		width:100%;
	}
	.news-post-list-inner-holder .news-layout2-item h2 a{
		font-size:18px;
		line-height:1.2;
	}
	.news-post-list-inner-holder, .news-post-list{
		padding:0;
		margin:0;
	}
	.news-post-content p {	
		font-size:16px;
		line-height:1.5;
	}
	.news-post-list .news-post{
		padding: 0;
	}
	.news-post-img{
		width:auto;
	}
	/* .news-post-img img{
		width:100%
	} */

	.pagination-btn-wrapper .btn,
	.btn{
		padding: 10px 20px;
	}
	.news-item .news-item-content{
		position:unset;
		padding:0;
		text-align:center;
	}
	.news-item .news-item-content h1{
		background:transparent;
		padding:0;
		margin-bottom:16px;
		margin-top:-7px;
	}
	.news-item .news-item-content h1 a,
	.news-item .news-item-content{
		color:#1e202a;
	}
	.news-item .news-item-content .post-info-category{
		top:-20px;
	}
	.post-slider{
		padding:20px 0 0px 0;
	}
	.copy-right{
		padding:20px 0;
	}
	.footer-logo{
		flex-direction:column;
		align-items: flex-start ;
		-webkit-align-items: flex-start ;
		-ms-align-items: flex-start ;
	}
	.news-post-sec .news-item{
		padding-top:20px;
	}
	.news-post-sec .news-post-content p{
		margin-bottom: 16px;
	}
	.post-info-date a, .post-info-date span{
		line-height: 1.3;
		margin-top:4px;
	}
	.news-post-list-inner-holder .news-layout2-item .news-post-image{
		padding-right: 10px;
	}
	.podcast-block{
		min-width: 140px;
	}
	.podcast-block a{
		padding: 3px 10px 3px 22px;
	}
	.podcast-block a.podcast-btn::after, .podcast-block a.article-btn::after {
		left:7px;
	}
	.educational-list{
		margin-bottom: 20px;
		padding-bottom: 20px;
	}
	.news-post-list-inner-holder .news-post-image a.post-img{
		margin-right: 8px;
	}
	.cradit-list-block ul li{
		width:100%;
		margin-bottom: 24px;
	}
	.cradit-content:last-child ul li:last-child{
		margin-bottom:0;
	}
	.private-credit-sec .cradit-list-block .post-info-date span{
		margin-top:0;
	}
	.podcast-title-box{
		padding:20px;
	}
	.podcast-title-box .title-img{
		width: 54px;
		height: 54px;
	}
	.podcast-title-box .title-img img{
		width: 30px;
		height: 30px;
	}
	.newslatter-wrapper .icon-item-list{
		margin: 0 -8px;
		margin-top: 16px;
	}
	.newslatter-wrapper .icon-item-list .icon-item{
		width: 50%;
		padding: 0 8px;
		
	}
	.warning-block{
		padding: 18px;
	}
	.fund-form .form-list p,
	.newsletter-form p{
		width: 100%;
	}
	.fund-form .submit{
		width: 100%;
		margin-top:14px;
	}
	.submit .wpcf7-submit{
		width: 100%;
	}
	.news-detail-sec .related-articles .news-item{
		width: 100%;
	}
	.news-detail-sec .related-articles .news-item:last-child{
		margin-bottom: 0;
	}
	.news-detail-sec .post-sourse .link{
		font-size: 14px;
		line-height: 1.3;
	}
	.news-detail-sec .related-articles ul li{
		width: 100%;
	}
	.pagination-btn-wrapper .nav-links{
		margin-top: 10px;
	}
	hr{
		margin: 20px 0;
	}
    nav{
        top: 101px;
    }
    .news-detail-sec.pc-detail .news-post-list-inner-holder .news-item{
        height: 180px;
    }
    .news-detail-sec.pc-detail .news-post-list-inner-holder .news-item img {
        width: 80px;
        height: 80px;
    }
	.layout-grid .today-item{
		width: 100%;
	}
	.key-block .list-group .list-item {
		width: calc(100% - 20px);
		padding-bottom: 20px;
		margin-bottom: 20px;
	}
}

/* ===================== Btn Animation */
.loading-dots{
	text-align: center;
}
.loading-dots .dot {
    animation: blink 1.4s infinite both;
    font-weight: bold;
    font-size: 40px;
	color: #1e202a;
    margin: 0 2px;
}
.loading-dots .dot:nth-child(2) {
    animation-delay: 0.2s;
}
.loading-dots .dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes blink {
    0%, 80%, 100% { opacity: 0; }
    40% { opacity: 1; }
}


.today-grid-layout {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.today-grid-layout .today-thumb img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
}

.today-grid-content h2 {
    margin: 10px 0;
}

