/*	Desktop  */
	.container{
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		background: #fff;
		margin-top: 9rem;
		transition: all 0.5s;
	}
	.ElencoStagioni{
		display: flex;
		flex-direction: column;
		width: 55%;
		margin: 7rem 0rem;
	}
	.StagioneRow{
		display: flex;
		flex-direction: row;
		width: 100%;
		justify-content: space-between;
		align-items: center;
	}
	.StagioneRow:nth-child(even) {
		background-color: #fff;
	}
	.StagioneRow: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.7rem;
		text-transform: uppercase;
		font-weight: 600;
		padding: 0.6rem 1.5rem;
	}
	.redbar {
	    background: #9c0034;
	    color: #fff;
	    display: flex !important;
	    flex-direction: row !important;
	    align-items: center !important;
	    justify-content: center !important;
	    text-align: center !important;
	    height: 12.5rem !important;
	    width: 100% !important;
	    font-size: 2rem !important;
	    font-weight: 500 !important;
	    text-transform: uppercase;
	}

/*	Mobile  */
	@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;
		}
		.ElencoStagioni {
			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;
		}
	}