.quote_section {
    margin-bottom: 0;
    background: #F5F5F5;
    margin-top: 0;
}
.quote-box {
    border-radius: 8px;
    background: #FFF;
    box-shadow: 0px 0px 28px 0px rgba(0, 0, 0, 0.25);
    padding: 40px 55px 40px 80px;
    display: flex;
    max-width: 1034px;
    width: 100%;
    margin-left: auto;
    flex-wrap: wrap;
    margin-right: auto;
    margin-top: -70px;
    position: relative;
    z-index: 01;
}
.quote-box .title {
    width: 31%;
    padding-right: 37px;
    display: flex;
    align-items: center;
    position: relative;
}
.quote-box .title:before {
    content: "";
    display: block;
    background-image: url(../images/quote-right.png);
    height: 45px;
    width: 60px;
    position: absolute;
    top: -10px;
    background-repeat: no-repeat;
    background-size: contain;
    left: -35px;
}

.quote-box .decp {
    width: 69%;
    padding-left: 37px;
    padding-top: 10px;
    padding-bottom: 10px;
    position: relative;
}

.quote-box .decp:before {
    content: "";
    display: block;
    background: #46C2AC;
    height: 100%;
    position: absolute;
    left: 0;
    width: 3px;
    top: 0;
}
@media only screen and (max-width:991px){
    .quote-box {
        padding: 30px 20px 30px 40px;
    }
    .quote-box .decp {
        width: 63%;
        padding-left: 20px;
    }
    .quote-box .title {
        width: 37%;
        padding-right: 20px;
    }
    .quote-box .title:before {
        height: 35px;
        width: 50px;
        top: 15px;
        left: -25px;
    }
    body.menu-open .quote-box {
        z-index: auto;
    }
}
@media only screen and (max-width:767px){
    .quote-box .title {
        width: 100%;
        padding-right: 0;
        margin-bottom: 20px;
    }
    .quote-box .decp {
        width: 100%;
        padding-left: 0;
        padding-top: 20px;
        padding-bottom: 0;
    }
    .quote-box .decp:before {
        height: 3px;
        width: 100%;
    }
    .quote-box .title:before {
        top: -20px;
        left: -25px;
    }
}