html, body {
	margin: 0;
	font-family: 'Open Sans', sans-serif;
	color: #212326;
	font-size: 16px;
	line-height: 24px;
	text-rendering: optimizeLegibility;
}
body.no_scroll {overflow: hidden;}

header {
	background: #1a1a1a;
	padding: 10px 0;
	position: sticky;
	top: 0;
	z-index: 2;
}
header > div {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}
header img {
	display: block;
	max-width: 100%;
}
header > div a {
	color: #ccc;
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	line-height: 20px;
}
header > div a img {
	height: 36px;
}
header > div a .telefono {
	font-size: 16px;
	color: #fff;
}


footer {
	background: #1a1a1a;
	padding: 30px 10px;
	color: #999;
	font-size: 11px;
	line-height: 20px;
	text-align: center;
}
footer a {
	color: #bbb;
	text-decoration: none;
}

h1, h2, h3 {
	margin: 30px 0 30px 0;
}
h1 {
	font-family: 'Fjalla One', sans-serif;
	font-weight: 400;
	font-size: 55px;
	line-height: 68px;
}
h2 {
	font-family: 'Fjalla One', sans-serif;
	font-weight: 400;
	font-size: 40px;
	line-height: 48px;
}
h1:first-child, h2:first-child {margin-top: 0;}
h1, h2 {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	margin-bottom: 40px;
}
h1::after, h2::after {
	content: "_";
	line-height: 10px;
	color: #f1900a;
	font-size: 50px;
	margin-top: -10px;
}
h3 {
	font-weight: 400;
	font-size: 24px;
	line-height: 33px;
}
h4 {
	font-weight: 700;
	font-size: 1em;
	line-height: 1.1em;
	margin: 20px 0 0px 0;
	text-align: left;
}
p {
	margin: 0;
}

h3.testo_offerta {
	color: #f1900a;
	font-weight: 600 !important;
}
.call_to_action {
	display: block;
	background: #f1900a;
	color: #fff;
	text-decoration: none;
	padding: 12px;
	width: 200px;
	text-align: center;
	text-transform: uppercase;
	margin: 50px auto 0;
}
.wrapper > div:not(:only-child) .call_to_action {
	margin-left: 0;
}

ul, ol {
	list-style-type: none;
	padding: 0;
	margin: 0;
}
.elenco_spunte {
	column-count: 2;
	column-gap: 60px;
	overflow: hidden;
}
.wrapper > div:not(:only-child) .elenco_spunte {
	column-count: 1;
}
.elenco_spunte li {
	border-top: 1px solid #e7e7e7;
	position: relative;
	top: -1px;
	padding-top: 15px;
	margin-bottom: 15px;
	position: relative;
	z-index: 1;
	text-align: left;
	break-inside: avoid-column;
	display: flex;
	align-items: center;
	gap: 10px;
}
.elenco_spunte li::before {
	content: url(img/check.svg);
	width: 30px;
	height: 30px;
	flex-shrink: 0;
}
.elenco_spunte.multiriga {
	margin: 30px 0 60px;
}
.elenco_spunte.multiriga li {
	align-items: flex-start;
}

.wrapper {
	box-sizing: border-box;
	margin: 0 auto;
	padding: 90px 0;
	display: flex;
	gap: 60px;
	align-items: center;
	justify-content: center;
}
.wrapper > * {
	flex-basis: 1px;
	flex-grow: 1;
	flex-shrink: 1;
}
.wrapper > *:only-child {
	text-align: center;
}
.wrapper > div > p {
	margin: 15px 0;
}
.wrapper > div > img {
	display: block;
	max-width: 100%;
}

.wrapper_bg {
	background-size: cover;
	background-position: 50% 50%;
	padding-bottom: 20%;
}


header > div,
footer > div,
.wrapper {
	box-sizing: border-box;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 30px;
	padding-right: 30px;
}

.wrapper.ridotto > div {
	max-width: 860px;
}

