/*------------------------------------*\
    
    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: 0.8em;
}

@media (min-width: 1025px) {
    .post-item {
        padding-top: 50px;
        margin-top: 50px;
    }
}

/**
 * Sidebar
 */

/* Blog Sidebar */

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

/**
* FX Load More
*/

/* Load More Progress Bar */
.load-more__progress {
    margin-top: 15px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    height: 10px;
    border: 0;
    border-radius: 0;
    min-width: 250px;
}
progress::-webkit-progress-bar,
progress::-webkit-progress-value,
progress::-moz-progress-bar {
    height: 10px;
    border: 0;
    border-radius: 0;
}
progress::-webkit-progress-bar {
    background-color: #ddd;
}
progress::-webkit-progress-value {
    background-color: #4a4a4a; /* TODO: Please add a branded background color for progress bar value */
}

/* Loading Indicator */
.is-loading:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: 50px;
    height: 50px;
    border: 5px solid;
    border-color: #e3e3e3 #e3e3e3 transparent;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    -webkit-animation: simpleSpin 1.5s linear infinite;
    animation: simpleSpin 1.5s linear infinite;
}

/* Load More Button */
.load-more__btn {
    border: 0;
    display: block;
    margin-top: 20px;
}

.load-more__btn.is-loading {
    position: relative;
    opacity: 0.6;
    cursor: not-allowed;
}

.load-more__btn.is-loading:before {
    width: 20px;
    height: 20px;
}

.load-more__btn.is-disabled {
    cursor: not-allowed;
    background-color: #4a4a4a;
    display: none;
}

/* Placeholder Space */
.placeholder-block {
    position: relative;
    display: flex;
}

.placeholder-block__inner {
    flex-grow: 1;
    background-color: #fafafa;
}

.placeholder-block.is-loading:before {
    width: 50px;
    height: 50px;
}

