:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-cfc22fe */.corporate-gallery{
    padding:90px 6%;
    background:#f8faf7;
}

.gallery-heading{
    text-align:center;
    max-width:800px;
    margin:auto auto 60px;
}

.gallery-heading span{
    color:#1b7f46;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
}

.gallery-heading h2{
    font-size:48px;
    font-weight:800;
    margin:15px 0;
    color:#222;
}

.gallery-heading p{
    color:#666;
    line-height:1.8;
    font-size:17px;
}

.gallery-grid{
    max-width:1400px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:25px;
}

.gallery-item{
    overflow:hidden;
    border-radius:20px;
    background:#fff;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:.35s;
}

.gallery-item img{
    width:100%;
    height:340px;
    object-fit:cover;
    display:block;
    transition:.4s;
}

.gallery-item:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(0,0,0,.12);
}

.gallery-item:hover img{
    transform:scale(1.06);
}

@media(max-width:1200px){

.gallery-grid{
grid-template-columns:repeat(3,1fr);
}

}

@media(max-width:768px){

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

.gallery-heading h2{
font-size:36px;
}

}

@media(max-width:480px){

.gallery-grid{
grid-template-columns:1fr;
}

}/* End custom CSS */