.interest {
    padding-bottom: 50px;
    .section_header {
        padding-bottom: 20px;
        text-align: center;
        h4 {
            font-size: 26px;
            font-weight: 600;
            color: $white;
            padding: 10px 0;
        }
    }

    .interst_wrapper {
        .interest_wrap {
            background-color: #252525;
            padding: 15px;
            box-shadow: 1px 0.532px 1px 1px rgba(0,0,0,0.1);
            border-radius: 10px;
            h4 {
                font-size: 20px;
                color: $white;
                font-weight: 500;
                line-height: 30px;
                position: relative;
                text-align: center;
                &::after{
                    position: absolute;
                    content: '';
                    bottom: -2px;
                    left: 50%;
                    transform: translateX(-50%);
                    height: 1px;
                    width: 80px;
                    background-color: $primaryColor;
                }
            }

            p {
                font-size: 14px;
                color: $text;
                font-weight: 400;
                line-height: 24px;
                padding-top: 5px;
            }
        }
    }

}