@-webkit-keyframes simpleSpin {
    0% {
        transform: translate(-50%, -50%) rotateZ(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotateZ(360deg);
    }
}

@keyframes simpleSpin {
    0% {
        transform: translate(-50%, -50%) rotateZ(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotateZ(360deg);
    }
}

.post-listing__pagination .load-more {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
}

/* 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;
    color: #747474;
}

.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 {
    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;
    position: relative;
    padding-bottom: 30px !important;
    display: block;
    padding-top: 30px;
}

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

.search-result__excerpt {
    margin-bottom: 20px;
    font-weight: 400;
    color: #e1dddd;
}

/* Featured Blog */
.featured-blog-card,
.blog-post__item {
    background: rgb(41, 41, 41);
    background: linear-gradient(127deg, rgba(41, 41, 41, 1) 0%, rgba(52, 52, 52, 1) 50%, rgba(41, 41, 41, 1) 100%);
    padding: 25px 20px 25px 20px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.6);
    display: block;
    position: relative;
    overflow: hidden;
    color: #fff;
    height: 100%;
}

.blog-post__item {
    padding-bottom: 25px;
}

.blog-post__img-container {
    background: none;
    border: none;
    width: 100%;
}

.blog-post__img-container:hover {
    background: none;
}

.featured-blog-card__wrapper .featured-blog-card:hover {
    background: rgb(41, 41, 41);
    background: linear-gradient(127deg, rgba(41, 41, 41, 1) 0%, rgba(52, 52, 52, 1) 50%, rgba(41, 41, 41, 1) 100%);
}

.blog-post__tag:hover,
.blog-post__tag,
.blog-cat {
    font-size: 14px;
    padding: 4px 16px;
    background: #bababa;
    color: #000000;
    font-size: 14px;
    font-weight: 700;
    border-radius: 50px;
    font-family: "Oswald", sans-serif;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 8px;
}

.featured-blog-post__wrapper.section-padding {
    padding-bottom: 0;
}

.blog-listing__pagination {
    margin: 40px 0 25px;
    text-align: center;
}

.load-more.js-load-more {
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.load-more__btn {
    text-align: center;
    max-width: 160px;
    margin-left: auto;
    margin-right: auto;
}

.blog-post-item {
    margin-bottom: 35px;
}

.blog-post__tags {
    margin-bottom: 15px;
    margin-top: 15px;
}

.widget_search form {
    position: relative;
}

.widget_search form > p:last-child {
    position: absolute;
    top: 5px;
    right: 10px;
}

.widget_search form > p:last-child button {
    font-size: 0px;
    font-family: "calhoun-super-icon" !important;
    speak: never;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    width: 40px;
    height: 40px;
}

.widget_search form > p:last-child button:after {
    content: "\e918";
    font-size: 25px;
}

.widget_search form input {
    outline: none;
    border: 1px solid #bababa;
    padding-left: 12px;
}

.widget_search form input:focus {
    border-left: 8px solid #bababa;
}

.blog-post__img-container img {
    height: 150px;
}

.blog-post__tag {
    display: inline-block;
}

.blog-post__tag + .blog-post__tag {
    margin-right: 8px;
}

.featured-post-thumnbail__wrapper,
.page-sidebar > .widget {
    margin-bottom: 25px;
}

.featured-post-thumnbail__wrapper {
    text-align: center;
}

.page-sidebar > .widget:last-child {
    margin-bottom: 0;
}

.block--wrapper > .section-padding {
    padding-top: 0;
}

.featured-post-thumnbail__wrapper img {
    width: 100%;
    height: 398px;
    -o-object-fit: cover;
       object-fit: cover;
}

@media (min-width: 600px) {
    .featured-post-thumnbail__wrapper img {
        width: 100%;
        height: 398px;
        -o-object-fit: cover;
           object-fit: cover;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
       /* border-radius: 20px;*/
    }
}

.block--wrapper [class*="container-"],
.block--wrapper [class*="container"] {
    width: 100%;
    padding: 0;
}

@media (min-width: 1200px) {
    .featured-blog-card {
        padding: 25px 20px 25px 20px;
    }

    .blog-post__item {
        padding: 1px 0px 25px 0px;
    }

    .blog-card-wrapper {
        display: flex;
        text-align: left;
    }

    .blog-card-image {
        width: 50%;
        height: 100%;
        margin: 0 auto 25px;
    }

    .blog-post__meta,
    .blog-card-content {
        width: 100%;
        padding: 0 0 0;
        text-align: left;
        padding-left: 20px;
        padding-right: 20px;
    }

    .featured-blog-card__wrapper .blog-card-content {
        padding: 0 0 0 32px;
    }

    .blog-post-item {
        width: calc(50% - 25px);
        margin-bottom: 0;
    }

    .blog-post-item__detail {
        display: flex;
        text-align: left;
        flex-wrap: wrap;
    }

    .blog-post__tags {
        margin-bottom: 5px;
    }

    .blog-post__title {
        font-size: 30px;
        line-height: 45px;
    }

    .featured-post-thumnbail__wrapper,
    .page-sidebar > .widget {
        margin-bottom: 45px;
    }
}

@media (min-width: 600px) {
    .blog-post-item {
        width: calc(50% - 25px);
        margin-bottom: 0;
    }

    .blog-listing {
        margin-bottom: -25px;
        display: flex;
        width: calc(100% + 32px);
        margin: 0 -16px;
        flex-wrap: wrap;
        gap: 25px;
    }

    .blog-post__img-container img {
        height: 200px;
        width: 100%;
    }
}

/* Building Profiles */

.single-building-profiles .title-content {
    position: relative;
    z-index: 1;
}

.single-building-profiles .grid {
    position: absolute;
    z-index: -1;
    top: 0;
    right: 0;
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: 100%;
}

.single-building-profiles .title-content h2 {
    text-transform: uppercase;
}

.single-building-profiles .title-content h2 span {
    color: #e4212e;
}

.profile__content-wrap h4 {
    padding-top: 10px;
    padding-bottom: 0;
    font-size: 22px;
    color: #bababa;
    position: relative;
}

.flex-jump-link__cat {
    text-align: center;
}

.jump-link-bp__link {
    background: #fff;
    color: #9d000a;
    padding-right: 22px;
    margin-bottom: 20px;
    font-size: 16px;
    margin-top: 15px;
}

.jump-link-bp__link:before {
    content: none;
}

.jump-link-bp__link i {
    transform: rotate(180deg);
    display: inline-block;
}

#jump-link-cat__title {
    font-size: 25px;
    margin-bottom: 35px;
    font-weight: 600;
    font-family: "Oswald", sans-serif;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.jump-link-building-profiles.section-padding,
.jump-link-building-profiles + section {
    padding-top: 0;
}

.resource-btn-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #e4212e;
}

.resource-card-link {
    background: rgb(41, 41, 41);
    background: linear-gradient(127deg, rgba(41, 41, 41, 1) 0%, rgba(52, 52, 52, 1) 50%, rgba(41, 41, 41, 1) 100%);
    padding: 25px 20px 60px 20px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.6);
    display: block;
    position: relative;
    overflow: hidden;
}

