/* ===========================
   ESSENTIALS
=========================== */



.brand-header{
    max-width:900px;
    margin-bottom:60px;
}

.brand-header h2{
    font-size:46px;
    font-weight:300;
    color:#222;
    margin-bottom:20px;
    line-height:1.2;
}

.brand-header p{
    font-size:18px;
    color:#666;
    line-height:1.8;
}

.brand-item{
    margin-bottom:70px;
    padding-bottom:70px;
    border-bottom:1px solid #e5e5e5;
}

.brand-item:last-child{
    border-bottom:none;
}

.brand-image{
    margin-bottom:35px;
}

.brand-image img{
    width:100%;
    display:block;
    border-radius:12px;
    object-fit:cover;
}

.brand-content{
    display:flex;
    justify-content:space-between;
    gap:70px;
}

.brand-left{
    width:30%;
}

.brand-right{
    width:70%;
}

.brand-left h3{
    font-size:32px;
    font-weight:400;
    color:#222;
    margin-bottom:25px;
}

.brand-btn{
    display:inline-block;
    color:#A21D22;
    text-decoration:none;
    font-weight:600;
    text-transform:uppercase;
    transition:.3s;
}

.brand-btn:hover{
    color:#7b1418;
}

.brand-right p{
    font-size:17px;
    color:#666;
    line-height:1.9;
}

@media (max-width:768px){

    .brand-header h2{
        font-size:32px;
    }

    .brand-header p{
        font-size:16px;
    }

    .brand-content{
        flex-direction:column;
        gap:25px;
    }

    .brand-left,
    .brand-right{
        width:100%;
    }

    .brand-left h3{
        font-size:26px;
    }

    .brand-right p{
        font-size:15px;
    }

}