/* =========================================================
   LANDING OFFERTA FORMATIVA
   CSS unico integrato
   ========================================================= */

/* ---------- Root / base typography ---------- */

html {
	font-size: 18px;
	line-height: 1.3rem;
	scroll-behavior: smooth;
}

@media only screen and (min-width: 1600px) {
	html {
		font-size: 19px;
	}
}

@media only screen and (min-width: 1920px) {
	html {
		font-size: 23px;
	}
}

body {
	font-size: 1rem;
}

/* ---------- Variabili ---------- */

:root {
	--landing-blue: #00968f;
	--landing-light-blue: #cfeeed;
	--landing-darker-gray: #3a3a3a;
	--landing-lighter-gray: #f3f3f3;
	--landing-light-black: #666666;
	--landing-black: #000000;
	--landing-white: #ffffff;
	--landing-text-muted: #585858;
	--landing-radius: 12px;
	--landing-transition: all 0.25s ease;
}

/* ---------- Reset mirato ---------- */

#fixed,
#fixed-mobile,
#menu-nav,
.blocco,
#cta,
#highlight,
#highlight-info,
#more-info {
	box-sizing: border-box;
}

#fixed *,
#fixed-mobile *,
#menu-nav *,
.blocco *,
#cta *,
#highlight * {
	box-sizing: border-box;
}

#fixed img,
#fixed-mobile img,
.blocco img,
#cta img,
#highlight img {
	max-width: 100%;
	height: auto;
	display: block;
}

#fixed a,
#fixed-mobile a,
#menu-nav a,
.blocco a,
#cta a,
#highlight a {
	text-decoration: none;
}

.blocco .text-lg a,
#highlight-info a,
#more-info a,
[id^="tab-content-"] a {
	text-decoration: underline;
}

iframe {
	width: 100%;
	min-height: 500px;
	outline: none !important;
}

/* ---------- Utility minime ---------- */

.hidden {
	display: none !important;
}

.flex {
	display: flex;
}

.flex-wrap {
	flex-wrap: wrap;
}

.flex-col {
	flex-direction: column;
}

.flex-row {
	flex-direction: row;
}

.items-center {
	align-items: center;
}

.items-start {
	align-items: flex-start;
}

.justify-between {
	justify-content: space-between;
}

.justify-center {
	justify-content: center;
}

.self-start {
	align-self: flex-start;
}

.self-center {
	align-self: center;
}

.self-end {
	align-self: flex-end;
}

.w-full {
	width: 100%;
}

.font-bold {
	font-weight: 700 !important;
}

.uppercase {
	text-transform: uppercase !important;
}

.rounded-12 {
	border-radius: var(--landing-radius) !important;
}

.text-white {
	color: var(--landing-white) !important;
}

.text-black,
.text-text-black {
	color: var(--landing-black) !important;
}

.text-darker-gray {
	color: var(--landing-darker-gray) !important;
}

.bg-white {
	background-color: var(--landing-white) !important;
}

.bg-blue {
	background-color: var(--landing-blue) !important;
}

.bg-light-blue {
	background-color: var(--landing-light-blue) !important;
}

.bg-darker-gray {
	background-color: var(--landing-darker-gray) !important;
}

.bg-lighter-gray {
	background-color: var(--landing-lighter-gray) !important;
}

.border-white {
	border-color: var(--landing-white) !important;
}

.border-light-black {
	border-color: var(--landing-light-black) !important;
}

/* ---------- Utility spacing integrate ---------- */

.pl-5 {
	padding-left: 1.25rem !important;
}

.pr-5 {
	padding-right: 1.25rem !important;
}

.pt-5 {
	padding-top: 1.25rem !important;
}

.pb-5 {
	padding-bottom: 1.25rem !important;
}

.p-5 {
	padding: 1.25rem !important;
}

.py-5 {
	padding-top: 1.25rem !important;
	padding-bottom: 1.25rem !important;
}

