.inner-page-banner{
/*    background-image: url(../images/about-bg.jpg);*/
    height: 500px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 100% 20%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.inner-page-banner:before {
    content: '';
    background: #d1afae;
    width: 52%;
    height: 100%;
    position: absolute;
    left: 0;
}
.inner-page-banner h1 {
    font-size: 42px;
    font-weight: 600;
}
.inner-page-banner p {
    color: #fff;
}
.inner-page-banner p:last-child{
    margin-bottom: 0;
}

/* practice sec*/
.practice-sec {
    padding: 100px 0px;
    background-image: url(../images/about-bg.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.practice-img {
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.practice-content .blockquote {
    background: #f8faf7;
    padding: 40px;
    margin-bottom: 0;
    margin-top: 35px;
}

/*help css*/
.help-section {
    background: rgba(248,250,247,1);
    padding: 80px 0px;
/*    background-image: url(../images/help-bg.png);*/
    background-size: auto 100%;
    background-repeat: no-repeat;
    background-position: right;
    position: relative;
}
.help-section:before{
    content: "";
    width: 68%;
    height: 100%;
    background: rgba(248,250,247,1);
    background: -moz-linear-gradient(right, rgba(248,250,247,1) 0%, rgba(0,0,0,0) 100%);
    background: -webkit-linear-gradient(right, rgba(248,250,247,1) 0%, rgba(0,0,0,0) 100%);
    background: -o-linear-gradient(right, rgba(248,250,247,1) 0%, rgba(0,0,0,0) 100%);
    background: -ms-linear-gradient(right, rgba(248,250,247,1) 70%, rgba(0,0,0,0) 100%);
    background: linear-gradient(to right, rgba(248,250,247,1) 70%, rgba(0,0,0,0) 100%);
    position: absolute;
    top: 0;
    left: 0;
}
.help-content p {
    margin-bottom: 25px;
}
.help-content p strong{
    color: #d1afae;
}
.testing-sec {
    padding: 80px 0px;
}

/* Responsiveness */
@media(max-width: 1599px){
    .help-section{
        /*background-size: contain;*/
    }
}
@media(max-width: 1023px){
    .practice-sec{
        padding: 50px 0px;
    }
    .practice-img{
        height: 400px;
    }
    .help-section{
        /*background-size: cover;*/
    }
    .help-section:before{
        content: "";
        width: 100%;
        background: rgba(248,250,247,0.8) !important;
    }
}
@media(max-width: 767px){
    .inner-page-banner{
        background-position: center;
        height: 600px;
    }
    .inner-page-banner:before{
        width: 100%;
        background: rgb(209, 175, 174,0.8);
    }
    .testing-sec {
        padding: 30px 0px;
    }
}