/***** RESETS *****/


/***** FONTS *****/

@font-face { font-family: "Ionicons"; src: url("https://code.ionicframework.com/ionicons/2.0.1/fonts/ionicons.eot?v=2.0.1"); src: url("https://code.ionicframework.com/ionicons/2.0.1/fonts/ionicons.eot?v=2.0.1#iefix") format("embedded-opentype"), url("https://code.ionicframework.com/ionicons/2.0.1/fonts/ionicons.ttf?v=2.0.1") format("truetype"), url("https://code.ionicframework.com/ionicons/2.0.1/fonts/ionicons.woff?v=2.0.1") format("woff"), url("https://code.ionicframework.com/ionicons/2.0.1/fonts/ionicons.svg?v=2.0.1#Ionicons") format("svg"); font-weight: normal; font-style: normal; }


ul, li {
    list-style: none;
}

#containerforfaq {
    width: 60%;
    margin: 0 20%;
    overflow: auto;
}

.titleforfaq {
    height: 2.5em;
    width: 75%;
    margin-left: 12.5%;
    background: #6bba70;
    color: #fff;
    text-align: center;
    padding-top: .5em;
    transform: rotate(-1deg);
    box-shadow: 3px 5px 2px #999;
}

i {
    margin-right: 1em;
}

.faq li {
    padding: 1.25em;
}

.faq li.q {
    font-weight: bold;
    font-size: 120%;
    border-bottom: 1px #ccc solid;
    cursor: pointer;
}

.faq li.q:nth-child(1),
.faq li.q:nth-child(5),
.faq li.q:nth-child(9) {
    background: #eee;
}

.faq li.a {
    font-weight: bold;
    color: #6bba70;
    background: #fff;
    display: none;
}



/********* MEDIA QUERIES ************/
@media (max-width: 800px) {
    #containerforfaq {
        width: 90%;
        margin: 0 5%;
    }
    
    .titleforfaq {
        width: 90%;
        margin: 0 5%;
        height: 3.5em;
    }
    
    .faq li {
        text-align: left;
    }
    
    .faq li.a {
        width: 85%;
        margin-left: 5%;
    }
    
    
}