.benefits-container {
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

.benefits-container .background-img-filter {
    background-color: #252b3c;
    position: absolute;
    opacity: 0.7;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

.benefits-container > h1 {
    margin: 50px 0 30px 0;
    color: var(--fg2);
    text-align: center;
}

.benefits-container .background-img {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -2;
}

.benefits {
    width: 60%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.benefit {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: solid 10px var(--bg2);
    position: relative;
    flex: 1 1 28%;
    min-height: 400px;
    margin: 40px 80px;
    box-sizing: border-box;
}

.benefit::after {
    content: "";
    position: absolute;
    top: 0; 
    left: 0;
    width: 100%; 
    height: 100%;  
    opacity: .4; 
    z-index: -1;
    background-color: black;
}

.benefit figure {
    width: 30%;
    margin: 0;
}

.benefit img {
    filter: invert(100%);
}

.benefit h1,
.benefit h2,
.benefit h3,
.benefit h4 {
    color: var(--fg3);
}

.benefit p {
    color: var(--fg2);
    width: 80%;
    margin: 0 auto;
    font-size: 16px;
}