﻿
@font-face {
    font-family: 'hauora-regular';
    src: url('../fonts/hauora_sans/webfonts/hauora-regular.woff2') format('woff2');
}

@font-face {
    font-family: 'hauora-semibold';
    src: url('../fonts/hauora_sans/webfonts/hauora-semibold.woff2') format('woff2');
}

@font-face {
    font-family: 'hauora-light';
    src: url('../fonts/hauora_sans/webfonts/hauora-light.woff2') format('woff2');
}

@font-face {
    font-family: 'hauora-extralight';
    src: url('../fonts/hauora_sans/webfonts/hauora-extralight.woff2') format('woff2');
}

@font-face {
    font-family: 'hauora-extrabold';
    src: url('../fonts/hauora_sans/webfonts/hauora-extrabold.woff2') format('woff2');
}

@font-face {
    font-family: 'hauora-bold';
    src: url('../fonts/hauora_sans/webfonts/hauora-bold.woff2') format('woff2');
}

@keyframes zoomOut {
    0% {
        transform: scale(1); /* Start at normal size */
        opacity: 1; /* Fully visible */
    }

    100% {
        transform: scale(0); /* Shrink to 0 size */
        opacity: 0; /* Fully transparent */
    }
}
/* Customize the scrollbar */
::-webkit-scrollbar {
    width: 1px;
}

::-webkit-scrollbar-track {
    background-color: white;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #0ea5e9, white);
    border-radius: 25px;
}

    ::-webkit-scrollbar-thumb:hover {
        background: linear-gradient(45deg, white,#0ea5e9 );
    }
.tooltip-inner {
    background-color: #A8DCFF !important; /* Blue background */
    color: black !important; /* White text */
    max-width: 90% !important; /* 80% width */
    text-align: center;
    padding: 20px;
    border-radius: 25px;
    position:relative;
}
.typing-container {
    /*font-family: monospace;*/
    /*font-size: 24px;*/
    /*white-space: nowrap;*/
    /*overflow: hidden;*/
    /*border-right: 2px solid black;*/ /* Cursor effect */
    width: fit-content;
}

.typing-text {
    display: inline-block;
    /*overflow: hidden;*/
    /*white-space: nowrap;*/
    /*border-right: 2px solid black;*/
    animation: typing 1s steps(40, end) forwards, blinkCursor 0.6s infinite;
}

@keyframes typing {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

@keyframes blinkCursor {
    50% {
        border-color: transparent;
    }
}
.tooltip.show {
    opacity: 1; /* Ensure visibility */
}
/* Add styles for Firefox */
html {
    overflow-x: hidden;
    overflow-y: auto;
    scrollbar-width: thin;
}
.news_td{
    font-weight:600;
}
body {
    font-family: hauora-regular;
}
.error{
    color:red;
    align-content:center;
    margin-top:10px;
}
.answer_tab {
    background-color: #3395FF;
    color: white;
}

.foot td {
    padding: 5px;
    color: white;
}

.ask_anonm_mob {
    display: none;
}

.quest_ui {
    display: flex;
    float: right;
}

    .quest_ui li {
        margin-left: 10px;
        margin-right: 10px;
        cursor: pointer;
    }

.chk_text {
    font-weight: 600;
}

.ask_btn_blue {
    padding: 5px;
    padding-left: 20px;
    padding-right: 20px;
    color: #3395FF;
    background-color: transparent;
    border-radius: 20px;
    border-color: #3395FF;
    border-width: 2px;
    border-radius: 20px;
    border-style: solid;
}

    .ask_btn_blue:hover {
        background-color: #3395FF;
        color: white;
    }

    .ask_btn_blue a {
        padding: 5px;
        padding-left: 20px;
        padding-right: 20px;
        color: #3395FF;
        background-color: transparent;
        border-radius: 20px;
        border-color: transparent;
        border-width: 2px;
        border-radius: 20px;
        border-style: solid;
    }

        .ask_btn_blue a:hover {
            background-color: #3395FF;
            color: white;
        }

.ask_btn_draft {
    padding: 10px;
    padding-left: 20px;
    padding-right: 20px;
    color: black;
    background-color: transparent;
    border-radius: 20px;
    border-color: gray;
    border-width: 2px;
    border-radius: 20px;
    border-style: solid;
}

    .ask_btn_draft:hover {
        background-color: gray;
        color: white;
    }

.ask_btn {
    padding: 10px;
    padding-left: 20px;
    padding-right: 20px;
    color: white;
    background: #3395FF;
    border-radius: 20px;
    border-color: #3395FF;
    border-width: 2px;
}

    .ask_btn:hover {
        color: #3395FF;
        background: white;
        border-color: #3395FF;
        border-width: 2px;
    }

.ask_del_button {
    padding: 10px;
    padding-left: 20px;
    padding-right: 20px;
    color: red;
    border-style: groove;
    background-color: transparent;
    border-radius: 20px;
    border-color: red;
    border-width: thin;
}

    .ask_del_button:hover {
        color: white;
        background-color: red;
    }

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

    .switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

    .slider:before {
        position: absolute;
        content: "";
        height: 26px;
        width: 26px;
        left: 4px;
        bottom: 4px;
        background-color: white;
        -webkit-transition: .4s;
        transition: .4s;
    }

input:checked + .slider {
    background-color: #2196F3;
}

input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

    .slider.round:before {
        border-radius: 50%;
    }

.questask_text {
    padding: 20px;
    border-radius: 20px;
    field-sizing: content;
}

.questask_card {
    padding: 30px;
    border-radius: 20px;
}

#summernote2 {
    height: 400px;
}

.uniformGap {
    padding: 10px;
}

.flow_right {
    float: right;
    right: 0px;
    align-content: flex-end;
}

.highlight {
    cursor: pointer;
}

    .highlight:hover {
        cursor: pointer;
        opacity: .8;
        animation: ease-out;
        animation-direction: reverse;
        animation-duration: 4s;
    }

.news_right_ul {
    display: contents;
    color: black;
    text-align: center;
    font-size: large;
    font-weight: 500;
    gap: 25px;
    width: fit-content;
    line-height: normal;
    text-transform: capitalize;
}

    .news_right_ul li {
        display: contents;
        font-weight: 600;
    }

h4 {
    font-family: hauora-regular;
    font-weight: 700;
    white-space: initial;
}

.container-fluid {
    overflow-x: auto;
    overflow-y: hidden;
}

.journal_industry {
}

h3 {
    font-family: hauora-regular;
    font-weight: 700;
    white-space: initial;
}

.mobile_menu {
    display: none;
}

.desktop_menu {
    display: inline-block !important;
}

small {
    padding-top: 40px;
    font-weight: 600;
}

space {
    padding: 40px;
}

.active {
    /* background-color: #e6f2ff;
    border-radius: 30px;*/
}

.black_button {
    background-color: #15294B;
    color: white;
    display: block;
    font-family: 'hauora-semibold';
    text-overflow: ellipsis;
    border-radius: 25px;
    justify-content: flex-end;
    font-size: small;
    position: absolute;
    right: 0px;
    bottom: -20px;
}

    .black_button:hover {
        background-color: gray;
        color: white;
        font-family: 'hauora-semibold';
        border-radius: 25px;
        float: right;
    }

.modal.full-page {
    width: 100vw;
    max-width: none;
    height: 100vh;
    margin: 0;
}

.modal-dialog.full-page {
    max-width: none;
    height: 100vh;
    margin: 0;
}

.modal-content {
    height: 100%;
}

.scroll {
    overflow-x: auto;
    overflow-y: hidden;
}

.pagination {
    display: flex;
    align-content: center;
    elevation: above;
    flex-wrap: wrap;
    background-color: transparent;
    padding: 5px;
    width: max-content;
}

    .pagination li {
        align-content: center;
        border: solid;
        border-width: thin;
        border-color: deepskyblue;
        min-width: 50px;
        cursor: pointer;
        color: deepskyblue;
        margin: 2px;
        padding: 10px;
        background-color: white;
        border-radius: 30px;
    }

        .pagination li:hover {
            margin: 2px;
            padding: 10px;
            background-color: lightblue;
            border-radius: 30px;
        }

    .pagination .active {
        margin: 2px;
        padding: 10px;
        background-color: lightblue;
        border-radius: 30px;
    }


.signup_drop {
    border-radius: 20px;
    margin: 10px;
}

.rotate {
    animation: rotation 8s infinite linear;
    height: 70px;
    line-height: 24px
}

.blue_text {
    color: #007AFF;
    float: right;
}

.step {
    font-weight: 600;
    color: #007AFF;
    float: right;
}

.user_photo {
    align-content: start;
    margin-top: 10px;
    color: red;
    line-height: 10px;
}

.user_name {
    font-size: large;
}

.user_industry {
    font-size: small;
    color: #007AFF;
}

.user_function {
    white-space: pre-line;
    font-size: small;
    color: black;
    word-wrap: break-word; /* Breaks long words */
    word-break: break-all; /* Ensures breaks happen if necessary */
}

.profile_image_big {
    width: 45px;
    height: 50px;
    margin-bottom: 15px;
}

.subscribe_button {
    align-items: center;
    background: #007AFF;
    border: 2px solid transparent;
    border-radius: 99em;
    color: #fff;
    width: 200px;
    font-size: large;
    text-align: center;
    /*display: flex;*/
    font-weight: 600;
    padding: 8px;
    min-width: 150px;
}

.stepInfo {
    font-size: 14px;
    font-weight: 400;
    float: right;
    margin-top: -25px;
}

.signup_text {
    position: relative;
    border-radius: 20px;
    padding: 12px 20px;
    margin: 8px 0;
    box-sizing: border-box;
}

.icon_position {
    position: absolute;
    left: 8px;
    top: 16px;
}

@keyframes rotation {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(359deg);
    }
}

