.interest {
    padding-bottom: 50px;
    .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;
        }
    }

    .interst_wrapper {
        .interest_wrap {
            background-color: #fff;
            padding: 15px;
            box-shadow: 1px 0.532px 1px 1px rgba(0,0,0,0.1);
            border-radius: 10px;
            h4 {
                font-size: 22px;
                color: $black;
                font-weight: 500;
                line-height: 30px;
                position: relative;
                &::after{
                    position: absolute;
                    content: '';
                    bottom: -2px;
                    left: 0;
                    height: 1px;
                    width: 40px;
                    background-color: $primaryColor;
                }
            }

            p {
                font-size: 15px;
                color: $text;
                font-weight: 400;
                line-height: 24px;
            }
        }
    }

}