:root {
  --color-rate: #ffecbc;
  --color-rate-black: #121212;
  --color-white: #ffffff;
  --color-available: #7bd137;
  --color-black: #000000;
  --color-black-light: #3e3c3c;
  --color-black-second-light: #333333;
  --color-blue-links: #0000ff;
  --color-blue-light: #6c84ff;
  --color-blue-light-hover: #5771f7;
  --color-gray: #636570;
  --color-gray-light: #fafbff;
  --color-first-linear: #3ad0fe; /*#6C84FF*/
  --color-second-linear: #78d143; /*#C3473D*/
  --color-peach: #e26c62;
  --color-gray-footer: #666666;
}
body {
  font-family: "Inter", sans-serif;
  font-size: 18px;
}
* {
  margin: 0;
  padding: 0;
}
.hide-mobile {
  display: block;
}
.hide-desktop {
  display: none;
}
/******************
HEADER
*******************/
.logo {
  padding-top: 2px;
}
.header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 12px 50px;
  object-fit: contain;
  box-shadow: 0 4px 5.7px 2px rgba(0, 0, 0, 0.35);
  background-color: var(--color-white);
}
.header-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  font-size: 1.1em;
  font-weight: 500;
}
.header-actions a {
  text-decoration: none;
  color: var(--color-rate-black);
}
.header-cta {
  border-radius: 9px;
  background-color: var(--color-blue-light);
  padding: 10px 15px;
  text-decoration: none;
  color: var(--color-white) !important;
}
.header-cta :hover {
  background-color: var(--color-blue-light-hover);
}
/******************
GRID CSS
*******************/
.container-grid {
  max-width: 1132px;
  margin: 0 auto;
}
.grid-title {
  font-size: 1.88em;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  color: var(--color-blue-light);
  margin-top: 125px;
  margin-bottom: 85px;
}
.grid-title-mobile {
  display: none;
}
.experts-container.flex-grid {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 20px;
}

.expert-card {
  box-sizing: border-box;
  margin: 0;
  border: 1px solid #ccc;
  text-align: center;
  padding: 0;
  /*flex-grow: 1;*/ /* Permet aux cartes de grandir pour remplir l'espace */
  width: 321px;
  box-shadow: 3px 6px 17px 0 rgba(0, 0, 0, 0.25);
  border-radius: 16px;
}
.expert-card-image {
  position: relative;
}

.expert-card-image img {
  width: 100%;
  height: auto;
  max-height: 230px;
  display: block;
  border-radius: 16px;
  object-fit: cover;
}
.expert-card-rate-star {
  width: 19px !important;
  height: 19px !important;
}

