.tabs {
	width: 100%;
	height: inherit;
	border: none;
	margin: 0 auto;
	z-index: 4 !important;
	position: relative;
	background: transparent;
}
.tabs > input.tab-selector {
	position: absolute;
	opacity: 0;
	margin: 0;
	padding: 0;
}
.tabs-labels > label.tab:hover {
	color: #fd264f;
}
.tabs-labels {
	display:flex;
}
.tabs-labels > label {
	width: 25%;
	transition: all 0.3s;
	text-align: center;
	border: none;
	color: #fff;
	padding: 30px;
	vertical-align: center;
	justify-content: flex-start;
	background: #333;
	text-transform: uppercase;
	font-weight: 300;
	font-size: 36px !important;
	background: transparent;
	cursor: pointer;
	box-shadow: 0px 1px 0px 0px rgba(253,38,79,1);
}
#tab-1:checked ~ .tabs-labels > #label-1,
#tab-2:checked ~ .tabs-labels > #label-2,
#tab-3:checked ~ .tabs-labels > #label-3,
#tab-4:checked ~ .tabs-labels > #label-4,
#tab-5:checked ~ .tabs-labels > #label-5 {
	box-shadow: 0px 4px 0px 0px rgba(253,38,79,1);
}
#tab-1:checked ~ .tabs-wrapper > #content-1,
#tab-2:checked ~ .tabs-wrapper > #content-2,
#tab-3:checked ~ .tabs-wrapper > #content-3,
#tab-4:checked ~ .tabs-wrapper > #content-4,
#tab-5:checked ~ .tabs-wrapper > #content-5 {	
	opacity: 1;
	visibility: visible;
}
.tabs-wrapper {
	margin-top: 4px;
	background: transparent;
}
.tabs-wrapper .tab-content {
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s;
	position: absolute;
	padding: 10px 20px;
	width: 100%;
	height: 70vh;
	overflow: auto;	
}
.tabs-wrapper p {
	margin: 10px 15px 10px 0;
	letter-spacing: 0.75px;
	font-size: 14pt;
	font-style: normal;
	color: #f0f2fc;
	line-height: 30px;
	margin-top: 10pt;
	font-family: "freight-display-pro";
	font-weight: 300 !important;
}
h2.tab-title {
	color: #fff;
	text-transform: capitalize;
	font-size: 24px;
	letter-spacing: 0px;
	font-family: "Manrope" !important;
	font-weight: 800 !important;
}