/*==========================================
        BRAND HIGHLIGHTS
==========================================*/

.highlights{

    padding:100px 0;

    background:#ffffff;

}

.highlights-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.highlight-card{

    background:#fff;

    padding:40px 30px;

    border-radius:24px;

    text-align:center;

    transition:.4s;

    border:1px solid rgba(0,0,0,.06);

    box-shadow:0 15px 35px rgba(0,0,0,.05);

}

.highlight-card:hover{

    transform:translateY(-12px);

    box-shadow:0 25px 50px rgba(0,0,0,.10);

}

.highlight-icon{

    width:80px;

    height:80px;

    margin:auto;

    margin-bottom:25px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    background:linear-gradient(135deg,#f8b400,#ffcf5c);

    color:#fff;

    font-size:30px;

}

.highlight-card h3{

    font-size:22px;

    margin-bottom:15px;

    color:#222;

}

.highlight-card p{

    color:#666;

    line-height:1.8;

    font-size:15px;

}

@media(max-width:992px){

    .highlights-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:576px){

    .highlights-grid{

        grid-template-columns:1fr;

    }

}