#section-project-brand-content {}
#section-project-brand-all {}
#section-project-brand-content+#section-project-brand-all {
    padding-top: 0;
}
#section-project-brand-result,
#section-project-brand-result .not-found-section {
    min-height: 446px;
}
#section-project-brand-result.section-result.loading {
    height: 556px; /* 446 + 50 + 60 */
}
#section-project-brand-result .container-result {
    padding: 50px 0 60px;
}

.brand-card-row,
.brand-card,
.brand-card>.inner {
    position: relative;
}

.brand-card {
    display: block;
    /* height: 446px; */
    color: rgba(var(--cpn-color-black),1);
    border-radius: 20px;
    overflow: hidden;   
    cursor: pointer;
    text-decoration: none !important;
}
.brand-card+.brand-card {
    margin-top: 50px;
}
.brand-card:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0;
    background-color: rgba(var(--cpn-color-light),1);
    -webkit-transition: opacity var(--cpn-transition-duration) ease;
    -moz-transition: opacity var(--cpn-transition-duration) ease;
    -ms-transition: opacity var(--cpn-transition-duration) ease;
    -o-transition: opacity var(--cpn-transition-duration) ease;
    transition: opacity var(--cpn-transition-duration) ease;
    z-index: 1;
}
.brand-card:hover:before {
    opacity: 1;
}
.brand-card .inner-row {
    position: relative;
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
    height: 100%;
    z-index: 2;
}
.brand-card:nth-child(odd) .inner-row {
    flex-direction: row;
}
.brand-card:nth-child(even) .inner-row {
    flex-direction: row-reverse;
}
.brand-card .inner-row>.inner-col {
    position: relative;
}
.brand-card .inner-row>.inner-col.this-col-img {
    width: 640px;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
}
.brand-card .inner-row>.inner-col.this-col-content {
    width: calc(100% - 640px);
    padding: 50px 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.brand-card .brand-logo,
.brand-card .brand-logo>.logo,
.brand-card .brand-logo>.text {
    position: relative;
}
.brand-card .brand-logo>.logo {
    width: 250px;
    height: 50px;
    /* background-color: rgba(0,0,0,0.1); */
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% auto;
    margin: 0 auto 15px auto;
}
.brand-card .brand-logo>.text {
    text-align: center;
}

.brand-card .brand-info,
.brand-card .brand-info>.info-group>.title,
.brand-card .brand-info>.info-group>.content {
    position: relative;
}
.brand-card .brand-info {
    display: flex;
    width: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-top: 1px solid rgba(var(--cpn-color-black-dark),0.1);
    text-align: center;
    margin-top: 25px;
    padding-top: 25px;
}
.brand-card .brand-info>.info-group>.title {
    max-height: 80px;
    color: rgba(var(--cpn-color-black),1);
    -webkit-transition: color var(--cpn-transition-duration) ease;
    -moz-transition: color var(--cpn-transition-duration) ease;
    -ms-transition: color var(--cpn-transition-duration) ease;
    -o-transition: color var(--cpn-transition-duration) ease;
    transition: color var(--cpn-transition-duration) ease;
}
.brand-card:hover .brand-info>.info-group>.title {
    color: rgba(var(--cpn-color-primary),1);
}
.brand-card .brand-info>.info-group>.content {
    max-height: 50px;
    color: rgba(var(--cpn-color-gray-dark),1);
}
.brand-card .brand-info>.info-group>.title+.content,
.brand-card .brand-info>.info-group+.button-more {
    margin-top: 10px;
}

/* xxl */
@media (min-width: 1400px) {}

/* xxl - 1 */
@media (min-width:1500px) and (max-width: 1599.98px) {}

/* xxl - 2 */
@media (min-width: 1400px) and (max-width: 1499.98px) {}

/* xl */
@media (min-width: 1200px) and (max-width: 1399.98px) {

    .brand-card+.brand-card {
        margin-top: 50px;
    }
    .brand-card .inner-row>.inner-col.this-col-img {
        width: 550px;
    }
    .brand-card .inner-row>.inner-col.this-col-content {
        width: calc(100% - 550px);
    }
    .brand-card .brand-logo>.logo {
        width: 200px;
        height: 40px;
    }

}

/* lg */
@media (min-width: 992px) and (max-width: 1199.98px) {

    .brand-card+.brand-card {
        margin-top: 50px;
    }
    .brand-card .inner-row>.inner-col.this-col-img {
        width: 450px;
    }
    .brand-card .inner-row>.inner-col.this-col-content {
        width: calc(100% - 450px);
        padding: 30px 50px;
    }
    .brand-card .brand-logo>.logo {
        width: 150px;
        height: 30px;
    }
    .brand-card .brand-info {
        margin-top: 15px;
        padding-top: 15px;
    }
    .brand-card .brand-info>.info-group>.title+.content,
    .brand-card .brand-info>.info-group+.button-more {
        margin-top: 5px;
    }

}

/* md */
@media (min-width: 768px) and (max-width: 991.98px) {

    #section-project-brand-result .container-result {
        padding: 30px 0 30px;
    }
    .brand-card:before {
        opacity: 1;
    }
    .brand-card+.brand-card {
        margin-top: 20px;
    }
    .brand-card .inner-row {
        flex-direction: column !important;
        flex-wrap: wrap;
    }
    .brand-card .inner-row>.inner-col {
        width: 100% !important;
    }
    .brand-card .inner-row>.inner-col.this-col-content {
        padding: 50px;
    }
    .brand-card .brand-logo>.logo {
        width: 200px;
        height: 40px;
    }
    .brand-card .brand-info {
        margin-top: 20px;
        padding-top: 20px;
    }    
    .brand-card .brand-info>.info-group>.title {
        max-height: 70px;
    }
    .brand-card .brand-info>.info-group>.title+.content,
    .brand-card .brand-info>.info-group+.button-more {
        margin-top: 5px;
    }

}

