body {
    counter-reset: counter;
}
.titleSubtitle{
    float: left;
	width: 100%;
    margin-bottom: 20px !important;
}
	.titleSubtitle.counter::before{
		counter-increment: counter;
		content: counter(counter) ". ";
	}

@media (max-width: 680px) {

	.titleSubtitle{
		font-size: 20px;
	}

}