/*--------------------FULL WIDTH--------------------*/

@media screen and (min-width: 992px) {
    .brand-highlight-card {
        border-radius: 1vw;
        width: 90vw;
        height: 40vw;
        display: flex;
    }

    .brand-highlight-box {
        display: flex;
        width: 100%;
        justify-content: center;
        align-items: center;
        padding: 1vw;
    }

    .brand-highlight-div {
        width: 50%;
    }
}

/*--------------------TABLET--------------------*/
@media only screen and (max-width: 991px) and (min-width: 568px) {
    .brand-highlight-card {
        border-radius: 1vw;
        width: 90vw;
        height: 40vw;
        display: flex;
        margin: 2.5vw 0;
    }

    .brand-highlight-box {
        display: flex;
        width: 100%;
        justify-content: center;
        align-items: center;
        padding: 1vw;
    }

    .brand-highlight-div {
        width: 50%;
    }
}
/*--------------------MOBILE--------------------*/

@media screen and (max-width: 567px) {
    .brand-highlight-card {
        border-radius: 1vw;
        width: 100%;
        height: 90vw;
        display: flex;
        margin: 5vw 0;
    }

    .brand-highlight-box {
        display: flex;
        width: 100%;
        justify-content: center;
        align-items: center;
        padding: 1vw;
    }
}
