/* ==========================================
   TRUST STRIP
==========================================*/

.trust-strip{
 
    margin-top:10px;
    position:relative;
    z-index:20;

    padding:0 40px 46px;

}

.trust-container{

    max-width:1250px;

    margin:auto;

    background:#fff;

    border-radius:22px;

    display:grid;

    grid-template-columns:
    1fr
    1px
    1fr
    1px
    1fr
    1px
    1fr;

    align-items:center;

    box-shadow:
        0 20px 60px rgba(14,73,124,.08),
        0 8px 30px rgba(0,0,0,.05);

    overflow:hidden;

}

.trust-item{
 
    display:flex;
 
    align-items:center;
 
    justify-content:center;
 
    gap:18px;
 
    padding:26px 20px;
 
    transition:.35s;
 
}

.trust-item:hover{

    background:#FAFBFD;

}

.trust-icon{
 
    width:68px;
 
    height:68px;
 
    border-radius:50%;
 
    display:flex;
 
    justify-content:center;
 
    align-items:center;
 
    flex-shrink:0;
 
    color:#fff;
 
    transition:.35s;
 
}

.trust-item:hover .trust-icon{

    transform:translateY(-6px);

}

.trust-icon.red{

    background:linear-gradient(135deg,#D62828,#F15A59);

}

.trust-icon.blue{

    background:linear-gradient(135deg,#0E497C,#2D79C7);

}

.trust-icon svg{

    width:34px;

    height:34px;

}

.trust-content h3{
 
    font-family:'Oswald',sans-serif;
 
    font-size:32px;
 
    margin-bottom:4px;
 
    color:#0E497C;
 
}

.trust-content p{
 
    font-family:'Lato',sans-serif;
 
    color:#666;
 
    font-size:15px;
 
    line-height:1.5;
 
}

.divider{

    width:1px;

    background:#E5EAF0;

    height:90px;

}

/* ===========================
Responsive
===========================*/

@media(max-width:1100px){

.trust-container{

grid-template-columns:repeat(2,1fr);

}

.divider{

display:none;

}

}

@media(max-width:700px){

.trust-container{

grid-template-columns:1fr;

}

.trust-item{

justify-content:flex-start;

padding:28px;

}

.trust-strip{

padding:20px;

margin-top:-20px;

}

}