.faq-wrapp-main {
	display: flex;
}
/*** Lefty Side ***/
.fix-left-side .faq-left-side {
	position: sticky;
	top:150px;
	max-width: 280px;
	height: 100%;
	overflow-y: auto;
	bottom: 0;
}
.faq-left-side {
	flex: 0 0 280px;
	max-width: 280px;
	width: 100%;
}
.faq-left-side ul {
	margin: 0;
	padding:0;
	background: #fff;
}
.faq-left-side ul li {
	display: block;
	list-style: none;
}
.faq-left-side ul li a {
	display: block;
	text-decoration: none;
	color: #7d7c7c;
	margin: 0;
	border-left:2px solid #ccc;
	padding:10px 20px;
	font-size:14px;
}
.faq-left-side ul li a:hover,
.faq-left-side ul li a:focus,
.faq-left-side ul li a.active{
	display: block;
	text-decoration: none;
	color:#6aba45;
	border-color:#6aba45;
}

/** Main Body **/
.faq-wrapp-box .faq-wrapp-body{
  overflow: hidden;
  display: none;
}
.open.faq-wrapp-box .faq-wrapp-body{
	display: block;
}
.faq-body-wrapp {
	width: 100%;
	padding-left:30px;
}
.faq-wrapp-heading h2 {
	font-size: 40px;
	font-weight: 700;
	text-transform: uppercase;
	display: block;
	text-align: center;
	padding: 50px 0;
}
.faq-wrapp-main {
	display: flex;
	padding:0 0 50px 20px;
}
.faq-wrapp-body {
	padding: 25px 0 0 0;
}
.faq-wrapp-box {
	border-bottom: 1px solid #ccc;
	padding: 0 0 10px 0;
	margin: 0 0 20px 0;
}
.faq-wrapp-box p {
	font-size: 16px;
	line-height: 1.9;
}
.faq-wrapp-box h2 {
	font-size: 20px;
	font-weight: 600;
	position: relative;
	cursor: pointer;
	margin: 0;
}
.fix-left-side .faq-wrapp .faq-wrapp-box {
	padding-top: 80px;
	margin-bottom: -50px;
}
.faq-wrapp-box h2::after {
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: "\f078";
	position: absolute;
	right: 0;
	font-size: 14px;
	top: 9px;
	transform: rotate(180deg);
	transition: ease all 0.5s;
}
.faq-wrapp-box.open h2::after {
	transform: rotate(0deg);
}
@media (max-width:991px){
	.faq-left-side {
		display:none
	}
	.faq-body-wrapp {
		padding-left:0;
	}
	.faq-wrapp-heading{
		margin-top:90px;
	}
	.faq-wrapp-main{
		padding-left:0;
	}
}