/* GENERAL */
* {
    scroll-behavior: smooth;
}

a {
    text-decoration: none !important;
}

p, h1, h2, h3, h4, h5, div {
    color: #212529;
}

/* Added 21-2-2023 REX */
.at-share-dock-outer,
.at4-share {
    display: none;
}

/* HEADER */
.header-logo {
    max-height: 50px;
    padding: 8px 0px;
}

.header-wrapper {
    box-shadow: 0 6px 8px 0 rgb(0 0 0 / 0%), 0 2px 8px 0 rgb(0 0 0 / 19%);
}

    .header-wrapper.active {
        width: 100%;
        position: fixed;
        top: 0px;
        z-index: 1000;
        background-color: white;
    }

/* .search-container {
    width: fit-content;
    border: 2px solid rgb(1, 180, 235);
    border-radius: 3px;
} */

.search-container form {
    padding: 0px;
    margin: 0px;
    background-color: transparent;
}

.search-container input,
.search-container input:focus {
    border: none;
    background-color: transparent;
    outline: none;
    transition: width 0.6s, border-radius 0.6s, background 0.6s, box-shadow 0.6s;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    border: none;
    cursor: pointer;
    background: #ebebeb;
    margin-bottom: -14px;
    padding: 0px 15px;
}

.search-container button {
    border: none;
    background-color: transparent;
    float: right;
    transform: translateY(-10px);
    margin-right: 5px;
}

/* .search-container button i {
    color: rgb(1, 180, 235);
} */

.language-icon button,
.sidebar .dropdown button {
    border: 1px solid rgba(0, 0, 0, 0.3);
    padding: 5px 10px;
    box-shadow: none;
    border-style: none;
    background-color: transparent;
}

    .language-icon button i,
    .sidebar .dropdown button i {
        vertical-align: top;
        font-size: 30px;
    }

    .language-icon button span,
    .sidebar .dropdown button span {
        vertical-align: middle;
        /* font-size: 16px; */
        line-height: 28px;
    }

    .sidebar .dropdown button span {
        font-size: 18px !important;
    }

.language-icon .btn-secondary,
.language-icon .btn-secondary:not(:disabled):not(.disabled):active,
.sidebar .dropdown .btn-secondary,
.sidebar .dropdown .btn-secondary:not(:disabled):not(.disabled):active {
    background-color: transparent;
    color: #666666;
    box-shadow: none;
    padding: 0px;
}

    .language-icon .btn-secondary:hover,
    .sidebar .dropdown .btn-secondary:hover {
        color: rgb(48, 127, 222);
    }

.language-icon .modal,
.sidebar .modal {
    background: rgba(0, 0, 0, 0.5);
}

    .language-icon .modal.fade,
    .sidebar .modal.fade {
        transition: opacity 0.15s linear !important;
    }

.language-selection img {
    aspect-ratio: 2 / 1;
    width: 30px;
    vertical-align: baseline;
}

.language-selection .language-icon {
    /* margin-right: 5px; */
    width: 40px;
    height: 40px;
    border-radius: 50%;
    outline: 1px solid #3475ba;
    padding: 5px;
    font-size: 14px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    background: rgba(52, 117, 186, 0.1);
    color: #3475ba;
    transition: all 0.3s linear;
}

    .language-selection .language-icon.selected,
    .language-selection:hover .language-icon {
        background: #3475ba;
        color: white;
        box-shadow: 1px 1px 5px 2px rgb(52 117 186 / 70%);
    }

.modal-backdrop {
    display: none !important;
}

.language-icon .modal-content button span,
.sidebar .modal-content button span {
    font-size: 24px;
}

.language-icon .modal-body,
.sidebar .modal-body {
    padding: 15px 40px;
}

.language-selection .language-text {
    color: #222;
    font-size: 14px;
    align-self: center;
}

    .language-selection .language-text span {
        color: #777;
        font-size: 14px;
    }

.header .header-right button,
.sidebar .dropdown button {
    border-style: none;
    background-color: transparent;
}

.header .hamburger-bar button {
    all: unset;
    padding: 5px;
}

    .header .hamburger-bar button:hover {
        cursor: pointer;
        background-color: #eee;
    }

.header .hamburger-bar i {
    font-size: 30px;
    /* color: rgb(1, 180, 235); */
    color: #666666;
}

/* Sidebar */
.sidebar {
    z-index: 1001;
    position: fixed;
    top: 0px;
    right: 0px;
    width: 0px;
    height: 100%;
    background-color: #f1f1f2;
    overflow-y: auto;
    transition: all 0.3s ease-in-out;
}

    .sidebar.active {
        width: 50%;
    }

    .sidebar .close-btn {
        z-index: 1002;
        position: absolute;
        right: 15px;
        top: 15px;
        font-size: 20px;
    }

        .sidebar .close-btn button {
            all: unset;
        }

    .sidebar .social-links img {
        width: 20px;
        height: 20px;
    }

    .sidebar .social-links a {
        color: rgb(146, 146, 146);
    }

    .sidebar .search-container {
        height: 30px;
    }

        .sidebar .search-container input {
            width: 100%;
        }

    .sidebar h2 {
        font-size: 24px;
    }

    .sidebar .accordion {
        background-color: transparent;
        color: #333;
        cursor: pointer;
        padding: 15px;
        width: 100%;
        border: none;
        text-align: left;
        outline: none;
        font-size: 15px;
        text-transform: uppercase;
        opacity: 0;
        transition: all 0.5s ease-in-out;
        /* transition-delay: 0ms !important; */
    }

        .sidebar .accordion a {
            color: #333;
            display: block;
            height: 100%;
            width: 100%;
        }

        .sidebar .accordion.show {
            opacity: 1;
        }

    .sidebar .active,
    .accordion:hover {
        transition-delay: 0ms !important;
        background-color: #ccc;
    }

    .sidebar .accordian-group ul {
        list-style-type: none;
        padding: 15px 0px;
        margin: 0px;
        height: max-content;
    }

    .sidebar .accordian-group li {
        list-style-type: none;
        padding: 10px;
        margin: 0px;
        cursor: pointer;
    }

        .sidebar .accordian-group li:hover {
            background-color: #eee;
        }

        .sidebar .accordian-group li a {
            height: 100%;
            width: 100%;
            display: block;
            margin: 0px;
            color: #333;
        }

    .sidebar .panel {
        padding: 0px 15px;
        max-height: 0px;
        background-color: white;
        overflow: hidden;
        transition: all 0.5s;
    }

        .sidebar .panel.expand {
            max-height: 300px;
        }