.px-5 {
	padding-left: 1.25rem !important;
	padding-right: 1.25rem !important;
}

/* ---------- Header desktop ---------- */

#fixed {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	left: 0;
	right: 0;
	z-index: 30;
	border: 0;
	background: var(--landing-blue);
	color: var(--landing-white);
}

#fixed>div:not([id="head-cta"]) {
	display: flex;
	width: 100%;
	padding: 1rem 2.5rem;
}

#fixed>div:not([id="head-cta"])>img {
	height: 1.5rem;
	margin-right: 1rem;
	align-self: flex-start;
	flex: 0 0 auto;
}

#fixed>div:not([id="head-cta"])>div {
	flex: 1 1 auto;
}

#fixed>div:not([id="head-cta"])>div>div:first-child {
	font-weight: 700;
	font-size: 1.125rem;
	line-height: 1;
	margin-bottom: 0.5rem;
}

#fixed>div:not([id="head-cta"])>div>div:last-child {
	font-size: 1.125rem;
	line-height: 1;
}

#fixed>#head-cta {
	margin-left: auto;
	padding: 0.5rem 2.5rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 20%;
	left: 0;
	right: 0;
	bottom: 0;
}

#fixed>#head-cta a {
	display: block;
}

#fixed>#head-cta a+a,
#fixed>#head-cta a.my-4 {
	margin-top: 1rem;
	margin-bottom: 1rem;
}

/* ---------- Header mobile ---------- */

#fixed-mobile {
	position: static;
	display: none;
	flex-wrap: wrap;
	width: 100%;
	padding: 1rem 0;
	left: 0;
	right: 0;
	z-index: 30;
	border: 0;
	background: var(--landing-blue) !important;
	color: var(--landing-white);
}

#fixed-mobile>div:not([id="head-cta"]) {
	display: flex;
	width: 100%;
	padding: 1rem 2.5rem;
}

#fixed-mobile>div:not([id="head-cta"])>img {
	height: 1.5rem;
	margin-right: 1rem;
	align-self: flex-start;
	flex: 0 0 auto;
}

#fixed-mobile>div:not([id="head-cta"])>div>div:first-child,
#fixed-mobile>div:not([id="head-cta"])>div>div:last-child {
	font-size: 1.35rem;
	line-height: 1;
}

#fixed-mobile>div:not([id="head-cta"])>div>div:first-child {
	font-weight: 700;
	margin-bottom: 0.5rem;
}

#fixed-mobile>#head-cta {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 40;
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 100%;
	padding: 1rem 2.5rem;
	background: var(--landing-blue);
}

#fixed-mobile>#head-cta a {
	display: block;
}

/* ---------- Bottoni CTA ---------- */

#cta-download-bando>div,
#cta-iscrizione>div,
#cta-download-bando-mobile>div,
#cta-iscrizione-mobile>div,
#fixed-mobile #head-cta>a[href="#more-info"]>div {
	min-height: fit-content;
	padding: 0.5rem 1rem;
	border: 1px solid var(--landing-white);
	border-radius: var(--landing-radius);
	text-align: center;
	text-transform: uppercase;
	font-size: 0.875rem;
	font-weight: 700;
	transition: var(--landing-transition);
}

#cta-download-bando>div,
#cta-download-bando-mobile>div {
	background: var(--landing-blue);
	color: var(--landing-white);
}

#cta-iscrizione>div,
#cta-iscrizione-mobile>div {
	background: var(--landing-white);
	color: var(--landing-blue);
}

#fixed-mobile #head-cta>a[href="#more-info"]>div {
	background: var(--landing-darker-gray);
	color: var(--landing-white);
	margin-top: 0.5rem;
}

#cta-download-bando:hover>div,
#cta-iscrizione:hover>div,
#cta-download-bando-mobile:hover>div,
#cta-iscrizione-mobile:hover>div,
#fixed-mobile #head-cta>a[href="#more-info"]:hover>div {
	background: var(--landing-light-blue);
	color: var(--landing-white);
}

