:root {
  --Primary-Green-700: #235A50;
  --Primary-Green-300: #33897B;
  --Secondary-Light-Green-100: #F1F9F8;
  --Secondary-Light-Green-900: #BCE1DD;
  --Neutral-Grey-100: #F7F8F8;
  --Neutral-Grey-300: #E3E7E8;
  --Neutral-Grey-900: #5E6B6E;
  --Neutral-Dark-700: #0D1433;
  --Neutral-Dark-900: #080F30;
}

.author-container {
  padding: 60px 0 190px;
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 40px;
}
.author-container .summary {
  width: 50%;
  max-width: 536px;
  background-color: #F1F9F8;
  padding: 0 0 64px;
}
.author-container .summary .avatar {
  padding: 20px 20px 0;
  background: #33897B;
  position: relative;
}
.author-container .summary .avatar img {
  max-width: 233px;
  height: auto;
  filter: grayscale(100%);
  display: block;
  margin: 0 auto;
}
.author-container .summary .avatar .fade-out {
  background: linear-gradient(180deg, transparent 20%, rgba(241, 249, 248, 0.2) 40%, rgba(241, 249, 248, 0.7) 80%, rgb(241, 249, 248) 100%);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.author-container .summary .title {
  padding: 20px 20px 0;
  text-align: center;
}
.author-container .summary .title h1 {
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  margin: 0;
  line-height: 21.84px;
}
.author-container .summary .title h6 {
  margin: 16px 0 0;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  color: #5E6B6E;
  line-height: 21.84px;
  letter-spacing: 0.24px;
}
.author-container .summary .title .buttons {
  margin-top: 40px;
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
}
.author-container .summary .title .buttons a {
  display: inline-block;
  border-radius: 49.897px;
  border: 0.96px solid #235A50;
  padding: 16px 62px 16px 32px;
  color: #235A50;
  text-align: center;
  font-weight: 600;
  line-height: 31px;
  background-image: url("../../../asset/css/img/icons/circle-arrow-up-right.svg");
  background-repeat: no-repeat;
  background-position: calc(100% - 32px) center;
  background-size: 24px;
  font-size: 16px;
}
.author-container .summary .meta {
  padding: 48px 0 0;
  margin: 48px 40px 0;
  border-top: 1px dashed #E3E7E8;
  display: flex;
  justify-content: center;
  gap: 40px;
}
.author-container .summary .meta li {
  list-style: none;
}
.author-container .summary .meta li h4 {
  margin: 0;
  color: #0D1433;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 31px;
}
.author-container .summary .meta li p {
  margin: 8px 0 0;
  color: #5E6B6E;
  text-align: center;
  font-style: normal;
  font-weight: 300;
  line-height: 31px;
}
.author-container .author-content {
  width: 50%;
}
.author-container .author-content ul, .author-container .author-content ol {
  padding-left: 40px;
  margin: 1em 0;
}
.author-container .author-content ul {
  list-style-type: disc;
}
.author-container .author-content ol {
  list-style-type: decimal;
}
.author-container .author-content h2 {
  margin: 0 0 16px;
  color: #0D1433;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 31px;
}
.author-container .author-content .bio {
  color: #5E6B6E;
  font-weight: 400;
  line-height: 32px;
}
.author-container .author-content .bio p {
  margin: 16px 0;
}
.author-container .author-content .latest-blogs {
  margin: 64px 0 0;
}

@media screen and (max-width: 1023px) {
  .author-container {
    padding: 40px 0 80px;
    display: block;
  }
  .author-container .summary {
    width: 100%;
    margin: 0 auto 40px;
  }
  .author-container .author-content {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .author-container .summary {
    padding: 0 0 40px;
  }
  .author-container .summary .avatar {
    padding: 10px 20px 0;
  }
  .author-container .summary .avatar img {
    max-height: 117px;
  }
  .author-container .summary .title h1 {
    font-size: 24px;
    line-height: 21.84px;
  }
  .author-container .summary .title h6 {
    font-size: 12px;
    font-weight: 300;
    line-height: 21.84px;
    margin-top: 8px;
  }
  .author-container .summary .title .buttons {
    margin-top: 24px;
  }
  .author-container .summary .title .buttons a {
    padding: 8px 44px 8px 24px;
    font-size: 14px;
    font-weight: 600;
    line-height: 31px;
    background-size: 12px;
    background-position: calc(100% - 24px) center;
  }
  .author-container .summary .meta {
    padding: 32px 0 0;
    margin: 32px 40px 0;
    gap: 24px;
  }
  .author-container .summary .meta li h4 {
    font-size: 14px;
  }
  .author-container .summary .meta li p {
    font-size: 12px;
    margin-top: 0;
  }
  .author-container .author-content h2 {
    font-size: 16px;
  }
  .author-container .author-content .bio {
    font-size: 12px;
    line-height: 24px;
  }
  .author-container .author-content .latest-blogs {
    margin: 24px 0 0;
  }
}
.about-page {
  padding-bottom: 88px;
}
.about-page section {
  margin-top: 88px;
}
.about-page section:first-child {
  margin-top: 0;
}
.about-page .about__title.about__title {
  color: var(--Primary-Green-700, #235A50);
  text-align: center;
  font-family: "Playfair", serif;
  font-size: 64px;
  font-style: normal;
  font-weight: 900;
  line-height: 83px;
  margin: 48px 0 0;
}
.about-page .about__subtitle.about__subtitle {
  margin: 24px 0 0;
  color: var(--Neutral-Grey-900, #5E6B6E);
  text-align: center;
  font-family: Poppins;
  font-size: 32px;
  font-style: normal;
  font-weight: 300;
  line-height: 170%;
  /* 54.4px */
  max-width: 718px;
  margin: 0 auto;
}
.about-page h2 {
  color: var(--Neutral-Dark-900, #080F30);
  font-family: Poppins;
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 170%;
  /* 54.4px */
}
.about-page p.subtitle {
  color: var(--Neutral-Grey-900, #5E6B6E);
  font-family: Poppins;
  font-size: 24px;
  font-style: normal;
  font-weight: 300;
  line-height: 170%;
  /* 40.8px */
}
.about-page .our-story .story-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.about-page .our-story .story-cards .story-card {
  background: #FFFFFF;
  border-radius: 6px;
  border: 1px solid #EBEFFA;
  padding: 0 0 28px;
}
.about-page .our-story .story-cards .story-card .story-icon {
  margin-bottom: 29px;
  height: 168px;
}
.about-page .our-story .story-cards .story-card .story-icon img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.about-page .our-story .story-cards .story-card .description {
  padding: 0 18px;
}
.about-page .our-story .story-cards .story-card p, .about-page .our-story .story-cards .story-card li {
  color: var(--Neutral-Grey-700, #919EA1);
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 170%;
}
.about-page .our-story .story-cards .story-card ul {
  margin: 0;
  list-style: disc;
}
.about-page .founders {
  padding: 72px 32px 56px;
  border-radius: 5px;
  background-color: var(--Primary-Green-700, #235A50);
  background-image: url("../../../asset/css/img/quotation-mark-yellow.svg");
  background-repeat: no-repeat;
  background-position: 10px 0;
  background-size: 80px;
}
.about-page .founders .founders-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
.about-page .founders .founders-grid .founder-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}
.about-page .founders .founders-grid .founder-card:nth-child(1) {
  padding-right: 48px;
  border-right: 1px dashed var(--Secondary-Light-Green-100, #F1F9F8);
}
.about-page .founders .founders-grid .founder-card:nth-child(2) {
  padding-left: 48px;
}
.about-page .founders .founders-grid .founder-card .founder-description {
  color: var(--Secondary-Light-Green-100, #F1F9F8);
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 300;
  line-height: 170%;
  /* 40.8px */
}
.about-page .founders .founders-grid .founder-card .founder-meta {
  display: flex;
  align-items: start;
  gap: 16px;
}
.about-page .founders .founders-grid .founder-card .founder-meta .founder-avatar {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  overflow: hidden;
}
.about-page .founders .founders-grid .founder-card .founder-meta .founder-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-page .founders .founders-grid .founder-card .founder-meta .founder-info .founder-name {
  color: #FFF;
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 170%;
  /* 40.8px */
}
.about-page .founders .founders-grid .founder-card .founder-meta .founder-info .founder-position {
  color: var(--Neutral-Grey-300, #E3E7E8);
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 300;
  line-height: 170%;
  /* 40.8px */
}
.about-page .core-values .values-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.about-page .core-values .values-grid .value-card {
  background: #FFFFFF;
  border-radius: 6px;
  border: 1px solid #EBEFFA;
  padding: 24px;
}
.about-page .core-values .values-grid .value-card .value-icon {
  margin-bottom: 16px;
  height: auto;
  padding: 0 18px;
  width: 64px;
  height: 64px;
  background: var(--Secondary-Light-Green-300, #F1F9F8);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-page .core-values .values-grid .value-card .value-icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  display: block;
}
.about-page .core-values .values-grid .value-card .value-title {
  color: var(--Darkindigo---Secondary-DarkIndigo---700, #080F30);
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 170%;
  /* 34px */
  margin: 0 0 8px;
}
.about-page .core-values .values-grid .value-card .value-description {
  color: var(--Neutral-Grey-700, #919EA1);
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 170%;
  /* 27.2px */
}
.about-page .clinical-team .team-grid.author-container {
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
  padding: 0;
  align-items: unset;
}
.about-page .clinical-team .team-grid.author-container .summary {
  width: 100%;
  padding: 0 0 48px;
  max-width: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.about-page .clinical-team .team-grid.author-container .summary .title {
  padding: 40px 20px 20px;
  margin: 0 auto auto;
}
.about-page .clinical-team .team-grid.author-container .summary .title h3 {
  color: #000;
  text-align: center;
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 21.84px;
  /* 68.25% */
  letter-spacing: 0.24px;
}
.about-page .clinical-team .team-grid.author-container .summary .title h6 {
  color: var(--Neutral-Grey-900, #5E6B6E);
  text-align: center;
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 21.84px;
  /* 156% */
  letter-spacing: 0.24px;
}
.about-page .clinical-team .team-grid.author-container .summary .title .buttons {
  flex-direction: column;
}
.about-page .clinical-team .team-grid.author-container .summary .title .buttons a {
  background-image: url("../../../asset/css/img/icons/circle-arrow-up-right.svg");
}
.about-page .clinical-team .team-grid.author-container .summary .meta {
  margin: 24px 0 0;
  padding: 0;
  border-top: none;
}
.about-page .team-members .team-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.about-page .team-members .team-header .see-more {
  margin: auto 0 auto auto;
  color: var(--Primary-Green-500, #2B7367);
  font-family: Poppins;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.about-page .team-members .team-header .see-more span {
  white-space: nowrap;
}
.about-page .team-members .more-members {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--Primary-Green-900, #183A34);
}
.about-page .team-members .more-members .count {
  color: var(--Secondary-Light-Green-100, #F1F9F8);
  text-align: center;
  font-family: "Playfair", serif;
  font-size: 64px;
  font-style: normal;
  font-weight: 900;
  line-height: 72px; /* 112.5% */
  margin-top: 80px;
}
.about-page .team-members .more-members p {
  margin-top: 18px;
  color: var(--Secondary-Light-Green-100, #F1F9F8);
  text-align: center;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%; /* 27.2px */
  max-width: 121px;
}
.about-page .team-members .more-members .see-more {
  color: var(--Secondary-Light-Green-100, #F1F9F8);
  text-align: center;
  font-family: Poppins;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 24px */
  width: auto;
  margin-bottom: 36px;
  margin-top: auto;
}
.about-page .testimonials .feedback_slider {
  margin-top: 48px;
}
.about-page .last-articles .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.about-page .last-articles .top .see-more {
  margin: 0 0 0 auto;
  color: var(--Primary-Green-500, #2B7367);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  white-space: nowrap;
}
.about-page .last-articles .blog-posts-wrapper {
  margin-top: 48px;
}

@media screen and (max-width: 1200px) {
  .about-page .about__title.about__title {
    font-size: 52px;
    line-height: 65px;
  }
  .about-page .about__subtitle.about__subtitle {
    font-size: 27px;
  }
  .about-page p.subtitle {
    font-size: 21px;
  }
  .about-page .our-story .story-cards .story-card .story-icon {
    height: 118px;
  }
  .about-page .our-story .story-cards,
  .about-page .core-values .values-grid,
  .about-page .clinical-team .team-grid.author-container,
  .team-grid, .about-page .testimonials .feedback_slider,
  .about-page .last-articles .blog-posts-wrapper {
    margin-top: 24px;
  }
  .about-page .founders .founders-grid .founder-card .founder-description {
    font-size: 20px;
  }
  .about-page .core-values .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-page .clinical-team .team-grid.author-container .summary .title .buttons a {
    padding: 20px;
    background-image: none;
  }
  .team-grid .team-member .member-image {
    height: 232px;
  }
  .about-page .team-members .more-members .count {
    font-size: 54px;
    margin-top: 20px;
  }
  .about-page .team-members .more-members p {
    margin-top: 6px;
  }
  #discovery-block {
    margin-top: 100px;
  }
}
@media screen and (max-width: 1023px) {
  .about-page .about__title.about__title {
    font-size: 45px;
    line-height: 55px;
  }
  .about-page .about__subtitle.about__subtitle {
    font-size: 24px;
    margin-top: 12px;
  }
  .about-page section {
    margin-top: 67px;
  }
  .about-page .our-story .story-cards {
    grid-template-columns: repeat(1, 1fr);
  }
  .about-page .our-story .story-cards .story-card .story-icon {
    height: 288px;
  }
  .about-page .founders .founders-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .about-page .founders .founders-grid .founder-card:nth-child(1) {
    padding-right: 0;
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-right: none;
    border-bottom: 1px dashed var(--Secondary-Light-Green-100, #F1F9F8);
  }
  .about-page .founders .founders-grid .founder-card:nth-child(2) {
    padding-left: 0;
  }
  .about-page .clinical-team .team-grid.author-container {
    grid-template-columns: repeat(1, 1fr);
  }
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .team-grid .team-member .member-image {
    overflow: hidden;
  }
  .team-grid .team-member .member-image img {
    object-fit: contain;
    width: 100%;
    height: 100%;
  }
}
@media screen and (max-width: 767px) {
  .about__hero {
    padding-top: 44px !important;
  }
  .about-page .about__title.about__title {
    font-size: 24px;
    line-height: 26.2px; /* 109.167% */
  }
  .about-page .about__subtitle.about__subtitle {
    font-size: 14px;
    font-weight: 400;
    line-height: 26px; /* 185.714% */
  }
  .about-page h2 {
    font-size: 20px;
    line-height: 170%; /* 34px */
  }
  .about-page p.subtitle {
    font-size: 14px;
    line-height: 170%; /* 23.8px */
  }
  .about-page .our-story .story-cards .story-card .story-icon {
    height: 143px;
  }
  .about-page .our-story .story-cards .story-card p {
    font-size: 14px;
    line-height: 170%; /* 23.8px */
  }
  .about-page .founders {
    padding: 72px 24px 32px;
  }
  .about-page .founders .founders-grid .founder-card .founder-description {
    font-size: 14px;
    font-weight: 300;
    line-height: 170%; /* 23.8px */
  }
  .about-page .founders .founders-grid .founder-card .founder-meta .founder-avatar {
    width: 48px;
    height: 48px;
  }
  .about-page .founders .founders-grid .founder-card .founder-meta .founder-info .founder-name {
    font-size: 16px;
    font-weight: 500;
    line-height: 170%; /* 27.2px */
  }
  .about-page .founders .founders-grid .founder-card .founder-meta .founder-info .founder-position {
    font-size: 16px;
    font-weight: 300;
    line-height: 170%; /* 23.8px */
  }
  .about-page .core-values .values-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .about-page .core-values .values-grid .value-card .value-icon {
    width: 48px;
    height: 48px;
    padding: 0;
  }
  .about-page .core-values .values-grid .value-card .value-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 170%; /* 27.2px */
  }
  .about-page .core-values .values-grid .value-card .value-description {
    font-size: 14px;
    font-weight: 300;
    line-height: 170%; /* 23.8px */
  }
  .about-page .clinical-team .team-grid.author-container .summary .title h3 {
    font-size: 26px;
  }
  .about-page .clinical-team .team-grid.author-container .summary .title .buttons a {
    padding: 10px 20px;
  }
  .about-page .clinical-team .team-grid.author-container .summary .meta {
    margin: 4px 0 0;
  }
  .about-page .clinical-team .team-grid.author-container .summary {
    padding: 0 0 20px;
  }
  .about-page .team-members .team-header .see-more,
  .about-page .last-articles .top .see-more {
    font-size: 16px;
    width: auto;
  }
  .about-page .team-members .team-header .see-more svg,
  .about-page .last-articles .top .see-more svg {
    width: 24px;
    height: 24px;
  }
  .team-grid .team-member .member-image {
    padding: 0;
    height: 207px;
  }
  .team-grid .team-member .member-image img {
    object-fit: unset;
    width: 100%;
    height: auto;
  }
  .team-grid .team-member .info {
    padding: 0 18px 13px;
  }
  .team-grid .team-member .info h3 {
    font-size: 14px;
    font-weight: 500;
    line-height: 170%; /* 23.8px */
  }
  .team-grid .team-member .info .job-title {
    font-size: 10px;
    font-weight: 400;
    line-height: 120%; /* 12px */
  }
  .about-page .team-members .more-members .count {
    font-size: 48px;
    font-weight: 900;
    line-height: 72px; /* 150% */
  }
  .about-page .team-members .more-members p {
    font-size: 14px;
    font-weight: 400;
    line-height: 170%; /* 23.8px */
  }
  .about-page .team-members .more-members .see-more {
    font-size: 16px;
    font-weight: 500;
    line-height: 120%; /* 19.2px */
    margin-bottom: 17px;
  }
}
