/*region Brand page Style */
p.brand-index {
    display: flex;
}
p.brand-index a {
    flex: 1 1 auto;
    text-align: center;
    margin-left: 5px;
    background: rgba(240, 75, 35, 0.1);
    line-height: 30px;
    border-radius: 45px;
    color: var(--s-primary-dark);
}
p.brand-index a:hover {
    background: var(--s-primary);
    color: #fff;
}
p.brand-index strong {
    flex: 0 0 100px;
}
.brand-row h1 {
    margin-top: 10px;
}
.brand-row .col-sm-3 a {
    display: inline-block;
    color: #666666;
    font-size: 16px;
    margin: 0 0 15px;
}
.brand-row .col-sm-3 a:hover {
    color: #111;
    text-decoration: underline;
}
.brand-row h2 {
    font-size: 60px;
    line-height: 70px;
    border-bottom: 1px solid #111;
    margin: 20px 0;
}
.row.brand-row {
    padding-bottom: 70px;
}
/*endregion*/

@media (max-width: 767px) {
    .brand-row .col-sm-3 {
        width: 50%;
    }

    p.brand-index {
        flex-wrap: wrap;
    }

    p.brand-index strong {
        display: block;
        width: 100%;
        flex: 0 0 100%;
        padding-bottom: 10px;
    }

    p.brand-index a {
        min-width: 30px;
        margin: 0 5px 5px 0;
    }

    .brand-row h1 {
        margin-top: 0px;
        font-size: 20px;
    }

    .brand-row h2 {
        font-size: 50px;
    }
}