/*==================================================
05 WHY CHOOSE US
==================================================*/

.cl-why{

    background:transparent;

    padding:35px 0;

}

/*==============================
Header
==============================*/

.cl-why-head{

    text-align:center;

    margin:0 auto 18px;

    max-width:760px;

}

.cl-why-badge{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:10px 22px;

    background:#ffe9ee;

    color:var(--cl-primary);

    border-radius:999px;

    font-size:15px;

    font-weight:700;

    margin-bottom:18px;

}

.cl-why-title{

    font-size:42px;

    line-height:1.2;

    font-weight:800;

    color:var(--cl-text);

    margin-bottom:14px;

}

.cl-why-subtitle{

    font-size:17px;

    line-height:1.7;

    color:var(--cl-muted);

}

/*==============================
Grid
==============================*/

.cl-why-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:22px;

}

/*==============================
Card
==============================*/

.cl-why-card{

    display:flex;

    justify-content:space-between;

    align-items:flex-start;

    gap:22px;

    padding:24px;

    background:#fff;

    border:1px solid #f3dce6;

    border-radius:22px;

    box-shadow:0 8px 24px rgba(16,24,40,.08);

    transition:.3s;

}

.cl-why-card:hover{

    transform:translateY(-6px);

    box-shadow:0 18px 45px rgba(16,24,40,.12);

}

.cl-why-left{

    display:flex;

    gap:18px;

    flex:1;

}

.cl-why-icon{

    width:72px;

    height:72px;

    border-radius:18px;

    background:#fff2f5;

    display:flex;

    align-items:center;

    justify-content:center;

    flex-shrink:0;

}

.cl-why-icon img{

    width:40px;

    height:40px;

    object-fit:contain;

}

.cl-why-content h3{

    margin:0 0 8px;

    font-size:22px;

    line-height:1.3;

    font-weight:700;

    color:var(--cl-text);

}

.cl-why-content p{

    margin:0;

    font-size:15px;

    line-height:1.7;

    color:var(--cl-muted);

}

.cl-why-number{

    font-size:42px;

    line-height:1;

    font-weight:800;

    color:#f6d7e2;

    flex-shrink:0;

}

/*==============================
Tablet
==============================*/

@media(max-width:991px){

    .cl-why{

        padding:25px 0;

    }

    .cl-why-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

/*==============================
Mobile
==============================*/

@media(max-width:767px){

    .cl-why{

        padding:15px 0;

    }

    .cl-why-title{

        font-size:32px;

    }

    .cl-why-subtitle{

        font-size:16px;

    }

    .cl-why-head{

        margin-bottom:18px;

    }

    .cl-why-grid{

        grid-template-columns:1fr;

        gap:16px;

    }

    .cl-why-card{

        padding:20px;

        gap:16px;

    }

    .cl-why-icon{

        width:60px;

        height:60px;

    }

    .cl-why-icon img{

        width:32px;

        height:32px;

    }

    .cl-why-content h3{

        font-size:18px;

    }

    .cl-why-content p{

        font-size:14px;

    }

    .cl-why-number{

        font-size:32px;

    }

}