/* --------------------------------------------------
FEATURE SECTION
-------------------------------------------------- */

.lp-feature {
    margin-top: 4rem;
}

.lp-feature h3 {
    position: relative;
    padding: 2rem 0 0 0;
}

.lp-feature h3:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;

    width: 50px;
    height: 5px;

    background: var(--primary);
}

.lp-feature p a {
    font-weight: 700;
    text-decoration: underline;
}

.lp-feature p a:hover {
    text-decoration: none;
}

.lp-feature img {
    box-shadow: 15px 15px 25px rgba(0, 0, 0, .15);
}
    
@media (min-width: 992px) {
    .lp-feature {
        display: grid;
        grid-template-columns: 4fr 3fr 5fr;
        gap: 2rem;
    }

}

@media (min-width: 1200px) {

    .lp-feature h3 {
        padding-left: 16.666%;
    }

}