:root {
    --color-brand: #0071d5;
    --color-sec: #f17c1b;
}

img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.bg-brand {
    background-color: var(--color-brand) !important;
}

.bg-white {
    background-color: var(--color-white) !important;
}

.bg-grey {
    background-color: #f4f6f8;
}

.text-white {
    color: white !important;
}

.text-black {
    color: black !important;
}

.text-brand {
    color: var(--color-brand) !important;
}

.text-sec {
    color: var(--color-sec) !important;
}

.underline {
    text-decoration: underline;
}

.p-0 {
    padding: 0 !important;
}

.pr-0 {
    padding-right: 0 !important;
}

.pl-0 {
    padding-left: 0 !important;
}

.pt-0 {
    padding-top: 0 !important;
}

.pb-0 {
    padding-bottom: 0 !important;
}

.px-5 {
    padding-left: 5px;
    padding-right: 5px;
}

.px-10 {
    padding-left: 10px;
    padding-right: 10px;
}

.px-15 {
    padding-left: 15px;
    padding-right: 15px;
}

.px-20 {
    padding-left: 20px;
    padding-right: 20px;
}

.px-25 {
    padding-left: 25px;
    padding-right: 25px;
}

.px-30 {
    padding-left: 30px;
    padding-right: 30px;
}

.py-5 {
    padding-top: 5px;
    padding-bottom: 5px;
}

.py-10 {
    padding-top: 10px;
    padding-bottom: 10px;
}

.py-15 {
    padding-top: 15px;
    padding-bottom: 15px;
}

.py-20 {
    padding-top: 20px;
    padding-bottom: 20px;
}

.py-25 {
    padding-top: 25px;
    padding-bottom: 25px;
}

.py-30 {
    padding-top: 30px;
    padding-bottom: 30px;
}

.pb-2 {
    padding-bottom: 2px !important;
}

.pb-5 {
    padding-bottom: 5px;
}

.pb-10 {
    padding-bottom: 10px;
}

.pb-15 {
    padding-bottom: 15px;
}

.pb-20 {
    padding-bottom: 20px;
}

.pb-25 {
    padding-bottom: 25px;
}

.pb-30 {
    padding-bottom: 30px;
}

.pt-2 {
    padding-top: 2px !important;
}

.pt-5 {
    padding-top: 5px;
}

.pt-10 {
    padding-top: 10px;
}

.pt-15 {
    padding-top: 15px;
}

.pt-20 {
    padding-top: 20px;
}

.pt-25 {
    padding-top: 25px;
}

.pt-30 {
    padding-top: 30px;
}

.pl-5 {
    padding-left: 5px;
}

.pl-10 {
    padding-left: 10px;
}

.pl-15 {
    padding-left: 15px;
}

.pl-20 {
    padding-left: 20px;
}

.pl-25 {
    padding-left: 25px;
}

.pl-30 {
    padding-left: 30px;
}

.pr-5 {
    padding-right: 5px;
}

.pr-10 {
    padding-right: 10px;
}

.pr-15 {
    padding-right: 15px;
}

.pr-20 {
    padding-right: 20px;
}

.pr-25 {
    padding-right: 25px;
}

.pr-30 {
    padding-right: 30px;
}

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

.pt-sm {
    padding-top: 20px !important;
}

.pt-md {
    padding-top: 40px !important;
}

.pt-lg {
    padding-top: 80px !important;
}

.pb-sm {
    padding-bottom: 20px !important;
}

.pb-md {
    padding-bottom: 40px !important;
}

.pb-lg {
    padding-bottom: 80px !important;
}

.py-75 {
    padding-top: 75px;
    padding-bottom: 75px;
}

.px-sm {
    padding-left: 20px;
    padding-right: 20px;
}

.px-md {
    padding-left: 40px;
    padding-right: 40px;
}

.px-lg {
    padding-left: 80px;
    padding-right: 80px;
}

.py-sm {
    padding-top: 20px;
    padding-bottom: 20px;
}

.py-md {
    padding-top: 40px;
    padding-bottom: 40px;
}

.py-lg {
    padding-top: 80px;
    padding-bottom: 80px;
}

.py-xl {
    padding-top: 100px;
    padding-bottom: 100px;
}

/* margin */
.m-0 {
    margin: 0;
}

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

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

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

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

.w-100 {
    width: 100%;
}

.h-80 {
    height: 80px;
}

.h-50 {
    height: 50px;
}

.h-100 {
    height: 100px;
}

