.faq-section {
	padding: 165px 0 180px;
}
.faq-section .top-white-shape {
	top: -84px;
}
.faq-section .horizontal-line {
	position: absolute;
	display: flex;
	left: -61px;
	top: 7px;
	width: 1px;
	height: 54px;
	background-color: #9b9dbd;
}
.faq-section .horizontal-line:before {
	position: absolute;
	content: '';
	display: flex;
	width: 50vw;
	right: 100%;
	height: 1px;
	background-color: #9b9dbd;
	top: 50%;
	transform: translateY(-50%);
}
.accordion-container {
	z-index: 2;
	position: relative;
}
.faq-section .content-img img {
	border-radius: 20px;
}

.accordion-item {
	background-color: var(--sk-white);
	border: 1px solid rgb(228, 230, 239);
	box-shadow: 0px 0px 43px 0px rgba(163, 166, 181, 0.13);
	border-radius: 10px;
}
.accordion-item + .accordion-item {
	margin-top: 15px;
}
.accordion-title {
	position: relative;
	display: flex;
	padding: 15px 45px 15px 23px;
	color: var(--sk-primary);
	font-weight: 600;
	font-size: 16px;
	line-height: 1.5;
	cursor: pointer;
}
.accordion-title span {
	position: absolute;
	right: 0;
	top: 0;
	width: 50px;
	height: 100%;
}
.accordion-title span:after {
	position: absolute;
	content: '';
	display: flex;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 15px;
	height: 15px;
	background: url(../images/right-arrow-blue.png) no-repeat center;
	background-size: contain;
}
.accordion-title.active span:after {
	background: url(../images/down-arrow-green.png) no-repeat center;
	background-size: contain;
}
.accordion-title:before {
	position: absolute;
	content: '';
	display: flex;
	left: -1px;
	top: 50%;
	transform: translateY(-50%);
	width: 5px;
	height: 24px;
	background-color: var(--sk-secondary);
	border-radius: 10px;
}
.accordion-content {
	position: relative;
	display: none;
	padding: 0 40px 30px 23px;
	font-size: 16px;
}
.accordion-content *:last-child {
	margin-bottom: 0;
}
.content-img img {
	width: 100%;
}
.left-graphics {
	position: absolute;
	left: 0;
	top: -160px;
	width: 441px;
}
@media (max-width: 1550px) {
	
}
@media (max-width: 1199px) {
	.faq-section .top-white-shape {
	    top: -50px;
	    height: 110px;
	}
	.faq-section {
	    padding: 100px 0 120px;
	}
	.left-graphics {
	    top: -98px;
	    width: 263px;
	}
}
@media (max-width: 991px) {
	.accordion-container {
		margin-right: 0;
	}
}
@media (max-width: 767px) {
	.faq-section {
        padding: 60px 0 70px;
    }
	.faq-section .top-white-shape {
        top: -22px;
        height: 51px;
    }
    .accordion-title {
	    padding: 15px 40px 15px 20px;
	    font-size: 16px;
	}
	.accordion-title span {
	    width: 30px;
	}
	.accordion-content {
	    padding: 0 25px 25px 20px;
	}
	.accordion-item + .accordion-item {
	    margin-top: 16px;
	}
	.left-graphics {
        top: -42px;
        width: 122px;
    }
}