.events {
	margin: 0;
	width: 100%;
	border: none;
	outline: none;
	display: flex;
	padding: 76px 0;
	overflow: hidden;
	position: relative;
	align-items: center;
	justify-content: center;
}

.events_inner_div {
	gap: 64px;
	padding: 0;
	border: none;
	outline: none;
	display: flex;
	margin: 0 auto;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	width: clamp(0%, 100%, 700px);
}

.event {
	margin: 0;
	gap: 24px;
	padding: 0;
	width: 100%;
	border: none;
	outline: none;
	display: flex;
	align-items: flex-end;
	flex-direction: column;
	justify-content: flex-start;
}

.event_title {
	gap: 16px;
	margin: 0;
	padding: 0;
	width: 100%;
	border: none;
	outline: none;
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: flex-end;
}

.event_title p {
	margin: 0;
	padding: 0;
	border: none;
	outline: none;
	text-align: left;
	color: var(--cor1);
	white-space: nowrap;
	text-align: -webkit-left;
	transition: all 0.2s ease;
	font: normal 20px/26px Figtree-SemiBold;
}

.event_title div {
	margin: 0;
	padding: 0;
	outline: none;
	height: 0!important;
	line-height: 0!important;
	width: clamp(0%, 100%, 570px);
	border-bottom: 2px solid var(--cor1);
}

.event_info {
	margin: 0;
	gap: 32px;
	padding: 0;
	border: none;
	outline: none;
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: flex-start;
	width: clamp(0%, 100%, 570px);
}

.event_info_img {
	margin: 0;
	padding: 0;
	border: none;
	width: 200px;
	outline: none;
	height: 200px;
	overflow: hidden;
	position: relative;
	border-radius: 16px;
}

.event_info_img img {
	top: 50%;
	left: 50%;
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	transform: translate(-50%, -50%);
}

.event_info_data {
	gap: 8px;
	margin: 0;
	padding: 0;
	border: none;
	outline: none;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	width: calc(100% - 232px);
	justify-content: flex-start;
}

.event_info_data_title {
	margin: 0;
	padding: 0;
	width: 100%;
	border: none;
	outline: none;
	text-align: left;
	color: var(--cor1);
	word-break: break-word;
	text-align: -webkit-left;
	transition: all 0.2s ease;
	font: normal 32px/40px Calistoga-Regular;
}

.event_info_data_desc {
	margin: 0;
	padding: 0;
	width: 100%;
	border: none;
	outline: none;
	text-align: left;
	color: var(--cor17);
	word-break: break-word;
	text-align: -webkit-left;
	transition: all 0.2s ease;
	font: normal 18px/22px Figtree-Regular;
}

.event_info_data a {
	padding: 0;
	width: 100%;
	border: none;
	outline: none;
	text-align: left;
	color: var(--cor1);
	margin: 24px 0 0 0;
	word-break: break-word;
	text-align: -webkit-left;
	transition: all 0.2s ease;
	font: normal 16px/26px Figtree-SemiBold;
}

.event_info_data a svg {
	margin: 0;
	padding: 0;
	width: auto;
	border: none;
	height: 13px;
	outline: none;
	fill: var(--cor1);
	box-sizing: content-box;
	transition: all 0.2s ease;
}

@media screen and (max-width: 700px) {
	.event_title p {
		font: normal 18px/26px Figtree-SemiBold;
	}
	.event_info_data_title {
		font: normal 26px/32px Calistoga-Regular;
	}
	.event_info_data_desc {
		font: normal 16px/20px Figtree-Regular;
	}
	.event_info_data a {
		font: normal 14px/18px Figtree-SemiBold;
	}
	.event_info_data a {
		margin: 16px 0 0 0;
	}
}

@media screen and (max-width: 500px) {
	.events_inner_div {
		gap: 48px;
	}
	.event_info {
		gap: 16px;
		flex-wrap: wrap;
		flex-direction: column;
		align-items: flex-start;
	}
	.event_info_img {
		width: 100%;
	}
	.event_info_data {
		width: 100%;
	}
}

@media screen and (max-width: 200px) {
	.event_title {
		justify-content: flex-start;
	}
	.event_title p {
		white-space: pre-wrap;
		word-break: break-word;
	}
	.event_title div {
		display: none;
	}
}