.page-business-verticals {

    .new-business-brands{
        background:#f0f8ff;
    }

    /* Tabs */

    .new-business-brands .nav-tabs{
        gap:15px;
        border:0;
    }

    .new-business-brands .nav-tabs .nav-link{
        border:1px solid #2b3a6b;
        color:#2b3a6b;
        border-radius:5px;
        padding:10px 35px;
        font-weight:600;
        background:#fff;
        transition:.3s;
    }

    .new-business-brands .nav-tabs .nav-link:hover,
    .new-business-brands .nav-tabs .nav-link.active,
    .new-business-brands .nav-tabs .show>.nav-link{
        background:#2b3a6b;
        color:#fff;
        border-color:#2b3a6b;
    }

    /* Equal Height Columns */

    .new-business-brands .row > div{
        display:flex;
        margin-bottom:30px;
    }

    /* Card */



    /* Logo */

    .new-business-brands .brand-image{
        height:190px;
        padding:20px;
        display:flex;
        align-items:center;
        justify-content:center;
        background:#fff;
    }

    .new-business-brands .brand-image img{
        max-width:100%;
        max-height:max-content;
        width:auto;
        height:auto;
        object-fit:contain;
    }

    /* Green Bar */

    .new-business-brands .brand-title{
        background:#469b4e;
        color:#fff;
        min-height:64px;
        padding:0 18px;
        display:flex;
        align-items:center;
        justify-content:space-between;
        font-size:16px;
        font-weight:600;
        line-height:1.3;
    }

    .new-business-brands .brand-title span{
        flex:1;
        text-align:left;
    }

    .new-business-brands .brand-title i{
        margin-left:10px;
    font-size:18px;
    line-height:1;
    transition:transform .35s ease;
    }

    /* Dropdown */


.new-business-brands .brand-box:hover .brand-title i{
    transform:rotate(180deg);
}

    /* Tablet */

    @media(max-width:991px){

        .new-business-brands .brand-image{
            height:170px;
        }

        .new-business-brands .brand-image img{
            max-height:110px;
        }

        .new-business-brands .brand-title{
            min-height:60px;
            font-size:15px;
        }

    }

    /* Mobile */

    @media(max-width:767px){

        .new-business-brands .nav-tabs .nav-link{
            padding:10px 20px;
            font-size:14px;
        }

        .new-business-brands .brand-image{
            height:150px;
            padding:15px;
        }

        .new-business-brands .brand-image img{
            max-height:90px;
        }

        .new-business-brands .brand-title{
            min-height:56px;
            font-size:14px;
            padding:0 12px;
        }

    }

    /* Small Mobile */

    @media(max-width:575px){

        .new-business-brands .brand-image{
            height:130px;
        }

        .new-business-brands .brand-image img{
            max-height:75px;
        }

        .new-business-brands .brand-title{
            min-height:52px;
            font-size:13px;
        }
        .new-business-brands .brand-dropdown{
            display: none;
        }
        .new-business-brands .brand-box:hover .brand-dropdown{
            display: block;
        }

    }

}



.new-business-brands .brand-box{
    position:relative;
    overflow:visible;
    width: 100%;
}

.new-business-brands .brand-dropdown{
    width:100%;

    background:#fff;
    border-radius:0 0 8px 8px;
    box-shadow:0 8px 20px rgba(0,0,0,.15);

    opacity:0;
    visibility:hidden;
    transform:translateY(10px);
    transition:.3s ease;

    z-index:100;
}

.new-business-brands .brand-subtitle{
    padding:5px 10px;
    font-size:14px;
    color:black;
    border-bottom:1px solid #eee;
    text-align:left;
    background:#efefef;
    font-weight: 600;
}

.new-business-brands .brand-subtitle:last-child{
    border-bottom:0;
}

.new-business-brands .brand-box:hover .brand-dropdown{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.new-business-brands .brand-box:hover .brand-title i{
    transform:rotate(180deg);
}
