/* ===========================
   Our DNA Page Styles
   =========================== */

.dna-intro {
    padding: 80px 0 40px;
    background: #fff;
}

.dna-intro .section-title {
    max-width: 900px;
    margin: 0 auto;
}

.dna-intro .section-title h2 {
    color: #0f2457;
    font-size: 32px;
    margin-bottom: 25px;
}

.dna-intro .section-title p {
    font-size: 16px;
    line-height: 1.8;
    color: #606060;
}

.dna-values-area {
    padding-top: 100px;
    padding-bottom: 70px;
    background-color: #f4f6fc;
}

.dna-values-area .single-features-box {
    margin-bottom: 30px;
    padding: 35px 30px;
    border-radius: 10px;
    background-color: #fff;
    transition: 0.5s;
    height: calc(100% - 30px);
}

.dna-values-area .single-features-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.dna-values-area .single-features-box .icon {
    width: 60px;
    height: 60px;
    line-height: 60px;
    background-color: #eef1ff;
    color: #00afef;
    font-size: 30px;
    text-align: center;
    border-radius: 50%;
    margin-bottom: 25px;
    display: inline-block;
    transition: 0.5s;
}

.dna-values-area .single-features-box:hover .icon {
    background-color: #00afef;
    color: #fff;
}

.dna-values-area .single-features-box h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #0f2457;
    font-weight: 700;
}

.dna-values-area .single-features-box p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 0;
}

/* For the 5-item grid centering */
@media (min-width: 992px) {
    .dna-values-row {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
}