.due_video {
	display: flex;
	gap: 30px;
	flex-wrap: wrap;
	margin: 90px 0 20px 0;
}
.due_video > div {
	flex: 1 1 1px;
	min-width: 420px;
	margin: 0;
}
.video {
	margin: 40px 0;
	position: relative;
	width: 100%;
}
.video > div {
	padding-bottom: 56.25%;
}
.video iframe {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}
.video .layer {
	position: absolute;
	z-index: 1;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	overflow: hidden;
}
.video .layer img {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
	object-fit: cover;
	width: 100%;
	height: 100%;
}
.video .layer.chiudi{
	display: none;
}
.video .layer::before {
	content: "▶";
	font-size: 30px;
	line-height: 36px;
	color: #fff;
	background:  #f1900a;
	text-align: center;
	padding: 8px 16px 8px 24px;
	border-radius: 9px;
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.6);
	position: absolute;
	z-index: 2;
	top: 50%;
	left: 50%;
	margin: -26px auto auto -33px;
}
.video > div video {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

.video .chiedi_consenso {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 10px;
	overflow: hidden;
	color: #fff;
	background: rgba(0, 0, 0, 0.7);
	z-index: 3;
	padding: 30px;
}
.video .chiedi_consenso a {
	cursor: pointer;
	background:  #f1900a;
	color: #fff;
	padding: 5px 10px;
}

/* inizio sezioni */
.titolo {
	background: linear-gradient(to right, rgba(26, 26, 26, 0.6) 0 50%, rgba(26, 26, 26, 0.2) 100%),  url(img/toccata-e-fuga/RGA-videocorso-toccata-e-fuga.jpg) #000;
	background-size: cover;
	background-position: top center;
	padding: 50px 0;
}
.titolo .wrapper {
	flex-wrap: wrap;
}
.titolo .wrapper > div:first-child {
	flex-basis: 620px;
	flex-grow: 0;
	color: #fff;
}
.titolo .wrapper h3 {
	font-weight: 300;
	font-size: 24px;
	line-height: 36px;
}
.titolo .logo_toccata_e_fuga {
	display: block;
	width: 100%;
	max-width: 600px;
	margin: auto;
}

.banner {
	background: #f1900a;
	color: #fff;
}
.banner .wrapper {
	padding-top: 20px;
	padding-bottom: 20px;
}
.banner ul {
	display: flex;
	justify-content: space-around;
}
.banner ul li {
	flex-basis: 1px;
	flex-grow: 1;
}
.banner ul li img {height: 45px;}
.banner ul li .numero {
	font-size: 30px;
	line-height: 36px;;
	font-family: 'Fjalla One', sans-serif;
	margin-top: 5px;
}
.banner ul li div:last-child {
	line-height: 20px;
	margin-top: 5px;
}

.difficolta {
	background: url(img/toccata-e-fuga/bach-background-RGA.jpg) no-repeat #fff;
	background-size: cover;
	background-position: center right;
	padding: 30px 0;
}
.difficolta h3 {
	margin: 20px 0;
}

.vantaggi {
	background: url(img/rga-pubblico-background.svg) no-repeat 50% bottom;
}
.elenco_vantaggi {
	margin: 50px 0 80px 0;
	display: flex;
	gap: 20px;
	justify-content: space-between;
}
.elenco_vantaggi li {
	background: #fff;
	padding: 30px;
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);
	flex-basis: 1px;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.elenco_vantaggi li::before {
	content: url(img/check.svg);
	width: 35px;
}
.elenco_vantaggi li h4 {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	font-size: 28px;
	line-height: 38px;
	font-weight: 300;
	margin: 0 0 30px 0;
}
.elenco_vantaggi li h4::after {
	content: "__";
	line-height: 0px;
	font-size: 32px;
	color: #f1900a;
}
.elenco_vantaggi li p {
	text-align: left;
}


.video_wrapper {
	background: linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2)), url(img/rga-video-background.svg) no-repeat;
	background-size: auto, auto 100%;
	background-position: center, center center;
}
.video_wrapper video {
	display: block;
	width: 100%;
}


