
/*	-------------------------------------------------------------------------- */
/*	Mobile  
/*	-------------------------------------------------------------------------- */
	@media screen and (max-width: 440px) {

		body .FakeRotor {
			display: flex;
			align-items: center;
			flex-direction: row;
			position: relative;
			width:100vw;
			height: 100%;
			max-width:100%;
			max-height:calc(100vh - 10rem);
			overflow: hidden;
			margin-top: 10rem;
			margin-bottom: -0.1rem;
			border-bottom: 0.2rem solid #004694;
		}
		body .FakeRotor > .mobile {
			width: 100%;
        	height: auto;
		}
		body .FakeRotor > .desktop {
			display: none;
		}
		body .FakeRotor > h1 {
			position: absolute;
			text-transform: uppercase;
			color: #ffffff;
	        top: 5rem;
	        left: 0rem;
	        font-size: 2.7rem;
	        font-family: var(--Font_Normal);
    		text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    		text-align: center;
    		cursor: default;
		}
		body .Container {
			margin-top: 0rem;
			margin-bottom: 0rem;
		}

		.Container {
			margin-top: 11.5rem;
		}
		.ElencoEventi {
			max-width:92vw;
			margin-left: auto;
			margin-right: auto;
			display: block;
			margin-top: 2rem;
			margin-bottom: 2rem;
		}
		.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 .FakeRotor {
			display: flex;
			align-items: center;
			flex-direction: row;
			position: relative;
			width:100vw;
			height: 100%;
			max-width:100%;
			max-height:calc(100vh - 8rem);
			overflow: hidden;
			margin-top: 8rem;
			margin-bottom: -0.1rem;
			border-bottom: 0.2rem solid #004694;
		}
		body .FakeRotor > .mobile {
			display: none;
		}
		body .FakeRotor > .desktop {
			width: 100%;
        	height: auto;
		}
		body .FakeRotor > h1 {
			position: absolute;
			text-transform: uppercase;
			color: #ffffff;
	        top: 2rem;
	        left: 2rem;
	        font-size: 3rem;
	        font-family: var(--Font_Normal);
    		text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    		cursor: default;
		}

		body .Container {
			margin-top: 0rem;
			margin-bottom: 0rem;
		}
		.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: 2rem;
			margin-bottom: 2rem;
		}
		.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;
		}

	}