/* ===========================================================
   BIG FISH DEALER NETWORK
=========================================================== */

.bfdn-slider{
    position:relative;
    overflow:hidden;
    width:100%;
    padding:15px 0;
}

/* Fade edges */

.bfdn-slider:before,
.bfdn-slider:after{
    content:"";
    position:absolute;
    top:0;
    width:80px;
    height:100%;
    z-index:5;
    pointer-events:none;
}

.bfdn-slider:before{
    left:0;
    background:linear-gradient(to right,#000 0%,transparent 100%);
}

.bfdn-slider:after{
    right:0;
    background:linear-gradient(to left,#000 0%,transparent 100%);
}

/* Track */

.bfdn-track{

    display:flex;
    align-items:center;
    gap:60px;

    width:max-content;
    padding-left:60px;
    box-sizing:border-box;

}

/* Logo */

.bfdn-logo{

    flex:0 0 auto;

    display:flex;
    align-items:center;
    justify-content:center;

    height:90px;

}

/* Image */

.bfdn-logo img{

    max-width:180px;
    max-height:80px;

    width:auto;
    height:auto;

    display:block;

    transition:all .35s ease;

}

/* Hover */

.bfdn-logo:hover img{

    transform:scale(1.08);

}

/* Mobile */

@media (max-width:768px){

    .bfdn-track{

        gap:35px;

    }

    .bfdn-logo{

        height:70px;

    }

    .bfdn-logo img{

        max-width:130px;
        max-height:60px;

    }

}