
	body {
		background: #3e4d6e !important;
	}


/*	-------------------------------------------------------------------------- */
/*	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 - 7rem);
			overflow: hidden;
			margin-top: 7rem;
			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: 3rem;
	        left: 1.5rem;
	        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: flex;
			margin-top: 3rem;
			margin-bottom: 3rem;
			row-gap: 1.5rem;
			flex-direction: column;
		}
		.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 - 6rem);
			overflow: hidden;
			margin-top: 6rem;
			margin-bottom: -0.1rem;
			border-bottom: none;
		}
		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: 4rem;
	        font-family: var(--Font_Normal);
    		text-shadow: none;
    		cursor: default;
    		z-index: 20;
		}
		body .FakeRotor::before {
			content: "";
			width: 100%;
			pointer-events: none;
			position: absolute;
			top: 0;
			left: 0;
			height: 100%;
			background: linear-gradient(
		       to right,
		       rgba(0,0,0,0.5) 0%,
		       rgba(0,0,0,0) 100%
		     );
			z-index: 10;
		}

		body .Container {
			margin-top: 0rem;
			margin-bottom: 0rem;
		}
		.ElencoEventi {
			max-width: 71.222rem;
			display: flex;
			margin-top: 4rem;
			margin-bottom: 5rem;
			flex-direction: column;
			align-items: center;
			justify-content: flex-start;
			row-gap: 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;
		}

	}