/*=========================================================
=                    TRUST BAR
=========================================================*/

.trust-bar{

    background:#ffffff;

    padding:45px 0 70px;

}

.trust-bar .container{

    padding:0;

}

/*=========================================================
=                    TRUST ITEM
=========================================================*/

.trust-item{

    background:#ffffff;

    text-align:center;

    padding:25px 20px;

    border-radius:18px;

    border:1px solid #edf1f6;

    transition:all .35s ease;

    height:100%;

}

.trust-item:hover{

    transform:translateY(-8px);

    border-color:#F15A24;

    box-shadow:0 18px 40px rgba(0,0,0,.12);

}

/*=========================================================
=                    ICON
=========================================================*/

.trust-icon{

    width:68px;

    height:68px;

    margin:0 auto 20px;

    border-radius:50%;

    background:#F15A24;

    color:#ffffff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:28px;

    transition:all .35s ease;

}

.trust-item:hover .trust-icon{

    transform:scale(1.08) rotate(-6deg);

}

/*=========================================================
=                    TEXT
=========================================================*/

.trust-item h4{

    color:#0B1F45;

    font-size:20px;

    font-weight:700;

    margin-bottom:10px;

}

.trust-item p{

    color:#6c757d;

    font-size:14px;

    line-height:1.6;

    margin:0;

}

/*=========================================================
=                    RESPONSIVE
=========================================================*/

@media (max-width:991px){

    .trust-bar{

        margin-top:0;

        padding:70px 0;

    }

    .trust-bar .container{

        padding:30px;

    }

}

@media (max-width:767px){

    .trust-bar{

        padding:60px 0;

    }

    .trust-bar .container{

        padding:25px;

        border-radius:18px;

    }

    .trust-item{

        padding:15px;

    }

    .trust-icon{

        width:62px;

        height:62px;

        font-size:24px;

    }

    .trust-item h4{

        font-size:18px;

    }

}