h1 {
  font-size: 32px;
  font-weight: 500;
  color: #3b4e6a;
  margin-top: 40px;
  margin-bottom: 0;
}

h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 24px;
  color: #24a18b;
  margin-top: 0;
}

section {
  padding: 30px 0 25px 0;
}

.member {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding: 50px 50px 100px 50px;
  background-color: #f3f6ff;
  margin-bottom: 30px;
}

.member-main {
  display: flex;
}

.member-img img {
  width: 230px;
  height: 230px;
  object-fit: cover;
}

.member-info {
  max-width: 440px;
  padding-left: 35px;
}

.member-info h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 36px;
  font-weight: 500;
  color: #4b4c4c;
  margin: 0;
}

.member-info .subtitle {
  font-size: 16px;
  font-weight: 600;
  margin-top: 10px;
  margin-bottom: 40px;
  color: #afafaf;
}

.member-info p {
  margin-bottom: 35px;
}

.member .mobile {
  display: none;
  flex-basis: 100%;
}

.member .mobile a {
  display: inline-block;
  margin-left: 10px;
}

.member a.mail {
  display: inline-flex;
  align-items: center;
  color: #4097e1;
}

.member .mobile .doctolib-btn {
  border: 0.7px solid #4097e1;
  border-radius: 30px;
  padding: 5px 10px 3px 10px;
}

.member .mobile .doctolib-btn img {
  width: 70px;
  height: auto;
}

.member .mail img {
  margin-left: 6px;
}

.member aside {
  text-align: right;
}

.member aside p {
  font-weight: 600;
  line-height: 28px;
}

.member aside a {
  margin-top: 15px;
}

.member aside .doctolib-btn img {
  width: 80px;
  height: auto;
}

#elise {
  margin-top: 100px;
}

@media all and (max-width: 1400px) {
  .member {
    padding: 30px 30px 75px 30px;
  }

  .member-img img {
    width: 200px;
    height: 200px;
  }

  .member-info h3 {
    font-size: 30px;
  }
}

@media all and (max-width: 1100px) {
  main {
    padding: 0 30px;
  }
}

@media all and (max-width: 992px) {
  aside {
    display: none;
  }
}

@media all and (max-width: 768px) {
  h1 {
    text-align: center;
  }

  .member-img img {
    width: 150px;
    height: 150px;
  }

  .member-info h3 {
    font-size: 26px;
  }
}

@media all and (max-width: 576px) {
  main {
    padding: 0;
  }

  h2 {
    margin-left: 30px;
  }

  .member {
    padding: 30px 30px 50px 30px;
    flex-wrap: wrap;
  }

  .member-main {
    margin-bottom: 5px;
  }

  .member-img img {
    width: 100px;
    height: 100px;
  }

  .member-info {
    padding-left: 20px;
  }

  .member-info h3 {
    font-size: 22px;
  }

  .member-info .subtitle {
    margin-bottom: 0;
  }

  .member-info .desktop {
    display: none;
  }

  .member .mobile {
    display: block;
  }
}

/**
** Accordion
**/

.accordion {
  position: absolute;
  bottom: -30px;
  left: 280px;
  width: 66%;
  height: 60px;
  background-color: #fafafa;
  filter: drop-shadow(0px 4px 4px rgba(125, 124, 124, 0.1));
  text-align: left;
  font-size: 26px;
  font-weight: 500;
  color: #3b4e6a;
  padding: 15px 35px;
  cursor: pointer;
}

.accordion .fa-solid {
  color: #3b4e6a;
  margin-right: 24px;
}

.accordion.active {
  background-color: #d9deeb;
}

.panel {
  max-height: 0;
  display: flex;
  justify-content: space-between;
  overflow: hidden;
  transition: all 250ms ease-in-out;
  margin-bottom: 100px;
}

.panel h5 {
  font-weight: 600;
  font-size: 16px;
}

.panel ul {
  padding-left: 0;
  max-width: 330px;
}

.panel li {
  padding: 8px 0;
}

.panel.active {
  padding-bottom: 40px;
  border-bottom: 1px solid #d9deeb;
}

@media all and (max-width: 992px) {
  .accordion {
    width: 60%;
  }
}

@media all and (max-width: 768px) {
  .accordion {
    width: 88%;
    left: 30px;
    font-size: 20px;
  }

  .panel {
    flex-direction: column;
    padding-left: 30px;
  }
}

@media all and (max-width: 576px) {
  .accordion {
    width: 80%;
    height: 50px;
  }

  .panel {
    margin-bottom: 70px;
  }
}

.read_more-container {
  display: flex;
  flex-direction: column;
}

.read-more-btn {
  color: #4097e1;
  cursor: pointer;
}

.read-more-text {
  display: none;
}

.read-more-text--show {
  display: inline;
}