/* TAGS NAVBAR */
.tags-dropdown-wrapper {
    text-align: center;
}

    .tags-dropdown-wrapper .btn-group:not(:last-child) {
        border-right: 1px solid rgb(48, 127, 222);
    }

    .tags-dropdown-wrapper .btn,
    .tags-dropdown-wrapper .btn-group > a {
        text-transform: uppercase;
        color: rgb(7, 84, 177);
        background-color: transparent;
        border: none;
        font-weight: 700;
        font-size: 18px;
        cursor: pointer;
        padding: 0px 18px;
    }

    .tags-dropdown-wrapper .btn-group.show {
        display: inline-flex !important;
    }

    .tags-dropdown-wrapper .btn:focus {
        outline: none;
        box-shadow: none;
        background-color: transparent;
        border: none;
        border-bottom: 2px solid rgb(7, 84, 177);
    }

    .tags-dropdown-wrapper .dropdown-menu {
        width: max-content;
        margin: 0px;
    }

    .tags-dropdown-wrapper .tags-dropdown {
        padding: 10px;
    }

        /* Added 21-2-2023 REX */
        .tags-dropdown-wrapper .tags-dropdown .tags-img {
            position: relative;
        }

            .tags-dropdown-wrapper .tags-dropdown .tags-img img {
                width: 220px;
                aspect-ratio: 1 / 1;
                vertical-align: baseline;
                margin-right: 5px;
                object-fit: cover;
            }

    .tags-dropdown-wrapper .dropdown-menu {
        padding: 0px;
    }

    .tags-dropdown-wrapper .tags-dropdown {
        position: relative;
        min-height: 240px;
        /* Modified 21-2-2023 REX */
        height: max-content;
    }

        /* Added 21-2-2023 REX */
        .tags-dropdown-wrapper .tags-dropdown > a {
            height: max-content;
            display: inline-block;
        }

        .tags-dropdown-wrapper .tags-dropdown > * {
            vertical-align: middle;
        }

    .tags-dropdown-wrapper .item-text {
        position: absolute;
        bottom: 0px;
        /* Modified 21-2-2023 REX */
        padding: 8px;
        font-size: 13px;
        font-weight: 700 !important;
        height: max-content;
        width: 220px;
        color: rgb(7, 84, 177);
        background-color: rgba(255, 255, 255, 0.6);
        font-weight: 600;
        transition: background-color 0.3s, visibility 0.3s;
        border-left: 0px solid orange;
        transition: all 0.3s linear;
    }

    .tags-dropdown-wrapper .dropdown-menu .dropdown-item {
        padding: 10px;
        font-weight: 400;
        min-width: 150px;
    }

        .tags-dropdown-wrapper .dropdown-menu .dropdown-item:hover {
            background-color: rgb(48, 127, 222);
            color: white;
        }

    .tags-dropdown-wrapper .banner-slider .slider-text {
        padding: 15px;
    }

        .tags-dropdown-wrapper .banner-slider .slider-text h2 {
            /* font-size: 16px; */
        }

        .tags-dropdown-wrapper .banner-slider .slider-text p {
            font-size: 12px;
        }

    .tags-dropdown-wrapper .dropdown-menu .banner-slider img {
        min-height: 300px;
    }

/* SLIDER */
.banner-slider {
    color: white;
    position: relative;
}

.banner-item-sm {
    position: relative;
}

.banner-slider {
    max-height: 400px;
}

    .banner-slider img {
        object-fit: cover;
        object-position: center;
        min-height: 405px;
        width: 100%;
        height: 100%;
    }

    .banner-slider .slider-cat-list {
        position: absolute;
        top: 0px;
        left: 0px;
        display: flex;
        flex-wrap: wrap;
        gap: 5px;
    }

    .banner-slider .slider-cat {
        color: white;
        background-color: rgba(100, 100, 100, 0.5);
        width: max-content;
        white-space: nowrap;
        padding: 5px 15px;
        font-size: 14px;
        font-weight: 700;
    }

    .banner-slider .slider-content {
        width: 100%;
        position: absolute;
        bottom: -5px;
        left: 0px;
        color: white;
    }

    .banner-slider .slider-text {
        height: max-content;
        padding: 15px;
        width: 100%;
        background-color: rgba(255, 255, 255, 0.6);
        color: rgb(7, 84, 177);
        transition: background-color 0.3s, visibility 0.3s;
        border-left: 0px solid orange;
        transition: all 0.3s linear;
    }

        .banner-slider .slider-text p {
            margin: 0px;
        }

        .banner-slider .slider-text h2,
        .banner-slider .slider-text-article h2 {
            color: rgb(7, 84, 177);
            font-size: 24px;
        }

        .banner-slider .slider-text p {
            /* font-size: 16px; */
        }

    .banner-slider .slider-text-article {
        height: max-content;
        padding: 20px;
        max-width: 600px;
        background-color: rgba(255, 255, 255, 0.6);
        color: rgb(7, 84, 177);
    }

    .banner-slider:hover .slider-text {
        background-color: rgba(255, 255, 255, 0.9);
        border-left: 10px solid orange;
        transition: background-color 0.3s, visibility 0.3s;
        transition: all 0.3s linear;
    }

        .banner-slider:hover .slider-text .arrow {
            transform: translateX(15px);
        }

    .banner-slider .arrow {
        font-size: 35px;
        color: rgb(7, 84, 177);
        transition: transform 0.3s ease-out;
    }

