/* Brand Hero */
#brand-hero {
    width: 100%;
    overflow: hidden;
    text-align: center;
    padding-bottom: 100px;
}

/* Brand Pack */
#brand-pack {
    width: 100%;
    overflow: hidden;
    text-align: center;
    padding: 100px 0;
}
#brand-pack .brand-logos {
    width: 100%;
    overflow: hidden;
    margin-bottom: 80px;
}
#brand-pack .brand-dark,
#brand-pack .brand-light {
    width: 48%;
    height: 240px;
    float: left;
    background-size: 40%;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 10px;
    -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box;
}
#brand-pack .brand-dark {
    background-color: #0a0a19;
    background-image: url(../../img/website2022/logo-light.svg);
}
#brand-pack .brand-light {
    background-color: #FFF;
    background-image: url(../../img/website2022/logo-dark.svg);
    border: 1px solid #E5E7EB;
    margin-left: 4%;
}
#brand-pack .text1 {
    margin-bottom: 30px;
}

/* Mobile */
@media (max-width:480px) {
    #brand-pack .brand-dark,
    #brand-pack .brand-light {
        width: 100%;
        height: 160px;
        background-size: 50%;
    }
    #brand-pack .brand-light {
        margin: 40px 0 0 0;
    }
}