/* ==========================================
   TRUST STRIP
========================================== */

.trust-strip{
    padding:110px 0;
    background:#ffffff;
}

.trust-strip__grid{

    display:grid;

    grid-template-columns:repeat(5,1fr);

    gap:28px;

}

.trust-card{

    background:#fff;

    border:1px solid var(--color-border);

    border-radius:22px;

    padding:42px 28px;

    text-align:center;

    transition:.35s ease;

    box-shadow:0 15px 40px rgba(0,0,0,.05);

}

.trust-card:hover{

    transform:translateY(-10px);

    box-shadow:0 30px 70px rgba(0,0,0,.10);

}

.trust-card__icon{

    width:72px;
    height:72px;

    margin:0 auto 28px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#F8F5EE;

}

.trust-card__icon svg{

    width:32px;
    height:32px;

    color:var(--color-primary);

    stroke-width:2;

}

.trust-card h3{

    font-size:22px;

    margin-bottom:18px;

}

.trust-card p{

    margin:0;

    color:var(--color-muted);

    line-height:1.8;

}

@media(max-width:1200px){

.trust-strip__grid{

grid-template-columns:repeat(3,1fr);

}

}

@media(max-width:768px){

.trust-strip{

padding:70px 0;

}

.trust-strip__grid{

grid-template-columns:1fr;

}

}