/* ACCORDION WRAPPER */
.awrap {
  padding: 0;
  margin: 0;
  list-style: none;
}

.ahead {
  position: relative;
  cursor: pointer;
  padding: 10px;
  background: #eaeaea;
  color: #000;
  border-bottom: 2px solid #fff;
  font-weight: 700;
  font-size: 18px;	
}

.ahead:after {
  position: absolute;
  content: "\25b6";
  right: 10px;
  transition: transform 0.2s;
}

.abody {
  overflow: hidden;
  transition: all 0.2s ease-out;
  max-height: 0;
  height: auto;
  background: #fff;
  color: #000;
}

.ahead.open:after { transform: rotate(90deg); }


.ahead.open + .abody {
  max-height: 2000px;
  padding: 20px 0 20px 0;
}

#demoA p {
	text-align: left;
	font-weight: 400;
}

#demoA span {
	color:#000;
}

/* Services */

#services .icon {
  width: 100px;
  height: 100px;
  display: inline-block;
  line-height: 50px;
  font-size: 20px;
  text-align: center;
  background: #0097ce;
  border: 1px solid #0097ce;
  color: #fff;
  border-radius: 50%;
  margin-bottom: 10px;
}

#services img {
  width: 70px;
  height: 70px;
  padding-top: 15px;
}

#services .services-item {
  width: 100%;	
  text-align: center;
}

#services .services-item p {
  padding-bottom: 20px;
  font-size: 17px;
  text-align: center;
  color: #666;
}


/* Temi */
#temi p {
  padding-bottom: 5px;	
}

#temi .modulo {
  font-weight: 900;
  color: #fff;
  font-size: 18px;
  background-color: #003173;
  padding: 5px 8px 5px 8px;
  line-height: 1;
  display: table-cell;
  text-transform: uppercase;
}

#temi .modulo-red {
  font-weight: 900;
  color: #fff;
  font-size: 18px;
  background-color: #003173;
  padding: 5px 8px 5px 8px;
  line-height: 1;
  margin-right: 10px;
  display: table-cell;
  text-transform: uppercase;
}




@media screen and (min-width:768px){
	.ahead {
	  padding: 15px;
	  font-size: 23px;	
	}
	 
	.ahead.open + .abody {
	  padding: 20px;
	}
	  
	#services .services-item {
	float: left;
	text-align: left;
	}
	 
	#services .icon {
	  width: 90px;
	  height: 90px;
	  float: left;
	}
	 
	#services img {
	  width: 70px;
	  height: 70px;
	  padding-top: 10px;
	}
	 
	#services .services-item p {
	  font-size: 19px;
	  text-align: left;
	  padding: 35px 0 0 110px;
	}
	
	#temi .modulo, #temi .modulo-red {display:inline;}
	 
}