/*------------------------------------*\
    
    Posts CSS
 
    Posts.................Post content for loop on blog homepage, category, search page, archives, etc.
    Sidebar...............Sidebar elements.

\*------------------------------------*/

.post-item {
    border-top: 1px solid #ddd;
    padding-top: 30px;
    margin-top: 30px;
}

.post-item:first-of-type {
    border-top: 0;
    padding-top: 0;
    margin-top: 0;
}

.post-item__heading a {
    text-decoration: none;
}

.post-item .btn,
.post-item .btn-primary {
    margin-top: 30px;
}

.post-item__meta {
    font-size: .8em;
}


@media (min-width: 1025px) {

    .post-item {
        padding-top: 50px;
        margin-top: 50px;
    }

}

.blog-post__item {
    border-top: 1px solid #ddd;
}

.blog-post__item:first-child {
    border: 0;
    padding-top: 0;
}

.blog-post__date {
    font-size: 15px;
}

.blog-post__title {
    margin: 0 0 0px 0;
    font-size: 17px;
    padding-top: 5px;
    line-height: 25px;
    font-weight: normal;
}

.blog-post__title a {
    text-decoration: none;
    color: #2E343A;
	font-size: 18px;
    font-weight: normal;
}

.blog-post__tags a {
    font-size: 12px;
    color: #E0632E;
}

.blog-post__excerpt {
    font-size: 14px;
    line-height: 1.5625em;
    letter-spacing: 0.03em;
    font-family: 'Poppins', sans-serif;
}

.post-meta-date {
    margin-bottom: 10px;
}

.post-meta-date p {
    color: #6d6d6d;
}

.blog-post__link {
    align-self: flex-start;
    margin-top: auto;
    font-weight: 700;
    text-decoration: none;
}

/* Blog Post Image */
.blog-post-figure-link {
    display: inline-block;
}
.blog-post-figure-link:hover {
    background: none;
}
.blog-post-figure {
    margin-bottom: 0;
    padding-top: 56.25%;
    position: relative;
    overflow: hidden;
    z-index: 1;
    padding: 0;
}
.blog-post-figure__img {
    margin: auto;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    object-fit: cover;
}
.blog-post-figure__img {
    object-fit: contain;
    height: auto;
    max-height: 95px;
    margin: 0;
    position: relative;
}
.blog-post-figure--placeholder {
    padding: 15px;
}
.blog-post-figure--placeholder .blog-post-figure__img {
    height: auto;
    object-fit: none;
}

.single-image {
    margin-bottom: 30px;
}

.single-image img {
    width: auto;
    height: auto;
}

.blog--homepage {
    position: relative;
    margin-top: 24px;
}

.blog--homepage::before {
    content: "";
    position: absolute;
    left: 0;
    top: -24px;
    width: 100%;
    height: 24px;
    background: rgba(242, 243, 247, 0.44);
    z-index: 1;
}

.blog--homepage::after {
    content: "";
    position: absolute;
    left: 0;
    top: -15px;
    width: 100%;
    height: 15px;
    background: rgba(242, 243, 247, 0.62);
    z-index: 2;
}

.blog__listting .row {
    box-sizing: border-box;
    display: flex;
    flex: 0 1 auto;
    flex-direction: row;
    flex-wrap: wrap;
    margin-right: -16px;
    margin-left: -16px;
    justify-content: center;
}

.blog__item {
    box-sizing: border-box;
    flex: 0 0 auto;
    flex-basis: auto;
    padding-right: 0;
    padding-left: 0;
    margin: 5px 16px;
    width: calc(100% - 32px);
    background: #FFFFFF;
    border: 1px solid #DEDFE5;
    border-radius: 0;
    position: relative;
    z-index: 2;
    margin-bottom: 20px;
    cursor: pointer;
}

.blog__item .blog-post__item {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    border: none;
    color: #3E3E3E;
    position: relative;
    z-index: 2;
}

.blog__image {
    width: 100%;
    height: 244px;
    border-radius: 0;
    overflow: hidden;
}

.blog__image img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center center;
    object-position: center center;
}

.blog__info {
    display: flex;
    flex-direction: column;
    padding: 24px 26px 40px;
    flex: 1;
}

.blog__info h5 {
    font-size: 20px;
    line-height: 1.4em;
    color: #231F20;
    padding-bottom: 15px;
}

.blog__btn {
    margin-top: 23px;
    z-index: 9;
    position: relative;
}

.blog--inner .blog__btn {
    margin-top: 0;
    margin-bottom: 30px;
}

.blog__heading {
    position: relative;
    z-index: 3;
}

.blog__graphic {
    position: absolute;
    left: -72px;
    bottom: -18px;
    z-index: 1;
}

.blog__graphic-top {
    position: absolute;
    right: 0px;
    top: -60px;
    z-index: 1;
    display: none;
}

.blog .container {
    position: relative;
}

span-.search-keyword {
    color: #E0632E;
    text-decoration: underline;
}

