#FAQ{
    background: #f1f1f1;
    padding: 60px 0px;

}
.faq-content{
    max-width: 1140px;
    margin: 0 auto;
    background: white;
    padding: 25px;
}
.faq-content h2{
    background-color: #f5f5f5;
    text-indent: 40px;
    font-size: 24px;
    line-height: 60px;
    text-align: left;
    margin:0 -15px 15px -15px;
}
.faq-item{
    margin-bottom: 30px;
    border-bottom: 1px solid #ddd;
    padding: 10px 0 10px 15px;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}



.faq-item:hover{
    box-shadow: 8px 8px 10px rgba(0,0,0,.1);
}
.faq-item:hover p{
    color: #008cd6;
}
.faq-item:hover h4{
    color: #008cd6;
}
.faq-item:hover a{
    color: #008cd6;
}
.faq-item h4 {
    position: relative;
    font-size: 18px;
    line-height: 1.2em;
    margin-bottom: 14px;
    color: #000;
    text-align: left;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.faq-item h4:before {
    display: block;
    content: "";
    position: absolute;
    top: 6px;
    bottom: auto;
    left: -15px;
    right: auto;
    z-index: 1;
    width: 8px;
    height: 8px;
    border-radius: 8px;
    background: #000;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.faq-item p,.faq-item a{
    font-size: 14px;
    line-height: 1.5em;
    margin-bottom: 10px;
    color: #666;
    text-align: left;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}