.brand-tire{
    background:linear-gradient(180deg,#0d4d91,#082c56);
    padding:60px 20px;
    color:#fff;
}

.brand-title{
    text-align:center;
    margin-bottom:40px;
}

.brand-title p{
    display:inline-block;
    background:#000;
    padding:8px 20px;
    font-weight:bold;
}

.brand-title h2{
    font-size:70px;
    line-height:1;
    margin:20px 0;
    color:#fff;
    text-shadow:
        4px 4px 0 #000,
        8px 8px 0 rgba(0,0,0,.2);
}

.brand-title span{
    font-size:28px;
    font-weight:bold;
    color:#ffd800;
}

.brand-makers{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:15px;
    margin:40px auto;
    max-width:1200px;
}

.brand-makers img{
    background:#fff;
    padding:15px;
    border-radius:10px;
}

.brand-lead{
    text-align:center;
    font-size:24px;
    font-weight:bold;
    margin:40px auto;
}

.brand-points{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    max-width:1200px;
    margin:0 auto;
}

.point-card{
    background:#fff;
    color:#000;
    border-radius:20px;
    padding:25px;
    position:relative;
}

.point-no{
    position:absolute;
    top:-15px;
    left:-15px;
    background:#ff0000;
    color:#fff;
    padding:10px;
    border-radius:50%;
    font-size:12px;
    font-weight:bold;
}

.point-card h3{
    font-size:30px;
    margin-bottom:15px;
}

.point-card p{
    line-height:1.8;
}

.brand-bottom{
    margin-top:50px;
    text-align:center;
    font-size:50px;
    font-weight:bold;
    color:#ffd800;
    text-shadow:3px 3px 0 #000;
}

@media(max-width:768px){

.brand-title h2{
    font-size:40px;
}

.brand-points{
    grid-template-columns:1fr;
}

.brand-makers{
    grid-template-columns:repeat(2,1fr);
}

.brand-bottom{
    font-size:30px;
}

}