/*
Theme Name:     Kadence Child
Theme URI:      n/a
Template:       kadence
Author:         Pro Author
Author URI:     n/a
Description:    Child Theme Description
Version:        1.0
License:        GNU General Public License v3.0 (or later)
License URI:    https://www.gnu.org/licenses/gpl-3.0.html
*/



.brand-section {
    display: flex;
    align-items: center; 
    gap: 50px;
    padding: 30px;
    border: 1px solid #efefef;
}
.brand-logo {
    text-align: center;
    padding: 10px;
	width: 33%;
}

.brand-logo img {
    max-width: 100%;
    height: auto;
}

.brand-text {
    display: flex;
    align-items: center;
    padding: 10px;
}

.brand-text p {
    font-size: 14px;
    line-height: 1.6;
    margin: 0px !important;
}

.brand-product {
	color: #b72636;
}

@media all and (max-width: 768px) {
    .brand-section {
        flex-direction: column;
        text-align: center;
    }
    .brand-logo {
        order: 1;
		width: auto;
		max-width: 300px;
	}
    .brand-text {
        order: 2;
    }
}