 .scdp-tab {
 	background-color: #F4F4F4;
 	padding: 40px 0 0;
 }

 .scdp-tab .header-title {
 	text-align: center;
 	margin-bottom: 60px;
 }

 .scdp-tab .resp-tabs-list {
 	display: flex;
 	justify-content: center;
 	margin: 0 auto;
	padding: 0;
 	list-style: none;
 }

 .scdp-tab .resp-tabs-container {
 	background-color: #FFF;
 }

 .scdp-tab .resp-tabs-list li {
 	display: flex;
 	align-items: center;
 	flex-direction: column;
 	padding: 0 15px 0px;
 	max-width: 200px;
	flex: 1;
	min-height: 214px;
 	text-align: center;
 	cursor: pointer;
 	position: relative;
 }

 .scdp-tab .resp-tabs-list .icon {
 	filter: grayscale(100%) contrast(0%);
	min-height: 107px;
	display: flex;
	align-items: center;
	justify-content: center;
 }
 .scdp-tab .resp-tabs-list .icon img{
	max-width: 100%;
 }

 .scdp-tab .resp-tabs-list .title {
 	font-size: 22px;
 	font-weight: 500;
 	margin-top: 10px;
 	color: #989899;
	line-height: 1.2;
 }

 .scdp-tab .resp-tabs-list li::after {
 	content: "";
 	position: absolute;
 	top: 60px;
 	right: 0;
 	bottom: 60px;
 	border-right: 2px solid #98989a;
 }
 .scdp-tab .resp-tabs-list li:last-child::after {
	content: none;
 }
 .scdp-tab .resp-tabs-list li::before {
 	content: "";
 	border: 30px solid transparent;
 	border-bottom-color: #FFF;
 	position: absolute;
 	bottom: 0;
 	left: 50%;
 	margin-left: -30px;
 	opacity: 0;
 }

 .scdp-tab .resp-tab-item.resp-tab-active .icon {
 	filter: grayscale(0%) contrast(100%);
 }

 .scdp-tab .resp-tab-item.resp-tab-active .title {
 	color: #5D3E9C;
 }

 .scdp-tab .resp-tab-item.resp-tab-active::before{
	opacity: 1;
 }

 .scdp-tab .resp_container {
 	display: none;
 }
 .scdp-tab .resp_container > .container{
	display: flex;
	padding: 80px 0;
 }
 .scdp-tab .resp_container .description{
	font-size: 22px;
	color: #383838;
	font-weight: 500;
	flex-grow: 1;
 }
 .scdp-tab .resp_container .description h3{
	color: #5D3E9C;
	font-size: 30px;
	font-weight: 600;
	margin: 0 0 20px;
} 

.scdp-tab .resp_container .description a,
.scdp-tab .resp_container .description a:hover{
	color: #5D3E9C;
}

 .scdp-tab .resp_container .pic{
	width: 40%;
    flex: 0 0 40%;
	padding-left: 40px;
 }
 .scdp-tab .resp_container .pic img{
	max-width: 100%;
	border-radius: 0 60px 0 60px;
 }

 .scdp-tab h2.resp-accordion {
 	display: none;
 }

 @media (max-width: 1199px) {
	.scdp-tab .resp-tabs-list .title{
		font-size: 16px;
	}
}

@media (max-width: 991px) {
	.scdp-tab .resp-tabs-container{
		margin-bottom: 30px;
	}
	.scdp-tab .resp-tabs-list{
		display: none;
	}
	.scdp-tab h2.resp-accordion {
		display: block;
		cursor: pointer;
		font-size: 20px;
		font-weight: 600;
		margin: 0 30px;
		padding: 15px 0;
		color: #000033;
		border-bottom: 1px solid #bebebe;
		position: relative;
	}
	.scdp-tab h2.resp-accordion::after{
		content: "";
		position: absolute;
		width: 10px;
		height: 10px;
		right: 10px;
		top: 50%;
		transform: rotate(45deg);
		border-right: 1px solid #bebebe;
		border-bottom: 1px solid #bebebe;
		margin-top: -8px;
	}
	.scdp-tab h2.resp-accordion .icon img{
		width: 32px;
		margin-right: 10px;
	}
	.scdp-tab .resp_container > .container{
		display: block;
		max-width: none;
		padding: 30px;
	}
	.scdp-tab .resp_container .pic{
		padding-left: 0;
		width: auto;
		max-width: 500px;
	}
	.scdp-tab h2.resp-accordion.resp-tab-active::after{
		transform: rotate(225deg);
		margin-top: 0;
	}


}

.more-arrow-right{
	display: inline-block;
	position: relative;
	padding-right: 35px;
}
 .more-arrow-right::after{
	content: "";
	width: 12px;
	height: 12px;
	border-bottom: 2px solid currentColor;
	border-right: 2px solid currentColor;
	display: inline-block;
	transform: rotate(-45deg);
	margin-left: 30px;
	position: absolute;
	top: 50%;
	right: 0;
	margin-top: -6px;
 }
 .more-arrow-right::before{
	content: "";
	position: absolute;
	right: 1px;
	top: 50%;
	margin-top: -1px;
	border-bottom: 2px solid currentColor;
	width: 20px;
 }