.banner-item-sm,
.banner-slider {
    box-shadow: 5px 5px 5px rgb(0 0 0 / 10%);
}

    .banner-item-sm img {
        height: 195px;
        width: 100%;
        object-fit: cover;
        object-position: center;
    }

    .banner-item-sm .item-text {
        position: absolute;
        bottom: 0px;
        padding: 8px;
        /*width: calc(100% - 22.5px);*/
        width: 100%;
        color: rgb(7, 84, 177);
        background-color: rgba(255, 255, 255, 0.6);
        transition: background-color 0.3s, visibility 0.3s;
        line-height: 20px;
        height: 56px;
        border-left: 0px solid orange;
        transition: all 0.3s linear;
    }

.banner-item-sm-wrapper .banner-item-sm .item-text span {
    font-size: 13px;
    font-weight: 700 !important;
    height: 40px;
    /* 56px - 8px * 2 (padding y) */
    display: table-cell;
    vertical-align: middle;
}

.banner-item-sm .item-text span,
.tags-dropdown .item-text span {
    font-size: 11px;
    font-weight: 400 !important;
}

.banner-item-sm:hover .item-text,
.tags-dropdown .tags-img:hover .item-text {
    background-color: rgba(255, 255, 255, 0.9);
    border-left: 5px solid orange;
    transition: background-color 0.3s, visibility 0.3s;
    transition: all 0.3s linear;
}

.banner-item-sm .slider-cat-list {
    position: absolute;
    top: 0px;
    /*left: 15px;*/
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    /*width: calc(100% - 30px);*/
    width: 100%;
    left: 0;
}

.banner-item-sm .slider-cat {
    color: white;
    background-color: rgba(100, 100, 100, 0.5);
    width: max-content;
    white-space: nowrap;
    padding: 3px 10px;
    font-size: 12px;
    font-weight: 700;
}

.top-article-items .col-lg-6:first-child {
    padding-right: 7.5px;
}

.top-article-items .col-lg-6:last-child {
    padding-left: 7.5px;
}

.top-article-items .banner-item-sm-wrapper .col-sm-6:nth-child(1) {
    padding-right: 7.5px;
    margin-bottom: 15px;
}

.top-article-items .banner-item-sm-wrapper .col-sm-6:nth-child(2) {
    padding-left: 7.5px;
    margin-bottom: 15px;
}

.top-article-items .banner-item-sm-wrapper .col-sm-6:nth-child(3) {
    padding-right: 7.5px;
}

.top-article-items .banner-item-sm-wrapper .col-sm-6:nth-child(4) {
    padding-left: 7.5px;
}

    .top-article-items .banner-item-sm-wrapper .col-sm-6:nth-child(2) .slider-cat-list,
    .top-article-items .banner-item-sm-wrapper .col-sm-6:nth-child(4) .slider-cat-list {
        left: 7.5px;
    }

.article-cat-item .article-item-home-lg-wrapper .col-md-6:nth-last-child(2) {
    padding-right: 7.5px;
}

.article-cat-item .article-item-home-lg-wrapper .col-md-6:last-child {
    padding-left: 7.5px;
}

    .article-cat-item .article-item-home-lg-wrapper .col-md-6:last-child .article-item-home-lg .article-tags-list {
        left: 0px;
    }

/* ARTICLE BLOG NEW */
.article-cat-title {
    color: rgb(7, 84, 177);
    font-size: 30px;
    font-weight: 900;
    text-transform: uppercase;
}

.article-item-home-lg {
    height: 100%;
    position: relative;
}

    .article-item-home-lg p {
        padding: 0px 10px;
        margin-bottom: 5px;
    }

    .article-item-home-lg img {
        max-width: 100%;
        height: 350px;
        object-fit: cover;
        object-position: top;
        margin-bottom: 10px;
    }

    .article-item-home-lg .article-tags-list,
    .article-cat-list {
        position: absolute;
        top: 0px;
        left: 0px;
        display: inline;
        width: calc(100% - 30px);
    }

        .article-item-home-lg .article-tags-list .article-tag,
        .article-cat {
            color: white;
            background-color: rgba(100, 100, 100, 0.5);
            width: max-content;
            white-space: nowrap;
            padding: 5px 15px;
            font-size: 12px;
            display: inline;
            white-space: nowrap;
            font-weight: 700;
        }

    .article-item-home-lg .item-title {
        font-size: 18px;
        font-weight: 700;
    }

    .article-item-home-lg:hover {
        outline: 1px solid lightgrey;
        box-shadow: 5px 5px 5px rgb(0 0 0 / 10%);
    }

        .article-item-home-lg:hover .item-title {
            color: rgb(7, 84, 177);
        }

.publish-time {
    font-weight: 600;
    color: rgb(175, 175, 175);
    margin: 0px;
    font-size: 15px;
}

.article-item-home-lg .item-desc {
    padding-bottom: 10px;
}

.article-item-home-sm {
    margin-bottom: 1rem;
}

    .article-item-home-sm .col-4 {
        padding-right: 0px;
    }

    .article-item-home-sm img {
        width: 100%;
        height: 100px;
        object-fit: cover;
        object-position: center;
    }

    .article-item-home-sm .item-title {
        /* font-size: 16px; */
        font-weight: 700;
        margin-bottom: 5px;
        /* small item ellipsis */
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
    }

    .article-item-home-sm:hover {
        outline: 1px solid rgba(200, 200, 200, 0.1);
        box-shadow: 5px 5px 5px rgb(0 0 0 / 10%);
    }

        .article-item-home-sm:hover .item-title {
            color: rgb(7, 84, 177);
        }

