﻿/* ==== Google font ==== */
@import url('http://fonts.googleapis.com/css?family=Lato:100,300,400,700,900,100italic,300italic,400italic,700italic,900italic|Montserrat:700|Merriweather:400italic');


body {
    margin: 0;
    background-size: cover;
}
h1 {
    font-size: 50px;
    font-family: sans-serif;
    margin: 50px 0 0;
    text-align: center;
    color: orange;
}
.containerfaq {
    max-width: 60%;
    margin: 0 auto;
    padding: 70px 0 20px;
    width: 100%;
}
.accfaq h3 {
    font-size: 18px;
    background-color: #f96332;
    color: #fff;
    padding: 8px;
    margin: 0;
    cursor: pointer;
    font-family: sans-serif;
    position: relative;
    border-radius: 30px;
}
.contentfaq {
    border-radius: 30px;
    background-color: #ffbfaa;
    display: none;
}
.contentfaq-inner {
    padding: 15px;
    
}
.content * {
    margin-top: 0;
    line-height: 1.5;
}
.accfaq {
    border-bottom: 1px solid unset;
    margin-bottom: 4px;
	text-align: left;
}
.accfaq h3:after {
    content: '+';
	position: absolute;
    right: 20px;
    font-size: 40px;
    top: 50%;
    transform: translateY(-50%);
}
.accfaq.active h3:after {
    content: '+';
    position: absolute;
    right: 20px;
    font-size: 40px;
    top: -20%;
    transform: rotate(-45deg);
}