.expert-card-rate {
  position: absolute;
  top: 17.9px;
  left: 17.9px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--color-rate);
  border-radius: 35px;
  width: auto;
  flex-grow: 0;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 4.8px;
  padding: 3.6px 9.5px;
  border-radius: 35.7px;
  font-size: 1.11em;
  color: var(--color-rate-black);
  font-weight: 500;
}
.expert-card-name {
  position: absolute;
  bottom: 35px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--color-white);
  font-size: 1.11em;
  font-weight: 800;
  z-index: 2;
}
.expert-gradient {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), #000);
  height: 100px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
}
.expert-card-available {
  position: absolute;
  bottom: -12px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--color-white);
  font-size: 0.88em;
  font-weight: 600;
  line-height: 1.5;
  background-color: var(--color-available);
  letter-spacing: 0.8px;
  border-radius: 25px;
  border: 2px solid var(--color-white);
  width: 100px;
  margin: 0 auto;
  text-transform: uppercase;
  z-index: 3;
}
.expert-card-link {
  text-decoration: none;
  color: inherit;
}
.expert-card-details {
  padding-top: 25px;
}
.expert-card-details-readings {
  font-size: 1.11em;
  color: var(--color-black);
  padding-top: 20px;
  padding-bottom: 20px;
}
.expert-card-details-readings-number {
  font-weight: 600;
}
.expert-card-details-readings-read {
  color: var(--color-blue-links);
  font-size: 0.88em;
  display: block;
  padding-top: 10px;
}
.expert-card-details-description {
  color: var(--color-gray);
  font-size: 1em;
  line-height: 1.4;
  padding: 0 20px;
}
.expert-card-details-description span {
  color: var(--color-blue-light);
}
.expert-card-details-action {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  padding-top: 40px;
}
.expert-card-details-action-btn {
  background-color: var(--color-blue-light);
  color: var(--color-white);
  border-radius: 9.7px;
  padding: 16px;
  font-size: 0.94em;
  font-weight: 700;
  line-height: 1.5;
  width: 250px;
}
.expert-card-details-action-promo-price {
  display: flex;
  justify-content: space-between;
  width: 90%;
  padding: 25px 0;
}
.expert-card-details-action-promo {
  display: flex;
  justify-content: center;
  gap: 10px;
  align-items: center;
  background-color: var(--color-available);
  border-radius: 9.7px;
  padding: 5px;
  color: var(--color-white);
  width: 118px;
}
.promo-img {
  width: 27px;
  height: 27px;
}
.promo-text-big {
  font-size: 0.83em;
  font-weight: 700;
  line-height: 1.2;
}
.promo-text-small {
  font-size: 0.66em;
  font-weight: 500;
  line-height: 1.2;
}
.expert-card-details-action-price {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.price {
  font-size: 1.16em;
  font-weight: 700;
  line-height: 1.4;
}
.old-price {
  font-size: 0.88em;
  font-weight: 500;
  line-height: 1.4;
  text-decoration: line-through;
}
.experts-btn {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cta-show-more {
  margin-top: 85px;
  border: 0;
  width: 420.3px;
  height: 76.9px;
  padding: 0 28.3px;
  border-radius: 14.4px;
  background-color: var(--color-blue-light);
  color: var(--color-white);
  font-size: 1.4em;
  line-height: 1.5;
  cursor: pointer;
}
.cta-show-more:hover {
  background-color: var(--color-blue-light-hover);
}
/******************
HERO CSS
*******************/
.hero {
  background-color: var(--color-blue-light);
  background-image: url(https://marketing-kasamba.kassrv.com/content/kasamba/affiliates/alagar/best-online-psychics-2.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 135% center;
  height: 512px;
  position: relative;
}
.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  color: var(--color-white);
  padding-top: 93px;
}
.hero-h1 {
  font-size: 1.88em;
  font-weight: 500;
  line-height: 1.2;
}
.hero-h2 {
  font-size: 1.22em;
  font-weight: 700;
  /*line-height: 2.5;*/
  padding-top: 10px;
  padding-bottom: 45px;
}
.hero-cta-wrapper {
  margin: 25px 0;
}
.cta-hero {
  font-size: 1.11em;
  border-radius: 37px;
  background-color: var(--color-available);
  padding: 15px 105px;
  color: var(--color-white);
  text-decoration: none;
}
.hero-text-small {
  font-size: 0.77em;
  padding-top: 10px;
}
.mobile-promo {
  display: none;
}
.how-it-works {
  display: none;
}
.how-it-works-mobile {
  display: none;
}
.h5 {
  font-size: 1.38em;
  line-height: 1.5;
  font-weight: 600;
  color: var(--color-rate-black);
}
.steps {
  display: flex;
  align-items: center;
  padding: 16px 174px;
}
.steps-text {
  justify-content: space-between;
  align-items: flex-start;
  padding: 0 125px;
}

.item {
  display: flex;
  justify-content: center;
}
.items-text {
  min-width: 230px;
  color: var(--color-blue-light);
  font-size: 1em;
}

.circle {
  width: 69px;
  height: 69px;
  border-radius: 50%;
  background-color: var(--color-blue-light);
  color: var(--color-white);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--color-white);
  font-size: 1.66em;
  font-weight: 600;
}

.line {
  flex-grow: 1;
  height: 2px;
  background-color: var(--color-blue-light);
  margin: 0;
}

.container > :first-child ~ .line:first-of-type {
  display: none;
}

.container > :last-child ~ .line:last-of-type {
  display: none;
}

/******************
WHY BRAND CSS
*******************/

.why-brand {
  background-color: var(--color-gray-light);
  height: auto;
  padding: 85px 0 75px;
  margin: 75px 0;
}
.h4 {
  font-family: "Roboto", sans-serif;
  font-size: 2.22em;
  padding-bottom: 40px;
}
.why-brand-icons {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 70px;
}
.why-brand-icons-item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  text-align: center;
  gap: 10px;
}
.why-brand-cols {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 120px;
}
.why-brand-cols-30 {
  width: 30%;
}

.why-brand-cols-70 {
  width: 70%;
}

