/*# Insight Research #*/
.insights-box-container {
display: flex;
justify-content: space-between;
flex-flow: row wrap;
}

@media only screen and (max-width: 48em) {
.insights-box-container {
display: block;
}
}

.insights-box-container .insight-box {
width: 24%;
}

@media only screen and (max-width: 48em) {
.insights-box-container .insight-box {
width: 100%;
margin-bottom: 23px;
}
}

.insights-box-container .insight-box .content {
display: none;
}

.insights-box-container .insight-box:first-child {
width: 49%;
}

@media only screen and (max-width: 48em) {
.insights-box-container .insight-box:first-child {
width: 100%;
}
}

.insights-box-container .insight-box:first-child .content p {
font-family: var(--secondary-font);
font-weight: var(--font-weight-regular);
font-style: normal;
font-size: 16px;
line-height: 1.4;
margin: 14px 0;
color: var(--white-color);
text-align: left;
}

.insights-box-container .insight-box .article_cards {
min-height: 320px;
padding: 50px 20px 30px 42px;
background-color: var(--secondary-light-color);
color: var(--white-color);
position: relative;
background-size: cover;
background-position: center;
background-repeat: no-repeat;
transition: all 0.3s linear;
width: auto;
}
@media only screen and (max-width: 48em) {
.insights-box-container .insight-box .article_cards {
height: auto;
padding: 50px 20px 30px 21px;
min-height: auto;
background-size: cover;
}
}

.insights-box-container .insight-box .article_cards:after {
background-color: rgba(0, 0, 0, 0.2);
position: absolute;
left: 0;
right: 0;
bottom: 0;
top: 0;
content: "";
z-index: 1;
transition: all 0.3s linear;
}

.insights-box-container .insight-box .article_cards:hover {
background-size: cover;
}

@media only screen and (max-width: 48em) {
.insights-box-container .insight-box .article_cards:hover {
background-size: cover;
}
}

.insights-box-container .insight-box .article_cards:hover:after {
background-color: rgba(111, 145, 45, 0.6);
}

.insights-box-container .insight-box .article_cards h4 a {
font-family: var(--primary-font);
font-weight: var(--font-weight-extraBold);
font-style: normal;
font-size: 30px;
line-height: 1;
color: var(--white-color);
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 5;
overflow: hidden;
text-overflow: ellipsis;
text-align: left;
line-height:1.3;
}

.insights-box-container .insight-box .article_cards .card_body {
max-width: 350px;
position: relative;
z-index: 2;
}

.insights-box-container .insight-box .article_cards .card_footer {
position: absolute;
bottom: 30px;
z-index: 2;
display: flex;
align-items: center;
}

@media only screen and (max-width: 48em) {
.insights-box-container .insight-box .article_cards .card_footer {
position: relative;
bottom: auto;
z-index: 2;
margin-top: 20px;
}
.insight-box .card_footer .date{
margin-top: 20px;
}
}

.insights-box-container .insight-box .article_cards .card_footer>* {
display: inline-block;
}

.insights-box-container .insight-box .article_cards .card_footer .date {
font-family: var(--secondary-font);
font-weight: var(--font-weight-regular);
font-style: normal;
font-size: 14px;
line-height: 2;
margin-left: 23px;
color: var(--white-color);
position: initial;
}

.insights-box-container .insight-box .article_cards .card_footer .btn-yellow {
padding: 11px 18px;
}