.invest_section {
	margin: 0;
	width: 100%;
	border: none;
	outline: none;
	padding: 24px 0 96px;
	overflow: hidden;
	background-color: var(--cor1);
	transition: all 0.2s ease;
}

.invest_section_inner {
	margin: 0;
	padding: 0;
	width: 100%;
	border: none;
	outline: none;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	transition: all 0.2s ease;
}

.invest_section_title {
	margin: 0;
	padding: 0;
	width: 100%;
	border: none;
	outline: none;
	transition: all 0.2s ease;
}

.invest_section_title p {
	margin: 0;
	padding: 0;
	max-width: 340px;
	border: none;
	outline: none;
	text-align: left;
	color: var(--cor17);
	word-break: break-word;
	transition: all 0.2s ease;
	font: 700 40px/48px 'NewKansas', sans-serif;
	font-variation-settings: 'wght' 700;
}

.invest_section_content {
	margin: 0;
	padding: 0;
	width: 100%;
	border: none;
	outline: none;
	display: flex;
	flex-wrap: nowrap;
	position: relative;
	align-items: flex-start;
	justify-content: flex-start;
	transition: all 0.2s ease;
}

.invest_section_image {
	margin: 180px 0 0;
	padding: 0;
	width: 55%;
	border: none;
	outline: none;
	display: flex;
	z-index: 1;
	overflow: hidden;
	position: relative;
	align-items: center;
	justify-content: center;
	transition: all 0.2s ease;
}

.invest_section_image img {
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
	border: none;
	outline: none;
	display: block;
	aspect-ratio: 5/4;
	object-fit: cover;
	object-position: center center;
	transition: opacity 0.2s ease;
}


.invest_section_items {
	margin: 0 0 0 -72px;
	padding: 0;
	width: 55%;
	border: none;
	outline: none;
	display: flex;
	z-index: 2;
	flex-direction: column;
	align-items: flex-start;
	background-color: var(--cor1);
	justify-content: flex-start;
	transition: all 0.2s ease;
}


.invest_section_item {
	gap: 0;
	margin: 0;
	padding: 0;
	width: 100%;
	min-height: 180px;
	border: none;
	outline: none;
	display: flex;
	cursor: pointer;
	position: relative;
	align-items: stretch;
	background-color: var(--cor1);
	border-bottom: 1px solid rgba(0, 0, 0, 0.15);
	justify-content: flex-start;
	transition: all 0.2s ease;
}

.invest_section_item_stripe {
	margin: 0;
	padding: 0;
	width: 16px;
	height: auto;
	border: none;
	outline: none;
	display: flex;
	flex: 0 0 16px;
	overflow: hidden;
	align-items: center;
	justify-content: flex-start;
	transition: all 0.2s ease;
}

.invest_section_item_stripe svg {
	margin: 0;
	padding: 0;
	width: 72px;
	height: 100%;
	border: none;
	outline: none;
	display: block;
	overflow: hidden;
	flex: 0 0 72px;
	box-sizing: content-box;
	transition: all 0.2s ease;
}

.invest_section_item:nth-child(1) .invest_section_item_stripe svg {
	background-color: var(--cor17);
}

.invest_section_item:nth-child(2) .invest_section_item_stripe svg {
	background-color: var(--cor11);
}

.invest_section_item:nth-child(3) .invest_section_item_stripe svg {
	background-color: var(--cor13);
}

.invest_section_item_content {
	gap: 8px;
	margin: 0;
	padding: 0 24px 0 32px;
	border: none;
	outline: none;
	display: flex;
	flex: 1;
	min-width: 0;
	text-decoration: none;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	transition: all 0.2s ease;
}


.invest_section_item_title {
	margin: 0;
	padding: 0;
	width: 100%;
	border: none;
	outline: none;
	max-width: 454px;
	text-align: left;
	color: var(--cor27);
	word-break: break-word;
	transition: all 0.2s ease;
	font: 700 28px/36px 'Jost', sans-serif;
}


.invest_section_item_description {
	margin: 0;
	padding: 0;
	width: 100%;
	border: none;
	outline: none;
	text-align: left;
	color: var(--cor29);
	word-break: break-word;
	letter-spacing: -0.01em;
	transition: all 0.2s ease;
	font: 400 18px/26px 'NewKansas', sans-serif;
	font-variation-settings: 'wght' 400, 'opsz' 18;
}


.invest_section_item_arrow {
	margin: 0;
	padding: 0;
	width: 60px;
	height: 60px;
	border: 1px solid var(--cor27);
	outline: none;
	display: flex;
	flex: 0 0 60px;
	align-self: center;
	color: var(--cor27);
	border-radius: 50%;
	text-decoration: none;
	align-items: center;
	justify-content: center;
	background-color: transparent;
	transition: all 0.2s ease;
}