.why-brand-title {
  font-size: 1.33em;
  font-weight: 600;
  font-family: "Roboto", sans-serif;
  color: var(--color-black-second-light);
  padding: 15px 0;
}
.why-brand-description {
  font-family: "Roboto", sans-serif;
  font-size: 1em;
  font-weight: 300;
  font-family: "Roboto", sans-serif;
  color: var(--color-black-second-light);
}

/******************
CHOOSE A PSYCHIC
*******************/
.basic-text {
  font-size: 1em;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  color: var(--color-black);
  line-height: 1.5;
  padding-bottom: 20px;
}
.h6 {
  font-size: 1em;
  font-weight: 600;
  font-family: "Roboto", sans-serif;
  color: var(--color-black);
  padding-bottom: 25px;
}
.h6-padding-top {
  padding-top: 25px;
}
.ul-star {
  list-style-type: none;
  padding-left: 20px;
  padding-bottom: 20px;
}

.li-star {
  padding-left: 25px;
  background-image: url("https://marketing-kasamba.kassrv.com/content/kasamba/affiliates/alagar/star-2.svg");
  background-repeat: no-repeat;
  background-position: left center;
  margin-bottom: 10px;
}
.choose-a-psy-ul-img {
  width: 75%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
}
.choose-a-psy-img-paragraph {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 75px;
  padding: 50px 0;
}
.h6-desktop-hide {
  display: none;
}

.faq-section {
  padding: 20px 0;
  display: flex;
  gap: 0;
}

.faq-list {
  list-style: none;
  padding: 0;
  margin: 40px 0;
  width: 40%; /* Adjust width as needed */
  z-index: 2;
}

.faq-item {
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 15px;
  border: none;
  background-color: var(--color-white);
  text-align: left;
  cursor: pointer;
  border: 0.5px solid rgba(0, 0, 0, 0.05);
}

.question-content {
  display: flex;
  align-items: center;
  font-size: 14px;
}

.bullet {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #a8a8ff;
  margin-right: 10px;
}
.arrow {
  width: 24px;
  height: 24px;
  background-image: url(https://marketing-kasamba.kassrv.com/content/kasamba/affiliates/alagar/arrow-basic.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.faq-question.open .arrow {
  width: 24px;
  height: 24px;
  background-image: url(https://marketing-kasamba.kassrv.com/content/kasamba/affiliates/alagar/arrow-opened.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.faq-question.open .bullet {
  background-color: var(--color-blue-light);
}
.faq a {
  color: var(--color-blue-light);
}

.faq-answer {
  padding: 15px;
  background-color: var(--color-white);
  border-top: 1px solid #eee;
  display: none; /* Initially hidden */
}

.faq-expanded {
  width: 55%; /* Adjust width as needed */
  padding: 50px;
  border: 1px solid #eee;
  border-radius: 16px;
  background-color: var(--color-gray-light);
  margin-left: -60px;
  padding-left: 100px;
  z-index: 1;
}

.faq-expanded h3 {
  font-family: "Roboto", sans-serif;
  margin-top: 0;
  color: var(--color-black-second-light);
  font-size: 1em;
  line-height: 1.5;
  font-weight: 600;
}
.faq-expanded .first {
  margin-top: 40px;
}

.faq-expanded p {
  font-family: "Roboto", sans-serif;
  margin-top: 0;
  color: var(--color-black-second-light);
  font-size: 0.77em;
  line-height: 1.5;
  font-weight: 400;
}

.faq-question.open {
  background-color: var(--color-gray-light);
}
.faq .h4 {
  padding: 50px 0;
}
/******************
FOOTER
*******************/
footer {
  border-top: 1px solid #ccc;
  margin: 50px 0;
}
.footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  font-family: "Roboto", sans-serif;
  max-width: 950px;
}

.footer-width-30 {
  width: 30%;
}
.footer-width-20 {
  width: 20%;
}
.footer-colum {
  padding-top: 25px;
}
.first-column {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 25px;
}
.links-column {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 15px;
}
.footer-small-text {
  font-size: 0.83em;
  font-weight: 300;
  color: var(--color-gray-footer);
}
.social-icons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  width: 58%;
}
.footer-title {
  font-size: 0.83em;
  color: var(--color-gray-footer);
  font-weight: 600;
}
.footer-links {
  font-size: 0.94em;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
  flex-direction: column;
}
.footer-links a {
  color: var(--color-blue-light);
  text-decoration: none;
}
.app {
  display: flex;
  justify-content: flex-start;
  align-content: center;
  gap: 10px;
  padding-top: 15px;
}
.app img {
  width: 100%;
}
.app-text {
  font-size: 0.77em;
  line-height: 1.2;
}
.footer-copyright {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  font-size: 0.83em;
  color: var(--color-gray-footer);
  padding-top: 50px;
  line-height: 1.5;
}
.footer-copyright a {
  color: var(--color-blue-light);
  text-decoration: none;
}