.h-130 {
    height: 130px;
}

.h-100p {
    height: 100%;
}

.h-200 {
    height: 200px;
}

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

.h-225 {
    height: 225px;
}

.p-sticky {
    position: sticky;
    top: 60px;
}

.d-none {
    display: none;
}

.d-flex {
    display: flex !important;
}

.flex-direction-col {
    flex-direction: column;
}

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

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

.justify-start {
    justify-content: start;
}

.justify-end {
    justify-content: end;
}

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

.items-stretch {
    align-items: stretch;
}

.items-end {
    align-items: end;
}

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

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

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

.gap-5 {
    gap: 5px;
}

.gap-7 {
    gap: 7px;
}

.gap-9 {
    gap: 9px;
}

.gap-10 {
    gap: 10px;
}

.gap-20 {
    gap: 20px;
}

.gap-30 {
    gap: 30px;
}

.lh-1 {
    line-height: 1.5;
}

.lh-2 {
    line-height: 2;
}

.text-10 {
    font-size: 10px;
}

.text-12 {
    font-size: 12px;
}

.text-14 {
    font-size: 14px !important;
}

.text-16 {
    font-size: 16px;
}

.text-18 {
    font-size: 18px;
}

.text-20 {
    font-size: 20px;
}

.text-24 {
    font-size: 24px;
}

.text-40 {
    font-size: 40px;
}

.text-black {
    color: black;
}

.text-brand {
    color: var(--color-brand);
}

.text-sec {
    color: var(--color-sec);
}

.text-grey {
    color: grey;
}

.text-red {
    color: red;
}

.text-bold {
    font-weight: bold;
}

.h-90 {
    height: 90px;
}

/* border  */
.border-bottom {
    border-bottom: 1px solid rgb(172, 164, 164);
}

.border-top {
    border-top: 1px solid rgb(172, 164, 164);
}

.border-right {
    border-right: 1px solid rgb(172, 164, 164);
}

.border-bottom-brand {
    border-bottom: 1px solid #e0e9f6;
}

.rounded-xs {
    border-radius: 10px;
}

.rounded-sm {
    border-radius: 20px;
}

.rounded-5 {
    border-radius: 5px;
}

.rounded-0 {
    border-radius: 0px !important;
}

.rounded-full {
    border-radius: 100% !important;
}

.rounded-50p {
    border-radius: 50% !important;
}

.scale_image_container {
    border-radius: 10px;
}

.overflow-hidden {
    overflow: hidden;
}

.hover-text:hover h5 {
    color: var(--color-brand) !important;
}

.relative {
    position: relative;
}

/* header  */
.navbar1 {
    /* position: fixed;
    top: 0;
    left: 0; */
    /* width: 100%; */
    /* width: 40px; */
    /* padding: 15px; */
    /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
    /* display: flex;
    align-items: center;
    justify-content: space-between; */
    transition: all 0.3s ease-in-out;
}

.nav-logo1 {
    width: 45px;
    height: 41px !important;
    background-color: white;
    display: none;
    /* Initially hidden */
    position: absolute;
    left: -100px;
    /* Move into view */
    top: 0;
    padding: 10px;
    opacity: 0;
    transition: all 0.5s ease-in-out;
}

.date-scroll {
    position: absolute;
    display: none;
    /* Initially hidden */
    transition: all 0.5s ease-in-out;
    bottom: -30px;
    left: -100px;
}

.nav-item a.active {
    background-color: #f17c1b;
    /* Example: Highlight active link */
    color: black;
    font-weight: bold;
}

.fa-chevron-down {
    font-size: 10px;
    padding-top: 3px;
    padding-left: 2px;
}

.h_bot_part .logo p {
    font-weight: bold;
    font-size: 12px;
}

.menu_wrap {
    background-color: var(--color-brand);
}

.menu_wrap a {
    color: white !important;
}

.lang_button img {
    width: 15px;
}

.trend img {
    width: 25px;
    color: white;
    font-weight: normal;
}

.trend {
    padding: 0 5px;
}

/* most searched  */
.most_searched .first {
    background-color: red;
    height: 100%;
    padding: 10px 16px 10px 16px;
    color: white;
    /* width: 100%; */
}

.most_searched .first h4 {
    font-size: 12px;
    color: white;
}

.most_searched .image {
    width: 25px;
    height: 25px;
    border-radius: 50%;
}

.most_searched .image img {
    border-radius: 100%;
}