/* .article-cat-item .see-more a {
    color: rgb(7, 84, 177);
    font-weight: 700;
    cursor: pointer;
}

.article-cat-item .see-more a span {
    font-weight: normal;
}

.article-cat-item .see-more a span i {
    font-size: 12px;
}

.article-cat-item .see-more a:hover {
    color: rgb(7, 84, 177);
} */

/* testing */
.article-cat-item .see-more {
    margin-top: 10px;
    text-align: right;
}

    .article-cat-item .see-more a {
        position: relative;
        color: rgb(7, 84, 177);
        font-weight: 700;
        cursor: pointer;
        /* display: table-cell; */
        padding: 5px 0px;
        background-color: transparent;
        font-size: 18px;
        transition: all 0.3s linear;
    }

        .article-cat-item .see-more a .arrows-wrapper {
            display: inline-flex;
            margin-left: 5px;
            transition: all 0.3s linear;
        }

            .article-cat-item .see-more a .arrows-wrapper > * {
                margin-left: -2px;
            }

/* .article-cat-item .see-more a:hover .arrows-wrapper {
    margin-left: 30px;
} */

.article-cat-item .sectionization-line {
    width: 50%;
    height: 1px;
    border-radius: 10px;
    background-color: rgba(7, 84, 177, 0.8);
    margin: 5px 0px 5px auto;
    box-shadow: 0 0px 5px 0 rgb(0, 0, 0, 0%), 0 1px 3px 0 rgb(7, 84, 177, 100%);
    transition: all 0.3s linear;
}

/* testing */

.articles-home-wrapper .side-content .video-content {
    /* outline: 1px solid #00b4eb;
    height: max-content;
    width: 100%;
    font-size: 13px; */

    height: max-content;
    width: 100%;
    font-size: 13px;
    box-shadow: 2px 2px 10px 2px rgb(0 0 0 / 30%);
    border-radius: 10px;
}

    .articles-home-wrapper .side-content .video-content .video-header {
        /* padding: 15px;
    background-color: #00b4eb;
    color: white; */

        padding: 15px;
        background-color: rgba(7, 84, 177, 0.7);
        color: white;
        border-radius: 10px 10px 0px 0px;
        margin: 0px -1px;
        font-weight: bold;
        /* font-size: 16px; */
        line-height: 22px;
    }

    .articles-home-wrapper .side-content .video-content h3 {
        margin-top: 10px;
    }

.articles-home-wrapper .side-content .video-content-wrapper .sub-wrapper {
    padding: 15px;
}

    .articles-home-wrapper .side-content .video-content-wrapper .sub-wrapper p {
        margin-bottom: 0px;
    }

    .articles-home-wrapper .side-content .video-content-wrapper .sub-wrapper:nth-child(odd) {
        background-color: rgba(7, 84, 177, 0.1);
    }

    .articles-home-wrapper .side-content .video-content-wrapper .sub-wrapper:nth-child(even) {
        background-color: rgba(200, 200, 200, 0.2);
    }

.ytp-large-play-button-bg,
.ytp-large-play-button-red-bg .ytp-large-play-button-bg,
.ytp-large-play-button-bg path:first-child {
    fill: #212121 !important;
}

/* BLOG PAGE */
.article-banner {
    position: relative;
    box-shadow: 5px 5px 5px rgb(0 0 0 / 10%);
}

    .article-banner img {
        object-fit: cover;
        object-position: center;
        min-height: 400px;
        width: 100%;
    }

    .article-banner .slider-cat-list {
        position: absolute;
        top: 0px;
        left: 0px;
        display: flex;
        flex-wrap: wrap;
        gap: 5px;
    }

    .article-banner .slider-cat {
        color: white;
        background-color: rgba(100, 100, 100, 0.5);
        width: max-content;
        white-space: nowrap;
        padding: 5px 15px;
        font-size: 14px;
        font-weight: 700;
    }

    .article-banner .article-banner-text {
        padding: 15px;
        width: 75%;
        height: max-content;
        position: absolute;
        bottom: 0px;
        left: 0px;
        background-color: rgba(255, 255, 255, 0.6);
    }

        .article-banner .article-banner-text h2 {
            font-size: 40px;
            color: #0754b1;
        }

.article-read-details {
    /* font-size: 16px; */
    color: #0754b1;
    margin: 0px;
}

.orange-dot {
    color: orange;
    font-size: 65px;
    line-height: 0px;
    height: 20px;
    display: inline-block;
    vertical-align: middle;
    margin-left: 5px;
}

.health-pulse-detail-title{
    font-weight: normal !important;
    color: #0754b1;
    font-size: calc(var(--step-5) * 1.15);
}

.article-author {
    background-color: rgb(243, 243, 243);
    padding: 15px;
}

    .article-author .author-icon {
        width: 80px;
        height: 80px;
        border-radius: 40px;
        border: 2px solid orange;
        object-fit: cover;
        object-position: top;
    }

    .article-author a {
        color: #212529;
        font-weight: 700;
    }

    .article-author hr {
        margin: 3px auto;
        width: 100px;
    }

    .article-author .author-name {
        font-size: 20px;
        font-weight: 700;
        margin: 0px;
    }

.article-content .topic-section .topic-blue-section {
    background-color: rgb(230, 238, 247);
    color: rgb(7, 84, 177);
    font-weight: 700;
}

.article-content .topic-section {
    font-size: 14px;
    min-width: 100%;
}

    .article-content .topic-section.sticky {
        min-width: calc(1110px / 4 - 30px);
        position: sticky;
        top: 105px;
    }

    .article-content .topic-section hr {
        margin: 5px 0px;
        border-top: 1px solid rgba(0, 0, 0, 0.5);
    }