.docenti {
	background: url(img/rga-chitarrista-background.svg) no-repeat left bottom #eee;
	background-size: 400px auto;
}
.elenco_docenti {
	display: flex;
	justify-content: center;
	margin: 80px 0 60px 0;
	gap: 50px;
}
.elenco_docenti li .foto_docente {
	border-radius: 100%;
	border: 4px solid #f1900a;
	width: 220px;
	height: 220px;
	margin: auto;
	overflow: hidden;
	background-size: cover;
	background-position: 50% 50%;
}
.elenco_docenti li h3 {
	margin-bottom: 10px;
}
.elenco_docenti li p {
	text-align: left;
}
.elenco_docenti li p + p {
	margin-top: 15px;
}

.dicono_di_noi {
	background: radial-gradient(rgba(238, 146, 25, 0.85), rgba(238, 146, 25, 0.85)), url(img/RGA-Roberto-Fazari-in-classe.jpg) no-repeat;
	background-position: 50% 50%;
	background-size: cover;
	color: #fff;
	padding: 20px 0;
}
.dicono_di_noi .wrapper {overflow: hidden;}
.dicono_di_noi h2 {margin-bottom: 20px;}
.dicono_di_noi h2::after {content: none;}
.dicono_di_noi .stelle {
	margin-bottom: 30px;
}
.dicono_di_noi .stelle img {width: 150px;}
.dicono_di_noi .recensioni {
	margin: 0 -30px;
	overflow: hidden;
	display: flex;
	justify-content: center;
}
.dicono_di_noi .recensioni img {
	min-width: 700px;
}

.suono_personale {
	background: url(img/rga-chitarra-background_1.svg) no-repeat, url(img/rga-cavo-chitarra-background.svg) no-repeat;
	background-position: bottom -220px right -250px, bottom -50px left -200px;
	background-size: 700px auto, 400px auto;
}

.testo_due_colonne {
	column-count: 2;
	column-gap: 60px;
}
.testo_due_colonne p {
	text-align: left;
	margin-bottom: 20px;
	break-inside: avoid-column;
}

.percorso {
	background: radial-gradient(rgba(225, 225, 225, 0.6), rgba(225, 225, 225, 0.6)), url(img/rga-note-background-sx.svg) no-repeat, url(img/rga-note-background-dx.svg) no-repeat rgba(225, 225, 225);
	background-position: center center, left -250px center, right -250px center;
	background-size: auto 100%, auto 100%;
	padding: 30px 0 60px 0;
}
.steps_percorso li {
	display: flex;
	align-items: center;
	counter-increment: step;
	position: relative;
	gap: 100px;
	height: 400px;
}
.steps_percorso li::before {
	content: counter(step);
	position: absolute;
	font-size: 150px;
	line-height: 90px;
	font-weight: 700;
	color: #f1900a;
	text-shadow: 3px 3px 0 #ccc;
	text-align: center;
	width: 100px;
	top: 100px;
	left: 50%;
	margin-left: -50px;
}
.steps_percorso li:first-child:before {
	margin-left: -59px;
}
.steps_percorso li::after {
	content: "";
	position: absolute;
	top: 190px;
	bottom: -85px;
	margin-top: 30px;
	left: 50%;
	width: 4px;
	margin-left: -2px;
	background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI4IiBoZWlnaHQ9IjYwIj48cGF0aCBkPSJtMCw0IHYyMiBhNCw0IDAgMDAgNCw0IGE0LDQgMCAwMCA0LC00IHYtMjIgYTQsNCAwIDAwIC00LC00IGE0LDQgMCAwMCAtNCw0IHoiIC8+PC9zdmc+Cg==);
	background-size: 100%;
	background-repeat: repeat-y;
}
.steps_percorso li:last-child::after {content: none;}
.steps_percorso li:nth-child(even){ flex-direction: row-reverse; }
.steps_percorso li > * {
	flex-basis: 50%;
	text-align: left;
}
.steps_percorso li:nth-child(even) > * { text-align: right; }

.steps_percorso li .immagine img {
	max-width: 100%;
}
.steps_percorso li .immagine img.desktop {display: inline;}
.steps_percorso li .immagine img.mobile {display: none;}