.most_searched .title h6 {
    color: black;
    font-weight: bold;
    font-size: 12px;
}

.most_searched .form {
    position: relative;
}

.most_searched input {
    /* width: 80%; */
    height: 35px;
    border-radius: 30px;
    background-color: #f2f2f2;
    display: flex;
    justify-content: end;
}

.most_searched .search {
    position: absolute;
    right: 16px;
    top: 8px;
}

/* banner  */
.banner .scale_image_container {
    width: 90%;
    height: 150px;
    margin: 10px auto;
    border-radius: 10px;
}

.scale_image_container img {
    width: 100%;
    object-fit: cover;
}

.banner .image img {
    width: 45px;
    height: 50px;
    border-radius: 50%;
    padding: 1px 0;
    border: 0.5px solid grey;
    background-color: white;
}

.banner p {
    font-weight: bold;
}

.author-info {
    margin-top: 10px;
}

.author-info img {
    width: 35px;
    height: 50px;
    border-radius: 50%;
    padding: 3px;
    border: 0.5px solid grey;
    background-color: white;
}

.author-info p {
    font-weight: bold;
    font-style: italic;
    color: var(--color-sec);
    font-size: 12px;
}

/* stories  */

.stories_img {
    height: 400px;
    display: block;
    position: relative;
    margin-top: 5px;

    /* border: 1px solid black; */
}

.stories_img:hover .stories_content {
    transform: translateY(-5px);
    transition: transform 0.3s ease;
}

.stories_img .img::before {
    content: "" !important;
    background: linear-gradient(to bottom, #f5f5f500, #161616d2) !important;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    /* z-index: 10; */
    border-radius: 10px;
}

.stories_img:hover .stories_content h5 {
    color: var(--color-brand);
}

.stories_img .img {
    border-radius: 30px;
    width: 100%;
    height: 100%;

    /* object-fit: cover ; */
}

.stories_content {
    position: absolute;
    bottom: 20px;
    left: 20px;
    /* z-index: 20; */
}

.stories_content h5 {
    color: white;
    font-weight: bold;
    font-size: 16px;
    text-shadow: rgba(0, 0, 0, 0.24) 0 0 8px;
    transition: all 0.3s ease-in-out;
}

.stories_img .count {
    position: absolute;
    right: 5px;
    top: 10px;
    padding: 2px 10px;
    background-color: var(--color-brand);
    color: white;
    border-radius: 20px;
    font-size: 10px;
}

.section_title {
    color: var(--color-brand);
    font-size: 30px;
}

/* .business .post_text{
    background-color: #F4F6F8;
    padding: 75px 30px;

    height: 100%;
} */
/* .business .first{
    height: 300px;
    overflow: hidden;
} */
/* .business .image{
    width: 100%;
    height: 100%;
} */
.business .text {
    background-color: #f4f6f8;
    height: 100%;
}

.business .scale_image {
    height: 100px;
    width: 100%;
}


/* * .sub-img {
    height: 100% !important;
    object-fit: cover !important;
} */

.business .sub-img img {
    width: 100%;
    height: 85px;
    object-fit: cover;
}

.business .sub-title h5 {
    font-weight: bold;
    font-size: 16px;
}

.business .title {
    box-shadow: 0px 5px 10px grey;
    padding: 30px;
}

.business .heading {
    background-color: var(--color-brand);
    display: inline-block;
    padding: 3px 6px;
}

.business .heading h5 {
    color: white;
    font-size: 12px;
}

.business .title a h4 {
    padding: 20px 0;
    border-bottom: 1px solid rgb(170, 167, 167);
    color: black;
    font-weight: normal;
    font-size: 14px;
    line-height: 1.5;
}

.business .title a:hover h4 {
    color: var(--color-brand);
}

.business .all h5 {
    padding: 5px 10px;
    background-color: #f4f6f8;
    border-radius: 20px;
    display: inline-block;
    margin: 20px 0;
    font-size: 12px;
}

.pradesh-number li a h3 {
    padding: 6px 12px;
    border-radius: 100%;
    background-color: #f4f6f8;
    margin-right: 20px;
    font-size: 12px;
    color: var(--color-brand);
    border: 1px solid rgb(180, 176, 176);
}

.pradesh-number li a h3:hover {
    background-color: var(--color-brand);
    color: white;
}

.arrow a {
    background-color: #f4f6f8;
    border-radius: 100%;
    padding: 6px 9px 6px 5px;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--color-brand);
}

