/* CSS Document */

.blocco-citazione{
	margin: 64px auto 64px auto;	
	font-family: "sole_display", Georgia, Times, "Times New Roman", serif;
	font-size: 42px;
	font-weight: 400;
	line-height: 50px;
	letter-spacing: 0px;
	text-align: left;
	width: 100%;
	max-width: calc( var(--larghezza) + 200px );
	position: relative;
}

.blocco-citazione:before {
    content: "";
    position: absolute;
    background-image: url(../../img-struttura/apici.svg);
	background-size: 100% 100%;
    background-repeat: no-repeat;
    width: 32px;
    height: 29px;
    top: 9px;
    left: -40px;
}

.blocco-citazione .dida{
	font-family: "sole_text", Georgia, Times, "Times New Roman", serif;
	font-size: 24px;
	font-weight: 400;
	line-height: 24px;
	letter-spacing: 0px;
	text-align: left;
	color: var(--colore_grigio);
	margin-top: 8px;
}

@media only screen and (max-width: 1030px) {
	.blocco-citazione{
		max-width: none;
		padding-left: 44px;
		padding-right: 44px;
	}
}

@media only screen and (max-width: 820px) {
	
}

@media only screen and (max-width: 480px) {
	.blocco-citazione:before {
		content: "";
		position: absolute;
		background-image: url(../../img-struttura/apici.svg);
		background-repeat: no-repeat;
		width: 24px;
		height: 22px;
		top: 5px;
		left: 7px;
	}
	
	.blocco-citazione{
		font-size: 28px;
		line-height: 32px;
		max-width: none;
		width: 100%;
		padding-left: 36px;
		padding-right: 36px;
	}
	
	.blocco-citazione .dida{
		font-size: 18px;
		line-height: 24px;
		max-width: none;
		width: 100%;
	}
}

