.faq-module {
	border-radius: 15px;
	/* border: 2px solid #021E47;
	background: #021E47; */
	border: 2px solid #F7F3E5;
	background: #F7F3E5;
	padding: 25px;
    max-width: 900px;
    margin: 20px auto;
    position: relative;
}

/* .faq-module .faq-group-title {
	color: white;
} */

.faq-module .qr-item {
	border-radius: 15px;
	background: #F7F3E5;
	margin-bottom: 14px;
}

.faq-module .question {
	color: #021E47;
	font-family: "IBM Plex Sans";
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	letter-spacing: 0.08px;
	padding: 24px 40px;
}

.faq-module .response {
	padding: 0 40px 10px 40px;
    text-align: justify;
}

/* .faq-module .group-items {
    margin-top: 30px;
} */

/* Style the buttons that are used to open and close the accordion panel */
.faq-module .group-accordion, .faq-module .question {
  cursor: pointer;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  transition: 0.4s;
}

/* .faq-module .group-accordion h4 {
    margin: 0 15px;
} */

/* Style the accordion panel. Note: hidden by default */
/* .faq-module .group-items, .response {
  display: none;
  overflow: hidden;
} */

/* .faq-module .group-accordion h4::after {
    content: "﹀";
    position: absolute;
    right: 80px;
    font-weight: bold;
    font-size: 35px;
}

.faq-module .question::after {
    content: "﹀";
    position: absolute;
    right: 70px;
    font-size: 25px;
    font-weight: 400;
    margin-top: -6px;
}

.faq-module .group-accordion.active h4::after,
.faq-module .question.active::after {
	content: "︿";
}

.faq-module .show {
	display: block;
}
.faq-module .hidden {
	display: none;
} */



.faq-module .card {
    background: none;
    margin-bottom: 0;
}

.faq-module .card-header {
    background: none;
    border: none;
    padding: 30px 0;
}
.faq-module > .card > .card-header {
    padding: 0;
}
#classic-child .faq-module .faq-module-title .btn-link {
	font-weight: 500;
    font-size: 24px;
}
#classic-child .faq-module .card-header h5 .btn-link {
    text-wrap: auto;
	color: #555555;
	font-weight: 500;
}
#classic-child .faq-module .card-header .btn-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0 10px 0 0;
    color: #021E47;
    font-size: inherit;
    transition: all 0.3s ease-out;
}
#classic-child .faq-module .card-header .btn-link:hover,
#classic-child .faq-module .card-header .btn-link:focus {
    text-decoration: none;
    color: #C3A073;
    border: none;
}
.faq-module .card-header .btn-link:hover::after,
.faq-module .card-header .btn-link:focus::after {
    border: none;
}
.faq-module .card-header .btn-link::after {
	content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url('../assets/fleche.svg');
    background-size: contain;
    background-repeat: no-repeat;
    transform: translate3d(0, 5px, 0);
    transition: transform 0.3s ease-out;
}
.faq-module .card-header .btn-link[aria-expanded="true"]::after {
	transform: translate3d(0, -5px, 0) rotate(-180deg);
}

.faq-module .group-items .card + .card {
    border-top: 1px solid rgba(0,0,0,0.2);
}
.faq-module .group-items .card-body {
    padding-bottom: 30px;
}
#classic-child .faq-module .group-items .btn-link[aria-expanded="true"] {
    color: #C3A073;
}


@media (max-width: 980px) {

}