.bp-card-item a {
    position: relative;
}

.profile__content-wrap {
    margin-bottom: 10px;
}

.title-content__flex-wysiwyg .with-icon:before {
    font-size: 50px;
}

.bp-card img {
    height: auto;
}

.block--wrapper > section:last-child {
    padding-bottom: 50px;
}

@media (min-width: 768px) {
    .jump-link-bp__link {
        margin-top: 0;
    }

    .profile__content-wrap {
        margin-bottom: 0;
        background: #000;
        padding-right: 35px;
    }

    .bp-card-item a {
        padding: 30px 34px 76px 27px;
    }

    .single-building-profiles .title-content::after {
        content: "";
        position: absolute;
        z-index: -1;
        top: 0;
        left: 0;
        width: 78px;
        height: 100%;
        background: #000;
    }

    .single-building-profiles .title-content h2 {
        padding-bottom: 0;
    }

    .single-building-profiles .title-content__flex {
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        position: relative;
        z-index: 1;
    }

    .single-building-profiles .title-content__flex .btn {
        margin-bottom: 5px;
    }

    .single-building-profiles .title-content__flex::after {
        content: "";
        position: absolute;
        z-index: -1;
        bottom: 27px;
        right: 0;
        width: 100%;
        height: 2px;
        background: #e4212e;
        opacity: 0.5;
    }
}

@media (min-width: 1200px) {
    .bp-card-item a:hover .resource-btn-overlay {
        bottom: 0;
        opacity: 1;
    }

    .bp-card-item a {
        padding: 0px 30px;
        height: 100%;
    }

    .resource-btn-overlay {
        position: absolute;
        bottom: -100%;
        opacity: 0;
        transition: all ease 0.3s;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgb(85, 2, 6);
        background: linear-gradient(
            138deg,
            rgba(85, 2, 6, 0.95) 0%,
            rgba(152, 0, 11, 0.95) 50%,
            rgba(85, 2, 6, 0.95) 100%
        );
    }

    .single-building-profiles .title-content::after {
        width: 239px;
    }

    .single-building-profiles .title-content__flex .btn {
        margin-bottom: 13px;
    }

    .single-building-profiles .title-content__flex::after {
        bottom: 35px;
    }
}

@media (min-width: 1367px) {
    .single-building-profiles .title-content::after {
        width: calc(50% - 624px);
    }
}

.flex-featured-video__wrapper {
    background: rgb(41, 41, 41);
    background: linear-gradient(127deg, rgba(41, 41, 41, 1) 0%, rgba(52, 52, 52, 1) 50%, rgba(41, 41, 41, 1) 100%);
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.6);
    position: relative;
    overflow: hidden;
    color: #fff;
    height: 100%;
    display: block;
    padding: 0;
}

.bp-card__bttn,
.bp-card__bttn:hover {
    position: absolute;
    left: 0;
    top: 50%;
    right: 0;
    text-align: center;
    border: none;
    outline: none;
    box-shadow: none;
    background: none;
    transform: translate(0, -50%);
}

.right-video__meta {
    padding: 32px;
}

.bp-cat:hover,
.bp-cat {
    font-size: 14px;
    padding: 4px 16px;
    background: #bababa;
    color: #000000;
    font-size: 14px;
    font-weight: 700;
    border-radius: 50px;
    font-family: "Oswald", sans-serif;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 8px;
}

.left-video__img {
    position: relative;
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    height: 150px;
}

