.insights-header {
    margin: 0;
    margin-bottom: 30px;
    font-size: 34px;
    line-height: 38px;
    text-align: center;
    color: #2D2D2D;
    font-weight: normal;
}

/* card filters css */

.insight-filters-outer {
    position: relative;
}

.insight-filters-outer .filter-left {
    width: 40px;
    display: flex;
    position: absolute;
    top: 1px;
    left: 0;
    bottom: 1px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-align: center;
    background-color: #005587;
    z-index: 1;
}

.insight-filters-outer .filter-left:before {
    content: '\276E';
    font-size: 32px;
    color: #ffffff;
}

.insight-filters {
    transition: transform .25s;
}

.insight-filters .industry {
    position: relative;
    font-size: 20px;
    font-size: calc(20px - .25vw);
    line-height: 23px;
    font-weight: 500;
    display: block;
    width: 100%;
    color: #2D2D2D;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
}

.insight-filters .industry:after {
    display: block;
    content: '';
    border-bottom: solid 3px #005587;
    transform: scaleX(0);
    transition: transform 250ms ease-in-out;
    margin-top: 5px;
}

.insight-filters .industry.selected:after,
.insight-filters .industry:hover:after {
    transform: scaleX(1);
}

.callout.more-insights,
.callout.back-to-top {
    display: block;
    max-width: 200px;
    margin: 0 auto;
}


/* card css */

.insight-card-link {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
}

.insight-card-container .insight-card {
    min-width: 260px;
    height: 360px;
    position: relative;
    padding: 20px;
    background-color: #f4f4f4;
    color: #4d4d4d;
}

.insight-card-container .insight-type {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 3px 8px;
    border: 2px solid #4d4d4d;
    color: #4d4d4d;
    text-transform: uppercase;
    font-size: 14px;
    line-height: 23px;
    font-weight: 500;
    letter-spacing: 0.84px;
}

.insight-card-container .insight-title {
    font-size: 24px;
    line-height: 30px;
    font-weight: 500;
    letter-spacing: -0.1px;
}

.insight-card-container .read-more {
    position: absolute;
    bottom: 20px;
    right: 35px;
    color: #4d4d4d;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.1px;
}

.insight-card-container .read-more:after {
    content: "\276F";
    position: absolute;
    right: -15px;
    font-size: 14px;
    font-weight: 700;
}

/* utils */

.flex.justify-center,
.flex.justify-content-center {
    justify-content: center;
}

.flex.justify-around,
.flex-justify-content-around {
    justify-content: space-around;
}

.flex.gap-15 {
    gap: 15px;
}

.flex.gap-30 {
    gap: 30px;
}

.max-width-1200 {
    max-width: 1200px;
}

.flex-center {
  display: flex;
  margin-left: auto;
  margin-right: auto;
}

.bg-161616 {
    background-color: #161616;
}

.padding-32 {
    padding: 32px;
}

.padding-70 {
    padding: 70px;
}

.bg-595959 {
    background-color: #595959;
}

/* featured resource card overrides */

.page-tools.mobile {
    margin-top: 10px !important;
    margin-bottom: 25px !important;
}

.container.resource-cards {
    position: relative;
    background-color:#161616;
    color:#fff;
    padding-bottom: 25px;
}
.resource-cards h2 {
    color:#fff;
}
.featured-card-container .featured-card-heading a:hover {
    color: #fff;
}
.featured-card-container a.featured-link {
    color:#71C5E8;
}
.featured-card-container a.featured-link:after {
    display: none;
}
.container.resource-cards .simple-tag {
    display: none;
}
.container.resource-cards:before {
    content: '';
    display: block;
    position: absolute;
    background-color: #161616;
    width: calc( (100vw - 1200px) / 2 );
    height: 100%;
    left: 100%;
    top: 0;
}

.container.resource-cards:after {
    content: '';
    display: block;
    position: absolute;
    background-color: #161616;
    width: calc( (100vw - 1200px) / 2 );
    height: 100%;
    right: 100%;
    top: 0;
}

/* mobile */

@media (max-width: 1200px) {
    
    div.container.resource-cards {
        margin-left: 0;
        margin-right: 0;
        padding-left: 30px;
        padding-right: 30px;
        background-color: #161616;
    }
}

@media (max-width: 768px) {
    
    .insight-filters-outer {
        margin-bottom: 0;
        background-color: #005587;
        padding: 15px 0;
        color: #ffffff;
    }
    
    .insight-filters {
        flex-direction: row;
    }
    
    .insight-filters .industry {
        display: flex;
        margin-bottom: 0;
        align-items: center;
        justify-content: center;
        color: #ffffff;
    }
    
    .insight-filters .industry:after {
        position: absolute;
        bottom: -15px;
        left: 0;
        right: 0;
        border-bottom: 6px solid #ffffff;
    }
    
    .insight-card-container {
        flex-direction: row;
    }

    .insight-card-container .insight-card {
        margin-bottom: 0;
    }
    
    .insight-card .insight-title {
        margin-bottom: 50px;
        margin-top: 50px;
    }
    
    .module_cta {
        margin-top: 0 !important;
    }
}

/* fluid type */

@media (min-width: 1200px) {
  .insight-filters .industry {
    font-size: 20px;
    line-height: 23px;
  }
}

@media (max-width: 568px) {
  .insight-filters .industry {
    font-size: 16px;
    line-height: 20px;
  }
}