.google_login {
    background-color: black;
    color: white;
    padding: 10px;
    width: 90%;
    border-radius: 20px;
    font-size: 16px;
    align-content: center;
}

    .google_login a {
        width: 100%;
        color: white;
    }

.linked_login {
    background-color: blue;
    color: white;
    padding: 10px;
    border-radius: 20px;
    font-size: 16px;
    align-content: center;
    width: 90%;
}

.login-box2 {
    position: absolute;
    top: 25%;
    background-color: white;
    padding: 15px;
    border-radius: 20px;
    align-self: center;
    width: 450px;
}

.login-box3 {
    position: absolute;
    top: 15%;
    background-color: white;
    padding: 15px;
    border-radius: 20px;
    align-self: center;
    width: 450px;
}

.login-box4 {
    position: absolute;
    top: 15%;
    background-color: white;
    padding: 15px;
    border-radius: 20px;
    align-self: center;
    width: 600px;
}

@media (min-width: 992px) {
    .news_right_ul {
        display: grid;
        float: right;
        position: relative;
        text-align: center;
    }

    .mobile_menu {
        display: none;
    }

    .desktop_menu {
        display: inline-block !important;
        overflow-x: auto;
        overflow-y: hidden;
    }

    .sidebar-mini.sidebar-collapse .main-sidebar, .sidebar-mini.sidebar-collapse .main-sidebar::before {
        margin-left: 0;
        width: 4.5rem;
        margin-block-start: initial;
        margin-top: 75px;
        height: inherit;
        position: absolute;
    }

    .pushmenu_button {
        display: none;
    }
}