/* ---------- Layout principale ---------- */

#fixed-mobile+div {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	background: var(--landing-lighter-gray);
}

#fixed-mobile+div>div:first-child {
	width: 100%;
	background: var(--landing-white);
}

#highlight {
	display: flex;
	flex-direction: column;
	width: 100%;
	background: var(--landing-white);
	right: 1.25rem;
	z-index: 20;
}

/* ---------- Nav blocchi ---------- */

#menu-nav {
	display: none;
	width: 100%;
	margin: 0;
	padding: 0;
	list-style: none;
	background: var(--landing-lighter-gray);
	border: 0;
	z-index: 10;
}

#menu-nav .menu-nav-item {
	list-style: none;
	padding: 1rem 1.25rem;
	color: var(--landing-text-muted);
	transition: 0.3s ease color, 0.3s ease background-color;
}

#menu-nav .menu-nav-item a {
	display: block;
	color: inherit;
	font-weight: inherit;
	line-height: 1.2;
}

#menu-nav .menu-nav-item:hover {
	color: var(--landing-black);
}

#menu-nav .menu-nav-item.active {
	background-color: #3c3c3c;
	color: var(--landing-white);
	font-weight: 700;
}

/* ---------- Contenuti blocchi ---------- */

#tab-content {
	width: 100%;
}

.blocco {
	padding: 2rem 1.25rem;
}

.blocco h3,
.blocco h4 {
	margin: 0;
}

.blocco>div:first-child {
	width: 100%;
	font-size: 1.875rem;
	font-weight: 700;
	line-height: 1;
	margin-bottom: 1rem;
}

.blocco .text-regular {
	line-height: 1;
	margin-bottom: 1rem;
}

.blocco .text-regular>div:first-child {
	width: 100%;
	padding-top: 1rem;
	margin-bottom: 1rem;
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1;
}

.blocco .text-lg {
	font-size: 1.125rem;
	line-height: 1.45;
}

.blocco p {
	margin-bottom: 1rem;
	line-height: 1.3rem;
}

.blocco ul {
	font-size: 1rem;
	list-style: disc;
	padding-left: 1.25rem;
	margin-bottom: 0.75rem;
}

.blocco ul li {
	margin-bottom: 0.25rem;
}

.blocco.text-white,
.blocco.text-white .text-lg,
.blocco.text-white .text-regular {
	color: var(--landing-white);
}

.blocco.text-darker-gray,
.blocco.text-darker-gray .text-lg,
.blocco.text-darker-gray .text-regular {
	color: var(--landing-darker-gray);
}

.blocco.bg-white {
	background: var(--landing-white);
	color: var(--landing-darker-gray);
}

.blocco.bg-lighter-gray {
	background: var(--landing-lighter-gray);
	color: var(--landing-darker-gray);
}

.blocco.bg-darker-gray {
	background: var(--landing-darker-gray);
	color: var(--landing-white);
}

.overflow-x-hidden {
	overflow-x: hidden;
}

/* ---------- Swiper numeri ---------- */

.mySwiper.swiper {
	margin-top: 1rem;
	width: 100%;
}

.mySwiper .swiper-wrapper {
	display: flex;
}

.mySwiper .swiper-slide {
	display: flex;
	flex-direction: row;
	align-items: stretch;
	width: calc(33.333% - 1.666%);
	margin-right: 2.5%;
	padding: 0.5rem;
	border-radius: var(--landing-radius);
	min-height: 100px;
}

.mySwiper .swiper-slide:last-child {
	margin-right: 0;
}

.mySwiper .swiper-slide>div:first-child {
	margin-right: 0.5rem;
	align-self: flex-start;
	font-size: 2.25rem;
	font-weight: 700;
	line-height: 1;
	color: var(--landing-black);
	flex: 0 0 auto;
}

