@charset "utf-8";


.event_items_course
{
	margin-top: 68px;
}
.event_item_course
{
	margin-bottom: 56px;
}
.event_item_course:last-child
{
	margin-bottom: 0px;
}
.event_date_course
{
	width: 131px;
	height: 131px;
	border: solid 2px #ffb606;
	margin-bottom: 18px;
}
.event_date_course {
	display: flex;
	flex-direction: column;
	align-items: center;
	animation: pulse 3s infinite;
}

.event_date_course_off
{
	width: 131px;
	height: 131px;
	border: solid 2px #ffb606;
	margin-bottom: 18px;
}
.event_date_course_off {
	display: flex;
	flex-direction: column;
	align-items: center;
	/*animation: pulse 3s infinite;*/
}

@keyframes pulse {
	0% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.2);
	}
	100% {
		transform: scale(1);
	}
}
.event_day_course
{
	font-size: 48px;
	font-weight: 700;
	color: #ffb606;
	margin-bottom: 1px;
	line-height: 1;
}
.event_month_course
{
	font-size: 16px;
	font-weight: 700;
	color: #ffb606;
}
.event_name_course a
{
	font-size: 22px;
	font-weight: 500;
	color: #1a1a1a;
}
.event_name_course a:hover
{
	color: #ffb606;
}

.event_location_course
{
	font-size: 14px;
	font-weight: 500;
	color: #1a1a1a;
	margin-top: 2px;
}
.event_content_course p
{
	font-weight: 500;
	color: #a5a5a5;
	margin-top: 21px;
	margin-bottom: 13px;
}
.event_image_course
{

}
.event_image_course img
{
	width: 100%;
}

.aling_item_course
{
    display: flex; 
    justify-content: center;   
    align-items: center
}