.top_button {
    display: flex;
    float: right;
    position: relative;
    right: 0px;
    top: 5px;
    text-align: center;
}

    .top_button li {
        align-content: center;
        margin-right: 10px;
        margin-top: 10px;
        align-items: center;
        background: #3395FF;
        border: 2px solid transparent;
        border-radius: 30px;
        color: #fff;
        font-size: 15px;
        display: flex;
        font-weight: 600;
        height: 5px;
        padding: 20px;
        transition: 0.2s ease;
        place-content: center;
    }


        .top_button li a {
            align-content: center;
            width: auto;
            margin-right: 10px;
            align-items: center;
            border: 2px solid transparent;
            border-radius: 30px;
            color: #fff;
            font-size: large;
            display: flex;
            font-weight: 400;
            height: 5px;
            padding: 20px;
            transition: 0.2s ease;
            place-content: center;
        }

            .top_button li a:hover {
                color: white;
                background-color: gray;
            }

        .top_button li:hover {
            background-color: gray;
            color: red;
        }

.top_button_active {
    background-color: red;
    color: black;
}

.pc_logo_text {
    color: var(--Foundation-Blue-blue-400, #3395FF);
    font-family: Verdana;
    font-size: 20px;
    font-style: normal;
    align-content: center;
    margin-top: 10px;
    font-weight: 600;
    line-height: normal;
}

.login_page {
    background-image: linear-gradient(white, blue);
}

.logincard {
    border-radius: 30px;
    /*width: 450px;*/
    background-color: white;
    padding: 30px;
}

.login_header {
    font-size: xx-large;
    font-weight: 500;
}

.login_header2 {
    font-size: large;
    font-weight: 400;
    padding-bottom: 30px;
}

.header_nav {
    padding-top: 8px;
    margin-left: 0px;
}

.header2 {
    color: black;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    gap: 5px;
    width: 150px;
    line-height: normal;
    text-transform: capitalize;
    background-color: white;
}

    .header2 li {
        background-color: white;
        font-weight: 600;
    }

.header3 {
    margin: 10px;
    width: 110px;
    border-style: solid;
    padding: 10px;
    font-weight: 500;
    border-width: 1px;
    border-color: white;
    box-shadow: inset;
    border-radius: 20px;
    background-color: white;
    elevation: above;
    cursor: pointer;
}

    .header3:is(:hover) {
        background-color: lightcyan;
    }

.navbar-trans {
    border-color: #3395FF;
    background-color: transparent;
}

.navbar-light .navbar-nav .show > .nav-link, .navbar-light .navbar-nav .active > .nav-link, .navbar-light .navbar-nav .nav-link.show, .navbar-light .navbar-nav .nav-link.active {
    border-bottom-style: solid;
    border-color: #3395FF;
}

.header2 a {
    color: white;
    justify-content: space-between;
}

    .header2 a:focus {
        color: black;
        justify-content: space-between;
    }

.header2:active {
    /*border-bottom-style: solid;*/
    /*border-color: #3395FF;*/
    color: black;
}

.header2 a:hover {
    justify-content: space-between;
    border-bottom-style: solid;
    border-color: red;
}

.body {
    background-color: white;
}

.expand_blog {
    position: absolute;
    cursor: pointer;
    float: right;
    top: 280px;
    right: 20px;
}

.expand_podcast {
    cursor: pointer;
    float: right;
    padding: 10px;
    height: 70%;
}

.custom-input {
    border-radius: 10px;
}

.mob_menu2 {
    display: flex;
    vertical-align: bottom;
    align-items: flex-end;
    width: 100%;
    font-size: 15px;
    padding-left: 15px;
    elevation: above;
    padding-top: 20px;
    flex-wrap: wrap;
}

    .mob_menu2 li {
        background-color: white;
        height: 40px;
        text-align: center;
        margin-right: 5px;
        margin-left: 5px;
        margin-top: 5px;
        margin-bottom: 5px;
        cursor: pointer;
        width: 100px;
        color: black;
        opacity: 1;
        border-radius: 40px;
        border: 1px;
        border-color: gray;
        border-style: solid;
    }

        .mob_menu2 li a {
            color: black;
        }

.mob_menu {
    display: none;
    vertical-align: bottom;
    align-items: flex-end;
    width: 100%;
    font-size: 15px;
    padding-left: 15px;
    elevation: above;
    padding-top: 20px;
    flex-wrap: wrap;
}

    .mob_menu li {
        background-color: white;
        height: 40px;
        text-align: center;
        margin-right: 5px;
        margin-left: 5px;
        margin-top: 5px;
        margin-bottom: 5px;
        cursor: pointer;
        width: 100px;
        color: black;
        opacity: 1;
        border-radius: 40px;
        border: 1px;
        border-color: gray;
        border-style: solid;
    }

        .mob_menu li a {
            color: black;
        }

.blogs_ul_img {
    position: absolute;
    display: flex;
    vertical-align: bottom;
    align-items: flex-end;
    width: 100%;
    font-size: 16px;
    padding-left: 10px;
}

    .blogs_ul_img li {
        margin: 1px;
        padding: 5px;
    }

        .blogs_ul_img li:last-child {
            margin-right: 50px;
            margin-left: auto;
        }


.podcast_ul_img {
    display: flex;
    vertical-align: bottom;
    align-items: flex-end;
    width: 100%;
    font-size: 20px;
}

    .podcast_ul_img li {
        padding: 10px;
    }

.blog_ul_img li {
    margin: 0px;
    padding: 0px;
    font-size: large;
}

.blog_ul {
    display: flex;
    vertical-align: bottom;
    align-items: flex-end;
    width: 100%;
    font-size: 15px;
    padding-left: 15px;
}

    .blog_ul li {
        margin-right: 10px;
        margin-left: 10px;
        cursor: pointer;
        position: relative;
        width: 250px;
        text-align: center;
        color: white;
        opacity: 1;
        border-radius: 40px;
        border: 1px;
        padding: 10px;
        border-color: white;
        border-style: solid;
    }


.blog_ul_img {
    display: flex;
    vertical-align: bottom;
    align-items: flex-end;
    width: 100%;
    font-size: 20px;
    padding-left: 0px;
}

    .blog_ul_img li {
        margin: 10px;
        padding: 5px;
    }

.podcast_ul {
    display: flex;
    vertical-align: bottom;
    align-items: flex-end;
    width: 100%;
    font-size: 15px;
    padding-left: 15px;
}

    .podcast_ul li {
        margin-right: 10px;
        margin-left: 10px;
        cursor: pointer;
        position: relative;
        width: 250px;
        text-align: center;
        color: white;
        opacity: 1;
        border-radius: 40px;
        border: 1px;
        padding: 10px;
        border-color: white;
        border-style: solid;
    }


.blog_image_title {
    padding-top: 20px;
    background-color: black;
    position: static;
    opacity: .8;
    color: white;
    margin-top: auto;
    height: 390px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

    .blog_image_title h3 {
        font-size: 24px;
        font-weight: 600px;
        padding-left: 30px;
        padding-top: 30px;
    }

    .blog_image_title p {
        width: 90%;
        font-size: 17px;
        font-weight: 500px;
        text-align: justify;
        padding-left: 30px;
        padding-top: 5px;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 7;
        -webkit-box-orient: vertical;
    }

.podcast_image_title {
    background-color: black;
    position: static;
    opacity: .8;
    color: white;
    margin-top: -280px;
    height: 280px;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
}

    .podcast_image_title h3 {
        font-weight: 600px;
        padding-left: 30px;
        padding-top: 30px;
    }

    .podcast_image_title p {
        width: 90%;
        font-size: 16px;
        font-weight: 500px;
        text-align: justify;
        padding-left: 30px;
        padding-top: 5px;
    }

.video_source {
    position: absolute;
    z-index: 100;
    background-color: black;
    opacity: .9;
    color: white;
    width: 110px;
    border-radius: 40px;
    padding: 5px 10px 7px 10px; /*top right botton left*/
    margin-top: 15px;
    margin-left: 15px;
}

.blogs_cat {
    color: deepskyblue;
    padding-top: 10px;
}

.blogs_link {
    position: absolute;
    z-index: 100;
    background-color: black;
    opacity: .7;
    text-align: center;
    color: white;
    width: 50px;
    border-radius: 40px;
    padding: 5px 10px 7px 10px; /*top right botton left*/
    margin-top: 20px;
    right: 30px;
    top: 180px;
    padding: 10px;
    border-color: white;
    border: 3px;
    border-style: solid;
}

    .blogs_link:hover {
        transform: rotate(90);
    }

.blogs_source {
    position: absolute;
    z-index: 100;
    background-color: black;
    opacity: .9;
    color: white;
    width: auto;
    max-width: 250px;
    border-radius: 40px;
    padding: 5px 10px 7px 10px; /*top right botton left*/
    margin-top: 20px;
    margin-left: 30px;
}

.podcast_source {
    position: absolute;
    z-index: 100;
    background-color: black;
    opacity: .7;
    color: white;
    width: auto;
    border-radius: 40px;
    padding: 5px 10px 7px 10px; /*top right botton left*/
    margin-top: 20px;
    margin-left: 30px;
}

.no-gutters {
    margin-right: 0;
    margin-left: 0;
}

    .no-gutters .col {
        padding-right: 0;
        padding-left: 0;
    }



.blog_card2 {
    position: revert;
    background-color: transparent;
    border-color: transparent;
    border-width: 0px;
    border-radius: 0px;
    elevation: below;
    min-height: 370px;
    max-height: 370px;
    cursor: pointer;
}

.blog_card {
    background-color: white;
    border-color: white;
    border-width: 2px;
    border-radius: 20px;
    min-height: 500px;
    max-height: 500px;
    cursor: pointer;
}

.podcast_cards {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%; /* Ensures equal height */
}

.podcast_card {
    background-color: white;
    border-color: white;
    border-width: 2px;
    border-radius: 20px;
    min-height: 450px;
    max-height: 450px;
    cursor: pointer;
}

    .podcast_card:hover .podcast_footertext {
        display: inline;
    }

    .podcast_card:hover .podcast_card_thumb_pg {
        width: 100%;
        height: 280px;
        object-fit: scale-down;
        cursor: pointer;
        padding: 1px;
        background-image: linear-gradient(to top, #cfd9df 0%, white 40%);
        border-radius: 30px;
        object-fit: fill;
        animation-delay: inherit;
    }

.blogs_footertext {
    display: none;
}

.podcast_footertext {
    display: none;
}

    .podcast_footertext ul li {
        width: 100%;
        scroll-padding-block-end: auto;
        float: inline-end;
    }

    .podcast_footertext li:last-child {
        margin-right: 0;
        margin-left: auto;
    }

    .podcast_footertext:is(:hover) {
        display: inline;
    }

.podcast_listen {
    align-items: center;
    background: #007AFF;
    border: 2px solid transparent;
    border-radius: 99em;
    color: #fff;
    width: 200px;
    font-size: large;
    /*display: flex;*/
    font-weight: 600;
    /*padding: 10px;*/
    bottom: 0px;
}

.blogs_card_thumb_pg {
    width: 100%;
    height: 250px;
    cursor: pointer;
    border-color: gray;
    padding: 1px;
    background-image: linear-gradient(to top, #cfd9df 0%, white 40%);
    border-radius: 25px;
    object-fit: cover;
}

.podcast_card_thumb_pg {
    width: 100%;
    height: 350px;
    cursor: pointer;
    padding: 1px;
    background-image: linear-gradient(to top, #cfd9df 0%, white 40%);
    border-radius: 30px;
    object-fit: fill;
}

.blogs_short_desc {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.blogs_title_desc {
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 2px;
    text-overflow: ellipsis;
    white-space: pre-wrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.podcast_title_desc {
    font-size: x-large;
    font-weight: 700;
    margin-bottom: 2px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.blog_thumb {
    width: 100%;
    min-height: 200px;
    cursor: pointer;
    object-fit: cover;
    background-image: linear-gradient(to top, #cfd9df 0%, white 40%);
    border-radius: 30px;
    padding: 1px;
}

.podcast_card_thumb_main {
    width: 100%;
    height: 580px;
    cursor: pointer;
    object-fit: scale-down;
    background-image: linear-gradient(to top, #cfd9df 0%, white 40%);
    border-radius: 30px;
    padding: 1px;
}

.blog_main_card {
    position: relative;
    background-color: black;
    border-color: transparent;
    border-width: 0px;
    border-radius: 20px;
    height: auto;
    padding-bottom: 30px;
}

.podcast_main_card {
    background-color: transparent;
    border-color: transparent;
    border-width: 0px;
    border-radius: 20px;
    height: 620px;
    padding-bottom: 30px;
}

.news_shot_list {
    padding-top: 20px;
    padding-left: 20px;
}

.news_card_main {
    background-color: white;
    border-color: transparent;
    border-width: 0px;
    border-radius: 10px;
    padding-bottom: 20px;
}

.news_title {
    overflow: hidden;
    color: var(--Font-Color-Black, #191919);
    text-overflow: ellipsis;
    font-size: 20px;
    font-weight: 600;
}

.news_desc {
    font-size: large;
    color: black;
}

.news_card {
    background-color: transparent;
    border-color: transparent;
    border-width: 0px;
    cursor: pointer;
}

    .news_card:is(:hover) {
        background-color: white;
        border-color: transparent;
        border-width: 0px;
    }

.new_thumb_p {
    line-height: 10px;
    color: blue;
}

.news_card_thumb_main {
    width: 100%;
    height: 270px;
    object-fit: cover;
    cursor: pointer;
    background-image: linear-gradient(to top, #cfd9df 0%, white 40%);
    border-radius: 20px;
    padding: 1px;
}

.video_card {
    background-color: white;
    border-color: gray;
    border-radius: 20px;
    text-overflow: ellipsis;
    overflow: hidden;
}

.video_card_pg {
    background-image: linear-gradient(to top, white 0%, white 40%);
    border-color: gray;
    border-radius: 40px;
}

.video_card_thumb {
    width: 100%;
    height: 300px;
    cursor: pointer;
    padding: 1px;
    border-color: gray;
    border-radius: 30px;
}

.news_card_thumb_pg {
    width: 100%;
    height: 100px;
    object-fit: cover;
    cursor: pointer;
    padding: 1px;
    background-image: linear-gradient(to top, #cfd9df 0%, white 40%);
    border-radius: 10px;
}

.video_card_thumb_pg {
    width: 100%;
    height: 200px;
    cursor: pointer;
    padding: 1px;
    background-image: linear-gradient(to top, #cfd9df 0%, white 40%);
    border-radius: 20px;
}

.video_card_thumb_main {
    width: 100%;
    cursor: pointer;
    background-image: linear-gradient(to top, #cfd9df 0%, white 40%);
    border-radius: 30px;
    padding: 1px;
}

.video_title {
    cursor: pointer;
    overflow: hidden;
    color: var(--Font-Color-Black, #191919);
    text-overflow: ellipsis;
    font-size: 20px;
    font-style: normal;
    height: 50px;
    font-weight: 600;
    line-height: 24px; /* 150% */
    padding: 5px;
}

.video_footertext {
    display: flex;
    align-items: flex-start;
    width: 100%;
    font-size: 18px;
    padding-left: 5px;
}

    .video_footertext li {
        align-content: center;
        font-size: 18px;
        font-weight: 500;
        padding-left: 10px;
    }

/*  .video_footertext li:last-child {
            margin-right: 0;
            margin-left: auto;
        }*/


.mpc_button {
    background: #51B9FF;
    border: 2px solid transparent;
    border-radius: 99em;
    color: black;
    width: auto;
    font-size: large;
    font-weight: 600;
    height: 2.5em;
    position: page; /* WebKit Bug 173872 */
    transition: 0.2s ease;
}

    .mpc_button a {
        text-align: center !important;
    }

.podcast_icon {
    padding-left: 20px;
}

.podcast_thumb {
    min-width: 100px;
    width: 100%;
    height: auto;
    padding-right: 5px;
    border-color: gray;
    border-radius: 15px;
}

.podcast_title {
    overflow: hidden;
    font-size: small;
    font-weight: 600;
    line-height: 20px; /* 150% */
    padding: 5px;
    padding-left: 5px;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    height: 50px;
}

.podcast_timer {
    padding: 5px;
}

.mpc_profile_sm {
    width: 30px;
    height: 30px;
    border-color: gray;
    border-radius: 20px;
}

.quest_title {
    display: flex;
    align-items: flex-start;
    width: 90%;
    font-size: 16px;
    padding-left: 5px;
}

    .quest_title li {
        align-content: center;
        font-size: 18px;
        font-weight: 500;
        overflow: hidden;
        padding-left: 5px;
        text-overflow: ellipsis;
    }

.news_header {
    overflow: hidden;
    color: var(--Font-Color-Black, #191919);
    text-overflow: ellipsis;
    font-size: large;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    /*padding-left: 10px;*/
}

.news_normal {
    font-size: 16px;
    padding-left: 10px;
    font-style: normal;
    font-weight: 400;
    margin-top: -12px;
    background-color: transparent;
}

.quest_header {
    /*overflow: hidden;*/
    color: var(--Font-Color-Black, #191919);
    /*text-overflow: ellipsis;*/
    font-size: large;
    font-style: normal;
    font-weight: 600;
    /*line-height: 24px;*/
    padding-left: 10px;
}

.quest_card {
    padding: 10px;
}

.questcard_height {
    max-height: 200px;
    min-height: 200px;
    overflow: hidden;
    /*white-space: nowrap;*/
    text-overflow: clip;
    /* white-space: nowrap;
    overflow: hidden;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;*/
}

.journal_desc {
    max-height: 140px;
    min-height: 135px;
    /*text-overflow: ellipsis;
    white-space: nowrap;*/
    overflow: hidden;
}

.news_height {
    max-height: 100px;
    min-height: 100px;
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.quest_height {
    max-height: 130px;
    min-height: 130px;
    text-overflow: ellipsis;
    /*    white-space: nowrap;
    overflow: hidden;*/
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.comment_rd_button {
    position: relative;
    background-color: white;
    border-style: solid;
    border-color: cornflowerblue;
    padding: 8px;
    border-radius: 40px;
    border-width: 1.5px;
    cursor: pointer;
}

.QnA_Quick_Filter {
    display: flex;
    vertical-align: bottom;
    align-items: flex-end;
    width: 100%;
    font-size: 20px;
    padding-left: 10px;
}

    .QnA_Quick_Filter li {
        cursor: pointer;
        padding-left: 40px;
        font-weight: 600;
        border-bottom-style: solid;
        border-color: gray;
    }

        .QnA_Quick_Filter li active {
            cursor: pointer;
            padding-left: 40px;
            font-weight: 600;
            border-bottom-style: solid;
            border-color: red;
        }

.comment_text {
    display: inline-block;
    padding: 2px;
    /*width: 100%;*/
    border-radius: 10px;
    border-color: gray;
    border-width: 2px;
}

.quest_foot_avtar {
    position: relative;
    width: 50px;
}

.quest_foot_text {
    position: relative;
    width: 100px;
}

.quest_creator {
    position: absolute;
    font-weight: bold;
    top: 1px;
    left: 65px;
}

.quest_industry {
    position: absolute;
    font-weight: 600;
    top: 22px;
    left: 65px;
    font-size: small;
    white-space: pre-wrap;
    overflow: clip;
    text-overflow: ellipsis;
}

.quest_time {
    top: 1px;
    font-size: 12px;
    position: absolute;
    right: 10px;
}

.podcast_industry {
    padding-left: 5px;
    font-weight: 600;
}

.quest_link {
    top: 22px;
    font-size: 30px;
    position: absolute;
    left: 50px;
}

.quest_profile_pics {
    width: 50px;
    height: 50px;
    border-color: gray;
    border-radius: 30px;
}

.quest_normal {
    color: var(--Font-Color-Black, #191919);
    white-space: pre-wrap;
    text-align: justify;
    font-size: small;
    font-weight: 400;
    padding-left: 5px;
    margin-top: 2px;
    /*text-overflow: ellipsis;*/
    /* white-space: nowrap;
    overflow: hidden;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;*/
}

.quest_thumb {
    width: 96px;
    height: 96px;
    border-color: gray;
    border-radius: 20px;
}

.quest_foot {
    font-size: 14px;
    padding: 0 10px 10px 0;
}

.journal_button {
    background: #E6F2FF;
    float: right;
    /*border: 2px solid;*/
    /*border-color: blue;*/
    border-radius: 10px;
    color: blue;
    font-size: 16px;
    font-weight: 400;
    height: 2.5em;
    position: relative;
    transition: 0.2s ease;
    width: fit-content;
    text-align: center;
}

.subscribe_div {
    position: absolute;
    top: 10px;
    right: 150px;
    width: 100%;
}

.switch_industry {
    display: flex;
    vertical-align: bottom;
    align-items: flex-end;
    width: 100%;
    font-size: 15px;
    padding-left: 15px;
    elevation: above;
    padding-top: 5px;
    flex-wrap: wrap;
}

    .switch_industry li {
        background-color: white;
        height: 40px;
        margin-right: 5px;
        margin-left: 5px;
        margin-top: 5px;
        margin-bottom: 5px;
        cursor: pointer;
        width: auto;
        color: black;
        opacity: 1;
        border-radius: 40px;
        border: 1px;
        border-color: gray;
        border-style: solid;
    }

        .switch_industry li a {
            color: black;
            text-align: center;
            vertical-align: middle;
        }

@media (max-width: 479px) {
    .ask_anonm_desk {
        display: none;
    }

    .ask_anonm_mob {
        display: flex;
    }

    .news_right_ul {
        margin-top: 20px;
        display: flex;
        position: relative;
        text-align: center;
        padding-bottom: 20px;
    }

        .news_right_ul li {
            padding: 20px;
        }
            /**/
            .news_right_ul li:last-child {
                margin-right: 0;
                margin-left: auto;
            }
    /* .mobile_menu {
        display: none !important;
    }

    .desktop_menu {
        display: inline-flex !important;
    }*/

    .header2 {
        padding: 5px;
    }

        .header2 li {
            background-color: white;
            width: fit-content;
            font-weight: 600;
            border-radius: 1px;
        }

    .header_nav {
        padding-top: 8px;
        margin-left: 0px;
    }

    .header2 {
        color: black;
        text-align: center;
        font-size: small;
        font-style: normal;
        font-weight: 400;
        gap: 2px;
        width: auto;
        line-height: normal;
        text-transform: capitalize;
        background-color: white;
    }

        .header2 li {
            background-color: white;
            width: auto;
            font-size: small;
            font-weight: 600;
        }


    .mobile_menu {
        display: none !important;
    }

    .desktop_menu {
        display: inline-block !important;
    }

    .pushmenu_button {
        display: inline-block;
    }

    .body {
        background-color: blue;
    }

    .login-box4 {
        position: absolute;
        top: 15%;
        background-color: white;
        padding: 15px;
        border-radius: 20px;
        align-self: center;
        width: 300px;
    }

    .top_button {
        display: flex;
        /*float: right;*/
        position: relative;
        right: 0px;
    }

        .top_button li {
            margin-right: 2px;
            margin-top: 2px;
            align-items: center;
            background: #3395FF;
            border: 2px solid transparent;
            border-radius: 30px;
            color: #fff;
            font-size: small;
            display: flex;
            font-weight: 600;
            height: 5px;
            padding: 10px;
            transition: 0.2s ease;
            place-content: center;
        }

            .top_button li a {
                width: max-content;
                margin-right: 10px;
                align-items: center;
                border: 2px solid transparent;
                border-radius: 30px;
                color: #fff;
                font-size: small;
                display: flex;
                font-weight: 400;
                height: 10px;
                padding: 10px;
                transition: 0.2s ease;
                place-content: center;
            }

    .login-box2 {
        position: absolute;
        top: 10%;
        background-color: white;
        padding: 15px;
        border-radius: 20px;
        align-self: center;
        width: 300px;
    }

    .login-box3 {
        position: absolute;
        top: 10%;
        background-color: white;
        padding: 15px;
        border-radius: 20px;
        align-self: center;
        width: 300px;
    }
}


.login_page {
    background-color: blue;
    ;
}

.mob_menu {
    display: flex;
    vertical-align: bottom;
    align-items: flex-end;
    width: 100%;
    font-size: 15px;
    padding-left: 15px;
    elevation: above;
    padding-top: 5px;
    flex-wrap: wrap;
}

    .mob_menu li {
        background-color: white;
        height: 40px;
        margin-right: 5px;
        margin-left: 5px;
        margin-top: 5px;
        margin-bottom: 5px;
        cursor: pointer;
        width: 100px;
        color: black;
        opacity: 1;
        border-radius: 40px;
        border: 1px;
        border-color: gray;
        border-style: solid;
    }

        .mob_menu li a {
            color: black;
            text-align: center;
            vertical-align: middle;
        }

.subscribe_div {
    position: revert;
    left: -10px;
}

.sub_email {
    float: inline-start;
    border-radius: 10px;
    padding: 20px;
    width: 300px;
    border-style: solid;
    border-color: cornflowerblue;
}

}

.subscribe_button {
    background: #007AFF;
    border: 2px solid transparent;
    border-radius: 99em;
    color: #fff;
    width: 100%;
    font-size: large;
    /*display: flex;*/
    font-weight: 600;
    padding: 8px;
    min-width: 150px;
}

.subcribe_text {
    padding: 10px 0px 10px 0px;
}

.quest_button {
    align-items: center;
    background: white;
    border: 2px solid;
    border-color: blue;
    width: fit-content;
    border-radius: 99em;
    color: blue;
    font-size: 13px;
    display: flex;
    font-weight: 400;
    height: 2.5em;
    padding: 10px;
    position: relative; /* WebKit Bug 173872 */
    transition: 0.2s ease;
    width: fit-content;
    text-align: center;
}

.sub_email {
    float: inline-end;
    border-radius: 10px;
    padding: 20px;
    width: 100%;
    border-style: solid;
    border-color: cornflowerblue;
}

.quest_nav_link {
    display: flex;
    float: right;
    align-items: flex-end;
    font-size: 24px;
    padding-left: 10px;
    padding-top: 10px;
}

    .quest_nav_link li {
        align-content: center;
        font-size: 16px;
        font-weight: 500;
        padding-left: 5px;
    }

.bottom_border {
    border: medium;
    border-color: gray;
}

.news_thumb {
    width: 100%;
    height: auto;
    background-image: url('https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQZCIgfUfJUyzxTaCzWkZQIKzCltjNHq-Ti0g&s');
    background-size: cover;
    border-radius: 10px;
    background-color: #ccc; /* Fallback color if no image loads */
}

    .news_thumb:after {
        content: "";
        background-image: url('alternate-image.jpg');
        display: block;
        width: 100%;
        border-radius: 10px;
        height: 100%;
    }

/*.news_thumb {
    width: 100%;
    height: 70%;
    object-fit: cover;
    border-radius: 10px;
    background-image: url('https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQZCIgfUfJUyzxTaCzWkZQIKzCltjNHq-Ti0g&s');
    background-repeat: no-repeat;
    background-size: cover;*/ /* Scale the image to cover the entire container */
/*background-position: center;*/ /* Center the image */
/*}*/


.gradient_back {
    background-image: linear-gradient(to top, #cfd9df 0%, white 40%);
    text-overflow: ellipsis;
    overflow: hidden;
}

.white_back {
    background: white;
    /*display: block;*/
}

.duration_text {
    font-size: 18px;
    vertical-align: middle;
}

.svg_podcast {
    cursor: pointer;
    float: right;
    width: 175px;
    height: 40px;
}

#play_audio {
    /*width: 100%;*/
}

#play_video {
    /*width: 100%;*/
}

.podcast_svg {
    width: 40px;
    height: 40px;
}

.videocast_svg_text {
    width: 91px;
    height: 40px;
}

.podcast_svg_text {
    width: 109px;
    height: 40px;
}

.videocast_svg {
    width: 40px;
    height: 40px;
}

.sub_page_title {
    padding-left: 40px;
}

.sub_page_title_ind {
    position: relative;
    font-family: 'hauora-semibold';
    margin-top: -10px;
    padding-left: 70px;
    font-size: large;
    font-weight: 600;
}

.sub_page_title_text {
    font-family: 'hauora-semibold';
    margin-top: -40px;
    padding-left: 70px;
    font-size: 26px;
    font-weight: 600;
}

.sub_page_sub_title {
    padding-left: 74px;
    font-size: 20px;
    font-weight: 400;
}

.ul_view {
    align-content: center;
    padding: 0px;
}

    .ul_view li {
        font-size: 20px;
        font-weight: 500;
    }

.cont_watch {
    padding: 2px;
    font-size: large;
    font-weight: 600;
}

.readmore_news ul li {
    width: 100%;
    scroll-padding-block-end: auto;
    float: inline-end;
}

.news_source {
    white-space: break-spaces;
    overflow: hidden;
    font-size: 18px;
    text-overflow: ellipsis;
    width: 20px;
}

.news_hd_time {
    font-size: x-small;
    padding: 5px;
    /*background-color:yellow;*/
}

.news_footertext {
    display: flex;
    align-items: flex-start;
    width: 100%;
    font-size: small;
    padding-left: 5px;
}

    .news_footertext li:last-child {
        margin-right: 0;
        font-size: small;
        margin-left: auto;
    }

.news_title_desc {
    font-size: small;
    font-weight: 500;
    margin-bottom: 2px;
    text-overflow: ellipsis;
    word-wrap: anywhere;
    overflow: hidden;
    height: 50px;
    font-weight: 600;
    line-height: 24px; /* 150% */
    padding: 5px;
}

.desc_top3 {
    font-size: small;
    font-weight: 400;
    padding-left: 5px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    /*padding-bottom: 10px;*/
}

.video_title_cw {
    font-size: large;
    font-weight: 550;
    padding-left: 20px;
}

.continue_watch {
    width: 80%;
    height: 80px;
    padding: 2px;
    margin-left: 15px;
    border-radius: 15px;
    text-overflow: ellipsis;
}

    .continue_watch p {
        width: 100px;
        height: 80px;
        padding: 2px;
        margin-top: 2px;
        border-radius: 15px;
        text-overflow: ellipsis;
    }

.video_title_desc {
    text-overflow: ellipsis;
    height: 20px;
}

.continue_vieo_link {
    color: var(--Font-Color-Black, #191919);
    font-size: 16px;
    font-style: normal;
    padding: 0px 2px 0px 2px;
    font-weight: 400;
    line-height: normal;
}

    .continue_vieo_link a {
        color: blue;
        font-size: 16px;
        font-style: normal;
        padding: 0px 2px 0px 2px;
        font-weight: 400;
        line-height: normal;
    }

.viewVideo {
    min-width: 200px;
    width: 320px;
    max-width: 320px;
}

.news_card {
    background-color: white;
    height: 350px;
    border-radius: 10px;
}

@media (max-width: 479px) {
    .ask_anonm_desk {
        display: none;
    }

    .ask_anonm_mob {
        display: flex;
    }

    .header2 {
        padding: 5px;
    }

        .header2 li {
            background-color: white;
            width: fit-content;
            font-weight: 600;
            border-radius: 1px;
        }

    .mobile_menu {
        display: none;
    }

    .desktop_menu {
        display: inline-block !important;
        overflow-x: auto;
        overflow-y: hidden;
    }

    body {
        font-size: 13px;
    }

    .news_thumb {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 10px;
    }

    #title {
        font-size: small;
    }

    #title2 {
        font-size: small;
    }

    .modal-header {
        padding-left: 15px;
        padding-top: 2px;
        padding-bottom: 2px;
    }

    .modal-content {
        padding: 2px;
    }

    .card-body {
        padding: 5px;
    }



    .video_title {
        font-size: large;
        font-weight: 500;
        padding: 5px;
    }

        .video_title p {
            padding: 0px;
        }

    .video_card_thumb {
        width: 100%;
        cursor: pointer;
        border-color: gray;
        border-radius: 15px;
    }

    .video_footertext ul {
        align-content: center;
        padding: 0px;
    }

    .video_footertext li {
        font-size: small;
        font-weight: 500;
    }

    .header_nav {
        padding: 2px;
        margin-left: 0px;
        font-size: 20px;
    }

        .header_nav svg {
            height: 20px;
            width: 20px;
        }

    .pc_logo_text {
        color: var(--Foundation-Blue-blue-400, #3395FF);
        font-family: Verdana;
        font-size: 20px;
        font-style: normal;
        font-weight: 600;
        line-height: normal;
    }

    .col-sm-6 {
        padding: 2px;
    }

    .card-footer {
        padding: 5px;
        overflow: hidden;
    }

    .podcast_thumb {
        padding: 5px;
    }

    .podcast_timer {
        padding: 2px;
    }

    .duration_text {
        font-size: small;
        font-size-adjust: revert-layer;
    }

    .podcast_title {
        padding-left: 10px;
        font-size: small;
        font-weight: 600;
    }

    .podcast_icon {
        padding-left: 30px;
    }

    .mpc_button {
        background: #51B9FF;
        border-radius: 99em;
        color: black;
        font-size: small;
        /*font-size: 18px;*/
        /*display: flex;*/
        font-weight: 600;
        /*padding-left: 4%;*/
        position: page; /* WebKit Bug 173872 */
        transition: 0.2s ease;
    }

    .podcast_svg {
        width: 20px;
        height: 20px;
    }

    .videocast_svg {
        width: 20px;
        height: 20px;
    }

    .svg_podcast {
        float: right;
        height: 30px;
        padding-right: -10px;
    }

    .applemusicplay_svg {
        height: 30px;
        float: right;
    }

    .videocast_svg_text {
        width: 91px;
        height: 20px;
    }

    .podcast_svg_text {
        width: 109px;
        height: 20px;
    }

    .header2 {
        /*display: block !important;*/
        padding: 2px;
    }


    .sub_page_title {
        padding-left: 2px;
    }

    .sub_page_title_text {
        margin-top: -40px;
        padding-left: 40px;
        font-size: 20px;
        font-weight: 600;
    }

    .sub_page_sub_title {
        padding-left: 2px;
        font-size: 16px;
        font-weight: 400;
    }

    .viewVideo {
        width: 150px;
        padding-bottom: 20px;
        margin-bottom: 10px;
    }

    .header3 {
        margin: 10px;
        width: 90px;
        background-color: white;
        padding: 5px;
        font-weight: 500;
        border-width: 1px;
        border-radius: 10px;
        border-color: gray;
        border-style: outset;
    }

    .video_title_cw {
        font-size: small;
        font-weight: 500;
        padding-left: 20px;
    }

    .continue_vieo_link {
        padding-left: 20px;
    }