.arrow a:hover {
    background-color: var(--color-brand);
    color: white;
    transform: rotateX(360deg);
}

.pradesh .post_text {
    padding: 75px 30px;
    /* width: 100%; */
    height: 100%;
}

.pradesh .sub-img {
    width: 100%;
    height: 150px;
    border-radius: 50px;
}

.pradesh .sub-img img {
    border-radius: 5px;
}

.pradesh .sub-title h5 {
    font-weight: bold;
    font-size: 16px;
}

.aside_sticky .ads-list {
    display: flex;
    flex-direction: row;
    gap: 10px 7px;
    flex-wrap: wrap;
}

.text-clamp-3 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }


@media screen and (max-width: 768px) {
    .aside .sub-img img {
        height: 100px;
        width: 100%;
        object-fit: cover;
    }

    .business .sub-img img {
        width: 100%;
        height: 210px;
        object-fit: cover;
    }
}

/* default (desktop) */
.aside {
    padding-top: 0;
}

/* mobile first: up to 767.98px */
/* @media (max-width: 767.98px) {
    .aside {
      padding-top: 30px !important;
    }
  } */

/* MOBILE TITLE STYLES: up to 767.98px */
@media (max-width: 767.98px) {
    .aside {
        padding-top: 30px !important;
    }

    /* increase vertical spacing above the title */
    .aside .pt-5 {
        padding-top: 1rem !important;
    }

    /* slightly larger, tighter title */
    .aside h5.text-12 {
        font-size: 16px !important;
        line-height: 1.3 !important;
        margin-bottom: 0.5rem !important;
    }

    /* move the play-icon closer to the title */
    .aside i.fa-circle-play {
        font-size: 18px !important;
        margin-top: 0 !important;
        margin-left: 0.25rem !important;
        vertical-align: middle;
    }
}

.aside-row {
    margin-bottom: 20px;
}

@media (min-width: 768px) and (max-width: 1024px) {
    .aside .aside-row:first-child {
        margin-top: 60px;
    }
}




.pradesh .all h5 {
    padding: 5px 10px;
    background-color: #f4f6f8;
    border-radius: 20px;
    display: inline-block;
    margin: 20px 0;
    font-size: 12px;
}

.cover_story .scale_image_container {
    margin-bottom: 0 !important;
    height: 240px;
}

.cover_story .post_text {
    flex-grow: 1;
    background-color: #f4f6f8;
    padding: 20px 30px;
}

.detail {
    color: gray;
}

.detail:hover {
    color: var(--color-brand);
}

.saptahanta .sub-img {
    width: 100%;
    height: 150px;
    border-radius: 50px;
}

.saptahanta .sub-img img {
    border-radius: 5px;
}

.saptahanta .sub-title h5 {
    font-weight: bold;
    font-size: 16px;
}

/* video  */
.video {
    background-color: #1b1e2d;
}

.video .stories_img {
    height: 350px;
}

/* DESKTOP (default) */
.video .stories_content h5 {
    font-size: 26px;
    left: 80px;
}

/* MOBILE (up to 767.98px) */
@media (max-width: 767.98px) {
    .video .stories_content h5 {
        font-size: 16px;
        left: 80px;
    }
}


.left_out .stories_img {
    height: 300px;
}

/* detail-page  */
/* .detail-page p {
  font-weight: bold;
  font-size: 16px;
  line-height: 2.5;
} */
.detail-page p {
    font-weight: 500;
    font-size: 1.75rem;
    line-height: 2.4;
}

.detail-page .main-img {
    height: 215px;
}

.detail-comment div:nth-child(1) {
    background-color: #f2f4f9;
}

.detail-comment h3 {
    font-size: 30px;
    color: var(--color-brand);
}

.detail-comment .tabs h4 {
    background-color: #dce5f3;
    padding: 3px 5px;
    border-radius: 3px;
    color: black;
}

.detail-comment input {
    height: 100px;
    width: 100%;
    background-color: #f2f4f9;
    overflow: scroll;
    margin-bottom: 10px;
}

/* .detail-title{
    position: sticky;
    top: 40px;
    z-index: 1000;
    background-color: white;

} */
.detail-comment button {
    padding: 5px 10px;
    background-color: #f2f4f9;
    border-radius: 15px;
    color: var(--color-brand);
    text-align: end;
    display: flex;
    justify-content: end;
}

.detail-comment button:hover {
    color: white;
    background-color: var(--color-brand);

    font-weight: 500;
}

