.page_font {
    font-family: Roboto,sans-serif;
    font-size: 16px;
    line-height: 1.35rem;
    letter-spacing: 0.04rem;
}

@media screen and (max-width: 767px) {
    .page_font {
        font-size: 14px;
    }
}

/* Banner */
.header_banner {
    position: relative;
    color: #fff;
    overflow: hidden;
    min-height: 350px;
}

.header_banner::after {
    position: absolute;
    top: 0;
    left: 0;
    content: " ";
    width: 100%;
    height: 100%;
    opacity: 1.00;
    background-image: linear-gradient(rgb(0 0 0 / 25%), rgb(0 0 0 / 25%)), url(../images/visitor/blog/banner.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 0 center;
    z-index: -1;
}

.blog_title, .b_title {
    letter-spacing: 0.04rem;
    font-weight: 700;
}

.blog_descript {
    font-family: Poppins,sans-serif;
    font-size: 18px;
    line-height: 1.35rem;
    letter-spacing: 0.04rem;
    color: #fff;
    font-weight: 500;
}

/* Blog category   */
.blog_row {
    margin: 0px 150px;
    padding: 10px 10px 10px 0;
    background-color: white;
    border-radius: 3px;
    -webkit-box-shadow: 0 2px 4px -1px rgb(0 0 0 / 10%), 0 4px 5px 0 rgb(0 0 0 / 10%), 0 1px 10px 0 rgb(0 0 0 / 8%);
    box-shadow: 1px 0px 5px 0px rgb(0 0 0 / 10%), 0 2px 4px -1px rgb(0 0 0 / 10%), 0 4px 0px -5px rgb(0 0 0 / 10%), 0 1px 10px 0 rgb(0 0 0 / 8%);
}

.tabs {
    display: inline;
    position: relative;
    margin: 0 !important;
    text-align: center;
    width: 100px;
    cursor: pointer;
}

.tabs * {
    z-index: 2;
}

input[name="tabs"] {
    display: none;
}

.tab {
    font-size: 15px;
    font-weight: 500;
    transition: color 0.15s ease-in;
}

.notification {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    margin-left: 0.75rem;
    border-radius: 50%;
    background-color: var(--secondary-color);
    transition: 0.15s ease-in;
}

input[name="tabs"]:checked + label {
    color: #185ee0;
    z-index: 9;
    text-align: center;
    width: 100px;
}

input[name="tabs"]:checked + label > .notification {
    background-color: var(--primary-color);
    color: #fff;
}

input[name="tabs"]:first-child:checked ~ .glider {
    transform: translateX(0);
    width: 100px;
}

input[name="tabs"]:nth-child(3):checked ~ .glider {
    transform: translateX(100px);
    width: 100px;
}

input[name="tabs"]:nth-child(5):checked ~ .glider {
    transform: translateX(200px);
    width: 100px;
}

input[name="tabs"]:nth-child(7):checked ~ .glider {
    transform: translateX(300px);
    width: 100px;
}

input[name="tabs"]:nth-child(9):checked ~ .glider {
    transform: translateX(400px);
    width: 100px;
}

.glider {
    position: absolute;
    display: flex;
    top: -10px;
    left: 0px;
    height: 55px;
    background-color: #e6eef9;
    z-index: 1;
    border-radius: 2px;
    transition: 0.25s ease-out;
}

@media (max-width: 700px) {
    .tabs {
        transform: scale(0.6);
    }
}

.searchInputWrapper {
    position: relative;
}

.txtsearch {
    transition: width 0.4s ease-in-out 0s;
}

::placeholder {
    color: #a1a1a1;
}

/* hide the placeholder text on focus */
:focus::placeholder {
    text-indent: -999px
}

.txtsearch:focus {
    width: 100% !important;
    transition: width 0.4s ease-in-out 0s;
}

.searchInputIcon {
    cursor: text;
}

.searchInputIcon, .enterInputIcon, .clrInputIcon {
    position: absolute;
    right: 1.8rem;
    top: 0.6rem;
    color: #a1a1a1;
    transition: all 0.1s ease-in-out;
}

.container:focus-within > .searchInputWrapper > .searchInputIcon {
    right: 0.2rem;
}

span.cate_del {
    display: inline-block;
    position: relative;
    padding: 0 8px;
    line-height: 23px;
    background-color: #f4f4f4;
    color: #405ee0;
    margin-right: 10px;
    font-size: 12px;
    border-radius: 2px;
}

.blog_cat {
    font-weight: 500;
    cursor: pointer;
}

.blog_cat:hover {
    color: #005e95 !important;
    border-bottom: 2px solid #005e95;
}

.blog_cat.active {
    color: #005e95;
    border-bottom: 2px solid #005e95;
}

.blgp_cat {
    font-size: 14px;
    margin-bottom: 5px;
}

.blog_postBox {
    cursor: pointer;
    margin: 10px 0px;
}

.blog_postBox:hover .blgp_title {
    color: #005e95;
}

.blog_postBox:hover .blog_txtBox {
    transition: .3s all ease-in-out;
    box-shadow: 0 15px 45px -9px rgb(0 0 0 / 20%);
}

.blog_imgBox {
    position: relative;
    padding-bottom: 0px;
    margin-bottom: 0px;
    /* border-top-left-radius: 5px; */
    /* border-top-right-radius: 5px; */
    /* margin: 2%; */
    overflow: hidden;
    width: 100%;
    display: inline-block;
    border-top: 1px solid #e9e9e9;
    border-right: 1px solid #e9e9e9;
    border-left: 1px solid #e9e9e9;
}

.blog_imgBox img {
    max-width: 100%;
    -webkit-transition: .5s ease;
    -moz-transition: .5s ease;
    transition: .5s ease;
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog_txtBox {
    /*box-shadow: 0 0px 1px 1px rgb(0 0 0 / 6%);*/
    border-bottom: 1px solid #f2f2f2;
    border-right: 1px solid #f2f2f2;
    border-left: 1px solid #f2f2f2;
    background-color: #fff;
}

.blog_postBox:hover .blog_imgBox img {
    -webkit-transform: scale(1.05,1.05);
    -moz-transform: scale(1.05,1.05);
    transform: scale(1.05,1.05);
}

.blog_imgBox:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    background: #000;
    background: rgba(0,0,0,0.3);
    z-index: 2;
    opacity: 0;
    -moz-transition: 0.5s ease;
    -webkit-transition: 0.5s ease;
    transition: 0.5s ease;
}

.blog_postBox:hover .blog_imgBox:before {
    opacity: 1;
}

/* Blog pagination */
.pagination-blog ul {
    margin: 2em auto;
    padding-left: 0;
    list-style-type: none;
}

.page-number {
    display: inline;
}

.page-number a {
    text-decoration: none;
    color: black;
}

.blog_pagination .page-number {
    padding: 8px 16px;
    background-color: #f3f4f2;
}

.blog_pagination .page-number:hover {
    background-color: #d9dcd6;
}

.blog_pagination .active {
    border-radius: 4px;
    background-color: #16425b;
}

.blog_pagination .active:hover {
    background-color: #16425b;
}

.blog_pagination .active a {
    color: #f3f4f2;
}

/* Blog Post */
.post_date {
    font-size: 12px;
    font-weight: 600;
    color: #8f8f8f;
}

.post_banner {
    position: relative;
    color: #fff;
    overflow: hidden;
    min-height: 250px;
}

.post_banner::after {
    position: absolute;
    top: 0;
    left: 0;
    content: " ";
    width: 100%;
    height: 100%;
    opacity: 1.00;
    background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url(../images/v3/blog/packaging_design_trends.jpg);
    background-size: cover;
    /* <------ */
    background-repeat: no-repeat;
    background-position: 0 center;
    z-index: -1;
}

.blogPost_img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.blog_ft {
    font-size: 14px;
    text-align: justify;
}

#template_a .blog_ft {
    font-family: 'Poppins';
    letter-spacing: 1px;
    line-height: 2;
    font-weight: 300;
}

