.application_container {
    display: flex;
    justify-content: space-between;
    margin: 0 -6px;
}

 .application_bigbox {
    width: 25%;
    height: 550px;
    padding: 0 6px 12px;
    margin-bottom: 80px;
}

 .application_bgcbox{
    width: 100%;
    height: 550px;
    background-color: #fff;
}

 .application_bgcbox:hover .application_top{
    box-shadow: 0  2px 2px 0 rgba(0, 0, 0, 0.1);
}

.application_bgcbox .application_top{
    width: 100%;
    height: 25%;
    padding: 28px;
    transition: all ease 0.3s;
}


.application_bgcbox .application_top h4 {
    color: #393f56;
    font-size: 20px;
    margin-bottom: 8px;
    transition: all ease 0.3s;
}

.application_bigbox:hover h4{
    color: #2dd4e0 !important;
}

.application_bgcbox .application_top p {
    color: #999db1;
    font-size: 13px;
}

.application_bgcbox .application_bottom{
    width: 100%;
    height: 75%;
    overflow: hidden;
}

.application_bgcbox .application_bottom img{
    width: 100%;
    height: 100%;
    transition: all ease 0.5s;
}

  .application_bigbox:hover img{
    transform: scale(1.3);
    filter:brightness(70%);
}