.article-content .link-topic {
    cursor: pointer;
    padding: 5px 10px;
}

.article-content .content-section p {
    /* font-size: 16px; */
}

.article-content .blue-section {
    width: 100%;
    height: max-content;
    background: rgb(204, 240, 251);
    padding: 30px;
    /* text-decoration: underline;
    text-decoration-color: rgb(120, 215, 244); */
    font-style: italic;
    font-size: 20px;
}

.article-content .article-paragraph-title {
    font-size: 24px;
    font-weight: normal;
}

.article-tags-btn button {
    background-color: transparent;
    padding: 5px 25px;
    color: rgb(172, 172, 172);
    border: 2px solid rgb(172, 172, 172);
    border-radius: 5px;
    margin: 0px 10px 10px 0px;
    white-space: nowrap;
    /* font-size: 16px; */
    transition: background-color 0.3s, visibility 0.3s;
}

    .article-tags-btn button:hover {
        background-color: rgb(172, 172, 172);
        color: white;
    }

    .article-tags-btn button:focus {
        outline: none;
    }

/* SUGGESTED ARTICLE */
.suggested-article-title {
    font-size: 26px;
    font-weight: 700;
    text-align: center;
}

.slick-prev,
.slick-next {
    width: max-content;
    height: max-content;
    top: -35px;
}

.slick-prev {
    left: 15px;
}

    .slick-prev:before {
        content: "< Previous  \2013\2013\2013\2013\2013";
    }

.slick-next {
    right: 15px;
}

    .slick-next:before {
        content: "\2013\2013\2013\2013\2013  Next  >";
    }

    .slick-prev:before,
    .slick-next:before {
        font-weight: 700;
        font-family: unset;
        color: #aaaaaa;
        font-size: 18px;
    }

.slick-track {
    /* to solve less than 3 item width problem */
    width: 9999px !important;
}

.slick-slide {
    /* to solve less than 3 item width problem */
    height: auto;
}

.back-button-section .home-page-blue-btn {
    font-size: 19px;
}

.home-page-blue-btn {
    background-color: rgb(48, 127, 222);
    transition: background-color 0.15s, visibility 0.15s;
}

    .home-page-blue-btn:hover {
        background-color: rgb(7, 84, 177);
    }

/* Search page new */
.search-grid-wrapper {
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-auto-flow: dense;
    gap: 10px;
}

    .search-grid-wrapper p:only-of-type {
        padding: 150px 0px;
        margin: 0px;
    }

.grid-1 {
    grid-column-end: span 1;
    grid-row-end: span 1;
    aspect-ratio: 1 / 1;
}

.grid-2 {
    grid-column-end: span 2;
    grid-row-end: span 1;
    aspect-ratio: 2 / 1;
}

.grid-1,
.grid-2 {
    position: relative;
    width: -webkit-fill-available;
    height: fit-content;
}

