@media (max-width: 1024px)
{
    .about-wrapper{
        padding-top: 100px!important;
    }
}

.about-wrapper .about-top-columns{
    min-height: 540px;
}
.about-wrapper .about-top-columns .top-left{
    display: flex;
    flex-direction: column;
    justify-content: space-between!important;
}

.about-wrapper .about-top-columns .top-right figure{
    height: 360px!important;
    overflow: hidden;
    border-radius: 4px;
}

.team-members .team-rows{
    display: grid!important;
    grid-template-columns: repeat(auto-fill, minmax(300px, auto));
    gap: 1.2rem!important;
    
}

.team-members .team-rows .single-team{
    width: 100%;
}

.team-members .team-rows .single-team figure{
    overflow: hidden;
    border-radius: var(--hwb-button-border-radius);
}

.team-members .team-rows .single-team figure img{
    transition: scale 0.5s ease-in-out;
}

.team-members .team-rows .single-team .member-details{
    margin-left: 1rem!important;
    margin-right: 1rem!important; 
    margin-top: -100px!important;
}

.team-members .team-rows .single-team:hover figure img{
    scale: 1.095;
}
