.service-card {
    min-height: 350px;


    .service-card-body {
        .service-img {
            width: 100%;
            height: 300px;
        }

        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .card-text {
            position: relative;
            z-index: 0;
            text-align: center;
            padding: 0 20px;

            &::after {
                content: "";
                background-image: url("../../../public/images/homecard-bg.png");
                position: absolute;
                width: 100%;
                height: 360px;
                top: -85%;
                z-index: -1;
                left: 0;
                background-repeat: no-repeat;
                background-size: cover;
            }
        }
    }



}


.test-card {
    margin-top: 70px;
    position: relative;
    width: 366.7px;
    height: 424.1px;

    .test-body {
        .test-text {
            position: absolute;
            top: 40px;
            text-align: center;
            right: 0;
            left: 0;
        }
    }
}