.mySwiper .swiper-slide>div:nth-child(2) {
	margin-right: 0.5rem;
	align-self: center;
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 1.2;
	color: var(--landing-darker-gray);
	flex: 1 1 auto;
}

.mySwiper .swiper-slide img {
	align-self: flex-end;
	height: 2rem;
	width: auto;
	flex: 0 0 auto;
}

/* ---------- Accordion ---------- */

[id^="accordion-"] button {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	padding: 1.25rem 0;
	background: transparent;
	border-top: 0;
	border-left: 0;
	border-right: 0;
	cursor: pointer;
	text-align: left;
	font: inherit;
	color: inherit;
}

[id^="accordion-"] .border-white {
	border-bottom: 1px solid var(--landing-white);
}

[id^="accordion-"] .border-darker-gray {
	border-bottom: 1px solid var(--landing-darker-gray);
}

[id^="accordion-"] button span {
	display: block;
	font-size: 1.5rem;
	line-height: 1.2;
}

[id^="accordion-"] [data-accordion-icon] {
	width: 0.75rem;
	height: 0.75rem;
	flex: 0 0 auto;
	transform: rotate(180deg);
}

[id^="accordion-iscrizione-body-"] {
	display: none;
}

[id^="accordion-iscrizione-body-"].hidden {
	display: none;
}

[id^="accordion-iscrizione-body-"]:not(.hidden) {
	display: block;
}

[id^="accordion-iscrizione-body-"]>div {
	padding: 1.25rem 0;
	line-height: 1.5;
}

/* ---------- Tabs ---------- */

[id^="tab-"][role="tablist"] {
	display: flex;
	flex-wrap: wrap;
	margin-top: 2rem;
	padding: 0;
	margin-bottom: 0;
	list-style: none;
	border-bottom: 5px solid var(--landing-blue);
	color: var(--landing-white);
}

[id^="tab-"][role="tablist"]>button {
	display: inline-block;
	margin: 0 0.5rem 0 0;
	padding: 1rem 2rem;
	font-size: 1.125rem;
	line-height: 1.2;
	border: 0;
	background: transparent;
	color: inherit;
	cursor: pointer;
	transition: var(--landing-transition);
}

[id^="tab-"][role="tablist"]>button[aria-selected="true"],
[id^="tab-"][role="tablist"]>button:hover {
	background: var(--landing-blue);
	color: var(--landing-white);
}

[id^="tab-content-"] {
	background: var(--landing-light-blue);
	color: var(--landing-darker-gray);
}

[id^="tab-content-"]>div {
	padding: 2rem 1.25rem;
}

/* ---------- CTA immagini ---------- */

#cta {
	padding: 2rem 1.25rem;
	background: var(--landing-lighter-gray);
}

#cta-link {
	display: block;
}

#cta img {
	width: 100%;
}

#cta img.hidden {
	display: none;
}

/* ---------- Highlight ---------- */

#highlight-info {
	order: 2;
	background: var(--landing-light-blue);
}

#highlight-info>div:first-child,
#more-info>div:first-child {
	padding-top: 1rem;
	padding-left: 0.5rem;
	padding-right: 0.5rem;
	text-align: center;
	text-transform: uppercase;
	font-weight: 700;
}

#highlight-info>div:first-child {
	color: var(--landing-black);
}

#highlight-info>div:first-child>div {
	margin-top: 0.5rem;
	border-bottom: 2px solid var(--landing-light-black);
}

#highlight-info>div:nth-child(2) {
	margin: 1rem 0;
	padding-left: 1.25rem;
	padding-right: 1.25rem;
	color: var(--landing-black);
	line-height: 1.5;
}

#highlight ul li {
	line-height: 1;
	margin-bottom: 0.5rem;
}

#more-info {
	order: 1;
	background: var(--landing-darker-gray);
	color: var(--landing-white);
}

#more-info>div:first-child>div {
	margin-top: 0.5rem;
	border-bottom: 2px solid var(--landing-white);
}

