.section_title{
	font-size: 5vw;
	line-height: 5vw;
}

.plays{
	margin-top: 5vh;
	font-size: 2.5vw;
	line-height: 2.5vw;: 
}

.intro-title span.font_script{
	display: inline-block;
}

.intro-title.font_script.black_font{
	color: #000;
}

section.events .content{
	align-items: center;
	padding: 5vh 0;
}

section.events .content .left,
section.events .content .right{
	width: 40%;
}

section.events .big_title {
	font-size: 4.8vw;
	line-height: 4.8vw;
}

.food_events{
	font-size: 2vw;
	margin-top: 4vh;
}

.events_cover{
	width: 100%;
	height: 100%;
}
.events_cover img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 20px;
}

.sport_events{
	font-size: 2vw;
	line-height: 2.1vw;
	margin-top: 5vh;
}

.calendar_container{
	width: 90%;
	padding: 10vh 0;
}
.calendar_container .title{
	text-align: center;
	font-size: 2rem;
}
.events_per_month{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-evenly;
	padding: 10vh 0;
}
.events_per_month .month_container{
	width: 25%;
	display: flex;
	justify-content: center;
	margin-bottom: 5vh;
}
.events_per_month .month_container .month{
	position: relative;
	width: 90%;
	max-width: 180px;
	aspect-ratio: 1;
	border-radius: 1000px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #000;
	cursor: pointer;
	transition: all 350ms cubic-bezier(0.175, 0.885, 0.32, 1.275); /* easeOutBack */
	  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275); /* easeOutBack */
}
.events_per_month .month_container .month .name{
	font-size: clamp(1.2rem, 1vw, 1.5rem);
	line-height: clamp(1.2rem, 1vw, 1.5rem);
}

.events_per_month .month_container .month .month_events_container{
	position: absolute;
	left: 60%;
	top:-20%;
	padding: 2vh;
	background-color: #fff;
	color: #000;
	border-radius: 20px;
	pointer-events: none;
	opacity: 0;
	transform: scale(0);
	z-index: 100;
	transition: all 350ms cubic-bezier(0.165, 0.84, 0.44, 1); /* easeOutQuart */
	transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1); /* easeOutQuart */
}
.events_per_month .month_container .month:hover{
	transform: scale(1.1);
}
.events_per_month .month_container .month:hover .month_events_container{
	opacity: 1;
	transform: scale(1)
}

.events_per_month .month_container .month .month_events_container .month_event{
	white-space: nowrap;
}
.events_per_month .month_container .month .month_events_container .month_event p{
	font-size: 1rem;
}

.month_events_container .hover_name{
	margin-bottom: 5px;
	font-size: 1rem;
	line-height: 1rem;
}

@media(max-width:800px){
	.events_per_month .month_container{
		width: 33%;
	}
}

.value .content{
	flex-direction: column;
}