*{
    margin: 0;
    padding: 0;
}
.suva_schead{
    width: 100%;
    height: auto;
    justify-items: center;
    margin: 40px 0;
}
.suva_schead h2{
    position: relative;
    font-size: 30px;
    color: #0a0a0a;
    font-weight: 800;
}
.suva_schead h2 span{
    color: #076494;
    text-transform: lowercase;
}
.suva_scholarship{
    width: 100%;
    height: auto;
    padding:20px 0 0 0;
}
.suva_scholarship .container
{
    display: flex;
    flex-wrap: wrap;
    justify-content:space-evenly;
    align-items: center;
}

.suva_scholarship .container .box{
    height:545px;
    padding: 10px 0;
    margin-bottom: 40px;
    /* align-content: center; */
    width:360px;
    border-radius: 6px;
    background-color: #fff;
    justify-items: center;
    transition: all ease .5s;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.suva_scholarship .container .box:hover{
    border-bottom: 3px solid #023262;
    transform: translateY(-8px);
}
.suva_scholarship .container .box:hover.box:hover .img::after{
    display: block;
}
.suva_scholarship .container .box .img{
    width: 95%;
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}
.suva_scholarship .container .box .img:hover img{
    transform: scale(1.1);
}
.suva_scholarship .container .box .img::after{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    display: none;
    background:linear-gradient(#023262, #12c3f2);
    opacity: .5;
    height: 100%;
    width: 100%;
    transition: all ease .5s;
}
.suva_scholarship .container .box .img img{
    height: 100%;
    width: 100%;
    transition:all ease .5s;
}
.suva_scholarship .container .box h2{
    text-align: center;
    width: auto;
    margin: 20px 0 10px 0;
    color: #076494;
    font-size: 27px;
    font-weight: 700;
    text-transform: uppercase;
    height: 60px;
}
.suva_scholarship .container .box h3{
    text-align: center;
    width: auto;
    margin: 20px 0 10px 0;
    color: #076494;
    font-size: 27px;
    font-weight: 700;
    text-transform: uppercase;
    height: 38px;
}
.suva_scholarship .container .box .text{
    font-size: 15px;
    color: #999999;
    width: 90%;
    height: auto;
    margin-bottom: 20px;
    /* font-weight: 500; */
    text-align: justify;
}
.suva_scholarship .container .box .main_bt{
    width: 95%;
    display: flex;
    justify-content: center;
    /* margin-bottom: 10px; */
}
.suva_scholarship .container .box .main_bt .btn{
    color: #fff;
    background:linear-gradient(#023262, #12c3f2);
    padding: 13px 25px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
}
.suva_scholarship .container .box .main_bt .btn:hover{
    background: #fff;
    border:1px solid #076494;
    color: #076494;
}
