Tab Section with Arrows?

I am looking to recreate this Tab Section, any ideas on how to implement this? Any help is greatly appreciate!


Here is my site Read-Only: LINK
(how to share your site Read-Only link)

Was able to get this to work with custom CSS thanks to the help of a fellow Webflow-er on FB.

 <style>

.w-tab-link:after, .w-tab-link:before {
	left: 100%;
	top: 50%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
  z-index:10;
}

.w-tab-link:after {
	border-color: rgba(136, 183, 213, 0);
	border-left-color: #ccc;
	border-width: 25px;
	margin-top: -25px;
}

.w-tab-link.w--current:after {
	border-left-color: #febc11 !important;
}

.w-tab-link:before {
	border-color: rgba(255, 255, 255, 0);
	border-left-color: #FFFFFF;
	border-width: 30px;
	margin-top: -30px;
}
</style>