/* FAQ */
.faq {
  margin-top: 32px;
  margin-bottom: 56px;
}
@media screen and (min-width: 768px) {
  .faq {
    margin-top: 96px;
    margin-bottom: 128px;
  }
}
.faq .container {
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media screen and (min-width: 1281px) {
  .faq .container {
    gap: 99px;
  }
}
@media screen and (min-width: 1281px) {
  .faq .container {
    padding: 0 80px;
  }
}
.faq .container-choice {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .faq .container-choice {
    flex-direction: row;
    justify-content: space-between;
  }
}
.faq .container-choice .choice-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .faq .container-choice .choice-item {
    max-width: 384px;
    width: 100%;
    flex-direction: column;
  }
}
.faq .container-choice .choice-item img {
  height: 133px;
  width: 120px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (min-width: 768px) {
  .faq .container-choice .choice-item img {
    height: 250px;
    width: 225px;
  }
}
.faq .container-choice .choice-item h3 {
  font-size: 1.25rem;
  font-style: italic;
  font-weight: 600;
  line-height: 140%;
  color: var(--sarcelle);
  width: 100%;
  transition: color 0.5s ease;
}
@media screen and (min-width: 768px) {
  .faq .container-choice .choice-item h3 {
    text-align: center;
  }
}
.faq .container-choice .choice-item p {
  display: none;
}
@media screen and (min-width: 768px) {
  .faq .container-choice .choice-item p {
    display: block;
    text-align: center;
  }
}
.faq .container-choice .choice-item button {
  max-width: 42px;
  width: 100%;
  height: 42px;
  border: 1px solid var(--sarcelle);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: border 0.5s ease;
}
.faq .container-choice .choice-item button::before {
  content: "";
  display: block;
  mask: url(../images/icons/icon-redirection.svg) no-repeat;
  -webkit-mask: url(../images/icons/icon-redirection.svg) no-repeat;
  mask-size: contain;
  -webkit-mask-size: contain;
  background-color: var(--sarcelle);
  width: 16px;
  height: 16px;
  z-index: 1;
  transition: background-color 0.5s ease;
}
.faq .container-choice .choice-item button::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: var(--sarcelleLight);
  width: 100%;
  height: 0;
  transition: height 0.5s ease, background-color 0.5s ease;
}
.faq .container-choice .choice-item:hover h3 {
  color: var(--electricBlue);
}
.faq .container-choice .choice-item:hover button {
  border: 1px solid var(--electricBlue);
}
.faq .container-choice .choice-item:hover button::before {
  background-color: var(--white);
}
.faq .container-choice .choice-item:hover button::after {
  background-color: var(--electricBlue);
  height: 100%;
}
.faq .container-choice .choice-item.active h3 {
  color: var(--electricBlue);
}
.faq .container-choice .choice-item.active button {
  border: 1px solid var(--electricBlue);
}
.faq .container-choice .choice-item.active button::before {
  background-color: var(--white);
}
.faq .container-choice .choice-item.active button::after {
  background-color: var(--electricBlue);
  height: 100%;
}
.faq .container-faq {
  width: 100%;
}
.faq .container-faq .faq-item {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media screen and (min-width: 1025px) {
  .faq .container-faq .faq-item {
    /* flex-direction: row;
      justify-content: space-between; */
  }
}
@media screen and (min-width: 1025px) and (min-width: 1025px) {
  .faq .container-faq .faq-item {
    display: grid;
    grid-template-columns: minmax(200px, 373px) minmax(500px, 811px);
    justify-content: space-between;
  }
}
.faq .container-faq .faq-item .faq-item-title {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.faq .container-faq .faq-item .faq-item-title h2 {
  color: var(--electricBlue);
  font-size: 1.5rem;
}
@media screen and (min-width: 1025px) {
  .faq .container-faq .faq-item .faq-item-title h2 {
    font-size: 2rem;
  }
}
.faq .container-faq .faq-item .faq-item-title h2 strong {
  font-size: 2rem;
}
@media screen and (min-width: 1025px) {
  .faq .container-faq .faq-item .faq-item-title h2 strong {
    font-size: 2.5rem;
  }
}
.faq .container-faq .faq-item .faq-item-title p {
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 500;
  line-height: 170%;
}
.faq .container-faq .faq-item .faq-item-content {
  display: flex;
  flex-direction: column;
}
.faq .container-faq .faq-item .faq-item-content .item-content {
  display: none;
  flex-direction: column;
  padding: 32px 0;
  border-bottom: 1px solid var(--greyLight);
  /* @media screen and (min-width: 1025px) {
        padding: 0;
    } */
}
.faq .container-faq .faq-item .faq-item-content .item-content.active {
  display: flex;
}
.faq .container-faq .faq-item .faq-item-content .item-content .question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  cursor: pointer;
}
.faq .container-faq .faq-item .faq-item-content .item-content .question p {
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  color: var(--greyDark);
}
@media screen and (min-width: 1025px) {
  .faq .container-faq .faq-item .faq-item-content .item-content .question p {
    font-size: 18px;
  }
}
.faq .container-faq .faq-item .faq-item-content .item-content .question button {
  max-width: 42px;
  width: 100%;
  height: 42px;
  border: 1px solid var(--electricBlue);
  background-color: var(--electricBlue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: border 0.5s ease;
}
.faq
  .container-faq
  .faq-item
  .faq-item-content
  .item-content
  .question
  button::before {
  content: "";
  display: block;
  mask: url(../images/icons/add.svg) no-repeat;
  -webkit-mask: url(../images/icons/add.svg) no-repeat;
  mask-size: contain;
  -webkit-mask-size: contain;
  background-color: var(--white);
  width: 16px;
  height: 16px;
  z-index: 1;
  opacity: 1;
  transition: background-color 0.5s ease, opacity 0.5s ease;
}
.faq
  .container-faq
  .faq-item
  .faq-item-content
  .item-content
  .question
  button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  mask: url(../images/icons/minus.svg) no-repeat;
  -webkit-mask: url(../images/icons/minus.svg) no-repeat;
  mask-size: contain;
  -webkit-mask-size: contain;
  background-color: var(--electricBlue);
  width: 16px;
  height: 16px;
  z-index: 1;
  opacity: 0;
  transition: background-color 0.5s ease, opacity 0.5s ease;
}
.faq
  .container-faq
  .faq-item
  .faq-item-content
  .item-content
  .question.active
  p {
  color: var(--black);
}
.faq
  .container-faq
  .faq-item
  .faq-item-content
  .item-content
  .question.active
  button {
  background-color: transparent;
  transition: background-color 0.3s ease;
}
.faq
  .container-faq
  .faq-item
  .faq-item-content
  .item-content
  .question.active
  button::before {
  opacity: 0;
}
.faq
  .container-faq
  .faq-item
  .faq-item-content
  .item-content
  .question.active
  button:after {
  opacity: 1;
}
.faq .container-faq .faq-item .faq-item-content .item-content .reponse {
  margin-top: 20px;
  display: none;
  flex-direction: column;
  gap: 20px;
}
.faq .container-faq .faq-item .faq-item-content .container-pagination {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 40px;
  margin-bottom: 40px;
}
.faq .container-faq .faq-item .faq-item-content .container-pagination .prev,
.faq .container-faq .faq-item .faq-item-content .container-pagination .next {
  border: 1px solid var(--sarcelle);
  height: 42px;
  width: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.faq
  .container-faq
  .faq-item
  .faq-item-content
  .container-pagination
  .prev::before,
.faq
  .container-faq
  .faq-item
  .faq-item-content
  .container-pagination
  .next::before {
  content: "";
  display: block;
  background-color: var(--sarcelle);
  width: 16px;
  height: 16px;
  z-index: 1;
}
.faq
  .container-faq
  .faq-item
  .faq-item-content
  .container-pagination
  .prev::after,
.faq
  .container-faq
  .faq-item
  .faq-item-content
  .container-pagination
  .next::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 0%;
  background-color: var(--sarcelleLight);
  transition: height 0.3s ease-in-out;
  z-index: 0;
}
.faq
  .container-faq
  .faq-item
  .faq-item-content
  .container-pagination
  .prev:hover::after,
.faq
  .container-faq
  .faq-item
  .faq-item-content
  .container-pagination
  .next:hover::after {
  height: 100%;
}
.faq
  .container-faq
  .faq-item
  .faq-item-content
  .container-pagination
  .prev.disabled,
.faq
  .container-faq
  .faq-item
  .faq-item-content
  .container-pagination
  .next.disabled {
  opacity: 0.3;
  pointer-events: none;
}
.faq
  .container-faq
  .faq-item
  .faq-item-content
  .container-pagination
  .prev::before {
  mask: url(../images/icons/arrow-left.svg) no-repeat;
  -webkit-mask: url(../images/icons/arrow-left.svg) no-repeat;
  mask-size: contain;
  -webkit-mask-size: contain;
}
.faq
  .container-faq
  .faq-item
  .faq-item-content
  .container-pagination
  .next::before {
  mask: url(../images/icons/arrow-right.svg) no-repeat;
  -webkit-mask: url(../images/icons/arrow-right.svg) no-repeat;
  mask-size: contain;
  -webkit-mask-size: contain;
}
.faq
  .container-faq
  .faq-item
  .faq-item-content
  .container-pagination
  .container-number {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0 24px;
  border: 1px solid var(--sarcelle);
  border-radius: 150px;
  position: relative;
}
.faq
  .container-faq
  .faq-item
  .faq-item-content
  .container-pagination
  .container-number
  .number {
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  color: var(--sarcelle);
  cursor: pointer;
}
.faq
  .container-faq
  .faq-item
  .faq-item-content
  .container-pagination
  .container-number
  .number.display {
  display: none;
}
.faq
  .container-faq
  .faq-item
  .faq-item-content
  .container-pagination
  .container-number
  .number.wait {
  pointer-events: none;
}
.faq
  .container-faq
  .faq-item
  .faq-item-content
  .container-pagination
  .container-number
  .number:hover {
  font-style: italic;
  font-weight: 700;
  color: var(--electricBlue);
  transition: color 0.3s ease;
}
.faq
  .container-faq
  .faq-item
  .faq-item-content
  .container-pagination
  .container-number
  .active {
  font-size: 1rem;
  font-style: italic;
  font-weight: 700;
  line-height: 120%;
  color: var(--electricBlue);
  position: relative;
}
.faq
  .container-faq
  .faq-item
  .faq-item-content
  .container-pagination
  .container-number
  .active::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -17px;
  transform: translate(-50%, 0);
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background-color: var(--white);
  transition: background-color 0.3s ease;
}
.faq
  .container-faq
  .faq-item
  .faq-item-content
  .container-pagination
  .container-number
  .active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -15px;
  transform: translate(-50%, 0);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--electricBlue);
  transition: background-color 0.3s ease;
}
.faq .container-faq .faq-item .faq-item-content .nous-contacter {
  padding: 16px;
  background: url(../images/bg-fond.png), #fde6da;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}
@media screen and (min-width: 1025px) {
  .faq .container-faq .faq-item .faq-item-content .nous-contacter {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 16px 32px;
  }
}
.faq .container-faq .faq-item .faq-item-content .nous-contacter h3 {
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
  color: var(--brown);
  z-index: 1;
}
@media screen and (min-width: 1025px) {
  .faq .container-faq .faq-item .faq-item-content .nous-contacter h3 {
    max-width: 357px;
    width: 100%;
    font-size: 1.5rem;
  }
}
.faq .container-faq .faq-item .faq-item-content .nous-contacter::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  mask: url(../images/shape.svg) no-repeat;
  -webkit-mask: url(../images/shape.svg) no-repeat;
  mask-size: contain;
  -webkit-mask-size: contain;
  background-color: #fff;
  opacity: 0.3;
  width: 100%;
  height: 100%;
}
.faq
  .container-faq
  .faq-item
  .faq-item-content
  .nous-contacter
  .link-container
  button {
  border-color: var(--electricBlue);
  color: var(--electricBlue);
}
.faq
  .container-faq
  .faq-item
  .faq-item-content
  .nous-contacter
  .link-container
  button::before {
  background-color: var(--electricBlue);
}
.faq
  .container-faq
  .faq-item
  .faq-item-content
  .nous-contacter
  .link-container
  button::after {
  background-color: var(--blueLight);
}

/* END FAQ */
