
/*	-------------------------------------------------------------------------- */
/*	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;

			display: none;
		}
		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;
		}

		.MuseumFilter {
			display: flex;
			flex-direction: column;
			align-items: flex-start;
		}
		a.MuseumBox {
			position: relative;
			margin-bottom: 1rem;
			width: 100%;
			border-radius: 0.4rem;
			overflow: hidden;
		}
		a.MuseumBox > img {
			position: absolute;
			z-index: 10;
			height: 0.95rem;
			top: 0.6rem;
			right: 1rem;

			display: none;
		}
		a.MuseumBox.Etno,
		a.MuseumBox.Arti {
			pointer-events: none;
			cursor: default;
		}
		a.MuseumBox.Etno > .imgCont,
		a.MuseumBox.Arti > .imgCont {
			filter: grayscale(0);
		}
		a.MuseumBox h3 {
			color: var(--Palette5);
			position: absolute;
			z-index: 10;
			top: 0.5rem;
			left: 0.8rem;
			font-size: 1.7rem;
			margin: 0rem;
			text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
			letter-spacing: -0.1rem;
		}
		.MuseumBox .imgCont {
			width: 100%;
			height: 8rem;
			overflow: hidden;
			position: relative;
		}
		.MuseumBox .imgCont::before {
		    content: '';
		    position: absolute;
		    top: 0;
		    left: 0;
		    width: 100%;
		    height: 100%;
		    background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
		    pointer-events: none;
		    z-index: 1;
		}
		.MuseumBox .imgCont img {
			width: 100%;
			height: auto;
			position: absolute;
			top: 50%;
			left: 50%;
			transform: translate(-50%, -30%);
			transition: all 0.2s ease;
		}
		.MuseumBox > span {
			position: absolute;
			bottom: 0.5rem;
			right: 0.5rem;
			text-transform: uppercase;
			font-weight: 600;
			padding: 0.5rem 1.1rem;
			border-radius: 0.3rem;
			background: var(--Palette1);
			color: var(--Palette5);
			font-size: 0.9rem;
			z-index: 2;
		}

		body .Container {
			margin-top: 6.5rem;
			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;

			display: none;
		}
		.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 {
			margin-top: 0rem;
			margin-bottom: 0rem;
			min-height: 30vw !important;
		}

		.MuseumFilter {
			display: flex;
			flex-direction: column;
			align-items: flex-start;
		}

		a.MuseumBox {
			position: relative;
			margin-bottom: 1rem;
			width: 100%;
			border-radius: 0.4rem;
			overflow: hidden;
		}


		a.MuseumBox.Arti {
			pointer-events: none;
			cursor: default;
		}

		a.MuseumBox > img {
			position: absolute;
			z-index: 10;
			height: 0.95rem;
			top: 0.6rem;
			right: 1rem;
		}
		a.MuseumBox.Arti > .imgCont {
			filter: grayscale(1);
		}
		a.MuseumBox h3 {
			color: var(--Palette5);
			position: absolute;
			z-index: 10;
			top: 1rem;
			left: 2rem;
			font-size: 3rem;
			margin: 0rem;
			text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
			letter-spacing: -0.1rem;
		}
		.MuseumBox .imgCont {
			width: 100%;
			height: 12rem;
			overflow: hidden;
			position: relative;
		}
		.MuseumBox .imgCont::before {
		    content: '';
		    position: absolute;
		    top: 0;
		    left: 0;
		    width: 100%;
		    height: 100%;
		    background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
		    pointer-events: none;
		    z-index: 1;
		}
		.MuseumBox .imgCont img {
			width: 100%;
			position: absolute;
			top: 50%;
			left: 50%;
			transform: translate(-50%, -30%);
			transition: all 0.2s ease;
		}

		a.MuseumBox:hover .imgCont img {
			transform: translate(-50%, -35%) scale(1.05);
		}
		.MuseumBox > span {
			position: absolute;
			bottom: 1rem;
			right: 1rem;
			text-transform: uppercase;
			font-weight: 600;
			padding: 0.6rem 1.5rem;
			border-radius: 0.3rem;
			background: var(--Palette1);
			color: var(--Palette5);
		}

		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;

			display: 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: 3rem;
	        font-family: var(--Font_Normal);
    		text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    		cursor: default;
		}

		body .Container {
			margin-top: 6rem;
			margin-bottom: 3rem;
			padding-top: 2rem;
			min-height: 40vw !important;
		}
		.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;

			display: none;
		}
		.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;
		}

		


	}