/* body {
    background-color: var(--sg-bgblack);
    background: var(--sg-bgblack);
} */
.web-main {
    max-width: 1300px;
    margin: 0 auto;
    display: block;
}
.web-main-body{
    padding: 2rem 0rem;
}
.web-brand-list{
    display: grid;
    justify-content: center;
    grid-template-columns: repeat(auto-fit, minmax(180px, 0fr));
    grid-gap: 2.5rem;
}
.web-brand-list a{
    position: relative;
    overflow: hidden;
    border-radius: 0.8rem;
    display: block;
    color: var(--sg-color-text);
    background: var(--sg-bglight);
    border: 1px solid var(--sg-boder-00);
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.web-brand-list a .img-box{
    position: relative;
    margin: 0 auto;
    padding-top: 2.5rem;
}
.web-brand-list a .img-box::before{
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: linear-gradient(57deg, #ff8a653d, rgb(165 165 165 / 56%));
    left: 0;
    top: -3rem;
}
.web-brand-list a .img-box img{
    border-radius: 50rem;
    margin: 0 auto;
    width: 100px;
    position: relative;
    z-index: 1;
}
.web-brand-list a blockquote{
    padding: 0.5rem;
    padding-bottom: 1.2rem;
    text-align: center;
    position: initial !important;
}
.web-brand-list a h2{
    font-size: 0.9rem;
    font-weight: 600;

}
.web-brand-list blockquote p{
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
    top: 0.5rem;
    right: 0.5rem;
    font-size: 0.7rem;
    padding: 0rem 0.5rem;
    height: 1.5rem;
    border-radius: 50rem;
    color: var(--bgcolor-Light);
    text-transform: capitalize;
    background: var(--sg-mainColor-yellow);
    z-index: 3;
}
.web-brand-list blockquote p span{
    color: var(--bgcolor-Light);
}
@media only screen and (max-width: 670px) {
    .web-main-body{
        padding: 0.5rem 0rem;
    }
    .web-brand-list {
        grid-gap: 0.8rem;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 0.5rem;
        margin: 0rem 0.5rem;
    }
    .web-brand-list li{
        display: block;
        width: 100%;
    }
    .web-brand-list a{
        box-shadow: none;
        border: 1px solid var(--colorBorder-00);
    }
}
@media only screen and (max-width: 600px){
    /* .web-brand-list{
        grid-gap: 0.5rem;
        margin: 0rem 0.5rem;
    } */
}