.ad-row {
    margin: 20px 0;
    border-bottom: 1px solid grey;
    padding-bottom: 20px;
}

.ad-label {
    text-align: center;
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.ad-container {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.ad-item {
    flex: 1 0 33%;
    /* Each ad takes up 33% of the container width */
    max-width: 31%;
}

.ad-item img {
    width: 100%;
    /* height: auto; */
    display: block;
}

.social .icons:hover {
    transform: translateY(-5px);
    transition: transform 0.3s ease;
}

.social .icons .fa-facebook-f {
    padding: 9px 11px;
    display: inline-block;
    background-color: #4267b2;
    border-radius: 50%;
}

.social .icons .fa-x-twitter {
    padding: 8px 8px;
    display: inline-block;
    background-color: #000;
    border-radius: 50%;
}

.social .icons .fa-facebook-messenger {
    padding: 8px 8px;
    display: inline-block;
    background-color: #448aff;
    border-radius: 50%;
}

.social .icons .fa-whatsapp {
    padding: 8px 8px;
    display: inline-block;
    background-color: #25d366;
    border-radius: 50%;
}

.social .social-comment h4,
.social .social-share h4 {
    font-size: 20px;
}

.social .social-comment h5 {
    display: none;
}

.social .social-share h5 {
    font-size: 10px;
}

.social .social-comment,
.social .social-media,
.social .social-share {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
}

.social .social-comment img {
    width: 30px;
}

/* comment display  */
.comment_display {
    width: 100%;
    position: fixed;
    overflow: auto;
    height: 100vh;
    background-color: rgba(71, 70, 70, 0.219);
    top: 0;
    right: -1000000px;
    z-index: 99999;
    /* Ensure it's the highest */
}

.comment_display_section {
    width: 400px;
    position: absolute;
    right: 0;
    overflow: auto;
    height: 100vh;
    background-color: white;
    padding: 20px 40px;
}

.comment-displaying .fa-xmark {
    color: red;
    font-size: 16px;
}

.comment-displaying .profile {
    width: 40px;
    height: 40px;
    border-radius: 100% !important;
    /* background: url("images/general/user.png");
    background-color: #E0E9F6; */
    transition: all 0.5s ease-in-out;
}

.comment-displaying .profile img {
    border-radius: 100% !important;
}

/* social media share  */
/* Floating Social Icons */
.social-icons {
    position: fixed;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    z-index: 1000;
}

.social-icons a {
    display: block;
    margin: 5px 0;
    width: 45px;
    height: 45px;
    text-align: center;
    line-height: 45px;
    border-radius: 50%;
    color: white;
    font-size: 20px;
    transition: all 0.3s ease-in-out;
}

.social-icons a:hover {
    opacity: 0.8;
}

/* .facebook { background: #1877F2; }
.twitter { background: #1DA1F2; }
.linkedin { background: #0077B5; }
.whatsapp { background: #25D366; }
.messenger { background: #0084FF; } */

/* .video-page .icons {
    background-color: #4267B2;

} */
.lower-section {
    background-color: #fdfdfd;
    transition: all 1s ease-in;
}

.lower-section .number {
    height: 60px;
}

/* video  */
.youtube_video {
    width: 100%;
    /* height: 500px; */
}

/* LOGIN  */
.popup-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

/* Popup Box */
.popup-box {
    background: white;
    padding: 20px 0;
    width: 500px;
    /* text-align: center; */
    border-radius: 8px;
    position: relative;
    min-height: 400px;
}

/* Close Button */
.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    cursor: pointer;
}

.popup-box a {
    color: grey !important;
    font-size: 10px;
    padding-bottom: 10px;
    text-decoration: underline;
}

.popup-box a:hover {
    color: var(--color-brand) !important;
}

.popup-box .login-btn {
    width: 100%;
    padding: 10px;
    background-color: var(--color-brand);
    border-radius: 20px;
    color: white;
    margin-top: 30px;
    margin-bottom: 10px;
    font-weight: bold;
}

.popup-box .login-btn:hover {
    background-color: #acd4f7;
    color: var(--color-brand);
}

/* Show popup when active */
.popup-container.active {
    opacity: 1;
    pointer-events: auto;
}

.forgot-btn.active {
    opacity: 1;
    pointer-events: auto;
}

.social_signup {
    background-color: #F4F6F8;
    padding: 0 20px;
    height: 100%;

}

.social_signup a {
    text-decoration: none !important;
}

.social_signup .number {
    padding: 5px 10px;
    background-color: #E9F2FF;
    border-radius: 100%;
}

.social_signup .facebook,
.social_signup .google {
    color: white !important;
    font-size: 14px !important;
    text-decoration: none !important;
    padding: 10px 30px;
    border-radius: 5px;
}

.social_signup a:hover {
    color: white !important;
}

.social_signup .google,
.social_signup .google i {
    background-color: var(--color-sec);
}

.social_signup .facebook,
.social_signup .facebook i {
    background-color: var(--color-brand);
}

.hidden {
    display: none;
}

/* trending news  */
.trending_news {
    width: 100%;
    min-height: 500px;
    box-shadow: 0 5px 10px grey;
    background-color: white;
    position: fixed;
    top: -10000px;
    left: 0;
    z-index: 1000;
    transition: all 0.3s ease-in-out;
    overflow: auto;
    max-height: 100vh;
}

.trending_news.active {
    top: 0;
}

.trending_news .sub-img {
    height: 60px;
}

.trending_news .sub-title h5 {
    font-size: 18px;
}

.trending_news li {
    border-right: 1px solid #e0e9f6;
}

.trending_news_num {
    font-size: 40px;
    color: #e0e9f6;
}

/* latest news top popup  */
.latest_news {
    width: 100%;
    min-height: 500px;
    box-shadow: 0 5px 10px grey;
    background-color: white;
    position: fixed;
    top: -10000px;
    left: 0;
    z-index: 1000;
    transition: all 0.3s ease-in-out;
    overflow: auto;
    max-height: 100vh;
}

.latest_news.active {
    top: 0;
}

.latest_news .sub-img {
    height: 60px;
}

.latest_news .sub-title h5 {
    font-size: 18px;
}

.latest_news li {
    border-right: 1px solid #e0e9f6;
}

.latest_news_num {
    font-size: 40px;
    color: #e0e9f6;
}

/* ad popup after reload  */
.ad-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    /* Semi-transparent background */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
}

