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

* {
    margin: 0;
    padding: 0;
}

/***** 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; }

body {
    font-family: 'Arial', sans-serif;
    color: #666;
    font-size: 1em;
    background: #f9f9f9;
    line-height: 1.6em;
}

ul, li {
    list-style: none;
}

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

h1 {
    text-align: center;
    margin: 1em 0;
}

.faq_title {
    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;
}

.faq_arrow{
    margin-right: 15px;
}

.faq li {
    padding: 10px;
}

.faq li.q {
    font-weight: bold;
    font-size: 120%;
    border-bottom: 1px #ccc solid;
    cursor: pointer;
    background-color: #2d3286;
    color: #fff;
    margin-bottom: 10px;
}

.faq li.q:nth-child(1),
.faq li.q:nth-child(5),
.faq li.q:nth-child(9) {
    background: #2d3286;
    color: #fff;
}

.faq li.a {
    font-weight: bold;
    color: #2d3286;
    background: #fff;
    display: none;
    border: 1px solid #ececec;
    margin-bottom: 10px;
    margin-top: -10px;
}
/* 
img {
    margin-right: .5em;
} */

/* footer {
    height: 6em;
    padding: 2em;
    margin-top: 2em;
} */

footer h3 {
    width: 50%;
    margin: 0 25%;
}

footer a {
    color: #6bba30;
    text-decoration: none;
}

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