.card_section{
    padding: 60px 0 80px 0; 
    position: relative;
    z-index: 1;
    h4{
        font-size: 26px;
        font-weight: 700;
        line-height: 36px;
        color: $black;
        text-align: center;
        text-transform: uppercase;
    }
    .card_wrapper{
        .crad_wrap{
            width: 100%;
            background-color: $white;
            border-radius:16px;
            padding: 12px;
            position: relative;
            margin-top: 15px;
            box-shadow: 0 0 15px #e1e1e1e3;
            height: 450px;
            .card_img{
                height: 200px;
                width: 100%;
                img{
                    height: 100%;
                    width: 100%;
                    object-fit: cover;
                    border-radius: 10px;
                }
            }
            h4{
                font-size: 19px;
                padding-top: 10px;
                text-transform: uppercase;
                font-weight: 600;
                text-transform: uppercase;
                position: relative;
                color: #464646;
                &:hover{
                    color: #000;
                }
            }
            p{
                text-align: center;
                font-size: 14px;
                color: #636363;
                line-height: 22px;
            }
            .detail_btn{
                text-align: center;
                padding-top: 10px;
                a{
                    font-size: 16px;
                    font-weight: 500;
                    color: $primaryColor;
                }
            }
        }
    }
}

.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;
            }
        }
    }
}