/* Version Desktop (3 colonnes) */
@media (min-width: 992px) {
  .experts-container.flex-grid {
    justify-content: space-between;
    width: 100%;
    margin: 0 auto;
  }
  .how-it-works {
    position: absolute;
    bottom: -90px;
    left: 0;
    right: 0;
    text-align: center;
    background-color: var(--color-white);
    height: 172px;
    box-shadow: 3px 6px 17px 0 rgba(0, 0, 0, 0.25);
    padding: 30px 0;
    border-radius: 20px;
    display: block;
  }
}

@media (max-width: 2561px) and (min-width: 1859px) {
  .hero {
    background-position: 100% center;
  }
}

@media (max-width: 1280px) and (min-width: 992px) {
  .hero {
    background-position: 175% center;
  }
}

@media (max-width: 991px) and (min-width: 768px) {
  .hero-text {
    align-items: flex-start;
    padding-left: 0;
    height: 430px;
  }
  .hero-h1 {
    width: 80%;
  }
  .hero {
    background-image: url(https://marketing-kasamba.kassrv.com/content/kasamba/affiliates/alagar/best-online-psychics-mobile.png);
    background-position: right center;
  }
}

@media (max-width: 1770px) and (min-width: 991px) {
  .hero-h1 {
    font-size: 2.3em;
  }
  .experts-container.flex-grid {
    justify-content: center;
  }
}

/* Version Tablette (2 colonnes) */
@media (max-width: 991px) and (min-width: 768px) {
  .expert-card {
    width: calc(50% - 10px); /* 100% / 2 moins la marge totale */
  }
  .experts-container.flex-grid {
    justify-content: center;
  }
  .expert-card-image img {
    max-height: 280px;
  }
  .hero {
    height: 440px;
  }
}
@media (max-width: 1200px) {
  .container-grid {
    max-width: 1000px;
    margin: 0 auto;
  }
  .why-brand {
    padding: 25px 0;
    margin: 25px 0;
  }
  .why-brand-cols {
    flex-direction: column;
  }
  .why-brand-cols-30 {
    width: 100%;
    text-align: center;
  }
  .why-brand-cols-70 {
    width: 100%;
    text-align: center;
  }
  .why-brand-cols {
    gap: 0;
  }
  .why-brand-icons {
    justify-content: center;
    gap: 25px;
  }
  .choose-a-psy-ul-img {
    width: 100%;
    flex-direction: column-reverse;
  }
  .choose-a-psy-ul-img {
    gap: 15px;
  }
  .ul-star {
    text-align: left;
  }
  .h6 {
    font-size: 1.22em;
  }
  .choose-a-psy-img-paragraph {
    flex-direction: column;
  }
  .choose-a-psy-img-paragraph {
    padding: 0;
    gap: 15px;
  }
  .h6-mobile-hide {
    display: none;
  }
  .h6-desktop-hide {
    display: block;
    font-size: 0.88em;
    line-height: 1.2;
    font-weight: 500;
  }
  .li-star {
    background-position: left top 2px;
  }
}

@media (max-width: 991px) {
  .how-it-works {
    display: none;
  }
  .how-it-works-mobile {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 50px 0;
  }
  .h5 {
    color: var(--color-blue-light);
    font-size: 1.11em;
    padding-bottom: 25px;
  }
  .steps-mobile {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 15px;
  }
  .item-mobile {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 15px;
  }
  .items-text-mobile {
    min-width: 100%;
    color: var(--color-black-light);
    font-size: 1em;
    font-weight: 600;
    text-align: center;
  }
  .container-grid {
    max-width: 740px;
    margin: 0 auto;
  }
  .bullet {
    width: 16px;
    height: 16px;
  }
  .faq-list {
    width: 60%;
  }
  .faq-expanded {
    width: 40%;
  }
}

/* Version Mobile (1 colonne) */
@media (max-width: 767.98px) {
  .hide-mobile {
    display: none;
  }
  .hide-desktop {
    display: block;
  }
  .container-grid {
    max-width: 90%;
    text-align: center;
  }
  .expert-card {
    width: 300px;
    margin: 0 auto;
  }
  .expert-card-image img {
    max-height: 280px;
  }
  .grid-title {
    font-size: 1.11em;
    font-weight: 600;
    line-height: 1.3;
    text-align: center;
    color: var(--color-rate-black);
    margin: 20px 0;
  }
  .cta-show-more {
    margin-top: 25px;
    width: auto;
    height: auto;
    border: 1px solid var(--color-blue-light);
    padding: 15px 60px;
    border-radius: 50px;
    background-color: var(--color-white);
    color: var(--color-blue-light);
    font-size: 0.88em;

    cursor: pointer;
  }
  .grid-title-desktop {
    display: none;
  }
  .grid-title-mobile {
    display: block;
  }
  .hero {
    height: 240px;
    background-image: url(https://marketing-kasamba.kassrv.com/content/kasamba/affiliates/alagar/best-online-psychics-mobile.png);
    background-position: right center;
  }
  .hero-text {
    height: 100%;
    padding-left: 0;
    padding-top: 40px;
  }
  .hero-cta-wrapper {
    display: none;
  }
  .hero-h1 {
    font-size: 1.66em;
    width: 57%;
    text-align: left;
  }
  .hero-h2 {
    display: none;
  }
  .hero-text-small {
    font-size: 0.5em;
  }
  .mobile-promo {
    display: block;
  }
  .mobile-promo h2 {
    color: var(--color-white);
    font-size: 1.11em;
    font-weight: 600;
    font-style: italic;
    background: linear-gradient(
      to right,
      var(--color-first-linear) 0%,
      var(--color-second-linear) 77%
    );
    padding: 2px 5px;
    margin: 10px 0;
  }
  .mobile-promo-text {
    font-size: 0.88em;
    font-weight: 600;
    text-align: left;
  }
  .hero-text-small {
    padding-top: 10px;
  }

  .h4 {
    padding-bottom: 0;
    font-size: 1.1em;
    color: var(--color-blue-light);
  }
  .h4-mobile {
    padding-bottom: 15px;
  }
  .faq .h4 {
    padding: 0;
  }

  .why-brand-icons {
    justify-content: center;
    gap: 25px;
  }
  .faq-section {
    flex-direction: column;
  }
  .faq-list {
    width: 100%;
    margin: 0;
  }
  .faq-expanded {
    width: 88%;
    margin-left: 0;
    padding: 25px;
    display: none;
    margin-top: 50px;
  }
  .links-column,
  .last-column {
    display: none;
  }
  footer {
    border: 0;
    margin: 0;
  }
  .footer-width-30 {
    width: 100%;
  }
  .first-column {
    align-items: center;
  }
  .footer-copyright {
    margin-bottom: 50px;
  }
  .header {
    padding: 12px 10px;
  }
  .header-actions {
    display: none;
  }
}
@media only screen and (min-width: 428px) and (max-width: 499px) {
  .hero {
    height: 190px !important;
  }
}

@media (max-width: 500px) {
  .hero {
    height: 155px;
  }
  .hero-text {
    padding-top: 15px;
  }
  .expert-card-details-action-btn {
    width: 165px;
  }
  .why-brand-cols-30 img {
    width: 100%;
  }

  .hero-h1 {
    width: 75%;
  }
  /*.hero {
    background-position: 250% center;
  }*/
}

@media (max-width: 425px) {
  .hero-h1 {
    font-size: 1em;
  }
  .container-grid {
    max-width: 400px;
  }
  .mobile-promo h2 {
    font-size: 0.8em;
  }
  .mobile-promo-text {
    font-size: 0.66em;
  }
}
@media (max-width: 424px) {
  /*.hero {
    background-position: 200% center;
  }*/
  .hero-h1 {
    width: 65%;
    text-align: left;
  }
  .container-grid {
    max-width: 90%;
  }

  .faq-question {
    padding: 15px 5px;
  }
  .question-content {
    font-size: 10px;
  }
  .footer-copyright {
    font-size: 0.59em;
  }
}
@media (max-width: 375px) {
  .faq-expanded {
    width: 250px;
  }
}
