
/*	-------------------------------------------------------------------------- */
/*	Mobile  
/*	-------------------------------------------------------------------------- */
	@media screen and (max-width: 440px) {


/*------------------------------------------------------ROTOR------------------*/

		body > .doubleRotor {
			display: flex;
			align-items: center;
			flex-direction: column;
			justify-content: space-evenly;
			position: relative;
			width: 100%;
			height: calc(100vh - 8rem);
			max-width: 100%;
			max-height: calc(100vh - 8rem);
			overflow: hidden;
			margin-top: 8rem;
			margin-bottom: -0.1rem;

			display: none;
		}
		.doubleRotor > .FakeRotor.left {
			width: 100%;
			height: 100%;
			display: block;
			transition: all 0.3s ease;
			position: relative;
			border-bottom: 0.15rem solid #2eb4e8;
		}
		.doubleRotor > .FakeRotor.right {
			width: 100%;
			height: 100%;
			display: block;
			transition: all 0.3s ease;
			position: relative;
			border-top: 0.15rem solid #2eb4e8;
		}
		.doubleRotor > .FakeRotor.left > .RotorCont {
			background-image: url(/repository/files/20241210124137675828F170ABD020030606.jpg);
			background-size: cover;
			background-position: center;
			overflow: hidden;
		}
		.doubleRotor > .FakeRotor.right > .RotorCont {
			background-image: url(/repository/files/20241210124034675828B2867B6167172747.jpg);
			background-size: cover;
			background-position: center;
			overflow: hidden;
		}
		.FakeRotor.left .RotorCont::before {
			content: "";
			position: absolute;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
			background-color: rgba(0, 0, 0, 0.30);
		}
		.FakeRotor.right .RotorCont::before {
			content: "";
			position: absolute;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
			background-color: rgba(0, 0, 0, 0.30);
		}
		.FakeRotor h1, .FakeRotor h2, .FakeRotor a {
		    position: relative;
		    z-index: 1;
		}
		.doubleRotor > .FakeRotor > .RotorCont {
			width: 100%;
			height: 100%;
			display: flex;
			flex-direction: column;
			align-items: center;
			justify-content: center;
		}
		.doubleRotor > .FakeRotor > .RotorCont > h1 {
			display: block;
	        font-size: 14.5vw;
	        line-height: 3.5rem;
	        text-align: center;
	        font-weight: bold;
	        color: #ffffff;
	        font-family: var(--Font_Title_Condensed);
	        text-shadow: 0px 0.1rem 0.1rem rgba(0, 0, 0, 0.66);
	        text-transform: uppercase;
	        letter-spacing: -0.1rem;
	        margin-bottom: 0.6rem;
	        margin-top: -3rem;
		}
		.doubleRotor > .FakeRotor > .RotorCont > h2 {
			display:block;
			font-size: 4.8vw;
			font-weight: normal;
			color: #ffffff;
			font-family: var(--Font_Normal);
			text-shadow: 0px 0.1rem 0.1rem rgba(0, 0, 0, 0.66);
			text-transform: uppercase;
			letter-spacing: -0.01rem;
			font-weight: 600;
			margin-top: 0.3rem;
		}
		.doubleRotor > .FakeRotor > .RotorCont > a {
			display:inline-block;
			font-size: 2rem;
			line-height: 4rem;
			padding-left: 1.5rem;
			padding-right: 1.5rem;
			font-weight: bold;
			color: #ffffff;
			font-family: var(--Font_Normal);
			background: linear-gradient(90deg, #93CA58, #46B849);
			-webkit-border-radius: 0.4rem;
			-moz-border-radius: 0.4rem;
			border-radius: 0.4rem;
			text-shadow:none;
			text-transform: uppercase;
			transition: all 0.2s ease;
			text-shadow: 0px 0.1rem 0.1rem rgba(0, 0, 0, 0.35);
			box-shadow: 0px 0.5rem 0.4rem rgba(0, 0, 0, 0.35);
			cursor: pointer;
			border: none;
			width: 60%;
			text-align: center;
			height: 5rem;
			line-height: 5rem;
		}
		.doubleRotor > .FakeRotor.right > .RotorCont > a {
			background: linear-gradient(151deg, #FF9800 20%, #FF5722 90%) !important;
			width: 60%;
			text-align: center;
			height: 5rem;
			line-height: 5rem;
		}



/*-------------------------------------------------------------------------------*/

		.Container {
			margin-top: 0rem;
			margin-bottom: 0rem;
			padding: 0rem;
			min-height: unset !important;
		}
		.ElencoEventi {
			max-width:92vw;
			margin-left: auto;
			margin-right: auto;
			display: block;
		}
		.ElencoNotizie {
			max-width:71.222rem;
			display: grid;
			grid-template-columns: repeat(2, minmax(0, 1fr));
			grid-column-gap: 2.5rem;
			grid-row-gap: 2.5rem;
			margin-left: auto;
			margin-right: auto;
			display: none;
		}


	}

/*	-------------------------------------------------------------------------- */
/*	Desktop  
/*	-------------------------------------------------------------------------- */
	@media screen and (min-width: 441px) {




		body {
			position: static !important;
		}



/*------------------------------------------------------ROTOR------------------*/

		body > .doubleRotor {
			display: none;
			align-items: center;
			flex-direction: row;
			position: relative;
			width:100%;
			height:calc(100vh - 7rem);
			max-width:100%;
			max-height:calc(100vh - 7rem);
			overflow: hidden;
			margin-top: 7rem;
			margin-bottom: -0.1rem;
		}
		.doubleRotor > .FakeRotor.left {
			width: 50%;
			height: 100%;
			display: block;
			transition: all 0.3s ease;
			position: relative;
			border-right: 0.15rem solid #2eb4e8;
		}
		.doubleRotor > .FakeRotor.right {
			width: 50%;
			height: 100%;
			display: block;
			transition: all 0.3s ease;
			position: relative;
			border-left: 0.15rem solid #2eb4e8;
		}

		.doubleRotor > .FakeRotor.left > .RotorCont {
			background-image: url(/repository/files/20241210124110675828D6CAA95507168421.jpg);
			background-size: cover;
			background-position: center;
			overflow: hidden;
		}
		.doubleRotor > .FakeRotor.right > .RotorCont {
			background-image: url(/repository/files/20241210124034675828B2867B6167172747.jpg);
			background-size: cover;
			background-position: center;
			overflow: hidden;
		}
		.FakeRotor.left .RotorCont::before {
			content: "";
			position: absolute;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
			background-color: rgba(0, 0, 0, 0.30);
		}
		.FakeRotor.right .RotorCont::before {
			content: "";
			position: absolute;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
			background-color: rgba(0, 0, 0, 0.30);
		}
		.FakeRotor h1, .FakeRotor h2, .FakeRotor a {
		    position: relative;
		    z-index: 1;
		}

		.doubleRotor > .FakeRotor.left:hover {
			width: 52%;
		}
		.doubleRotor > .FakeRotor.right:hover {
			width: 52%;
		}
		.doubleRotor > .FakeRotor > .RotorCont {
			width: 100%;
			height: 100%;
			display: flex;
			flex-direction: column;
			align-items: center;
			justify-content: center;
			cursor: default;
		}
		.doubleRotor > .FakeRotor > .RotorCont > h1 {
			display:block;
			font-size: 3.5vw;
			font-weight: bold;
			color: #ffffff;
			font-family: var(--Font_Normal);
			text-shadow: 0px 0.1rem 0.1rem rgba(0, 0, 0, 0.66);
			text-transform: uppercase;
			letter-spacing: -0.1rem;
			margin-bottom: -0.5rem;
			margin-top: -5rem;
		}
		.doubleRotor > .FakeRotor > .RotorCont > h2 {
			display:block;
			font-size: 2.2vw;
			font-weight: normal;
			color: #ffffff;
			font-family: var(--Font_Normal);
			text-shadow: 0px 0.1rem 0.1rem rgba(0, 0, 0, 0.66);
			text-transform: uppercase;
			letter-spacing: -0.01rem;
			font-weight: 600;
		}
		.doubleRotor > .FakeRotor > .RotorCont > a {
			display:inline-block;
			font-size: 2rem;
			line-height: 4rem;
			padding-left: 1.5rem;
			padding-right: 1.5rem;
			font-weight: bold;
			color: #ffffff;
			font-family: var(--Font_Normal);
			background: linear-gradient(90deg, #93CA58, #46B849);
			-webkit-border-radius: 0.4rem;
			-moz-border-radius: 0.4rem;
			border-radius: 0.4rem;
			text-shadow:none;
			text-transform: uppercase;
			transition: all 0.2s ease;
			text-shadow: 0px 0.1rem 0.1rem rgba(0, 0, 0, 0.35);
			box-shadow: 0px 0.5rem 0.4rem rgba(0, 0, 0, 0.35);
			cursor: pointer;
			border: none;
		}
		.doubleRotor > .FakeRotor.right > .RotorCont > a {
			background: linear-gradient(151deg, #FF9800 20%, #FF5722 90%) !important;
		}
		.doubleRotor > .FakeRotor > .RotorCont > a:hover {
			transform: scale(1.03);
		}

/*-------------------------------------------------------------------------------*/


		.Container {
			min-height: 0rem;
			margin-top: 0rem;
			margin-bottom: 3rem;
			min-height: 65vh;

			display: none;
		}
		.ElencoEventi {
			max-width:71.222rem;
			display: grid;
			grid-template-columns: repeat(3, minmax(0, 1fr));
			grid-column-gap: 1.5rem;
			grid-row-gap: 1.5rem;
			margin-left: auto;
			margin-right: auto;
			margin-top: 8rem;
		}
		.ElencoNotizie {
			max-width:71.222rem;
			display: grid;
			grid-template-columns: repeat(2, minmax(0, 1fr));
			grid-column-gap: 2.5rem;
			grid-row-gap: 2.5rem;
			margin-left: auto;
			margin-right: auto;
		}

	}