/* ==========================================
WHY CHOOSE DNH
========================================== */

.why-dnh{
    padding:50px 0;
    background:#fff;
    overflow:hidden;
}

.why-dnh-wrapper{
    display:grid;
    grid-template-columns:1fr 2fr;
    gap:70px;
    align-items:center;
}

.section-badge{
    display:inline-block;
    padding:8px 18px;
    background:#eef4ff;
    color:#0B5FFF;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
    margin-bottom:15px;
}

.title-line{
    width:70px;
    height:4px;
    background:#0B5FFF;
    margin:18px auto 0;
    border-radius:20px;
}

/* ==========================================
SECTION TITLE
========================================== */

.why-section-title{
    text-align:center;
    margin-bottom:20px;
}

.why-section-title h2{
    font-size:36px;
    font-weight:800;
    color:#071C63;
    line-height:1.2;
    margin:0;
}

/* ==========================================
IMAGE
========================================== */

.why-dnh-image{
    text-align:center;
}

.why-dnh-image img{
    width:100%;
    max-width:500px;
    height:auto;
    margin:auto;
    animation:floatImage 4s ease-in-out infinite;
}

@keyframes floatImage{

    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-15px);
    }

    100%{
        transform:translateY(0);
    }
}

/* ==========================================
GRID
========================================== */

.why-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:14px;
}

/* ==========================================
CARD
========================================== */

.why-card{
    display:flex;
    /*align-items:flex-start;*/
    align-items:center;
    gap:14px;
    padding:14px;
    background:#fff;
    border-radius:16px;
    border:1px solid #edf2ff;
    transition:.35s;
    height:100%;
}

.why-card:hover{
    transform:translateY(-6px);
    box-shadow:0 15px 35px rgba(11,95,255,.08);
    border-color:#dbe8ff;
}

.why-icon{
    width:50px;
    height:50px;
    flex-shrink:0;
    border-radius:14px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#eef4ff;
    color:#0B5FFF;
    font-size:22px;
}

.why-card h3{
    color:#071C63;
    font-size:18px;
    font-weight:700;
    margin-bottom:8px;
}

.why-card p{
    color:#667085;
    font-size:13px;
    line-height:1.7;
    margin:0;
}

/* ==========================================
3840px (4K)
========================================== */

@media (min-width:3000px){

    .why-dnh{
        padding:100px 0;
    }

    .why-dnh-wrapper{
        gap:120px;
    }

    .why-section-title{
        margin-bottom:50px;
    }

    .why-section-title h2{
        font-size:62px;
    }

    .section-badge{
        font-size:20px;
        padding:12px 30px;
    }

    .why-dnh-image img{
        max-width:700px;
    }

    .why-grid{
        gap:30px;
    }

    .why-card{
        padding:35px;
        border-radius:24px;
    }

    .why-icon{
        width:70px;
        height:70px;
        font-size:30px;
    }

    .why-card h3{
        font-size:32px;
    }

    .why-card p{
        font-size:20px;
    }
}

/* ==========================================
2560px
========================================== */

@media (min-width:2200px) and (max-width:2999px){

    .why-dnh{
        padding:100px 0;
    }

    .why-section-title h2{
        font-size:56px;
    }

    .why-dnh-image img{
        max-width:620px;
    }

    .why-card{
        padding:28px;
    }

    .why-icon{
        width:65px;
        height:65px;
        font-size:25px;
    }

    .why-card h3{
        font-size:26px;
    }

    .why-card p{
        font-size:18px;
    }
}

/* ==========================================
1920px
========================================== */

@media (min-width:1600px) and (max-width:2199px){

    .why-section-title h2{
        font-size:48px;
    }

    .why-dnh-image img{
        max-width:620px;
    }

    .why-card h3{
        font-size:20px;
    }

    .why-card p{
        font-size:15px;
    }
}

/* ==========================================
1440px
========================================== */

@media (max-width:1440px){

    .why-dnh-wrapper{
        gap:60px;
    }

    .why-section-title h2{
        font-size:40px;
    }
}

/* ==========================================
1366px
========================================== */

@media (max-width:1366px){

    .why-section-title h2{
        font-size:36px;
    }

    .why-card{
        padding:14px;
    }
}

/* ==========================================
1280px
========================================== */

@media (max-width:1280px){

    .why-dnh-wrapper{
        gap:50px;
    }
    
    .why-card{
        padding:12px;
    }
    
    .why-section-title h2{
        font-size:32px;
    }

    .why-grid{
        gap:10px;
    }

    .why-card h3{
        font-size:17px;
    }
}

/* ==========================================
1024px
========================================== */

@media (max-width:1024px){

    .why-dnh{
        padding:50px 0;
    }

    .why-dnh-wrapper{
        grid-template-columns:1fr;
        gap:50px;
        text-align:center;
    }

    .why-dnh-image{
        order:1;
    }

    .why-dnh-content{
        order:2;
    }

    .why-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .why-card{
        text-align:left;
    }

    .why-section-title h2{
        font-size:34px;
    }
}

/* ==========================================
768px
========================================== */

@media (max-width:768px){

    .why-dnh{
        padding:50px 0;
    }

    .why-section-title{
        margin-bottom:30px;
    }

    .why-section-title h2{
        font-size:30px;
    }

    .why-grid{
        grid-template-columns:1fr;
        gap:14px;
    }

    .why-card{
        padding:18px;
    }

    .why-icon{
        width:55px;
        height:55px;
        font-size:22px;
    }

    .why-card h3{
        font-size:16px;
    }

    .why-card p{
        font-size:13px;
    }
}

/* ==========================================
576px
========================================== */

@media (max-width:576px){

    .why-dnh{
        padding:50px 0;
    }

    .why-section-title h2{
        font-size:26px;
    }

    .why-card{
        padding:16px;
    }
}

/* ==========================================
480px
========================================== */

@media (max-width:480px){

    .why-dnh{
        padding:45px 0;
    }

    .why-section-title h2{
        font-size:24px;
    }

    .why-card{
        gap:12px;
        padding:15px;
    }

    .why-icon{
        width:50px;
        height:50px;
        font-size:20px;
    }
}

/* ==========================================
375px
========================================== */

@media (max-width:375px){

    .why-section-title h2{
        font-size:22px;
    }

    .why-card{
        padding:14px;
    }

    .why-icon{
        width:45px;
        height:45px;
        font-size:18px;
    }

    .why-card h3{
        font-size:15px;
    }

    .why-card p{
        font-size:12px;
    }
}

/* ==========================================
320px
========================================== */

@media (max-width:320px){

    .why-section-title h2{
        font-size:20px;
    }

    .why-card{
        padding:12px;
    }

    .why-icon{
        width:40px;
        height:40px;
        font-size:16px;
    }

    .why-card h3{
        font-size:14px;
    }

    .why-card p{
        font-size:11px;
        line-height:1.6;
    }
}