@charset "utf-8";
/* CSS Document */

body{
	margin:0;
	padding:0;
    font-family: 'IBM Plex Sans Condensed', sans-serif;
	font-size:1em;
	color:#666
}

hr{
	width:8em;
	border:none;
	height:2px;
	background:#C00;
	margin:-1em auto 15em

}

@media only screen and (max-width: 480px){

hr{
	margin:0 auto 2em
}
	
}

/*------------------TOP---------------*/

.top{
	height:15em;
	width:100%
}

.top-img{
	background:url(../img/support/faq.jpg);
	height: 100%;
}


@media only screen and (max-width: 480px){

.top-img{
	background-position: center center;
}	
}

/*------------------FAQ---------------*/

.faq{
	padding:3% 10% 5%;
	color:#666
}

.faq h1{
	font-weight:200;
	font-size:4em;
	text-align:center
}

.faq ol{
	list-style-type:none;
    counter-reset:itemnr;
}

.faq li{
	padding:1.5em 0;
	font-weight:300;
	font-size:1.3em;
	border-bottom:1px solid rgba(0,0,0,.2)
}

.faq a{
	color:#666;
	text-decoration:none
}

.faq a:hover{
	color:#C00
}





@media only screen and (max-width: 600px){
	
.faq{
	padding:3% 5% 5%;
}

.faq h1{
	font-size:2.1em;
	line-height:.9em
}
}

