.profile-card {
  width: 100%;
  height: auto;
  padding: 1em;
  border-radius: var(--border-radius);
  background: linear-gradient(5.55deg, #36863f 6.01%, #7ab83b 97.18%);
  margin-top: 1em;
}

.profile-card .top {
  width: 100%;
  display: flex;
  align-items: center;
}

.profile-card .top img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  margin-right: 1em;
}

.profile-card .top .content {
  width: 100%;
}

.profile-card .top .content h5 {
  font-size: 1.5em;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5em;
}

.profile-card .top .content .sub {
  display: flex;
}

.profile-card .top .content p {
  padding: 0 1em;
  color: var(--white);
  font-size: 1rem;
  position: relative;
}

.profile-card .top .content p:first-child {
  padding-left: 0;
}

.profile-card .top .content p:first-child::after {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  background-color: var(--white);
  position: absolute;
  right: 0;
  top: 0;
  opacity: 0.5;
}

.profile-card .message-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  color: var(--white);
  margin-top: 1em;
  background-color: #ffffff3d;
  padding: 0.7em 0;
  border-radius: var(--border-radius);
}

.profile-card .message-btn img {
  width: 20px;
  margin-right: 0.5em;
}

.profile-page {
  margin-top: 19em;
  margin-bottom: 5.5em;
}

.profile-page .profile-page-sub {
  width: 100%;
  background-color: var(--white);
  box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.08);
  border-radius: var(--border-radius);
  padding: 1em;
  margin-bottom: 1em;
}

.profile-page .profile-page-sub .flex {
  width: 100%;
  display: flex;
  gap: 1em;
}

.profile-page .profile-page-sub .flex .sub {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: #36863f23;
  padding: 1em;
  border-radius: var(--border-radius);
}

.profile-page .profile-page-sub .flex .sub h2 {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  color: var(--primary);
  font-weight: 600;
}

.profile-page .profile-page-sub .flex .sub h2 img {
  width: 22px;
  margin-right: 0.3em;
}

.profile-page .profile-page-sub .activity {
  width: 100%;
  margin-top: 1em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1em;
  border: 1px solid var(--border-color);
  border-radius: var(--btn-border-radius);
}

.profile-page .profile-page-sub .activity .left {
  display: flex;
  align-items: center;
}

.profile-page .profile-page-sub .activity .left .icon {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #36863f23;
  margin-right: 0.5em;
  border-radius: 5px;
}

.profile-page .profile-page-sub .activity .left .icon img {
  width: 70%;
}

.profile-page .profile-page-sub .activity .left p {
  font-size: 1rem;
  color: var(--text);
}

.profile-page .profile-page-sub .activity h6 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
}

.profile-page .profile-page-sub .bio {
  width: 100%;
  margin-top: 1em;
  padding: 1em;
  border: 1px solid var(--border-color);
  border-radius: var(--btn-border-radius);
}

.profile-page .profile-page-sub .bio h6 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5em;
}

.profile-page .profile-page-sub .bio p {
  color: var(--light-text);
  margin-bottom: 0.5em;
}

.profile-page .reviews {
  width: 100%;
 margin-top: 2em;
    padding: 0 0 73px;


}

.profile-page .reviews .con > .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.profile-page .reviews .con > .top h6 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
}

.profile-page .reviews .top p {
  font-size: 1rem;
  color: var(--text);
}

.profile-page .reviews p strong {
  display: inline-block;
  margin-right: 0.1em;
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--primary);
}

.profile-page .reviews .review-slider {
  width: 100%;
  display: flex;
  gap: 1em;
  align-items: center;
  overflow-y: hidden;
  overflow-x: auto;
  padding: 1em 5vw;
}

.review-slider .review {
  width: 80vw;
  min-width: 80vw;
  padding: 1em;
  border-radius: var(--border-radius);
  box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
}

.review-slider .review > img {
  width: 50px;
  height: 50px;
  margin-right: 0.5em;
}

.review-slider .review .left {
  width: 100%;
}

.review-slider .review .left .top {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.review-slider .review .left .top p {
  font-size: 1rem;
  color: var(--text);
}

.review-slider .review .left .rating {
  font-size: 1rem;
  color: var(--primary);
}

.review-slider .review .left .rating img {
  width: 12px;
}

.review-slider .review .left > p {
  font-size: 1rem;
  color: var(--light-text);
  line-height: 1.2;
  margin-top: 0.3em;
}
