#brands_hero_main_cont{
    display: flex;
    justify-content: center;
    position: relative;
    background-color: black;
    color: white;
    width: 100vw;
    overflow: hidden;
    height: 30rem;
    padding: 4rem 4rem;
}
#brands_hero_txt_cont{
    width: 1200px;
    max-width: 90vw;
}
#brands_hero_main_cont #brands_hero_txt_cont >p{
    font-size: 3rem;
    line-height: 3.5rem;
    font-weight: 500;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}
#brands_hero_dg_img{
    width: 8rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}
#brands_img{
    position: absolute;
    width: 80rem;
    right: -22rem;
    bottom: -14rem;
}
#wwu_btn{
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
    background-color: var(--distro-light-green-2);
    width: 10rem;
    height: 2.5rem;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

@media screen and (max-width: 860px) and (min-width: 500px){
    #brands_img{
        width: 68rem;
    }
}
@media screen and (max-width: 500px){
    #brands_img{
        width: 55rem;
        bottom: -10rem;
        right: -18rem;
    }
    #brands_hero_main_cont{
        padding: 1rem 2rem;
    }
    #brands_hero_txt_cont{
        display: grid;
        grid-template-rows: min-content min-content min-content;
        grid-template-areas: 
        "img"
        "main"
        "btn";
    }
    #hero_main_text{
        grid-area: main;
        margin-bottom: 1rem !important;
    }
    #brands_hero_dg_img{
        grid-area: img;
        margin-bottom: 1rem;
    }

    #wwu_btn{
        grid-area: btn;
        width: 14rem;
    }
    #brands_hero_main_cont{
        height: 40rem;
    }
}