/*=====================================
INDUSTRIES
=====================================*/

.industries-section{
    padding:120px 0;
    background:#fff;
}

.industries-heading{
    text-align:center;
    margin-bottom:70px;
}

.section-tag{
    display:block;
    color:#D4AF37;
    font-size:13px;
    font-weight:700;
    letter-spacing:4px;
    text-transform:uppercase;
    margin-bottom:18px;
}

.industries-heading h2{
    font-size:58px;
    line-height:1.2;
    color:#111;
    font-weight:600;
}

.industries-grid{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:22px;
}

.industry-card{

    background:#fff;
    border:1px solid #ECECEC;
    border-radius:22px;
    padding:45px 20px;
    text-align:center;
    transition:.35s ease;
    cursor:pointer;

}

.industry-card:hover{

    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(0,0,0,.08);

}

.industry-icon{

    width:70px;
    height:70px;
    margin:0 auto 25px;
    border-radius:18px;
    background:#F7F7F7;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:32px;

}

.industry-card h3{

    font-size:18px;
    color:#222;
    font-weight:600;

}

/*==========================
Responsive
==========================*/

@media(max-width:1200px){

.industries-grid{
    grid-template-columns:repeat(3,1fr);
}

}

@media(max-width:768px){

.industries-heading h2{
    font-size:38px;
}

.industries-grid{
    grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:576px){

.industries-grid{
    grid-template-columns:1fr;
}

.industries-section{
    padding:80px 0;
}

}