
/*	Mobile  */
	@media screen and (max-width: 440px) {

		#main-container{
			transition: all 0.5s;
			padding: 0;
			margin: 0;
			margin-top: 5.5rem;
		}

		.TitlePage{
			background: #000000;
			margin: 0;
			width: 100%;
			height: 13rem;
			text-align: center;
			line-height: 5rem;
			color: #fff;
			font-size: 1.5rem;
			font-weight: 500;
			text-transform: uppercase;
			display: flex;
			align-items: center;
			justify-content: center;
		}

		.Container{
			margin-top: 0;
		}

		
		.ElencoNotizie {
			text-align: center;
	        max-width: 100%;
	        display: grid;
	        grid-template-columns: repeat(1, minmax(0, 1fr));
	        grid-column-gap: 2.5rem;
	        grid-row-gap: 2.5rem;
	        margin-left: auto;
	        margin-right: auto;
	        margin-top: 4rem;
	    }

	    .Notizia{
			border: 0 !important;
			padding-bottom: 1rem !important;
		}
		.Container div div.Notizia a {
			text-decoration:none;
		}
		.Container div div.Notizia a > span:nth-child(3) {
			font-size: 1.1rem;
			font-weight: 600;
		}

		.NewsTitle{
			display: block;
			margin-top: 0.5rem;
			font-size: 1.5rem;
			color: #000;
			margin-bottom: 1rem;
		}

		.Bottone{
		    color: #fff;
		    width: 100%;
		    background: #9c0034;
		    display: block;
		    
		    height: 3rem;
		    line-height: 3rem;
		    font-size: 1rem;
		    text-transform: uppercase;
		    transition: all 0.5s;
		    margin: auto;
		     margin-top: 2rem;
		     margin-bottom: 3rem;
		}

		.Bottone:hover{
			background: #fff;
			border: 1px solid #9c0034;
			color: #9c0034;
			transition: all 0.5s;
		}

		.Image{
			display: block;
	        width: 100%;
	        height: 14rem;
	        background-position: center top;
	        background-repeat: no-repeat;
	        background-size: cover;
		}

	}

/*	Desktop  */
	@media screen and (min-width: 441px) {


		#main-container{
				transition: all 0.5s;
				padding: 0;
				margin: 0;
				margin-top: 10rem !important;
			}

			.TitlePage{
				background: #000000;
				margin: 0;
				width: 100%;
				height: 9rem;
				text-align: center;
				line-height: 9rem;
				color: #fff;
				font-size: 2.5rem;
				font-weight: 500;
				text-transform: uppercase;
			}

			.Container{
				margin-top: 0;
			}

			
			.ElencoNotizie {
		        max-width: 100%;
		        display: grid;
		        grid-template-columns: repeat(3, minmax(0, 1fr));
		        grid-column-gap: 2.5rem;
		        grid-row-gap: 2.5rem;
		        margin-left: auto;
		        margin-right: auto;
		        margin-top: 4rem;
		    }

		    .Notizia{
				border: 0 !important;
				padding-bottom: 1rem !important;
			}

			.NewsTitle{
				display: block;
				margin-top: 0.5rem;
				font-size: 1rem;
				color: hsl(0, 0%, 33%);
				height: 4rem;
				max-height: 5rem;
				text-overflow: ellipsis;
				overflow: hidden;
				text-transform: uppercase;
				font-weight: 600;
			}

			.Bottone{
			    color: #fff;
			    background: #9c0034;
			    display: block;
			    margin-top: 2rem;
			    height: 3rem;
			    line-height: 3rem;
			    font-size: 1rem;
			    text-transform: uppercase;
			    transition: all 0.5s;
			    border: 1px solid #9c0034;
			}

			.Bottone:hover{
				background: #fff;
				border: 1px solid #9c0034;
				color: #9c0034;
				transition: all 0.5s;
			}

	}