.brand-section{
    width: 100%;
    min-height: 55vh;
    margin-top: 20px;
}

.content-brand{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

 .content-brand > .brand-title{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    font-family: 'Bodoni Moda', sans-serif;
    font-weight: 300;
    color: white;
}

.content-brand > .brand-title > h3{
    width: 100%;
    height: 100%;
    font-size: clamp(1.75rem, 2.8vw, 3.75rem);
    font-weight: 800;
    text-transform: uppercase;
    word-spacing: 4px;
    padding-right: clamp(28px, 5vw, 60px);
    margin-left: 12px;
}

.content-brand > .brand-title > img{
   width: clamp(30px, 10vw, 60px);
height: clamp(30px, 10vw, 60px);
}


.content-brand > .text-content{
    text-align: center;
    width: 100%;
    height: 100%;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    color: white;
    font-size: clamp(1.2rem, 1.8vw, 2.5rem);
    padding:0 12px;
}

@media (min-width: 1024px) {
    .content-brand > .text-content{
        padding: 0 70px;
    }
}