#more-info>div:nth-child(2) {
	padding-top: 1rem;
	padding-left: 1.25rem;
	padding-right: 1.25rem;
	font-size: 0.875rem;
	line-height: 1.2;
}

#more-info>div:last-child {
	padding: 1rem 1.25rem;
}

/* ---------- Form styles ---------- */

.fsForm {
	padding: 0 !important;
}

.fsForm label {
	width: 100%;
}

.fsRequiredLabel {
	display: none !important;
}

#more-info form,
#more-info .wpcf7,
#more-info .gform_wrapper,
#more-info .fsForm {
	width: 100%;
}

#more-info input[type="text"],
#more-info input[type="email"],
#more-info input[type="tel"],
#more-info select,
#more-info textarea {
	width: 100%;
	padding: 0.75rem 0.875rem;
	border: 1px solid #d0d0d0;
	border-radius: 6px;
	font: inherit;
	color: #222;
	background: #fff;
	margin-bottom: 0.75rem;
}

#more-info input[type="submit"],
#more-info button[type="submit"] {
	display: inline-block;
	padding: 0.75rem 1.25rem;
	border: 1px solid var(--landing-white);
	border-radius: var(--landing-radius);
	background: var(--landing-blue);
	color: var(--landing-white);
	font: inherit;
	font-weight: 700;
	text-transform: uppercase;
	cursor: pointer;
	transition: var(--landing-transition);
}

#more-info input[type="submit"]:hover,
#more-info button[type="submit"]:hover {
	background: var(--landing-light-blue);
	color: var(--landing-white);
}

/* ---------- Footer ---------- */

#colophon {
	width: calc(80% - 1.25rem);
}

/* ---------- Responsive ---------- */

@media (min-width: 640px) {

	#fixed>div:not([id="head-cta"]),
	#fixed-mobile>div:not([id="head-cta"]) {
		width: 50%;
	}
}

@media (min-width: 768px) {

	#fixed>div:not([id="head-cta"]),
	#fixed-mobile>div:not([id="head-cta"]) {
		width: 33.3333%;
	}

	#cta img.md\:hidden,
	#cta .md\:hidden {
		display: none;
	}

	#cta img.md\:block,
	#cta .md\:block {
		display: block;
	}
}

@media (min-width: 1024px) {
	#menu-nav {
		display: flex;
	}
}

@media (min-width: 1280px) {
	#fixed {
		display: flex;
	}

	#fixed-mobile {
		display: none;
	}

	#fixed>div:not([id="head-cta"]) {
		width: 18%;
		padding: 2rem 1.25rem;
	}

	#fixed>#head-cta {
		display: flex;
	}

	#fixed-mobile+div {
		padding-left: 1.25rem;
		padding-right: 1.25rem;
	}

	#fixed-mobile+div>div:first-child {
		width: 80%;
	}

	#highlight {
		width: 20%;
	}

	#highlight-info {
		order: 1;
	}

	#more-info {
		order: 2;
	}

	#cta-download-bando>div,
	#cta-iscrizione>div {
		padding-top: 0.25rem;
		padding-bottom: 0.25rem;
	}

	.mySwiper.swiper {
		width: 80%;
	}
}

@media (max-width: 1279.98px) {
	#fixed {
		display: none;
	}

	#fixed-mobile {
		display: flex;
	}

	#menu-nav {
		display: none !important;
	}

	#tab-content {
		width: 100% !important;
		position: static !important;
	}

	#highlight {
		position: static !important;
	}

	body {
		padding-bottom: 180px;
	}

	#colophon {
		width: 100%;
	}
}

@media (min-width: 1536px) {
	#fixed>div:not([id="head-cta"]) {
		width: 18%;
	}

	#fixed>div.\32xl\:w-\[16\%\] {
		width: 16% !important;
		padding-left: 0.5rem !important;
		padding-right: 0.5rem !important;
		padding-top: 1rem !important;
		padding-bottom: 1rem !important;
	}

	.mySwiper.swiper {
		width: 66.6667%;
	}
}

