/* ==========================================================
   WHY CHOOSE SECTION
========================================================== */

.why-choose{
    padding:100px 0;
    background:#ffffff;
}

/* ==========================
   CONTENT
========================== */

.why-content{
    padding-right:40px;
}

.why-content h2{
    font-size:46px;
    font-weight:800;
    color:#222;
    line-height:1.2;
    margin:20px 0;
}

.why-content>p{
    font-size:17px;
    line-height:1.8;
    color:#666;
    margin-bottom:40px;
}

/* ==========================
   LIST
========================== */

.why-list{
    display:flex;
    flex-direction:column;
    gap:22px;
}

.why-item{
    display:flex;
    align-items:flex-start;
    gap:18px;
    padding:18px;
    background:#fff;
    border:1px solid #ececec;
    border-radius:16px;
    transition:.35s ease;
}

.why-item:hover{
    transform:translateX(8px);
    border-color:#00A651;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.why-icon{
    width:52px;
    height:52px;
    border-radius:50%;
    background:#EAF8F0;
    color:#00A651;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:22px;
    font-weight:bold;
    flex-shrink:0;
}

.why-item h4{
    font-size:21px;
    margin-bottom:8px;
    color:#222;
}

.why-item p{
    color:#666;
    line-height:1.7;
    margin:0;
}

/* ==========================
   IMAGE
========================== */

.why-image{
    position:relative;
}

.why-image img{
    width:100%;
    height:650px;
    object-fit:cover;
    border-radius:22px;
    display:block;
    box-shadow:0 25px 50px rgba(0,0,0,.12);
	padding-top: 20px;
}