section#home-faq {
	font-family: var(--default-font);
	margin: 60px var(--section-margin) 0 var(--section-margin);

	position: relative;
}

.home-shapes {
	pointer-events: none;
}

.home-faq-shape_1 {
	max-width: 700px;
	z-index: -5;
	position: absolute;
	left: -5%;
	top: -30px;
	opacity: 1;
}

html[dir='ltr'] .home-faq-shape_1 {
	left: unset;
	right: -5%;
}

@media only screen and (max-width: 1385px) {
	.home-shapes {
		opacity: 0.4;
	}
}


@media only screen and (max-width: 969px) {
	.home-shapes {
		display: none;
	}
}

.home-faq__desc-container {
	margin-top: 80px;
	align-self: center;
}

section#home-faq h2 {
	font-family: var(--default-font);
	font-size: 24px;
	font-weight: 700;
	line-height: 40px;
	letter-spacing: 0;
	color: #08416E;
	padding: 0 0 0 0;
	border-radius: 0 0 0 0;
	max-width: 680px;
	margin-bottom: 20px;
}

section#home-faq h2::before {
	content: "";
	display: inline-block;
	margin-left: 15px;
	background-color: var(--btn-special-color);
	width: 10px;
	aspect-ratio: 1 / 1;
	border-radius: 20%;
	transform: rotateZ(45deg);
}

html[dir='ltr'] section#home-faq h2::before {
	margin-left: 0;
	margin-right: 15px;
	margin-bottom: 5px;
}

section#home-faq .nav-tabs {
	border-bottom: none;
}

section#home-faq .nav-link {
	border: none;
	border-radius: 30px;
	background-color: #e7f3f9;
	color: #448fbb;
}

section#home-faq .nav-item {
	margin-left: 10px;
	margin-bottom: 10px;
}

section#home-faq .nav-link.active {
	background-color: var(--btn-primary-color);
	color: white;
}

.home-faq__desc-container details {
	position: relative;
	display: inline-block;
	cursor: pointer;
	transition: 0.15s background linear;
	width: 40em;
	max-width: 80vw;
	background-color: white;
	box-shadow: 0px 0px 24px 1px rgba(121, 160, 190, 0.24);
	border-radius: 45px 45px 45px 45px;
	margin-bottom: 2em;
}

.home-faq__desc-container details > pre {
	font-family: var(--default-font);
	padding: 15px;
	border-radius: 4px;
	color: white;
	font-size: 16px;
	font-weight: 300;
	line-height: 36px;
	direction: var(--default-direction);
	unicode-bidi: embed;
	margin: 0 0 1em 0;
	text-align: justify;
	white-space: pre-line;
}

html[dir='ltr'] .home-faq__desc-container details > pre {
	direction: ltr;
}

.home-faq__desc-container details[open] > summary {
	color: white;
}

.home-faq__desc-container details[open] > summary:before {
	background-color: white;
}

.home-faq__desc-container details > summary {
	padding: 1em;
	outline: none;
	list-style: none;
	display: flex;
	justify-content: space-between;

	font-family: var(--default-font);
	font-size: 20px;
	font-weight: 500;
	letter-spacing: 0;
	border-radius: 0 0 0 0;
}

.home-faq__desc-container details > summary::marker {
	display: none;
}

.home-faq__desc-container details > summary::-webkit-details-marker {
	display: none;
}

.home-faq__desc-container details > summary > span.before {
	margin: auto auto auto 15px;
}


.home-faq__desc-container details > summary > span.before::before {
	content: "";
	display: inline-block;
	/*margin-left: 15px;*/
	background-color: var(--btn-primary-color);
	width: 10px;
	aspect-ratio: 1 / 1;
	border-radius: 20%;
	transform: rotateZ(45deg);
}

.home-faq__desc-container details > summary > span.after {
	width: 20px;
	height: 20px;
	margin: auto;
}

.home-faq__desc-container details > summary > p {
	line-height: 2em;
	text-align: justify;
	margin: auto auto auto 30px;
}

.home-faq__desc-container details > summary > span.after > img {
	filter: brightness(0) invert(25%) sepia(74%) saturate(2437%) hue-rotate(189deg) brightness(93%) contrast(89%);
	float: left;
	font-size: 1em;
	margin: 0;
	padding: 0;
	text-align: center;
	width: 20px;
	height: 20px;
}

.home-faq__desc-container details > summary > span.after > img:nth-of-type(1) {
	display: block;
}

.home-faq__desc-container details > summary > span.after > img:nth-of-type(2) {
	display: none;
}

.home-faq__desc-container details[open] > summary > span.before::before {
	filter: brightness(0) invert(1);
}

.home-faq__desc-container details[open] > summary > span.after {
	filter: brightness(0) invert(1);
	top: 11%;
}

.home-faq__desc-container details[open] > summary > span.after > img:nth-of-type(1) {
	display: none;
}

.home-faq__desc-container details[open] > summary > span.after > img:nth-of-type(2) {
	display: block;
}

.home-faq__desc-container details[open] {
	background: linear-gradient(45deg, #08416E, #0E71BB);
}

.home-faq__desc-container details[open] > pre {
	-webkit-animation: animateDown 0.2s linear forwards;
	animation: animateDown 0.2s linear forwards;
}

@keyframes animateDown {
	0% {
		opacity: 0;
		transform: translatey(-15px);
	}
	100% {
		opacity: 1;
		transform: translatey(0);
	}
}

@media only screen and (max-width: 600px) {
	section#home-faq h2 {
		font-size: 20px;
	}

	.home-faq__desc-container details > summary {
		font-size: 14px;
	}

	.home-faq__desc-container details > pre {
		font-size: 14px;
	}
}