.flex-featured-video__wrapper {
    margin-top: 25px;
}

.back-to-bp-top {
    font-size: 18px;
    text-transform: uppercase;
    color: #fff;
    background: none !important;
    font-family: "Oswald", sans-serif;
}

.back-to-bp-top:hover {
    color: #e4212e;
}

.back-to-bp-top i {
    font-size: 12px;
    position: relative;
    top: -1px;
}

.featured-bp-post__wrapper.section-padding {
    padding-bottom: 0;
    padding-top: 30px;
}

.jump-link-video__category + .bp-category__wrapper,
.bp-category__wrapper + .bp-category__wrapper {
    padding-top: 0;
}

.bp-cards__title h3 {
    padding-bottom: 0;
}

.flex-jump-link__cat {
    text-align: center;
}

#jump-link-cat__title {
    font-size: 25px;
    margin-bottom: 35px;
    font-weight: 600;
    font-family: "Oswald", sans-serif;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.sub--title {
    color: #bababa;
    font-weight: 600;
    font-family: "Oswald", sans-serif;
    margin-bottom: 10px;
}

.bp-card__bttn {
    background: none !important;
}

@media (min-width: 768px) {
    #jump-link-cat__title {
        font-size: 30px;
    }

    .left-video__img {
        height: 250px;
    }
}

@media (min-width: 992px) {
    .flex-featured-video__wrapper {
        display: flex;
        align-items: center;
    }

    .left-video__img {
        height: 100%;
    }
}

.bp-card-item {
    margin-top: 25px;
}

.bp-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    height: 100%;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.6);
    justify-content: center;
}

.bp-card h2 {
    font-size: 30px;
    text-align: center;
    padding-top: 20px;
    padding-bottom: 0;
    color: #000;
}

.has-no-file {
    pointer-events: none;
}

.has-no-file img {
    height: auto;
}

.bp-card a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: none;
    background: none;
    height: 100%;
    padding-top: 40px;
    padding-bottom: 40px;
}

.bp-card__image {
    height: 200px;
    position: relative;
}

.bp-card__bttn {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.26);
}

.bp-card__bttn svg {
    width: 60px;
    height: auto;
    transition: all 0.3s;
}

.bp-card__details {
    padding: 20px 20px 30px;
}

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

.bp-card__details p {
    font-size: 18px;
    line-height: 1.666em;
}

.bp-card__cta {
    display: inline-block;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    font-family: "Oswald", sans-serif;
    background: none;
    margin-top: 10px;
    position: relative;
    padding-right: 20px;
    font-weight: normal;
}

.bp-card__cta i {
    transform: rotate(90deg);
    display: block;
    line-height: 1em;
    position: absolute;
    right: 0;
    top: 8px;
    font-size: 14px;
}

.bg-white .bp-card__title {
    color: #fff;
}