#template_a #blog_content {
    padding: 0px 40px;
}

.blog_subdescript {
    font-size: 20px;
    font-weight: 700;
    margin: 10px 0px;
}

.blog_side {
    font-family: Poppins,sans-serif;
    font-size: 16px;
    font-weight: 700;
}

.latest_blog {
    cursor: pointer;
    font-size: 14px;
}

.latest_blog:hover .latest_blgTitle {
    color: #005e95 !important;
    text-decoration: underline;
}

.blog_tag {
    background-color: #e7e7e7;
    padding: 5px 15px;
    margin: 5px;
    cursor: pointer;
}

.blog_tag:hover {
    background-color: #b7b7b7;
}

.share_blog {
    font-size: 30px;
    margin: 5px;
    cursor: pointer;
}

.share_blog .fa-facebook-square {
    color: #4267B2;
}

.share_blog .fa-facebook-square:hover {
    color: blue;
}

.share_blog .fa-facebook-square {
    color: #4267B2;
}

.share_blog .fa-facebook-square:hover {
    color: blue;
}

.blog_whatsapp {
    background-color: #32c132;
    border-radius: 3px;
    color: #fff;
    text-align: center;
    font-size: 20px;
    vertical-align: middle;
    padding: 5px;
    width: 30px;
    height: 30px;
    opacity: .8;
}

