/*=====================================
Trusted Industries
=====================================*/

.trusted-industries{

    background:#fff;

    border-top:1px solid #ECECEC;

    border-bottom:1px solid #ECECEC;

    padding:18px 0;

}

.trusted-wrapper{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:25px;

}

.trusted-title{

    min-width:120px;

}

.trusted-title h4{

    font-size:22px;

    font-weight:700;

    margin:0;

    color:#222;

}

.industry-item{

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:center;

    gap:8px;

    transition:.35s ease;

    cursor:pointer;

}

.industry-icon{

    width:46px;

    height:46px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    color:#30343B;

    font-size:24px;

    transition:.35s;

}

.industry-item h6{

    margin:0;

    font-size:13px;

    font-weight:600;

    color:#444;

    transition:.35s;

    text-align:center;

}

.industry-item:hover{

    transform:translateY(-5px);

}

.industry-item:hover .industry-icon{

    background:#0D3D8F;

    color:#fff;

    box-shadow:0 10px 25px rgba(13,61,143,.25);

}

.industry-item:hover h6{

    color:#0D3D8F;

}