@media (min-width: 1920px) {
	#fixed>div:not([id="head-cta"]) {
		padding-left: 2.5rem;
		padding-right: 2.5rem;
		padding-top: 1.25rem;
		padding-bottom: 1.25rem;
	}

	#fixed>#head-cta {
		padding-top: 1rem;
		padding-bottom: 1rem;
	}

	#cta-download-bando>div,
	#cta-iscrizione>div {
		padding-top: 0.5rem;
		padding-bottom: 0.5rem;
	}
}

@media (max-width: 1023.98px) {
	.mySwiper .swiper-slide {
		width: auto;
		min-width: 260px;
	}

	[id^="tab-"][role="tablist"]>button {
		width: 100%;
		margin-right: 0;
	}
}

@media (max-width: 767.98px) {
	#fixed-mobile>div:not([id="head-cta"]) {
		width: 100%;
		padding-left: 1.25rem;
		padding-right: 1.25rem;
	}

	#fixed-mobile>#head-cta {
		padding-left: 1.25rem;
		padding-right: 1.25rem;
	}

	.blocco,
	#cta,
	[id^="tab-content-"]>div {
		padding-left: 1rem;
		padding-right: 1rem;
	}

	.blocco>div:first-child {
		font-size: 1.75rem;
	}

	.blocco .text-regular>div:first-child {
		font-size: 1.35rem;
	}

	.blocco .text-lg {
		font-size: 1rem;
		line-height: 1.5;
	}
}

/* ---------- Utility responsive usate nel template ---------- */

@media (min-width: 640px) {
	.sm\:w-1\/2 {
		width: 50%;
	}
}

@media (min-width: 768px) {
	.md\:w-1\/3 {
		width: 33.3333%;
	}

	.md\:block {
		display: block !important;
	}

	.md\:hidden {
		display: none !important;
	}
}

@media (min-width: 1024px) {
	.lg\:flex {
		display: flex !important;
	}
}

@media (min-width: 1280px) {
	.xl\:hidden {
		display: none !important;
	}

	.xl\:w-\[18\%\] {
		width: 18%;
	}

	.xl\:w-\[20\%\] {
		width: 20%;
	}

	.xl\:w-\[80\%\] {
		width: 80%;
	}

	.xl\:w-4\/5 {
		width: 80%;
	}
}

@media (min-width: 1536px) {
	.\32xl\:w-\[16\%\] {
		width: 16% !important;
	}

	.\32xl\:w-2\/3 {
		width: 66.6667%;
	}
}


.blocco {
	padding: 2rem 1.25rem;
}

.blocco--light {
	background: #fff;
	color: #3a3a3a;
}

.blocco--muted {
	background: #f3f3f3;
	color: #3a3a3a;
}

.blocco--last {
	background: var(--landing-darker-gray);
	color: var(--landing-white);
}

.blocco--numeri {
	overflow-x: hidden;
}

.blocco-header {
	margin-bottom: 1.25rem;
}

.blocco-header h3 {
	margin: 0;
	font-size: 1.875rem;
	line-height: 1;
	font-weight: 700;
}

.blocco-text {
	margin-bottom: 1.5rem;
}

.blocco-subtitle {
	padding-top: 1rem;
	margin-bottom: 1rem;
}

.blocco-subtitle h4 {
	margin: 0;
	font-size: 1.5rem;
	line-height: 1.1;
	font-weight: 700;
}

.blocco-body {
	font-size: 1.125rem;
	line-height: 1.5;
}

.accordion-trigger [data-accordion-icon] {
	transition: transform 0.2s ease;
	transform: rotate(180deg);
}

.accordion-trigger[aria-expanded="true"] [data-accordion-icon] {
	transform: rotate(0deg);
}