/*==================================================
            TRUST SECTION
==================================================*/

.nf-trust{
    padding:10px 0;
    background:#fff;
}

.nf-trust-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr 1fr;
    background:#fff;
    border:1px solid #ececec;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 10px 35px rgba(0,0,0,.05);
}

.trust-column{
    padding:45px 35px;
    position:relative;
}

.trust-column:not(:last-child){
    border-right:1px solid #ececec;
}

/*=================================
HEADINGS
=================================*/

.trust-heading{
    text-align:center;
    margin-bottom:30px;
}

.trust-heading h2{
    margin:0;
    font-size:28px;
    font-weight:700;
    color:#222;
    text-transform:uppercase;
}

.trust-heading span{
    display:block;
    width:70px;
    height:4px;
    margin:15px auto 0;
    background:#76b82a;
    border-radius:10px;
}

/*=================================
WHY CHOOSE GRID
=================================*/

.trust-features{
    display:grid;
    grid-template-columns:repeat(3,1fr);
}

.feature-item{
    text-align:center;
    padding:30px 15px;
    border-right:1px solid #ededed;
    border-bottom:1px solid #ededed;
    transition:.35s;
}

.feature-item:nth-child(3),
.feature-item:nth-child(6){
    border-right:none;
}

.feature-item:nth-child(4),
.feature-item:nth-child(5),
.feature-item:nth-child(6){
    border-bottom:none;
}

.feature-item:hover{
    background:#f8fff2;
}

.feature-item i{
    font-size:42px;
    color:#76b82a;
    margin-bottom:18px;
    transition:.35s;
}

.feature-item:hover i{
    transform:translateY(-8px) scale(1.12);
}

.feature-item h4{
    margin:0 0 10px;
    font-size:16px;
    font-weight:700;
    color:#222;
}

.feature-item p{
    margin:0;
    color:#666;
    font-size:14px;
    line-height:1.6;
}

/*=================================
GLOBAL
=================================*/

.global-text{
    text-align:center;
    color:#555;
    margin-bottom:25px;
    line-height:1.7;
    font-size:15px;
}

.global-map{
    text-align:center;
    margin-bottom:30px;
}

.global-map img{
    width:100%;
    max-width:330px;
    transition:.4s;
}

.global-map img:hover{
    transform:scale(1.04);
}

/*=================================
CERTIFICATES
=================================*/

.certificate-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:22px;
    margin-bottom:35px;
}

.certificate-grid img{
    width:100%;
    max-width:70px;
    display:block;
    margin:auto;
    transition:.35s;
}

.certificate-grid img:hover{
    transform:scale(1.12);
}

/*=================================
BUTTON
=================================*/

.trust-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    padding:14px 26px;
    background:#76b82a;
    color:#fff;
    text-decoration:none;
    border-radius:6px;
    font-size:14px;
    font-weight:600;
    transition:.35s;
}

.trust-btn:hover{
    background:#5f9d1d;
    color:#fff;
    transform:translateY(-3px);
}

.trust-column .trust-btn{
    display:flex;
    width:max-content;
    margin:0 auto;
}

/*=================================
ANIMATION
=================================*/

.feature-item,
.certificate-grid img,
.global-map img{
    transition:all .35s ease;
}