.faq-sec__tabs {
	padding: 25px 0;
	margin-bottom: 15px;
	background-color: #fff;
}
.faq-sec__tabs > * {
	display: block;
}
.faq-sec__tab {
	padding: 12px 25px;
	font-family: "Work Sans",sans-serif;
	font-size: 14px;
	line-height: 1.4em;
	font-style: normal;
	font-weight: 500;
	text-decoration: none;
	transition: .1s all;
}
.faq-sec__tab.active {
	background-color: var(--gold);
}
.faq-sec__tabs-title {
	display: block;
	padding: 0 25px 15px;
	font-family: "Outfit",sans-serif;
	font-size: 18px;
	font-weight: 700;
}
.faq-sec__tab-content:not(.active) {
	display: none;
}
.faq-sec__dropdown:not(:last-child) {
	margin-bottom: 15px;
}
.faq-sec__dropdown {
	position: relative;
	transition: .5s all;
	border-radius: 10px;
	overflow: hidden;
	background-color: #fff;
}
.faq-sec__dropdown.border:before {
	border-radius: 10px;
}
.faq-sec__dropdown.border:after {
	background-image: linear-gradient(180deg, transparent 32%, #fff 115%);
}
.faq-sec__dropdown.active {
	padding-bottom: 20px;
}
.faq-sec__dropdown-question {
	padding: 17px 65px 17px 17px;
	position: relative;
	font-family: "Work Sans",sans-serif;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.5em;
	cursor: pointer;
}
.faq-sec__dropdown-question::after {
	content: "";
	display: block;
	width: 25px;
	height: 25px;
	background-image: url("data:image/svg+xml,%3Csvg width='26' height='26' viewBox='0 0 26 26' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18.4561 13.5391H7.51855C7.0873 13.5391 6.7373 13.1891 6.7373 12.7578C6.7373 12.3266 7.0873 11.9766 7.51855 11.9766H18.4561C18.8873 11.9766 19.2373 12.3266 19.2373 12.7578C19.2373 13.1891 18.8873 13.5391 18.4561 13.5391Z' fill='%233A4681'/%3E%3Cpath d='M12.9873 19.0078C12.5561 19.0078 12.2061 18.6578 12.2061 18.2266V7.28906C12.2061 6.85781 12.5561 6.50781 12.9873 6.50781C13.4186 6.50781 13.7686 6.85781 13.7686 7.28906V18.2266C13.7686 18.6578 13.4186 19.0078 12.9873 19.0078Z' fill='%233A4681'/%3E%3C/svg%3E%0A");
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	border-radius: 50%;
	border: 2px solid #3A4681;
	position: absolute;
	top: calc(50% - 15px);
	right: 20px;
	transition: .5s all;
}
.faq-sec__dropdown.active .faq-sec__dropdown-question::after {
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 26 26' width='26' height='26' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18.9365 13.4141H7.99902C7.56777 13.4141 7.21777 13.0641 7.21777 12.6328C7.21777 12.2016 7.56777 11.8516 7.99902 11.8516H18.9365C19.3678 11.8516 19.7178 12.2016 19.7178 12.6328C19.7178 13.0641 19.3678 13.4141 18.9365 13.4141Z' fill='%233A4681'/%3E%3C/svg%3E%0A");
}
.faq-sec__dropdown-answer {
	position: absolute;
	padding: 0 40px 0 17px;
	font-size: 14px;
	line-height: 1.58em;
	opacity: 0;
	pointer-events: none;
	left: 0;
	top: 100%;
	transition: .5s all;
}
.faq-sec__dropdown-question,
.faq-sec__dropdown-answer {
	z-index: 3;
}
@media screen and (min-width:768px) {
	.faq-sec__tabs {
		margin-bottom: 0;
	}
}