/* management cards section */

.management-card-section {
    padding: 50px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.management-cards {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.management-cards .management-card {
    width: 255px;
    height: 350px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.management-cards .management-card img {
    width: 100%;
    border-radius: 10px;
    display: block;
    transition: transform 0.5s;
    width: 255px;
    height: 350px;
}

.management-card > .layer{
    width: 100%;
    height: 0;
    background: linear-gradient(rgba(0,0,0,0.6), #ff004f);
    border-radius: 10px;
    position: absolute;
    left: 0;
    bottom: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 40px;
    text-align: center;
    font-size: 14px;
    transition: height 0.5s;
    color: #fff;
}

.layer h3{
    font-weight: 900;
    margin-bottom: 20px;
    font-size: 30px;
}

.layer p{
    font-weight: 500;
}

.layer a{
    margin-top: 20px;
    color: #ff004f;
    text-decoration: none;
    font-size: 18px;
    line-height: 60px;
    background: #fff;
    height: 60px;
    width: 60px;
    border-radius: 50%;
}

.management-card:hover img{
    transform: scale(1.1);
}

.management-card:hover .layer{
    height: 100%;
}