@media (min-width: 768px) {
    .post-listing__no-sidebar .blog__item {
        width: calc(33.33333333% - 32px);
    }

    .blog__item {
        width: calc(50% - 32px);
    }

    .blog__heading {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 30px;
    }

    .blog__heading h3 {
        padding: 0;
    }

    .blog__btn {
        margin-top: 0;
        text-align: right;
    }


    .blog__graphic {
        left: -50px;
        bottom: -34px;
    }

    .blog--inner .blog__btn {
        margin-top: 0;
        margin-bottom: 0;
    }

}

@media (min-width: 1200px) {

    body.blog .blog__listting .blog__item,
    body.archive .blog__listting .blog__item {
        width: calc(50% - 32px);
        margin-bottom: 30px;
    }

    .blog__heading {
        margin-bottom: 20px;
    }

    .blog__graphic {
        left: -68px;
    }

    .blog__item a:hover .btn {
        color: #0B4B92;
    }

    .blog__item:hover {
        box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    }

    .blog--homepage .blog__graphic {
        left: -120px;
        bottom: -161px;
    }

    .blog__graphic-top {
        display: block;
    }

}

@media (min-width: 1600px) {
    .blog__graphic {
        left: -120px;
        bottom: -54px;
    }

    .blog__graphic-top {
        right: -120px;
        top: -60px;
    }
}

/**
 * Sidebar
 */

/* Blog Sidebar */

.blog .page-sidebar .widget {
    margin-bottom: 50px;
}

/* Blog Sidebar */

.blog .page-sidebar .widget {
    margin-bottom: 40px;
}

.blog .page-sidebar .widget.widget-popular-posts {
    padding: 0;
}

.page-sidebar .widget {
    margin-bottom: 40px;
}

.widget.widget_block h3 {
    margin: 0;
}

.wp-block-search__label {
    display: none;
}

.wp-block-search__input {
    border-color: #C9C9C9;
    color: #292929;
    font-size: 18px;
    height: 50px;
    padding: 0 15px;
}

.widget h3 {
    font-size: 26px !important;
    margin: 0 0 20px 0;
}

.widget .choices {
    margin: 0;
}

.widget.widget-popular-posts {
    padding: 0 22px;
}

.single .widget.widget-popular-posts {
    padding: 0;
}

.widget-popular-posts a {
    text-decoration: none;
}

.widget-popular-posts a:hover {
    text-decoration: none;
}

/* Load More Button */
.blog-listing__pagination {
    margin-top: 50px;
    text-align: center;
}

/* Single Post Pagination */
.post-pagination {
    display: flex;
    justify-content: space-between;
    align-content: center;
}

.btn-post-pagination {
    background: #dadada;
    font-size: 15px;
    padding: 10px 20px;
    color: #747474;
    position: relative;
}

.post-pagination-text {
    display: none;
}

.btn-post-pagination:hover {
    background: #ebebeb;
}

.btn-post-pagination strong {
    display: block;
    font-size: 12px;
}

.btn-previous-post,
.btn-next-post {
    max-width: 48%;
    flex: 0 0 48%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.btn-previous-post {
    padding-left: 40px;
}

.btn-next-post {
    padding-right: 40px;
}

.mobile-arrow:after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 6px solid #747474;
}

.mobile-arrow {
    position: absolute;
}

.btn-previous-post .mobile-arrow {
    left: 19px;
}

.btn-next-post .mobile-arrow {
    right: 19px;
}

.btn-previous-post .mobile-arrow:after {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

@media (min-width: 768px) {
    .post-pagination-text {
        display: block;
    }

    .btn-previous-post,
    .btn-next-post {
        text-align: inherit;
    }
}


/* Search Results */
.search-result {
    text-decoration: none;
    display: block;
    margin-bottom: 40px;
}

.search-result:hover {
    border: 0;
    background: none;
}

.search-result__title {
    margin-bottom: 16px;
}

.search-result__excerpt {
    margin-bottom: 20px;
}

.search-result .search-result__excerpt p {
    color: #3E3E3E !important;
}


/* Blog Sidebar */
.page-sidebar h2 {
    font-size: 30px;
}

.page-sidebar .container .container {
    padding-left: 0;
    padding-right: 0;
}


/* Single Post**/

@media (min-width:1200px) {
    .blog-single-container .col-md-8 {
        padding-right: 50px;
    }
}

.social-share-row {
    list-style-type: none;
}

.social-share-row li:before {
    display: none;
}

.social-share-row li {
    padding-left: 0;
}

.post-pagination {
    margin-top: 30px;
}

.blog-single-container .post-meta-date {
    margin-top: 40px;
}

/**
* Global Search Result Styles
*/
.search .js-tab-accordion--inner .tab-accordion__panel__content {
    padding: 40px 65px;
}

.search-results-listing-column {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #cecece;
}

.search-results-listing-column .sl-no {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    font-size: 10px;
    font-weight: 600;
    color: #fff;
    background: #e0632e;
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    line-height: 24px;
    margin-bottom: 6px;
    margin-right: 6px;
}

.choices__item[data-value="84"],
.choices__item[data-value="83"],
.choices__item[data-value="82"],
.choices__item[data-value="16"] {
	display: none;
}