.offerta {
	background: radial-gradient(rgba(26, 26, 26, 0.88), rgba(26, 26, 26, 0.78)), url(img/rga-mano-plettro-chitarra-background.jpg) 50% 50%;
	background-size: cover;
	color: #fff;
	padding: 30px 0;
}
.offerta p {
	margin: 15px 0;
}
.offerta .nota {
	font-size: 13px;
	line-height: 17px;
}

.elenco_livelli {
	display: flex;
	justify-content: center;
	gap: 30px;
	margin-bottom: 30px;
}
.elenco_livelli li {
	background: #fff;
	color: #222;
	flex-basis: 30%;
	max-width: 300px;
	font-size: 14px;
}
.elenco_livelli li h4 {
	margin: 0;
	padding: 20px;
	color: #fff;
	font-weight: 400;
	font-size: 20px;
	text-align: center;
}
.elenco_livelli li h4 {
	background: #8f8f8f;
}
.elenco_livelli li .prezzo {
	display: flex;
	margin: 35px 0 5px 0;
	justify-content: center;
	align-items: flex-start;
	gap: 5px;
	font-weight: 600;
	line-height: 16px;
}
.elenco_livelli li .prezzo span {
	font-size: 38px;
	line-height: 28px;
}
.elenco_livelli li .prezzo_tagliato {
	color: #f1900a;
	display: flex;
	margin-top: 6px;
	justify-content: center;
	align-items: flex-start;
	gap: 5px;
	font-weight: 600;
	font-size: 13px;
	line-height: 13px;
}
.elenco_livelli li .prezzo_tagliato span {
	font-size: 22px;
	line-height: 18px;
	text-decoration: line-through;
}
.elenco_livelli li ul {
	margin: 20px 0;
}
.elenco_livelli li ul li {
	padding: 5px 20px;
	text-align: left;
	display: flex;
	gap: 10px;
	align-items: center;
}
.elenco_livelli li ul li::before {
	content: url(img/spunta.svg);
	width: 20px;
	height: 20px;
	flex-shrink: 0;
}
.elenco_livelli li ul li.no::before {
	content: url(img/x.svg);
	width: 16px;
	padding: 0 2px;
}
.elenco_livelli li ul li.no {
	color: #b7b7b7;
}

.faq {
	background: #eee;
}
.faq h2 { align-items: flex-start; }
.faq h3 { text-align: left; }

.elenco_faq {
	text-align: left;
}
.elenco_faq > li {
	border-bottom: 1px solid #ccc;
}
.elenco_faq > li label {
	display: flex;
	align-items: center;
	gap: 10px;
	width: 100%;
	cursor: pointer;
	font-weight: 700;
	padding: 10px 0;
}
.elenco_faq > li label::before {
	content: "+";
	color: #f1900a;
	font-size: 30px;
	width: 26px;
	flex-shrink: 0;
	text-align: center;
}
.elenco_faq > li input {
	opacity: 0;
	position: absolute;
}
.elenco_faq > li label + * {
	display: none;
	padding: 0 0 10px 36px;
	margin: 0;
}
.elenco_faq > li input:checked + label::before {
	content: "–";
	margin-top: -4px;
}
.elenco_faq > li input:checked + label + * {
	display: block;
}

.maschera_consenso {
	position: fixed;
	z-index: 10;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.6);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	overflow: auto;
}
.maschera_consenso .consenso_wrapper {
	position: relative;
	padding: 30px;
	background: #fff;
	margin: 20px;
	max-width: 800px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
}
.maschera_consenso .consenso_wrapper p {
	margin: 0;
}
.maschera_consenso .consenso_wrapper a {
	text-decoration: none;
	color: #f1900a;
}
.maschera_consenso .consenso_wrapper .accetta {
	padding: 10px 25px;
}
.maschera_consenso .consenso_wrapper .accetta {
	color: #fff;
	background: #f1900a;
}
.maschera_consenso .consenso_wrapper .rifiuta {
	color: #999;
	position: absolute;
	top: -30px;
	right: 0px;
	font-size: 0.9em;
}

