.title {
    font-weight:normal;
    margin: 30px 0 15px 0;
    opacity:.8;
}
.question-container {
    padding: 15px;
    border: solid 1px #eee;
    transition: .3s linear;
    margin-bottom: 20px;
    overflow: hidden;
}
.question {
    color: #008bb9;
    margin-bottom: 0px;
    font-size:18px;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.answer {
    position:relative;
    line-height: 1.1;
    margin: 0;
    height: auto;
    max-height:0;
    overflow:hidden;
    transition: .5s;
}
    .answer.active {
        margin-top: 5px;
        max-height: 400px;
    }

.topImg.aboutBg {
    background: url('../uploads/images/About US.jpg') no-repeat right center;
    padding: 100px 15px;
    text-align: center;
    color: #fff;
    background-size: cover;
}

.topImg {
    position: relative;
}
    .topImg:before {
        content: "";
        display: block;
        width: 100%;
        height: 100%;
        position: absolute;
        left: 0;
        top: 0;
        background: linear-gradient(to right, #f3f5f7, rgba(243, 245, 247, .8), transparent);
    }
.innerPageTitle {
    font-size: 48px;
    width: 100%;
    text-align: left;
    position: relative;
    font-weight:normal;
    color:#555;
}