.blog_whatsapp:hover {
    background-color: #0a850a;
}

.blog_link {
    background-color: #707070;
    border-radius: 3px;
    color: #fff;
    text-align: center;
    font-size: 15px;
    vertical-align: middle;
    padding: 8px;
    width: 30px;
    height: 30px;
    opacity: .8;
}

.blog_link:hover {
    background-color: #000;
}

@media screen and (max-width: 767px) {
    .blog_side {
        font-size: 20px;
    }
}

/* template a */
.header-image {
}

.header-image h1.entry-title {
    position: absolute;
    left: 50%;
    top: 35%;
    font-size: 72px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 10px;
}

@media screen and (max-width: 1400px) {
    .header-image img {
        width: 100%;
    }
}

.header-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

@media screen and (max-width: 992px) {
    .sp_cdc {
        display: none;
    }

    .blog_nav {
        max-width: 100%;
        padding: 0px;
    }

    .blog_row {
        margin: 0px;
    }

    .header-image + article .content-wrapper {
        margin-top: 0px !important;
    }

    .blog_article {
        max-width: 100% !important;
    }

    .blog_title {
        font-size: 25px;
    }

    .blog_title:after {
        border-bottom: 5px solid #185ee0 !important;
        margin: 1em auto 0 !important;
    }

    .blog_date {
        font-size: 12px;
    }
}

.header-image + article .content-wrapper {
    margin-top: -140px;
    -webkit-box-shadow: 0 7px 15px -10px rgb(0 0 0 / 20%);
    box-shadow: 0 7px 15px -10px rgb(0 0 0 / 20%);
}

.content-wrapper {
    position: relative;
    background-color: #fff;
}

.blog_article {
    margin: auto;
    max-width: 90vw;
    position: relative;
}

@media screen and (max-width: 992px) {
    .entry-content {
        padding: 0 !important;
    }

    .col-share-icon {
        display: flex;
        justify-content: center;
        margin: 40px 0 !important;
    }

    .share_icon {
        display: inline-flex !important;
        margin-left: 0px !important;
    }

    .col_read {
        position: unset;
        width: auto;
    }

    #template_a .read_icon {
        float: none !important;
        position: absolute !important;
        top: 5px !important;
        left: 5px !important;
    }
}

.entry-content {
    padding: 0 80px;
}

.blog_date {
    font-family: 'Noto Sans',sans-serif;
    font-weight: bolder;
    color: #ddd;
}

.col_read {
    padding: 0px;
    margin: 10px 0 100px;
}

.read_icon {
    position: -webkit-sticky;
    position: sticky;
    top: 112px;
    float: right;
    margin-right: 10px;
    z-index: 9;
    border: 1px solid #fff0;
    border-radius: 10px;
    cursor: pointer;
}

.blog_title:after {
    content: '';
    display: block;
    width: 55px;
    max-width: 70%;
    border-bottom: 6px solid #185ee0;
    margin: 2em auto 0;
}

.blog_cate {
    font-family: 'Noto Sans',sans-serif;
    font-weight: bolder;
    color: #ccc;
    margin: 100px !important;
}

.blog_cate:before {
    content: '';
    display: block;
    width: 55px;
    max-width: 70%;
    border-bottom: 3px solid #aaa;
    margin: 2em auto 1em;
}

a.cate_del {
    color: inherit;
    padding: 0 3px;
}