/* Ad Content Box */
.ad-content {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    width: 600px;
}

/* Skip Ad Button */
#skip-ad {
    margin-top: 10px;
    padding: 8px 15px;
    background: red;
    color: white;
    border: none;
    cursor: pointer;
    font-weight: bold;
    border-radius: 5px;
}

#skip-ad:hover {
    background: darkred;
}

.fix-height .scale_image_container {
    /* height: 264px; */
    height: 175px;
}

@media (min-width:768px) {
    .fix-height .scale_image_container {
        height: 264px;
        /* height: 175px; */
    }


}

.fix-height .sub-img {
    height: 120px;
}

@media screen and (max-width: 768px) {
    .fix-height .sub-img {
        height: 190px;
    }
}

.fix-height2 .sub-img {
    height: 70px;
}

@media screen and (max-width: 768px) {
    .fix-height2 .sub-img {
        height: 200px;
    }
}

.fix-height2 .big-image {
    height: 345px;
    display: block !important;
}

.fix-height2 h5 {
    font-size: 14px;
}

.lower-section .scale_image_container {
    height: 120px !important;
}

/* author  */
.author-top {
    border-bottom: 1px solid var(--color-brand);
    background-color: #F6F9FC;
}

.author-top .image {
    width: 100px;
    height: 100%;

}

.author-top .social a {
    display: flex;
    align-items: center;
    background-color: var(--color-brand);
    color: white;
    padding: 10px;
    border-radius: 100%;
}

.author-top .social a:hover {
    background-color: var(--color-sec);

}

.author-bottom {
    width: 60%;
    margin: auto;
    padding: 30px 0;
}

.author-bottom .post_text:hover h4 {
    color: var(--color-brand);
}


/* footer  */

.footer .footer_top_part {
    background: #f6f9fc;
}

.footer .footer_bottom_part {
    background-color: #e0e9f6;
}

.footer li,
.footer a {
    color: grey !important;
}

.footer h3 {
    color: var(--color-brand);
}

.footer .social a:hover {
    color: var(--color-brand) !important;
    background-color: white;
}

.footer .social a {
    font-size: 14px;
    padding: 5px;
    color: white !important;
    background-color: var(--color-brand);
    border-radius: 100%;
    text-align: center;
    display: flex;
    align-items: center;
}

.footer .location a:hover {
    text-decoration: underline;
    color: var(--color-brand);
}

*.sub-img {}



.responsive-video {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 ratio */
    padding-top: 25px;
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background-color: #000; /* fallback dark background */
}

.responsive-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
