/*==================================================
=          CATEGORY SECTION - PSK INDUSTRIAL       =
==================================================*/
section .cat-show {
    color: var(--navy) !important;
}
.psk-section{
    padding:55px 0;
    position:relative;
}

.psk-section-head{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    gap:30px;
    margin-bottom:45px;
}

.psk-eyebrow{
    display:inline-block;
    color:#ff7a1a;
    font-size:14px;
    font-weight:700;
    margin-bottom:10px;
}

.psk-section-title{
    font-size:38px;
    font-weight:900;
    color:#001a43;
    margin:0 0 10px;
}

.psk-section-sub{
    color:#7c8ba1;
    font-size:16px;
    margin:0;
}

.psk-view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ffffff !important;
    font-weight: 700;
    text-decoration: none;
    transition: .3s;
    margin: 1rem auto;
}

.psk-view-all:hover{
    color:#ff7a1a;
}



/*=========================
Grid
=========================*/

.psk-cat-grid {
    display: grid
;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
}





/*=========================
Card
=========================*/
.psk-cat-card {
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 18px;
    transition: .35s;
    text-align: center;
    position: relative;
}

.psk-cat-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 40px rgba(0,26,67,.08);

}




/*=========================
Image
=========================*/

.psk-cat-icon{
    width:100%;
    height:180px;
    border-radius:18px;
    overflow:hidden;
    background:#f8fafc;
    margin-bottom:18px;
}

.psk-cat-icon img{
    width:100%;
    height:100%;
    object-fit:contain;
    transition:.35s;
}

.psk-cat-card:hover .psk-cat-icon img{
    transform:scale(1.06);
}


/*=========================
Title
=========================*/

.psk-cat-card h3 {
    display: block;
    color: #001a43;
    padding: 22px 24px 8px;
    font-weight: 800;
    position: absolute;
    top: -45px;
    font-size: 12px;
    left: 0;
    right: 0;
}





/*=========================
Count
=========================*/

.psk-cat-card span{

    display:block;

    padding:0 24px 24px;

    color:#7c8ba1;

    font-size:14px;

}





/*=========================
Tablet
=========================*/

@media(max-width:992px){

.psk-cat-grid{

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

}

.psk-section-head{

flex-direction:column;

align-items:flex-start;

}

}





/*=========================
Mobile
=========================*/

@media(max-width:768px){

.psk-section{

padding:70px 0;

}

.psk-section-title{

font-size:30px;

}

.psk-cat-icon{

height:180px;

}

}
@media(max-width:991px){

    .psk-cat-grid{

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

    }

}

@media(max-width:576px){

    .psk-cat-grid{

        grid-template-columns:1fr;

    }

}