.es__title {
	display: flex;
	flex-direction: column;
	gap: var(--spacer_8);
	align-items: center;
	margin-bottom: var(--spacer_40);
	text-align: center;
}

.es__title--highlighted {
	background-color: var(--tertiary_color);
	width: fit-content;
	color: var(--white_color);
	padding: 0 var(--spacer_16);
}

.es__title--colored {
	color: var(--tertiary_color);
}

.es__info-card {
	display: flex;
	flex-flow: wrap;
	gap: var(--gutter_width_px);
	margin-bottom: var(--spacer_48);
	justify-content: center;
}

.es__info-card-item {
	clip-path: polygon(0 2%, 100% 0, 100% 98%, 0% 100%);
	padding: var(--spacer_40) var(--spacer_20);
	background-color: var(--white_color);
	min-width: 25rem;
}

.es__info-card-item-text {
	text-align: center;
	font-size: 2rem;
	font-weight: var(--font_weight_700);
	line-height: 1.3;
  color: var(--quaternary_color);
	margin-bottom: 0;
}

.es__content {
	display: flex;
	gap: var(--spacer_20);
}

.es__content-schedule,
.es__content-image-container {
	width: calc((100% / 2) - (var(--spacer_20) / 2 ) );
  position:relative;
}

.es__content-schedule-list {
	display: flex;
	flex-direction: column;
	gap: var(--spacer_20);
	position: relative;
}

.es__content-schedule-list:before {
	content: '';
	position: absolute;
	width: .1rem;
	height: 100%;
	top: 0;
	left: 35%;
	transform: translateX(-50%);
	background-color: var(--white_color);
	opacity: 0.3;
}

.es__content-schedule-list-item {
	width: 100%;
	display: flex;
	justify-content: space-between;
  cursor: pointer;
}

.es__content-schedule-list-item-time {
	color: var(--tertiary_color);
	font-weight: var(--font_weight_700);
	line-height: 1.4;
	font-size: 2rem;
	width: 35%;
}

.es__content-schedule-list-item-activity {
	color: var(--white_color);
	font-weight: var(--font_weight_500);
	line-height: 1.4;
	font-size: 2rem;
	margin-bottom; 0;
	width: 65%;
	padding-left: var(--spacer_40);
}

.es__content-image {
  position: absolute;
  top:0;
  left:0;
	width: 100%;
	height: 100%;
	max-width: unset;
	object-fit: cover;
}

@media (max-width: 1024px) {
	.es__content-schedule-list:before {
		left: 40%;
	}
	.es__content-schedule-list-item-time {
	  width: 40%;	
	}
	.es__content-schedule-list-item-activity {
    width: 60%;
	}
}

@media (max-width: 900px) {
	.es__content-image-container {
		display: none;
	}
	.es__content-schedule {
		width: 100%;
		display: flex;
		justify-content: center;
	}
	.es__content-schedule-list {
		width: 100%
	}
}

@media (max-width: 600px) {
	.es__content-schedule-list:before {
	  display: none;
	}
	.es__content-schedule-list {
		gap: var(--spacer_12);
	}
	.es__content-schedule-list-item {
		flex-direction: column;
		align-items: center;
	}
	.es__content-schedule-list-item-time {
		width: auto;
	}
	.es__content-schedule-list-item-activity {
		width: auto;
		padding: 0;
	}
}