.nd-insights-detail .nd-insights-footer,
.nd-insights-footer {
  background-color: #004D35;
  color: #8ED500;
}
.nd-insights-detail .nd-insights-footer p,
.nd-insights-footer p {
  margin: 10px auto 14px;
  font-size: 14px;
  line-height: 18px;
}
.nd-insights-footer .cells {
    display: flex;
    flex-wrap: nowrap;
}
@media screen and (max-width: 767px) {
    .nd-insights-footer .cells {
        flex-direction: column;
    }
}
.nd-insights-footer .cell {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(100vw / 3);
    overflow: hidden;
    aspect-ratio: 1 / 1;
}
@supports not (aspect-ratio: 1 / 1) {
    .nd-insights-footer .cell::before {
        float: left;
        padding-top: 100%;
        content: "";
    }

    .nd-insights-footer .cell::after {
        display: block;
        content: "";
        clear: both;
    }
}
@media screen and (max-width: 767px) {
    .nd-insights-footer .cell {
        width: 100%;
    }
}
.nd-insights-footer .cell:nth-child(1) {
    background-color: #8ED500;
    color: #8ED500;
}
.nd-insights-footer .cell:nth-child(2) {
    background-color: #004D35;
    color: #8ED500;
}
.nd-insights-footer .cell:nth-child(3) {
    background-color: #D4F495;
    color: #004D35;
}
.nd-insights-footer .cell .content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 15%;
}
.nd-insights-footer .cell .content p {
    margin: 0;
    font-size: 24px;
    line-height: 26px;
    font-weight: 400;
}
@media screen and (max-width: 1175px) {
    .nd-insights-footer .cell .content p {
        font-size: 16px;
        line-height: 20px;
    }
}
.nd-insights-footer .cell .content a {
    font-style: italic;
    text-decoration: underline;
    font-weight: 900;
    color: inherit;
}
.nd-insights-footer .cell .content .social {
    display: flex;
    flex-wrap: nowrap;
}
.nd-insights-footer .cell .content .social img {
    display: inline-block;
    margin: 0 11px;
}
.nd-insights-footer .cell .shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.nd-insights-footer .cell:nth-child(1) .shape {
    background-color: #004D35;
    border-top-right-radius: 50%;
    border-top-left-radius: 50%;
    border-bottom-left-radius: 50%;
}
.nd-insights-footer .cell:nth-child(2) .shape {
    background-color: #006344;
    border-top-right-radius: 50%;
    border-bottom-right-radius: 50%;
}
.nd-insights-footer .cell:nth-child(3) .shape {
    background-color: #8ED500;
    border-top-left-radius: 50%;
    border-bottom-left-radius: 50%;
    border-bottom-right-radius: 50%;
}