.customer-focus {
    margin: 120px 0 109px;
}

.customer-focus .customer-focus-block h2 {
    margin-bottom: 65px;
}

.customer-focus .features {
    display: flex;
    flex-direction: row;
    gap: 28px;
    position: relative;
}
.customer-focus .feature {
    display: inline-block;
    min-width: 20%;
    position: relative;
}

.customer-focus .feature-icon {
    display: flex;
    justify-content: center;
    align-items: center;
}

.customer-focus .feature-icon img {
    max-width: 109px;
    width: 100%;
    height: 109px;
}

.customer-focus .separator-line {
    width: 60%;
    margin: 40px auto;
    border: 0;
    border-top: 1px solid #333945;
}

.customer-focus .feature-content {
    padding: 0 14px 27px;
}

.customer-focus .bottom-border {
    width: 100%;
    height: 5px;
    background-color: #187414;
    position: absolute;
    bottom: 0;
}
.customer-focus .bottom-border:before {
    content: '';
    position: absolute;
    width: 5px;
    height: 62px;
    background: #187414;
    left: 0;
    bottom: 0;
}
.customer-focus .bottom-border:after {
    content: '';
    position: absolute;
    width: 5px;
    height: 62px;
    background: #187414;
    right: 0;
    bottom: 0;
}

@media screen and (max-width: 768px) {
    .customer-focus {
        margin: 100px 0;
    }
    .customer-focus .customer-focus-block h2 {
        margin-bottom: 35px;
    }
    .customer-focus .features {
        flex-direction: column;
    }
    .customer-focus .feature-icon img {
        width: 73px;
        height: 73px;
    }
    .customer-focus .separator-line {
        margin: 20px auto;
    }
}