.profilesection {
  width: 100%;
  position: relative;
  background-color: var(--color-white);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--padding-64);
  box-sizing: border-box;
  gap: var(--gap-20);
  text-align: left;
  font-size: var(--fs-48);
  color: var(--color-black);
  font-family: var(--font-family);


}
.name2,
.profile {
  align-self: stretch;
  display: flex;
  align-items: center;
}
.name2 {
  margin: 0;
  height: var(--height-80);
  position: relative;
  font-size: inherit;
  letter-spacing: -0.02em;
  line-height: 110%;
  font-weight: 600;
  font-family: inherit;
  flex-shrink: 0;
}
.profile {
  overflow: hidden;
  justify-content: center;
  gap: var(--gap-20);
  font-size: var(--fs-24);
}
.profileimg-icon {
  flex: 1;
  max-width: 100%;
  width: auto;
  overflow: hidden;
  max-height: 70vh;
  object-fit: cover;
  pointer-events: none;
}
.profiletxt {
  margin: 0;
  flex: 1;
  position: relative;
  line-height: 120%;
  font-weight: 500;
  font-family: var(--font-family);
}

.back-parent {
  cursor: pointer;
  border: 0;
  padding: 0;
  background-color: transparent;
  width: 9.25rem;
  gap: var(--gap-10);
  display: flex;
  align-items: flex-start;
}
.backList,
.back-icon {
  height: 1.938rem;
  position: relative;
}
.back-icon {
  width: 1.125rem;
  object-fit: contain;
}
.backList {
  width: 7.5rem;
  font-size: 1.313rem;
  line-height: 145%;
  font-weight: 500;
  font-family: inherit;
  color: var(--color-black);
  text-align: left;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.backToList {
  text-decoration: none;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: flex-start;
}

@media screen and (max-width: 800px) {
  .profile {
    flex-direction: column;
  }
  .profileimg-icon,
  .profiletxt {
    flex: unset;
    align-self: stretch;
  }
   .backList {
    font-size: 1.063rem;
  }

  .profilesection{
    padding-left: var(--padding-30);
    padding-right: var(--padding-30);
  }
}

@media screen and (max-width: 420px) {
  .backList{
    font-size: 0.938rem;
  }
  .profile{
    font-size: var(--fs-20) !important;
  }
  .profilesection{
    font-size: var(--fs-36)
  }
}
