
/*	Mobile  */
	@media screen and (max-width: 440px) {



	}

/*	Desktop  */
	@media screen and (min-width: 441px) {

		.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;
			margin-top:4rem;
		}

	}

	.container{
				display: flex;
				flex-direction: column;
				align-items: center;
				justify-content: center;
				background: #fff;
				 margin-top: 9rem;
			    transition: all 0.5s;
			}

			.ElencoRassegne{
				display: flex;
			    flex-direction: column;
			    width: 55%;
			    margin: 7rem 0rem;
			}

			.RassegnaRow{
				display: flex;
			    flex-direction: row;
			    width: 100%;
			    justify-content: space-between;
			    align-items: center;
			}

			.RassegnaRow:nth-child(even) {
			    background-color: #fff;
			}

			.RassegnaRow:nth-child(odd) {
			    background-color: #f7f7f7;
			}

			.ButtonBox{
				display: flex;
			    flex-direction: column;
			    justify-content: center;
			    align-items: center;
			    padding: 1.3rem 1rem ;
			}

			.EventButton{
				padding: 0.6rem 1.9rem;
				border: 1px solid #9c0034;
				color: #9c0034!important;
				text-transform: uppercase;
				font-weight: 600;
				text-decoration: none;
				transition-duration: 0.3s;
				transition-property: background, color;
				
			}

			.EventButton:hover{
				color: #fff!important;
				background: #9c0034;
			}

			.Title{
				font-size: 1.2rem;
			    text-transform: uppercase;
			    font-weight: 600;
			    padding: 1.5rem 1.5rem;
			}

			@media screen and (max-width: 440px) {
				.container {
				    display: flex;
				    flex-direction: column;
				    align-items: center;
				    justify-content: center;
				    background: #fff;
				    margin-top: 5.5rem;
				    transition: all 0.5s;
				}

				.ElencoRassegne {
				    display: flex;
				    flex-direction: column;
				    width: 95%;
				    margin: 5rem 0rem;
				}

				.ButtonBox {
					display: flex;
					flex-direction: column;
					justify-content: center;
					align-items: center;
					padding: 1.3rem 1rem;
					width: 60%;
				}
				.Title {
				    font-size: 1.2rem;
				    text-transform: uppercase;
				    font-weight: 600;
				    padding: 1.5rem 1.5rem;
				    width: 40%;
				}

				.EventButton {
				    padding: 0.6rem 1.9rem;
				    border: 1px solid #9c0034;
				    color: #9c0034 !important;
				    text-transform: uppercase;
				    font-weight: 600;
				    text-decoration: none;
				    transition-duration: 0.3s;
				    transition-property: background, color;
				    font-size: 0.8rem;
				}
			}