.search-cat-list {
    position: absolute;
    top: 0px;
    left: 0px;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.grid-1 .grid-tag,
.grid-2 .grid-tag {
    /* position: absolute;
    top: 0px;
    left: 0px; */
    color: white;
    background-color: rgba(100, 100, 100, 0.5);
    width: max-content;
    white-space: nowrap;
    padding: 3px 10px;
    font-weight: 700;
    width: max-content;
    white-space: nowrap;
}

.grid-1 .grid-tag {
    font-size: 12px;
}

.grid-2 .grid-tag {
    font-size: 14px;
}

.grid-1-img,
.grid-2-img {
    height: 100%;
    width: 100%;
    overflow: hidden;
}

    .grid-1-img img,
    .grid-2-img img {
        width: inherit;
        height: inherit;
        object-fit: cover;
        object-position: center;
        transition: transform 0.2s;
    }

.grid-1-content,
.grid-2-content {
    display: grid;
    position: absolute;
    background-color: rgba(255, 255, 255, 0.8);
    bottom: 0px;
    width: 100%;
    height: max-content;
    color: rgb(48, 127, 222);
    transition: background-color 0.3s, visibility 0.3s;
}

.grid-1-content {
    height: 60px;
    padding: 8px;
}

.grid-2-content {
    height: 80px;
    padding: 10px;
}

.grid-1:hover .grid-1-content,
.grid-2:hover .grid-2-content {
    background-color: rgba(255, 255, 255, 0.9);
}

.grid-1:hover img,
.grid-2:hover img {
    -ms-transform: scale(1.1);
    /* IE 9 */
    -webkit-transform: scale(1.1);
    /* Safari 3-8 */
    transform: scale(1.1);
}

.grid-2:hover .arrow {
    transform: translateX(15px);
}

.grid-1-content h2 {
    font-weight: 700;
    font-size: 13px;
    margin: 0px;
    color: rgb(48, 127, 222);
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.grid-1-content span {
    font-size: 11px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
}

.grid-2-content h2 {
    font-weight: 700;
    /* font-size: 16px; */
    color: rgb(48, 127, 222);
    margin-bottom: 3px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.grid-2-content span {
    font-size: 12px;
}

.grid-2-content .arrow {
    font-size: 35px;
    transition: transform 0.3s ease-out;
}

.search-grid-wrapper .content-wrapper {
    height: max-content;
    align-self: center;
}

.search-page-wrapper .show-more-btn {
    text-transform: uppercase;
}

/* FOOTER */
.footer-wrapper .home-page-blue-btn {
    /* font-size: 16px; */
}

.top-footer {
    background-color: rgb(142, 191, 218);
}

    .top-footer .top-footer-content {
        overflow-x: auto;
    }

        .top-footer .top-footer-content a {
            color: white;
            margin-right: 20px;
        }

.btm-footer .footer-logo {
    max-width: 100%;
    height: auto;
}

.btm-footer .states-underline {
    display: flex;
    flex-wrap: wrap;
}

    .btm-footer .states-underline .state {
        font-size: 18px;
        white-space: nowrap;
        padding-bottom: 7px;
        margin: 0px 30px 20px 0px;
        cursor: pointer;
        color: rgb(196, 196, 196);
    }

        .btm-footer .states-underline .state.active {
            color: rgb(48, 127, 222);
            border-bottom: 2px solid rgb(48, 127, 222);
        }

.btm-footer .states-underline-tablet {
    display: none;
    width: 100%;
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    color: #fff;
    background-color: #307fde;
    background-image: none;
    border: 1px solid #307fde;
    border-radius: 4px;
}

.btm-footer .states-tab [id^="tab"] {
    display: none;
}

.btm-footer .footer-title {
    font-size: 18px;
    font-weight: 700;
    color: #4db649 !important;
}

.btm-footer table td img,
.btm-footer .social-media-icon {
    padding: 13px 10px;
}

.btm-footer table td,
.btm-footer .states-tab a {
    font-size: 14px;
}

.btm-footer .states-tab a {
    text-decoration: underline !important;
}

.btm-footer table tr span {
    color: #4db649;
}

.btm-footer .btn-primary {
    padding: 10px 20px;
    background-color: #4cb648;
    border-color: #4cb648;
    border-radius: 45px;
    padding: 0.75rem;
    text-transform: uppercase;
    width: 100%;
}

    .btm-footer .btn-primary:hover {
        background-color: #318e2e;
    }

.copyright-wrapper {
    background-color: rgb(228, 227, 227);
}

    .copyright-wrapper .copyright-content a {
        font-size: 14px;
        font-weight: 700;
        color: #59595b !important;
        display: inline-block;
        padding-right: 30px;
    }

    .copyright-wrapper .copyright-content p {
        font-size: 15px;
        margin: 0px;
    }

    .copyright-wrapper .copyright-content img {
        float: right;
        max-width: 92px;
    }

.scroll-to-top-btn {
    position: fixed;
    bottom: 0px;
    height: 40px;
    width: 40px;
    border-radius: 5px;
    background-color: rgb(51, 195, 239);
    color: white;
    font-size: 25px;
    text-align: center;
    right: 20px;
    bottom: 20px;
    cursor: pointer;
}

    .scroll-to-top-btn i {
        margin-top: 5px;
    }

/* utilities */
.text-bold {
    font-weight: 700;
}

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

.grey-175 {
    color: rgb(175, 175, 175);
    margin: 0px;
}

.remove-pl-pr {
    padding-left: 0px;
    padding-right: 0px;
}

.d-mobile {
    display: none !important;
}

.d-desktop {
    display: block !important;
}

.d-tablet-block {
    display: none !important;
}

.d-tablet-none {
    display: block !important;
}

.d-mobile-block {
    display: none !important;
}

.d-mobile-none {
    display: block !important;
}

.fruitServingTable {
    width: 100%;
    box-shadow: 5px 5px 15px -3px grey;
    border: 1px solid rgb(7, 84, 177);
}

    .fruitServingTable td,
    .fruitServingTable th {
        border: 1px solid rgb(7, 84, 177);
        padding: 10px;
    }

    .fruitServingTable thead {
        background: rgb(7, 84, 177);
        color: white;
        text-align: center;
    }

    .fruitServingTable tbody tr:nth-child(odd) {
        background: rgba(7, 84, 177, 0.1);
    }

.table td,
.table th {
    border: 1px solid black;
}

@media only screen and (max-width: 1199.98px) {
    .article-content .topic-section.sticky {
        min-width: calc(930px / 4 - 30px);
    }
}

@media only screen and (max-width: 1023.98px) {
    .d-tablet-block {
        display: block !important;
    }

    .d-tablet-none {
        display: none !important;
    }

    .sidebar .d-tablet-block {
        display: none !important;
    }

    .sidebar .d-tablet-none {
        display: block !important;
    }

    .header-bg {
        display: none;
    }

    .states-underline {
        display: none !important;
    }

    .states-underline-tablet {
        display: block !important;
    }

    .states-tab {
        background-color: #f1f1f2;
        padding: 1rem 1rem 0px 1rem;
    }

    .btm-footer .states-underline-tablet {
        display: block;
    }

    .article-banner .article-banner-text {
        width: 100%;
    }

    .article-banner .article-banner-text h2 {
        font-size: 30px;
    }

    .article-content .topic-section.sticky {
        top: 70px;
    }
}

@media only screen and (max-width: 991.98px) {
    .article-content .topic-section.sticky {
        min-width: calc(690px / 4 - 30px);
    }

    .search-grid-wrapper {
        grid-template-columns: repeat(3, 1fr);
    }

    .top-article-items .col-lg-6:first-child {
        padding-right: 15px;
        padding-bottom: 15px;
    }

    .top-article-items .col-lg-6:last-child {
        padding-left: 15px;
    }

    .banner-item-sm .item-text {
        width: 100%;
    }
}

@media only screen and (max-width: 767.98px) {
    .d-mobile {
        display: block !important;
    }

    .d-desktop {
        display: none !important;
    }

    .d-mobile-block {
        display: block !important;
    }

    .d-mobile-none {
        display: none !important;
    }

    /* banner */
    .banner-slider .slider-text {
        padding: 10px;
    }

    /* tags dropdown */
    .tags-dropdown-wrapper .dropdown-menu .banner-slider img {
        min-height: 250px;
    }

    /* sidebar */
    .sidebar.active {
        width: 75%;
    }

    /* article page */
    .article-author .author-name {
        margin-top: 1rem;
    }

    .article-content .content-section {
        padding-top: 30px;
    }

    .suggested-article-title {
        margin-bottom: 3rem;
    }

    .d-none-md {
        display: none;
    }

    .search-grid-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    .slick-prev:before {
        content: "< Previous";
    }

    .slick-next:before {
        content: "Next >";
    }

    .article-cat-item .article-item-home-lg-wrapper .col-md-6:nth-last-child(2) {
        /*padding: 0px 15px;*/
        margin-bottom: 15px;
    }

    /*.article-cat-item .article-item-home-lg-wrapper .col-md-6:last-child {
        padding: 0px 15px;
    }*/

    .article-cat-item .article-item-home-lg-wrapper .col-md-6:last-child .article-item-home-lg .article-tags-list {
        left: 0px;
    }

    .grid-1-content {
        padding: 5px;
        height: 54px;
    }

        .grid-1-content span {
            font-size: 10px;
        }

        .grid-1-content h2 {
            font-size: 12px;
        }

    .grid-2-content {
        padding: 5px;
        height: 65px;
    }

        .grid-2-content span {
            font-size: 12px;
        }

        .grid-2-content h2 {
            font-size: 14px;
        }

    .article-cat-item .sectionization-line {
        width: 100%;
        margin: 5px 0px;
    }
}

@media only screen and (max-width: 575.98px) {

    /* for container in mobile view */
    .remove-pl-pr-sm {
        padding-left: 0px !important;
        padding-right: 0px !important;
    }

    .header-logo {
        max-height: 40px;
    }

    .banner-item-sm img {
        height: 250px;
    }

    .top-article-items .banner-item-sm-wrapper .col-sm-6:nth-child(1),
    .top-article-items .banner-item-sm-wrapper .col-sm-6:nth-child(2),
    .top-article-items .banner-item-sm-wrapper .col-sm-6:nth-child(3),
    .top-article-items .banner-item-sm-wrapper .col-sm-6:nth-child(4) {
        padding: 0px 15px;
        margin-bottom: 15px;
    }

        .top-article-items .banner-item-sm-wrapper .col-sm-6:nth-child(2) .slider-cat-list,
        .top-article-items .banner-item-sm-wrapper .col-sm-6:nth-child(4) .slider-cat-list {
            left: 0px;
        }

    .search-container input {
        font-size: 14px;
    }

    .top-article-items .col-lg-6:last-child {
        padding-left: 0px;
    }

    .banner-item-sm .item-text,
    .banner-item-sm-wrapper .banner-item-sm .item-text span {
        height: max-content;
    }
}

/* @media only screen and (max-width: 320px) {
    .sidebar .search-container input {
        width: 70%;
    }
} */

/* to fix for firefox */
@-moz-document url-prefix() {
    .sub-tags-5-wrapper {
        margin-bottom: 205px;
    }
}

/* accordion */
ul.article-accordion {
    list-style: none;
    padding: 0;
    position: relative;
}

    ul.article-accordion .inner {
        background-color: #e6eef769;
        padding: 5px 10px;
        overflow: hidden;
        display: none;
    }

    ul.article-accordion li a.toggle .fa-chevron-down {
        position: absolute;
        right: 35px;
        font-size: 20px;
    }

    ul.article-accordion li a.toggle.open .fa-chevron-down {
        transform: rotate(180deg);
    }

    ul.article-accordion li a.toggle {
        width: 100%;
        font-weight: 600;
        display: block;
        background: #e6eef7;
        color: #0754b1;
        padding: 0.75em;
        border-radius: 0.15em;
        transition: all 0.3s ease;
    }


        ul.article-accordion li a.toggle:hover,
        ul.article-accordion li a.toggle.open {
            background: #d0e0f3;
        }


/* Accordion Bentley */

.accordion-b2 {
    width: 100%;
    /* border-left: 1px #00000038 solid;
    border-right: 1px #00000038 solid;
    border-top: 1px #00000038 solid; */
    margin-bottom: 1rem;
}


.accordion-b2-item {
    background-color: rgb(245, 245, 245);
    /* border-bottom: 1px #00000038 solid; */
}



.accordion-b2 .header {
    /* padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 1rem;
    padding-bottom: 1rem; */
    padding: 0.85rem 1.25rem;
    font-weight: bold !important;
    cursor: pointer;
    transition: all 0.15s ease-in-out;
    /* color: rgb(49, 109, 183); */
    color: #0754b1;
    background-color: #e6eef7;
    position: relative;
}

    .accordion-b2 .header::after {
        content: "";
        right: 0;
        top: 50%;
        margin-right: 1.5rem;
        position: absolute;
        pointer-events: none;
        transform: translateY(-75%) rotate(-45deg);
        transform-origin: center;
        height: 10px;
        width: 10px;
        aspect-ratio: 1/1;
        border-left: 3px solid #0754b1;
        border-bottom: 3px solid #0754b1;
        /*Adjust chevron size*/
    }

    .accordion-b2 .header:hover {
        color: rgb(13 62 120) !important;
    }

.accordion-b2 .description *:last-child {
    margin-bottom: 0;
}



.accordion-b2 .description {
    display: none;
    /* background-color: white; */
    background-color: #f5f8fc;
    padding: 1.25rem;
    /* border-top: 1px black solid; */
}

.accordion-b2 .show-default {
    display: block;
}

.accordion-b2 .show {
    /* border-top: 1px #00000038 solid; */
}

.accordion-b2-item .header:hover,
.accordion-b2-item .header.show {
    background-color: #d0e0f3;
}

    .accordion-b2-item .header.show::after {
        transform: translateY(-25%) rotate(-45deg) scale(-1);
    }

/*ACcordion Bentley End*/

/* share this */
.article-details-share {
    display: flex;
    color: #707070;
    font-weight: bold;
    align-items: center;
}

    .article-details-share a[role="button"] {
        margin-bottom: 0px;
    }


.liboldmarker::marker {
    font-weight: bold;
}

.tags-navbar .btn-group.dropdown {
    border-radius: 0;
}


.topic-section {
    position: sticky;
    top: 6.5rem;
}

.tags-dropdown-wrapper .btn, .tags-dropdown-wrapper .btn-group > a {
    text-transform: uppercase;
    color: rgb(7, 84, 177);
    background-color: transparent;
    border: none;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    padding: 0px 18px;
}

.dropdown-menu {
    top: 100%;
}

.dropdown-menu-right {
    right: 0;
}


li > h3{
    font-weight: normal;
    margin-bottom: 0.5rem;
}

ol ul, ul ul{
    margin-bottom: 1rem;
}

ul {
    list-style-type: disc;
}

.article-content .content-section ul > li p:not(:last-child), .article-content .content-section ol > li p:not(:last-child) {
    margin-bottom: 0.5rem;
}

/* general table */
.article-content .content-section table {
    box-shadow: 5px 5px 15px -3px grey;
}

.article-content .content-section table,
.article-content .content-section table td {
    border: 1px solid rgb(7, 84, 177);
}

.article-content .content-section table td,
.article-content .content-section table th {
    padding: 10px;
}

.article-content .content-section table thead {
    background: rgb(7, 84, 177);
    color: white;
    text-align: center;
}

.article-content .content-section table thead td,
.article-content .content-section table thead td > * {
    margin-bottom: 0rem;
    font-size: 1.25rem;
    font-weight: normal;
    color: white;
}

.article-content .content-section table tbody tr:nth-child(odd) {
    background: rgba(7, 84, 177, 0.1);
}

.article-content .content-section table td p:last-child,
.article-content .content-section table td ol:last-child,
.article-content .content-section table td ul:last-child {
    margin-bottom: 0rem;
}

table.vat tbody td {
    vertical-align: top;
}

/* Util */
.h3-in-li {
    display: inline;
    font-size: inherit;
}

.list-mb li {
    margin-bottom: 1rem;
}


.font-orange {
    color: #ef6f46;
}

.font-yellow {
    color: #ffbc28;
}


.image-relative {
    position: relative;
}

.title-area {
    font-family: "ShadowLight", sans-serif;
}

.main-title {
    left: 22%;
    top: 18%;
    position: absolute;
    width: fit-content;
}

.main-title2 {
    right: 22%;
    top: 18%;
    position: absolute;
    width: fit-content;
}

@media (max-width: 992px) {
    .main-title2 {
        right: 22%;
        top: 16%;
        font-size: 15px;
    }

    .main-title {
        left: 22%;
        top: 16%;
        font-size: 15px;
    }

    .whitebox,
    .yellowbox {
        font-size: 9px !important;
        padding: 5px !important;
    }
}

.container-data {
    height: fit-content;
    position: absolute;
    bottom: 25%;
    z-index: 2;
    left: 15%;
    width: 70%;
    top: 30%;
    background-color: #ffe9c0;
    border-radius: 10px;
}

.whitebox {
    background-color: white;
    width: 50%;
    padding: 10px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f26e42;
    font-size: 12px;
}

.yellowbox {
    font-size: 12px;
    background-color: #ffe9c0;
    width: 50%;
    padding: 10px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d9a64a;
}

hr {
    border: none;
    height: 2px;
    background-color: #fc9800;
    width: 90%; /* Adjust width as needed */
    margin: 0 auto; /* Center align the line */
}


.title-area {
    font-family: "ShadowLight", sans-serif;
}

.maintitle {
    left: 33%;
    top: 18%;
    position: absolute;
    width: fit-content;
}

.maintitle2 {
    right: 21%;
    top: 20%;
    position: absolute;
    width: fit-content;
}


    @media (min-width: 1880px) {
        .containerdata {
            top: 34% !important;
        }

        .white-box, .fullbox, .blue-box {
            font-size: 11px !important;
        }

        .fullbox {
            width: 180px !important;
            padding: 17px !important;
            min-height: 30px;
            line-height: 12px !important;
        }

        .white-box, .blue-box {
            line-height: 12px !important;
            min-height: 39px !important;
        }
    }

    .font-pink {
        color: #d988ac;
    }

    .font-blue {
        color: #6b97b1;
    }

    @media (max-width: 992px) {
        .maintitle2 {
            right: 18%;
            top: 19%;
            font-size: 12px;
        }

        .maintitle {
            left: 32%;
            top: 16%;
            font-size: 12px;
        }

        .fullbox {
            font-size: 6px !important;
            padding: 2px !important;
            min-height: 34px !important;
        }

            .white-box, .blue-box {
                font-size: 6px !important;
                min-height: 10px !important;
                padding: 2px !important;
            }

        .containerdata {
            top: 35% !important;
        }
    }

    .containerdata {
        height: fit-content;
        position: absolute;
        bottom: 25%;
        z-index: 2;
        left: 26.5%;
        width: 57%;
        top: 33%;
        background-color: transparent;
        border-radius: 10px;
    }

    .white-box {
        line-height: 9px;
        width: 50%;
        padding: 7px;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #d485a9;
        font-size: 9px;
        font-weight: 600;
        min-height: 38px;
    }

    .fullbox {
        width: 150px;
        min-height: 38px;
        line-height: 9px;
        padding: 12px;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #b165b1;
        font-size: 9px;
        font-weight: 600;
    }


    .blue-box {
        min-height: 38px;
        font-weight: 600;
        line-height: 9px;
        font-size: 9px;
        width: 50%;
        padding: 7px;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #497fb1;
    }

    .lineblue {
        border: none;
        height: 2px;
        background-color: #537aa6;
        width: 90%; /* Adjust width as needed */
        margin: 0 auto; /* Center align the line */
    }