.faqs{
	width:100%;
	padding:150px 100px;
	background-color: #fff;
	position:relative;
	overflow:hidden;
}

.faqs::before {
    content: "";
    width: 95%;
    height: 100%;
    position: absolute;
    z-index: 0;
    bottom: -10%;
    left: -10%;
    -webkit-clip-path: polygon(50% 0, 0% 100%, 100% 100%);
    clip-path: polygon(50% 0, 0% 100%, 100% 100%);
    background-color: rgba(228, 228, 228, 0.1);
}

.faqs::after{
	content: "";
	width: 95%;
	height: 100%;
	position: absolute;
	z-index: 0;
	bottom: -25%;
	left: -35%;
	-webkit-clip-path: polygon(50% 0, 0% 100%, 100% 100%);
	clip-path: polygon(50% 0, 0% 100%, 100% 100%);
	background-color: rgba(228, 228, 228, 0.15);
}

.faqs h2{
	color: #4e67a9;
	font-weight: bold;
	font-size: 3.5em;
	text-shadow: 3px 3px 0px #66bdc7;
	margin-bottom: 35px;
	text-align: center;
	position:relative;
	z-index:1;
}

.faqs ul{
	width:100%;
	list-style:none;
	position:relative;
	z-index:1;
}

.faqs ul a{
	color: #4e67a9;
	font-weight: bold;
	font-size: 2em;
	margin-top: 50px;
}

.faqs ul a:hover,
.faqs ul a:focus{color: #66bdc7;}

.faqs ul div{
	font-size: 1.2em;
	color: #4e67a9;
}

.faqs .uk-accordion-title::before{background-size: 50%;}