.maschera_offerta {
	position: fixed;
	z-index: 10;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.6);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	overflow: auto;
	transition: opacity 0.2s;
	z-index: -1;
	opacity: 0;
}
.maschera_offerta.mostra {
	opacity: 1;
	z-index: 3;
}
.maschera_offerta .offerta_popup {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: stretch;
	max-width: 720px;
}
.maschera_offerta .offerta_popup > .aspetta {
	background: linear-gradient(to bottom, rgb(241, 144, 10, 0.92), rgb(241, 144, 10, 0.92)), url("img/toccata-e-fuga/sfondo-popup.jpg");
	background-position: 50% 50%;
	background-size: auto, cover;
	margin: 50px 0;
	padding: 40px 30px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
}
.maschera_offerta .offerta_popup > .aspetta h2 {
	color: #fff;
	font-size: 64px;
	line-height: 64px;
	font-weight: 400;
}
.aspetta h2::after {
	color: #fff;
}
.aspetta .testo_aspetta {
	font-family: 'Fjalla One', sans-serif;
	font-size: 26px;
	line-height: 32px;
	font-weight: 700;
	white-space: nowrap;
	margin: 20px 0 20px 0;
}
.aspetta .testo_percentuale {
	font-family: 'Fjalla One', sans-serif;
	color: #fff;
	font-size: 26px;
	line-height: 32px;
}
.aspetta .testo_percentuale span {
	font-size: 110px;
	line-height: 110px;
}

.maschera_offerta .offerta_popup > .descrizione_offerta {
	background: #fff;
	padding: 40px;
}
.maschera_offerta .offerta_popup > .descrizione_offerta h2 {
	margin-bottom: 0;
	text-align: center;
}
.maschera_offerta .offerta_popup > .descrizione_offerta h2::after {
	display: none;
}
.descrizione_offerta .corsi_popup {
	padding: 20px 0;
	display: flex;
	justify-content: center;
	gap: 10px;
}
.descrizione_offerta .prezzo {
	font-family: 'Fjalla One', sans-serif;
	font-size: 26px;
	padding: 10px 0;
	text-align: center;
}
.descrizione_offerta .prezzo > span {
	color: #f1900a;
}
.descrizione_offerta .prezzo > span > span {
	font-size: 52px;
	line-height: 52px;
	margin-right: 5px;
}
.descrizione_offerta .disclaimer {
	text-align: center;
	font-size: 14px;
	line-height: 18px;
}

.descrizione_offerta .asterisco {
	color: #f1900a;
}

.descrizione_offerta .call_to_action_bundle {
	display: block;
	text-decoration: none;
	background: #f1900a;
	color: #fff;
	text-align: center;
	padding: 10px;
	margin: 10px 0;
}
.descrizione_offerta .call_to_action_corso {
	display: block;
	text-decoration: none;
	border: 1px solid #f1900a;
	color: #f1900a;
	text-align: center;
	padding: 9px;
}

@media screen and (max-width: 980px){
	.wrapper {
		flex-direction: column;
		align-items: stretch;
	}
	.wrapper.inverti_mobile {
		flex-direction: column-reverse;
	}
	.titolo {
		background-image: radial-gradient(rgba(26, 26, 26, 0.6) 0 60%, rgba(26, 26, 26, 0.2) 100%),  url(img/toccata-e-fuga/RGA-videocorso-toccata-e-fuga.jpg);
		background-position: center, top right -510px;
	}
	.titolo .wrapper > div {
		max-width: none;
	}
	
}