.resource-btn-overlay button {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.02em;
    font-family: "Oswald", sans-serif;
    background-color: transparent;
    border: none;
    text-transform: uppercase;
    padding: 9px 0;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.resource-btn-overlay button i {
    font-size: 14px;
    margin-left: 7px;
    font-weight: normal;
}

@media (min-width: 768px) {
    .resource-btn-overlay button {
        font-size: 18px;
    }

    .bp-card-item {
        margin-top: 30px;
    }

    .bp-card__bttn svg {
        width: 76px;
    }

    .bp-card__details {
        padding: 20px 26px 27px;
    }

    .bp-card__title {
        font-size: 22px;
    }

    .bp-cards__headlines {
        display: flex;
        flex-wrap: wrap;
        align-items: flex-end;
        justify-content: space-between;
    }

    .bp-cards__title {
        width: 374px;
    }

    .bp-cards__title h2 {
        padding-bottom: 0;
    }
}

@media (min-width: 1200px) {
    .bp-card-item {
        margin-top: 40px;
    }

    .bp-card__bttn svg {
        width: 98px;
    }

    .bp-card__details {
        padding: 25px 25px 27px;
    }

    .bp-cards__title {
        width: calc(100% - 260px);
    }

    .bp-cards__headlines .btn {
        margin-bottom: 7px;
    }

    .bp-card__cta {
        margin-top: 0;
    }

    .bp-card__image {
        height: 225px;
    }

    .bp-card__bttn:hover {
        background: rgba(0, 0, 0, 0.26);
    }

    .bp-card__bttn:hover svg {
        transform: scale(1.1);
    }
}

@media (min-width: 1620px) {
    .bp-card__details {
        padding: 25px;
    }
}

/**
* Single job listing
**/

.job-sidebar__benefits,
.job-sidebar__metas {
    background: #292929;
    color: #fff;
    padding: 35px 35px;
    border-radius: 20px;
    margin-bottom: 35px;
}

.job-social-media-icons {
    margin: 25px 0;
}

.share-heading {
    margin-bottom: 0;
    padding-bottom: 0;
}

.job-social-media-icons ul li,
.job-social-media-icons ul {
    margin: 0;
    margin-top: 0;
}

.job-social-media-icons ul.social-share-row {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.job-social-media-icons ul li {
    padding-left: 0;
}

.job-social-media-icons ul li a {
    margin: 0;
}

.job-social-media-icons ul li a .resp-sharing-button {
    padding: 5px 10px;
}

.job-social-media-icons .resp-sharing-button--twitter {
    border: none;
}

.job-sidebar-heading {
    margin: 0;
    padding: 10px 0 5px;
    font-weight: 600;
    font-family: "Oswald", sans-serif;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.job-meta-item {
    margin-bottom: 15px;
}

.job-data-value,
.job-data-value-benefits * {
    font-size: 16px;
}

.job-data-value-benefits p {
    margin-bottom: 10px;
}

.job-sidebar__benefits .job-sidebar-heading {
    padding-bottom: 15px;
}

.job_application.application,
.job-listing-meta.meta {
    display: none;
}

.job-listing-meta.meta > li {
    width: calc(50% - 50px);
}

.js-trigger-apply-form.is--disable,
.js-application-form,
.js-trigger-view-desc.is--disable {
    display: none;
}

.btn.btn-secondary.js-trigger-view-desc {
    margin-left: 0;
}

form .gfield--type-fileupload {
    padding: 25px;
    background: transparent 0% 0% no-repeat padding-box;
    border: 1px dashed #c8c8c8;
    border-radius: 4px;
    display: block;
}

form .ginput_container_fileupload input {
    border: none;
    background: none;
    box-shadow: none;
    padding-left: 0;
    margin-top: 15px;
}

form .ginput_container_fileupload .gform_fileupload_rules {
    display: none !important;
}

.ginput_container_date {
    position: relative;
}

body .gform_wrapper.gravity-theme .ginput_container_date input {
    width: 100%;
}

body .gform_wrapper.gravity-theme .ginput_container_date .ui-datepicker-trigger {
    margin-right: 15px;
    position: absolute;
    right: 0;
}

body .gform_wrapper .gfield--type-address legend {
    display: none !important;
}

@media (min-width: 768px) {
}

@media (min-width: 1200px) {
    .job-single-post-content,
    .application-form__wrapper {
        max-width: calc(100% - 100px);
    }
}

a.blog-post__title__link {
    background: linear-gradient(to bottom, rgb(228 33 46 / 0%) 0%, rgb(228 33 46 / 0%) 100%);
    background-position: 0 100%;
    background-repeat: repeat-x;
    background-size: 4px 2px;
    color: #fff;
}

.single-ebook .gform_confirmation_message {
    display: none;
}


@media (max-width: 767px) {
    a.blog-post__title__link {
        color: #fff;
    }

    .blog-card-wrapper,
    .blog-post-item__detail {
        position: relative;
    }

    .blog-card-image.hidden-xs-down,
    .blog-post__img-container.hidden-xs-down {
        display: block !important;
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        height: auto;
    }

    .blog-card-image.hidden-xs-down img,
    .blog-post__img-container.hidden-xs-down img {
        width: 100%;
        height: auto;
        object-fit: cover;
        object-position: center;
    }

    .featured-blog-card,
    .blog-post__item {
        padding: 0;
    }

    .blog-card-content,
    .blog-post__meta {
        padding: 25px;
        background-color: rgba(0,0,0, 0.75);
        position: relative;
        z-index: 2;
    }
}