.card_section{
    background-image: url(../images/shape2.jpeg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0 80px 0; 
    position: relative;
    z-index: 1;
    margin-top: 80px;
    &::after{
        position: absolute;
        content: '';
        height: 100%;
        width: 100%;
        top: 0;
        left: 0;
        background-color: #289bde59;
        z-index: -1;
    }
    h4{
        font-size: 26px;
        font-weight: 700;
        line-height: 36px;
        color: $black;
        text-align: center;
        text-transform: uppercase;
    }
    .card_wrapper{
        width: 90%;
        margin: 0 auto;
        .crad_wrap{
            height: 280px;
            width: 100%;
            background-color: $white;
            border-radius:8px ;
            border-top-left-radius: 60px;
            border-bottom-right-radius: 60px;
            padding: 12px;
            position: relative;
            margin-top: 60px;
            &:hover{
              box-shadow: 0 0 15px #e1e1e1e3;
            }
            .icon_box{
                height: 70px;
                width: 70px;
                background-image: linear-gradient(90deg, #7114EF 0%, #1475F7 50%, #7114EF);
                border-radius: 22px;
                display: flex;
                justify-content: center;
                align-items: center;
                position: absolute;
                top: -35px;
                left: 50%;
                transform: translateX(-50%) ;
                overflow: hidden;
               img{
                height: 90%;
                width: 90%;
                object-fit: cover;
                border-radius: 22px;
               }
            }
            h4{
                font-size: 20px;
                padding-top: 40px;
                text-transform: uppercase;
                font-weight: 600;
                text-transform: uppercase;
                position: relative;
                color: #464646;
                &:hover{
                    color: #000;
                }
                // &::after{
                //     position: absolute;
                //     content: '';
                //     bottom: 5px;
                //     left: 50%;
                //     height: 4px;
                //     width: 80px;
                //     background-color: $primaryColor;
                //     transform: translateX(-50%);
                // }
            }
            p{
                text-align: center;
                font-size: 14px;
                color: #636363;
                line-height: 22px;
            }
        }
    }
}

.text_wrapper{
    width: 85%;
    background-image: url(../images/bg2.jpeg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 420px;
    margin: 0 auto;
    border-radius: 16px;
    text-align: center;
    padding: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    .text_wrap{
        h4{
            font-size: 30px;
            font-weight: 500;
            line-height:40px;
            color: $white;
            text-transform: uppercase;
           
        }
        p{
            text-align: center;
            color: #efeded;
            font-weight: 400;
            padding: 0 120px;
        }
        .get_btn{
            padding-top: 20px;
            a{
                padding: 10px 28px;
                background-color: $white;
                font-weight: 500;
                color: $primaryColor;
                border-radius: 35px;
            }
        }
    }
}