.admission{
    padding: 100px 0;
    width: 100%;
    background-image: url(../images/bgS.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    z-index: 1;
    margin-top: 60px;
    &::after{
        position: absolute;
        content: '';
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        background-color: rgba(0,0,0,0.5);
        z-index: -1;
       }

       .admission_wrapper{
            .admission_card{
                height: 280px;
                width: 100%;
                background-color: #010f2a;
                border-radius: 8px;
                padding: 22px;
                position: relative;
                .admission_image{
                    width: 100px;
                    height: 100px;
                    img{
                        width: 100%;
                        height: 100%;
                        object-fit: cover;
                    }
                }
                   
                
                i{
                    font-size: 50px;
                    color: #fff;
                }
                h5{
                    font-size: 22px;
                    font-weight: 700;
                    color: $white;
                    line-height: 30px;
                    padding-top: 10px;
                    padding-bottom: 10px;
                }
                .card_btn{
                    border-radius: 10px;
                    background-color: #f3f3f3;
                    height: 42px;
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                    padding: 0 20px;
                    position: absolute;
                    bottom: 22px;
                    left: 50%;
                    transform: translateX(-50%);
                    width: 90%;
                    span{
                        font-size: 15px;
                        font-weight: 400;
                        color: #1d1c1c;
                    }
                    i{
                        color: #1f1e1e;
                        font-size: 16px;
                        margin-left: 5px;
                        line-height: 0px;
                    }
                }
            }
            .card_2{
            background-color: $secondColor;
            }
            .card_3{
                background-color: $primaryColor;
            }
            .admission_text{
                text-align: center;
                .admission_btn{
                    padding: 8px 20px;
                    border-radius: 5px;
                    background-color: $primaryColor;
                    color: #fff;
                    font-weight: 500;
                    text-align: center;
                    display: inline-block;
                    margin-top: 40px;
                }
                .call_btn{
                    padding: 8px 20px;
                    border-radius: 5px;
                    background-color: $primaryColor;
                    color: #fff;
                    font-weight: 500;
                    text-align: center;
                    display: inline-block;
                    margin-top: 40px;
                }
                h6{
                    font-size: 16px;
                    font-weight: 500;
                    color: $white;
                    padding-top: 16px;
                }
            }
       }
}