@media screen and (max-width: 860px){
	.maschera_offerta .offerta_popup {
		flex-direction: column;
	}
	.maschera_offerta .offerta_popup > .aspetta {
		margin: 0;
		padding: 20px;
	}
	.maschera_offerta .offerta_popup > .aspetta h2 {
		font-size: 40px;
		line-height: 48px;
	}
	.aspetta .testo_aspetta {
		margin: 0 0 10px 0;
	}
	.aspetta .testo_percentuale {
		margin: 0;
	}
	.aspetta .testo_percentuale span {
		font-size: 46px;
		line-height: 52px;
	}
	.aspetta br {display: none;}
	
	.corsi_popup img {
		max-width: 100%;
	}
	
	.maschera_offerta .offerta_popup > .descrizione_offerta {
		padding: 20px;
	}
	.maschera_offerta .offerta_popup > .descrizione_offerta h2 {
		font-size: 26px;
		line-height: 32px;
	}
	.descrizione_offerta .descrizione_corsi {
		max-width: 490px;
		font-size: 15px;
		line-height: 20px;
	}
	.descrizione_offerta .prezzo > span > span {
		font-size: 46px;
		line-height: 52px;
	}
}
@media screen and (max-width: 400px){
	.maschera_offerta .offerta_popup > .descrizione_offerta h2 br {
		display: none;
	}
}

@media screen and (max-width: 720px){
	.wrapper {
		padding-top: 60px;
		padding-bottom: 60px;
	}
	h1 {
		font-weight: 400;
		font-size: 36px;
		line-height: 44px;
	}
	h2 {
		font-weight: 400;
		font-size: 30px;
		line-height: 36px;
	}
	h3 {
		font-size: 20px;
		line-height: 24px;
	}
	
	.elenco_spunte {
		column-count: 1;
	}
	
	.elenco_vantaggi {
		flex-direction: column;
	}
	.elenco_vantaggi li p {
		text-align: center;
	}
	
	.elenco_docenti {
		flex-direction: column;
		margin: 50px 0;
	}
	.elenco_docenti li {
		width: auto;
	}
	.elenco_docenti li .foto_docente {
		width: 200px;
		height: 200px;
	}
	
	.testo_due_colonne {
		column-count: 1;
	}
	
	.due_video > div {
		min-width: 100%;
	}
	
	.percorso {
		background-image: radial-gradient(rgba(225, 225, 225, 0.6), rgba(225, 225, 225, 0.6)), url(img/rga-note-background-dx.svg);
	}
	.steps_percorso li,
	.steps_percorso li:nth-child(even) {
		flex-direction: row;
		gap: 30px;
		margin: 60px auto;
		align-items: flex-start;
		height: auto;
		flex-wrap: wrap;
	}
	.steps_percorso li:last-child {margin-bottom: 0;}
	.steps_percorso li:nth-child(even) > * { text-align: left; }

	.steps_percorso li::before {
		position: static;
		margin: 0 !important;
		font-size: 120px;
		line-height: 70px;
		width: 100%;
	}
	.steps_percorso li::after {content: none}
	
	.steps_percorso li > * {
		text-align: center !important;
		flex-grow: 1;
	}
	.steps_percorso li .immagine {
		order: -1;
		flex-basis: 100%;
		text-align: center;
	}
	.steps_percorso li .immagine img {
		width: 100%;
		max-width: 400px;
	}
	.steps_percorso li .immagine img.desktop {display: none;}
	.steps_percorso li .immagine img.mobile {display: inline;}

	
	.elenco_livelli {
		flex-direction: column;
	}
	.elenco_livelli > li {
		width: 100%;
		max-width: 320px;
		margin: auto;
	}
	.elenco_livelli li ul {
		display: inline-block;
	}
}

@media screen and (max-width: 640px){
	.titolo {
		padding-top: 0;
	}
	header > div {
		flex-direction: column;
	}

	.banner .wrapper > div {
		display: flex;
		justify-content: center;
	}
	.banner ul {
		flex-direction: column;
		gap: 15px;
	}
	.banner ul li {
		display: flex;
		align-items: center;
		gap: 15px;
	}
	.banner ul li > img {
		flex-shrink: 0;
	}
	.banner ul li > div {
		flex-grow: 1;
		text-align: left;
		/* display: flex;
		gap: 15px;
		align-items: center; */
	}
	.banner ul li br {display: none;}
	
	.descrizione_offerta .call_to_action_corso {
		font-size: 15px;
	}
}