/*=========================================
  TRUSTED BRANDS
=========================================*/

.cyb-brand-swiper{
    margin-top:40px;
    padding:10px 5px 50px;
}

.cyb-brand-swiper .swiper-slide{
    height:auto;
}

.cyb-brand-card{
    display:flex;
    align-items:center;
    justify-content:center;

    background:#fff;

    height:120px;

    padding:20px;

    border:1px solid #e7edf5;

    border-radius:16px;

    transition:all .3s ease;

    text-decoration:none;
}

.cyb-brand-card:hover{

    transform:translateY(-6px);

    box-shadow:0 18px 40px rgba(0,0,0,.08);

    border-color:#0A3D91;
}

.cyb-brand-card img{

    max-width:170px;

    max-height:60px;

    width:auto;

    height:auto;

    object-fit:contain;

    transition:transform .3s ease;
}

.cyb-brand-card:hover img{

    transform:scale(1.05);
}

.cyb-brand-card h3{

    font-size:18px;

    color:#0A3D91;

    text-align:center;

    font-weight:600;
}

/*=========================================
  SWIPER ARROWS
=========================================*/

.cyb-brand-swiper .swiper-button-prev,
.cyb-brand-swiper .swiper-button-next{

    width:44px;

    height:44px;

    background:#fff;

    border-radius:50%;

    border:1px solid #e7edf5;

    box-shadow:0 8px 20px rgba(0,0,0,.08);

    color:#0A3D91;
}

.cyb-brand-swiper .swiper-button-prev::after,
.cyb-brand-swiper .swiper-button-next::after{

    font-size:16px;

    font-weight:bold;
}



/*=========================================
  MOBILE
=========================================*/

@media (max-width:768px){

    .cyb-brand-card{

        height:100px;

        padding:15px;

    }

    .cyb-brand-card img{

        max-width:130px;

        max-height:45px;

    }

}