/* sm - xs */
@media (max-width: 767.98px) {}

/* sm */
@media (min-width: 576px) and (max-width: 767.98px) {

    #section-project-brand-result .container-result {
        padding: 30px 0 30px;
    }
    .brand-card:before {
        opacity: 1;
    }
    .brand-card+.brand-card {
        margin-top: 20px;
    }
    .brand-card .inner-row {
        flex-direction: column !important;
        flex-wrap: wrap;
    }
    .brand-card .inner-row>.inner-col {
        width: 100% !important;
    }
    .brand-card .inner-row>.inner-col.this-col-content {
        padding: 40px 40px;
    }
    .brand-card .brand-logo>.logo {
        width: 200px;
        height: 40px;
    }
    .brand-card .brand-info {
        margin-top: 20px;
        padding-top: 20px;
    }    
    .brand-card .brand-info>.info-group>.title {
        max-height: 70px;
    }
    .brand-card .brand-info>.info-group>.title+.content,
    .brand-card .brand-info>.info-group+.button-more {
        margin-top: 5px;
    }

}

/* xs */
@media (max-width: 575.98px) {

    #section-project-brand-result .container-result {
        padding: 30px 0 30px;
    }
    .brand-card:before {
        opacity: 1;
    }
    .brand-card+.brand-card {
        margin-top: 10px;
    }
    .brand-card .inner-row {
        flex-direction: column !important;
        flex-wrap: wrap;
    }
    .brand-card .inner-row>.inner-col {
        width: 100% !important;
    }
    .brand-card .inner-row>.inner-col.this-col-content {
        padding: 40px 30px;
    }
    .brand-card .brand-logo>.logo {
        width: 200px;
        height: 40px;
    }
    .brand-card .brand-info {
        margin-top: 20px;
        padding-top: 20px;
    }    
    .brand-card .brand-info>.info-group>.title {
        max-height: 70px;
    }
    .brand-card .brand-info>.info-group>.title+.content,
    .brand-card .brand-info>.info-group+.button-more {
        margin-top: 5px;
    }

}

/* xs custom */
@media (max-width: 399.98px) {}