.invest_section_item_arrow span {
	margin: 0;
	padding: 0;
	display: block;
	font: 400 28px/36px 'DMSans', sans-serif;
	transition: all 0.2s ease;
}



.invest_section_item.active .invest_section_item_stripe {
	width: 72px;
	flex-basis: 72px;
}

.invest_section_item:nth-child(1).active .invest_section_item_arrow {
	color: var(--cor1);
	border-color: var(--cor17);
	background-color: var(--cor17);
}



.invest_section_item:nth-child(2).active .invest_section_item_arrow {
	color: var(--cor1);
	border-color: var(--cor11);
	background-color: var(--cor11);
}



.invest_section_item:nth-child(3).active .invest_section_item_arrow {
	color: var(--cor1);
	border-color: var(--cor13);
	background-color: var(--cor13);
}



@media (hover: hover) {
	.invest_section_item:hover .invest_section_item_stripe {
		width: 72px;
		flex-basis: 72px;
	}

	.invest_section_item:nth-child(1):hover .invest_section_item_arrow {
		color: var(--cor1);
		border-color: var(--cor17);
		background-color: var(--cor17);
	}

	.invest_section_item:nth-child(2):hover .invest_section_item_arrow {
		color: var(--cor1);
		border-color: var(--cor11);
		background-color: var(--cor11);
	}

	.invest_section_item:nth-child(3):hover .invest_section_item_arrow {
		color: var(--cor1);
		border-color: var(--cor13);
		background-color: var(--cor13);
	}
}


@media screen and (max-width: 983px) {
	.invest_section_title p {
		font: 700 36px/44px 'NewKansas', sans-serif;
		font-variation-settings: 'wght' 700;
	}

	.invest_section_image {
		width: 56%;
		margin-top: 150px;
	}

	.invest_section_items {
		width: 58%;
		margin-left: -60px;
	}

	.invest_section_item {
		min-height: 150px;
	}

	.invest_section_item_stripe {
		height: auto;
	}

	.invest_section_item_stripe svg {
		width: 60px;
		height: 100%;
		flex-basis: 60px;
	}

	.invest_section_item.active .invest_section_item_stripe {
		width: 60px;
		flex-basis: 60px;
	}

	.invest_section_item_title {
		font: 700 22px/30px 'Jost', sans-serif;
	}

	.invest_section_item_description {
		font: 400 15px/23px 'NewKansas', sans-serif;
		font-variation-settings: 'wght' 400, 'opsz' 15;
	}

	.invest_section_item_arrow {
		width: 52px;
		height: 52px;
		flex-basis: 52px;
	}
}


@media screen and (max-width: 768px) {
	.invest_section {
		padding: 64px 0;
	}

	.invest_section_title p {
		margin: 0 auto;
		max-width: 340px;
		text-align: center;
		font: 700 32px/40px 'NewKansas', sans-serif;
		font-variation-settings: 'wght' 700;
	}

	.invest_section_content {
		gap: 32px;
		margin-top: 32px;
		flex-direction: column;
	}

	.invest_section_image {
		margin: 0;
		width: 100%;
	}

	.invest_section_image img {
		aspect-ratio: 16/10;
	}

	.invest_section_items {
		margin: 0;
		width: 100%;
	}

	.invest_section_item {
		min-height: 120px;
	}

	.invest_section_item_stripe {
		width: 10px;
		height: auto;
		flex-basis: 10px;
	}

	.invest_section_item_stripe svg {
		width: 48px;
		height: 100%;
		flex-basis: 48px;
	}

	.invest_section_item.active .invest_section_item_stripe {
		width: 48px;
		flex-basis: 48px;
	}

	.invest_section_item_content {
		padding: 0 16px 0 20px;
	}

	.invest_section_item_title {
		font: 700 19px/27px 'Jost', sans-serif;
	}

	.invest_section_item_description {
		font: 400 15px/23px 'NewKansas', sans-serif;
		font-variation-settings: 'wght' 400, 'opsz' 15;
	}

	.invest_section_item_arrow {
		width: 46px;
		height: 46px;
		flex-basis: 46px;
	}

	.invest_section_item_arrow span {
		font: 400 22px/30px 'DMSans', sans-serif;
	}
}


@media screen and (max-width: 420px) {
	.invest_section_item {
		min-height: 110px;
	}

	.invest_section_item_stripe {
		height: auto;
	}

	.invest_section_item_stripe svg {
		width: 44px;
		height: 100%;
		flex-basis: 44px;
	}

	.invest_section_item.active .invest_section_item_stripe {
		width: 44px;
		flex-basis: 44px;
	}

	.invest_section_item_title {
		font: 700 17px/25px 'Jost', sans-serif;
	}

	.invest_section_item_description {
		font: 400 14px/22px 'NewKansas', sans-serif;
		font-variation-settings: 'wght' 400, 'opsz' 14;
	}

	.invest_section_item_arrow {
		width: 42px;
		height: 42px;
		flex-basis: 42px;
	}
}
