.features-company {
    background-color: #324998;
    color: #fff;
    margin-bottom: 20px;
}
.features-company .title {
    text-align: center;
}
.features-company .title h3 {
    font-size: 28px;
    position: relative;
    padding: 30px 0 20px 0;
    margin-top: 0;
    margin-bottom: 18px;
    color: #fff;
    text-transform: uppercase;
}
.features-company .title p {
    font-size: 18px;
}
.features-company .title h3::after {
    margin: 0 auto;
    content: "";
    position: absolute;
    width: 6%;
    height: 1px;
    bottom: 0;
    left: 47%;
    border-bottom: 2px solid #fff;
}
.features-company .content {
    display: flex;
    justify-content: space-between;
    padding: 30px 50px;
}
.features-company .content .content-field {
    text-align: center;
}
.features-company .content .content-field img {
    width: 40px;
    margin: 0 auto;
    padding-bottom: 8px;
}
.features-company .content .content-field .text-content-field {
    font-size: 13px;
}
@media only screen and (max-width: 479px) {
    .features-company .title h3 {
        font-size: 16px;
        padding: 10px 0 10px 0;
        margin-bottom: 10px;
    }
    .features-company .title p {
        font-size: 12px;
    }
    .features-company .content {
        padding: 0 10px;
        flex-wrap: wrap;
    }
    .features-company .content .content-field {
        width: 33%;
    }
    .features-company .content .content-field img {
        width: 30px;
    }
    .features-company .content .content-field .text-content-field {
        font-size: 11px;
    }
}