.arrow_block {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
}

.arrow-text {
	display: flex;
	align-items: flex-end;
	justify-content: center;
	width: 100%;
	text-align: center;
	padding: 40px 30px 10px;
	font-family: 'Manrope';
	font-weight: 400;
	font-size: 22px;
	color: #444;
	background-color: #fff;
	border-radius: 10px 10px 0 0;
}

.arrow {
	width: 100%;
	height: 100px;
	background: #fff;
	clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
}

@media (max-width: 640px) {
	
	.arrow-text{
		align-items: center;
		padding: 30px 30px 10px;
		border-radius: 0;
	}

}