.service {
    padding-bottom: 40px;
    .section_header {
        padding-bottom: 20px;
        h4 {
            font-size: 26px;
            font-weight: 500;
            color: $black;
            border-bottom: 2px solid $primaryColor;
            display: inline-block;
            padding: 10px 0;
        }
    }
    .service_wrapper {
        .service_card {
            padding: 30px;

            .service_round {
                height: 100px;
                width: 100px;
                background-color: $white;
                border-radius: 50%;
                text-align: center;
                margin: 0 auto;

                span {
                    font-size: 30px;
                    color: $primaryColor;
                    font-weight: 600;
                    line-height: 100px;
                }
            }

            h4 {
                font-size: 22px;
                color: $black;
                font-weight: 600;
                line-height: 26px;
                padding-top: 15px;
            }
            p{
                font-size: 14px;
                color: $text;
                font-weight: 400;
                line-height: 24px;
                text-align: center;
            }
        }
    }

}