/*=========================================
TRUST SECTION
=========================================*/

.trust-section{

    background:linear-gradient(135deg,#2563EB,#1D4ED8);

    position:relative;

    overflow:hidden;

}

.trust-section::before{

    content:"";

    position:absolute;

    width:350px;

    height:350px;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    top:-120px;

    right:-120px;

}

.trust-section::after{

    content:"";

    position:absolute;

    width:250px;

    height:250px;

    border-radius:50%;

    background:rgba(255,255,255,.05);

    bottom:-100px;

    left:-80px;

}

.trust-section .container{

    position:relative;

    z-index:2;

}

.trust-card{

    background:rgba(255,255,255,.12);

    backdrop-filter:blur(10px);

    border:1px solid rgba(255,255,255,.15);

    border-radius:20px;

    padding:35px 25px;

    text-align:center;

    height:100%;

    transition:.35s;

}

.trust-card:hover{

    transform:translateY(-8px);

    background:rgba(255,255,255,.18);

}

.trust-icon{

    width:75px;

    height:75px;

    margin:0 auto 20px;

    border-radius:50%;

    background:#fff;

    color:#2563EB;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:30px;

}

.trust-card h5{

    color:#fff;

    font-weight:700;

    margin-bottom:15px;

}

.trust-card p{

    color:rgba(255,255,255,.85);

    margin:0;

    line-height:1.7;

}