.related_post_title h4:after {
    content: '';
    display: block;
    width: 55px;
    max-width: 70%;
    border-bottom: 4px solid #185ee0;
    margin: 0.5em auto 0.5rem;
}

.col-share-icon {
    margin: 50px 0 100px;
}

.share_icon {
    position: sticky;
    top: 112px;
    margin-left: -35px;
}

.blog_fb_a, .blog_whatsapp_a, .blog_link_a {
    margin-bottom: 8px;
    margin-right: 5px;
    background-color: #4085ff;
    border-radius: 20px;
    color: #fff;
    text-align: center;
    font-size: 20px;
    vertical-align: middle;
    padding: 7px 0 0 2px;
    width: 35px;
    height: 35px;
    opacity: .8;
    cursor: pointer;
}

.blog_fb_a {
    font-size: 17px;
    padding: 10px;
}

.blog_fb_a:hover {
    background-color: #185ee0;
}

.blog_whatsapp_a:hover {
    background-color: #00e100;
}

.blog_link_a {
    text-align: center;
    font-size: 13px;
    vertical-align: middle;
    padding: 10.8px 0 0 1.5px;
    width: 35px;
    height: 35px;
    opacity: .8;
}

.blog_link_a:hover {
    background-color: #676767;
}

.post-index p {
    margin-bottom: 0;
    margin-top: 0 !important;
    font-weight: bold;
}

.post-index ul {
    margin-top: 10px
}

.post-index ol {
    margin-bottom: 0;
    padding-left: 1.1em;
}

.post-index {
    background: #f8f8f8;
    padding: 1.5rem 2rem;
}

.post-index a {
    text-decoration: underline;
}

.post-index a:hover {
    text-decoration: none;
}

.post-index a {
    color: #000000 !important;
}

img.wp-smiley, img.emoji {
    display: inline !important;
    border: none !important;
    box-shadow: none !important;
    height: 1em !important;
    width: 1em !important;
    margin: 0 0.07em !important;
    vertical-align: -0.1em !important;
    background: 0 0 !important;
    padding: 0 !important;
}

#blog_content_b ul li::marker, #blog_content ul li::marker {
    display: list-item;
    content: "" counter(li) ".  ";
}

.post-index ul li {
    margin: 0 0 3px 50px;
    counter-increment: li;
    display: list-item;
}

.blog_ft p {
    margin: 25px 0;
}

a.ref_link {
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: #5f62ff;
    font-weight: 500;
}

a.ref_link:hover:after {
    left: 0;
    bottom: 0px;
    width: 100%;
    height: 100%;
    color: #000;
}

a.ref_link::after {
    content: "";
    background: #6265fe;
    opacity: 0.3;
    position: absolute;
    left: 12px;
    bottom: -2px;
    width: calc(100% - 8px);
    height: calc(100% - 8px);
    /* z-index: -1; */
    transition: 0.35s cubic-bezier(0.25, 0.1, 0, 2.05);
}

.table100.ver6 {
    background-color: rgb(208 209 255);
    border: 1px solid rgb(208 209 255);
}

.table100.ver6 td {
    font-family: inherit;
    font-size: inherit;
    color: #000;
    line-height: inherit;
    padding: 15px;
    vertical-align: top;
    background-color: #fff;
}

.table100.ver6 th {
    font-family: inherit;
    font-size: inherit;
    color: #000;
    line-height: inherit;
    padding: 15px;
}

.table100.ver6 .row100:hover th {
    background-color: transparent;
}

.table100.ver6 .row100:hover td {
    background-color: rgb(219 216 254)
}

.table100.ver6 .row100 td:hover {
    background-color: rgb(174 168 255 / 10%)
}

.table100.ver6 {
    border-radius: 16px;
}

.table100.ver6 table {
    background-color: transparent;
}

.table100.ver6 td {
    font-family: inherit;
    font-size: inherit;
    color: #000;
    line-height: inherit
}

.table100.ver6 .row100:hover td {
    background-color: rgb(244 243 249);
}

.table100.ver6 .hov-column-ver6 {
    background-color: rgb(244 243 249);
}

.table100.ver6 .row100 td:hover {
    background-color: rgb(244 243 249 / 0.5);
}

.table100.ver6 tr > td:first-child {
    width: auto;
    padding-left: 15px;
}

.table100.ver6 tr > th {
    width: auto;
    padding-left: 15px;
}
