@font-face {
  font-family: "AmericanaStd-Regular";
  font-style: normal;
  font-weight: 400;
  src: url("/assets/font/AmericanaStdFUHA-Regular.woff2") format("woff2");
}
:root {
  --wrapper: 100vw;
  --gutter: 40px;
  --rh: calc((var(--wrapper) - (3 * var(--gutter))) / 4);
}

.profile-detail {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 28px 24px;
  width: 100%;
  background-color: #F3F3F3;
}
.profile-detail__container {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  padding: 100px 0 0 0;
  max-width: 1400px;
  width: 100%;
}
.profile-detail__container.-hidden {
  display: none;
}
.profile-detail__sidemenu {
  display: none;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-right: 50px;
  min-width: fit-content;
  flex-grow: 1;
}
.profile-detail__sidemenu__container {
  position: sticky;
  top: 150px;
}
.profile-detail__sidemenu__item {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  color: #828282;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 32px;
  line-height: 2rem;
  font-weight: 400;
  cursor: pointer;
}
.profile-detail__sidemenu__item.-active {
  color: #17C37B;
}
.profile-detail__sidemenu__item::before {
  content: "";
  display: list-item;
  list-style-type: disc;
  list-style-position: inside;
}
.profile-detail__select {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin: 0 0 64px 0;
  padding: 12px 0;
  width: 100%;
  border-bottom: 2px solid rgba(130, 130, 130, 0.25);
  background-color: #F3F3F3;
  background-image: url("/assets/svg/arrow-down-green.svg");
  background-repeat: no-repeat;
  background-size: 24px 24px;
  background-position: right center;
  color: #064C37;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 26px;
  line-height: 1.625rem;
  font-weight: 500;
  outline: 0;
}
.profile-detail__select.-hidden {
  display: none;
}
.profile-detail__wrapper {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
.profile-detail__content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 58px 0;
  width: 100%;
  max-width: 100%;
  border-bottom: 1px solid #E8E8E8;
}
.profile-detail__content:first-of-type {
  padding: 0 0 58px 0;
}
.profile-detail__content:last-of-type {
  border-bottom: 0;
}
.profile-detail__content.-center {
  align-items: center;
}
.profile-detail__content.-membership .profile-detail__title {
  margin: 0 0 40px 0;
}
.profile-detail__content.-membership .swiper-container {
  width: 100%;
}
.profile-detail__content.-membership .swiper-wrapper {
  padding: 60px 0;
}
.profile-detail__content.-membership .swiper-button-disabled {
  opacity: 0.5;
}
.profile-detail__content.-membership .swiper-button-prev {
  top: 30px;
  right: 30px;
  left: auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 19px;
  height: 19px;
  background-image: url("/assets/svg/med-arrow-left.svg");
  background-repeat: no-repeat;
  background-size: auto;
  background-position: center center;
}
.profile-detail__content.-membership .swiper-button-prev::after {
  display: none;
}
.profile-detail__content.-membership .swiper-button-next {
  top: 30px;
  right: 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 19px;
  height: 19px;
  background-image: url("/assets/svg/med-arrow-right.svg");
  background-repeat: no-repeat;
  background-size: auto;
  background-position: center center;
}
.profile-detail__content.-membership .swiper-button-next::after {
  display: none;
}
.profile-detail__content.-membership .swiper-pagination {
  bottom: 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.profile-detail__content.-membership .swiper-pagination-bullet {
  opacity: 1;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin: 0 4px;
  width: 40px;
  height: 4px;
  border-radius: 0;
  background-color: #C4C4C4;
}
.profile-detail__content.-membership .swiper-pagination-bullet-active {
  opacity: 1;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin: 0;
  width: 40px;
  height: 4px;
  background-color: #17C37B;
}
.profile-detail__title {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  margin: 0 0 40px 0;
  color: #17C37B;
  font-family: "AmericanaStd-Regular", sans-serif;
  font-size: 32px;
  font-size: 2rem;
  line-height: 34px;
  line-height: 2.125rem;
  font-weight: 400;
}
.profile-detail__biography {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.profile-detail__biography p {
  margin: 0 0 16px 0;
}
.profile-detail__biography strong {
  color: #064C37;
  font-family: "Inter", sans-serif;
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 30px;
  line-height: 1.875rem;
  font-weight: 500;
}
.profile-detail__biography__text.-more {
  position: relative;
  overflow: hidden;
  transition: max-height 0.1s ease-out;
}
.profile-detail__biography__text.-more:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 46px;
  background-color: #F3F3F3;
}
.profile-detail__biography__more {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 48px;
  cursor: pointer;
}
.profile-detail__biography__more.-expand {
  position: absolute;
  bottom: 0;
  left: 0;
}
.profile-detail__biography__more.-hide {
  display: none;
}
.profile-detail__biography__more .text {
  color: #828282;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 19px;
  line-height: 1.1875rem;
  font-weight: 500;
  text-align: center;
}
.profile-detail__biography__more .arrow {
  display: block;
  margin: 0 12px;
  width: 12px;
  height: auto;
}
.profile-detail__services {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  width: 100%;
}
.profile-detail__services__item {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin: 0 0 18px 0;
  width: 100%;
  min-height: 88px;
  background-color: #fff;
}
.profile-detail__services__item:nth-of-type(2n) {
  margin: 0 0 18px 0;
}
.profile-detail__services__item.-hide {
  display: none;
}
.profile-detail__services__item__image {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin: 0 16px 0 0;
  height: 88px;
}
.profile-detail__services__item__image .service-image {
  display: block;
  width: 88px;
  height: 88px;
  object-fit: cover;
}
.profile-detail__services__item__name {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0;
  color: #064C37;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 20px;
  line-height: 1.25rem;
  font-weight: 500;
  text-decoration: none;
  text-align: left;
}
.profile-detail__services__item__name::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  width: 100%;
  height: 100%;
}
.profile-detail__services__item__text {
  display: none;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 18px;
  color: #064C37;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 19px;
  line-height: 1.1875rem;
  font-weight: 300;
  text-align: center;
}
.profile-detail__services__more {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 48px;
  background-color: #fff;
  cursor: pointer;
}
.profile-detail__services__more.-hide {
  display: none;
}
.profile-detail__services__more .text {
  color: #064C37;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 19px;
  line-height: 1.1875rem;
  font-weight: 500;
  text-align: center;
}
.profile-detail__services__more .arrow {
  display: block;
  margin: 0 12px;
  width: 12px;
  height: auto;
  object-fit: cover;
}
.profile-detail__projects {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 24px;
  width: 100%;
  background-color: #fff;
}
.profile-detail__projects__tab {
  display: none;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-end;
  width: 100%;
  border-bottom: 2px solid rgba(130, 130, 130, 0.25);
}
.profile-detail__projects__tab__title {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  margin: 0 40px 0 0;
  padding: 12px 0;
  height: 100%;
  color: #828282;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 26px;
  line-height: 1.625rem;
  font-weight: 500;
  cursor: pointer;
}
.profile-detail__projects__tab__title.-active {
  color: #064C37;
}
.profile-detail__projects__tab__title.-active::after {
  position: absolute;
  bottom: -2px;
  content: "";
  width: 100%;
  height: auto;
  border-bottom: 2px solid #064C37;
}
.profile-detail__projects__select {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin: 0 0 24px 0;
  padding: 12px 0;
  width: 100%;
  min-width: 270px;
  border-bottom: 2px solid rgba(130, 130, 130, 0.25);
  background-color: #fff;
  background-image: url("/assets/svg/arrow-down-green.svg");
  background-repeat: no-repeat;
  background-size: 24px 24px;
  background-position: right center;
  color: #064C37;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 26px;
  line-height: 1.625rem;
  font-weight: 500;
  outline: 0;
}
.profile-detail__projects__content {
  display: none;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.profile-detail__projects__content.-active {
  display: flex;
}
.profile-detail__projects__content ul li {
  padding: 24px 0;
  border-top: 1px solid #F3F3F3;
  color: #828282;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 26px;
  line-height: 1.625rem;
  font-weight: 400;
}
.profile-detail__projects__content ul :first-of-type {
  border-top: 0;
}
.profile-detail__projects__text {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
}
.profile-detail__projects.-more {
  position: relative;
  overflow: hidden;
  transition: max-height 0.1s ease-out;
}
.profile-detail__projects.-more:before {
  content: "";
  z-index: 1;
  position: absolute;
  bottom: 48px;
  left: 0;
  width: 100%;
  height: 16px;
  background-color: #F3F3F3;
}
.profile-detail__projects__more {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 48px;
  background-color: #fff;
  cursor: pointer;
}
.profile-detail__projects__more.-expand {
  position: absolute;
  bottom: 0;
  left: 0;
}
.profile-detail__projects__more.-hide {
  display: none;
}
.profile-detail__projects__more .text {
  color: #064C37;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 19px;
  line-height: 1.1875rem;
  font-weight: 500;
  text-align: center;
}
.profile-detail__projects__more .arrow {
  display: block;
  margin: 0 12px;
  width: 12px;
  height: auto;
  object-fit: cover;
}
.profile-detail__education {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  background-color: #fff;
}
.profile-detail__education.-more {
  position: relative;
  overflow: hidden;
  transition: all 0.1s ease-out;
}
.profile-detail__education.-more:before {
  content: "";
  z-index: 1;
  position: absolute;
  bottom: 48px;
  left: 0;
  width: 100%;
  height: 16px;
  background-color: #F3F3F3;
}
.profile-detail__education__text {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 66px 88px;
  width: 100%;
}
.profile-detail__education__text :nth-of-type(odd) {
  position: relative;
  margin: 0;
  color: #064C37;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 26px;
  line-height: 1.625rem;
  font-weight: 400;
}
.profile-detail__education__text :nth-of-type(odd)::before {
  content: "";
  position: absolute;
  top: 5px;
  left: -36px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #064C37;
}
.profile-detail__education__text :nth-of-type(even) {
  position: relative;
  margin: 0 0 16px 0;
  padding: 0 0 40px 0;
  width: 100%;
  border-bottom: 1px solid #F3F3F3;
  color: #064C37;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 26px;
  line-height: 1.625rem;
  font-weight: 400;
}
.profile-detail__education__text :nth-of-type(even)::before {
  content: "";
  position: absolute;
  top: 5px;
  left: -29px;
  width: 2px;
  height: 64px;
  background-color: #064C37;
}
.profile-detail__education__text :last-of-type {
  border: 0;
}
.profile-detail__education__more {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 48px;
  background-color: #fff;
  cursor: pointer;
}
.profile-detail__education__more.-expand {
  position: absolute;
  bottom: 0;
  left: 0;
}
.profile-detail__education__more.-hide {
  display: none;
}
.profile-detail__education__more .text {
  color: #064C37;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 19px;
  line-height: 1.1875rem;
  font-weight: 500;
  text-align: center;
}
.profile-detail__education__more .arrow {
  display: block;
  margin: 0 12px;
  width: 12px;
  height: auto;
  object-fit: cover;
}
.profile-detail__publications {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}
.profile-detail__publications__nav {
  display: none;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  margin: 0 0 24px 0;
  padding: 0 20px;
  width: 100%;
}
.profile-detail__publications__nav__item {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin: 0 40px 0 0;
  color: #828282;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 26px;
  line-height: 1.625rem;
  font-weight: 500;
  cursor: pointer;
}
.profile-detail__publications__nav__item.-active {
  color: #064C37;
}
.profile-detail__publications__select {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin: 0 0 24px 0;
  padding: 12px 0;
  width: 100%;
  min-width: 312px;
  border-bottom: 2px solid rgba(130, 130, 130, 0.25);
  background-color: #F3F3F3;
  background-image: url("/assets/svg/arrow-down-green.svg");
  background-repeat: no-repeat;
  background-size: 24px 24px;
  background-position: right center;
  color: #064C37;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 26px;
  line-height: 1.625rem;
  font-weight: 500;
  cursor: pointer;
  outline: 0;
}
.profile-detail__publications__list {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: nowrap;
  width: 100%;
  min-height: 166px;
}
.profile-detail__publications__item {
  position: relative;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  margin: 8px 0;
  padding: 16px;
  width: 100%;
  min-height: 150px;
  background-color: #fff;
}
.profile-detail__publications__item.-active {
  display: flex;
}
.profile-detail__publications__item__container {
  display: none;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin: 8px 0;
  padding: 16px;
  width: 100%;
  min-height: 150px;
  background-color: #fff;
}
.profile-detail__publications__item__container.-active {
  display: flex;
}
.profile-detail__publications__name {
  flex-grow: 1;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0 0 24px 0;
  width: 100%;
  border-bottom: 1px solid #F3F3F3;
  color: #828282;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 26px;
  line-height: 1.625rem;
  font-weight: 400;
  text-decoration: none;
}
.profile-detail__publications__name::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.profile-detail__publications__category {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  margin: 16px 0 0 0;
  padding: 5px 10px;
  border-radius: 30px;
  background-color: rgba(23, 195, 123, 0.1);
  color: #064C37;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 14px;
  line-height: 0.875rem;
  font-weight: 400;
  text-align: center;
}
.profile-detail__publications__link {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin: 40px 0 0 0;
  color: #828282;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 16px;
  line-height: 1rem;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
}
.profile-detail__publications__link:active, .profile-detail__publications__link:visited {
  color: #828282;
}
.profile-detail__membership {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
}
.profile-detail__membership__item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 260px;
  background-color: #fff;
  cursor: pointer;
}
.profile-detail__membership__item:hover .membership-icon {
  filter: none;
}
.profile-detail__membership__icon {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.profile-detail__membership__icon .membership-icon {
  display: block;
  margin: 0 0 30px 0;
  max-width: 100%;
  height: auto;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}
.profile-detail__membership__text {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0 12px;
  color: #064C37;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 20px;
  line-height: 1.25rem;
  font-weight: 500;
  text-align: center;
}
.profile-detail__references__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 0 48px 0;
}
.profile-detail__references__text p, .profile-detail__references__text a {
  color: #064C37;
  font-family: "Inter", sans-serif;
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 32px;
  line-height: 2rem;
  font-weight: 400;
  text-align: center;
  text-decoration: none;
}

.references {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 86px 24px;
  width: 100%;
  background-color: #fff;
}
.references .swiper-container {
  width: 100%;
  height: 100%;
}
.references .swiper-slide {
  position: relative;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.references .swiper-button-disabled {
  opacity: 0.5;
}
.references .swiper-button-prev {
  top: auto;
  left: 25%;
  bottom: 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 43px;
  height: 35px;
  background-image: url("/assets/svg/slide-left-arrow.svg");
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center center;
}
.references .swiper-button-prev::after {
  display: none;
}
.references .swiper-button-next {
  z-index: inherit;
  top: auto;
  right: 25%;
  bottom: 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 43px;
  height: 35px;
  background-image: url("/assets/svg/slide-right-arrow.svg");
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center center;
}
.references .swiper-button-next::after {
  display: none;
}
.references .swiper-pagination {
  bottom: -60px;
  display: none;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.references .swiper-pagination-bullet {
  opacity: 1;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin: 0 4px;
  width: 40px;
  height: 4px;
  border-radius: 0;
  background-color: #C4C4C4;
}
.references .swiper-pagination-bullet-active {
  opacity: 1;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin: 0;
  width: 40px;
  height: 4px;
  background-color: #064C37;
}
@media only screen and (min-width: 560px) {
  .profile-detail__content.-membership .profile-detail__title {
    margin: 0;
  }
  .profile-detail__content.-membership .swiper-wrapper {
    padding: 40px 0 0 0;
  }
  .profile-detail__content.-membership .swiper-pagination {
    display: none;
  }
}
@media only screen and (min-width: 640px) {
  .profile-detail__services {
    align-items: stretch;
  }
  .profile-detail__services__item {
    flex-direction: column;
    margin: 0 18px 18px 0;
    width: calc(50% - 10px);
    min-height: 264px;
  }
  .profile-detail__services__item__image {
    margin: 0 0 16px 0;
    height: 140px;
  }
  .profile-detail__services__item__image .service-image {
    width: 100%;
    max-width: 264px;
    height: auto;
  }
  .profile-detail__services__item__text {
    display: flex;
  }
  .profile-detail__publications__list {
    align-items: stretch;
  }
}
@media only screen and (min-width: 768px) {
  .profile-detail__services__item__name {
    padding: 0 16px;
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 24px;
    line-height: 1.5rem;
    text-align: center;
  }
  .profile-detail__publications__list {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .profile-detail__publications__item {
    margin: 8px 20px;
    width: calc(50% - 40px);
  }
  .profile-detail__publications__item__container {
    margin: 8px 20px;
  }
}
@media only screen and (min-width: 1024px) {
  .profile-detail {
    padding: 28px 50px;
  }
  .profile-detail__projects {
    padding: 52px 80px;
  }
  .profile-detail__projects__tab {
    display: flex;
  }
  .profile-detail__projects__select {
    display: none;
  }
  .profile-detail__references__text {
    padding: 0;
  }
  .references {
    padding: 86px 50px;
  }
  .references .swiper-slide {
    padding: 0 120px;
  }
  .references .swiper-button-prev {
    top: 50%;
    left: 0;
  }
  .references .swiper-button-next {
    top: 50%;
    right: 0;
  }
  .references .swiper-pagination {
    display: flex;
  }
}
@media only screen and (min-width: 1280px) {
  .profile-detail__publications__nav {
    display: flex;
  }
  .profile-detail__publications__select {
    display: none;
  }
}
@media only screen and (min-width: 1366px) {
  .profile-detail__container {
    flex-direction: row;
  }
  .profile-detail__sidemenu {
    display: flex;
  }
  .profile-detail__select {
    display: none;
  }
  .profile-detail__content {
    max-width: 1060px;
  }
  .profile-detail__content.-membership .swiper-container {
    max-width: 1012px;
  }
  .profile-detail__services__item {
    width: 264px;
    margin: 0 18px 18px 0;
  }
  .profile-detail__services__item:nth-of-type(2n) {
    margin: 0 18px 18px 0;
  }
}
@media only screen and (min-width: 1440px) {
  .profile-detail__content {
    max-width: 1110px;
  }
  .profile-detail__content.-membership .swiper-container {
    max-width: 1110px;
  }
  .profile-detail__services__item:nth-of-type(4n) {
    margin: 0 0 18px 0;
  }
}
@font-face {
  font-family: "AmericanaStd-Regular";
  font-style: normal;
  font-weight: 400;
  src: url("/assets/font/AmericanaStdFUHA-Regular.woff2") format("woff2");
}
:root {
  --wrapper: 100vw;
  --gutter: 40px;
  --rh: calc((var(--wrapper) - (3 * var(--gutter))) / 4);
}

.profile {
  display: flex;
  flex-direction: column-reverse;
  justify-content: center;
  align-items: center;
  padding: 112px 0 0 0;
  width: 100%;
  border-top: 1px solid rgba(130, 130, 130, 0.25);
  background-color: #141414;
  background-image: none;
}
.profile__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 24px;
  width: 100%;
}
.profile__card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 608px;
}
.profile__position {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  color: #17C37B;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 20px;
  line-height: 1.25rem;
  font-weight: 600;
}
.profile__name {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  color: #fff;
  font-family: "AmericanaStd-Regular", sans-serif;
  font-size: 40px;
  font-size: 2.5rem;
  line-height: 50px;
  line-height: 3.125rem;
  font-weight: 400;
}
.profile__info {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  border-top: 2px solid rgba(130, 130, 130, 0.25);
  border-bottom: 2px solid rgba(130, 130, 130, 0.25);
}
.profile__info__item {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  padding: 12px 0;
  width: 100%;
}
.profile__info__name, .profile__info__text, .profile__info__link {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  width: 50%;
  color: #828282;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 20px;
  line-height: 1.25rem;
  font-weight: 500;
}
.profile__info__link {
  text-decoration: none;
  transition: color 0.3s ease;
}
.profile__info__link:active, .profile__info__link:visited {
  color: #828282;
}
.profile__info__link:hover, .profile__info__link:focus {
  color: #17C37B;
}
.profile__contact {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  width: 100%;
}
.profile__contact__info {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
.profile__contact__info__link {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}
.profile__contact__info__link:first-child {
  margin: 0 40px 0 0;
}
.profile__contact__info__link .download-icon {
  display: block;
  margin: 0 8px 0 0;
  width: 20px;
  height: 20px;
  object-fit: contain;
}
.profile__contact__info__link .text {
  color: #828282;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 20px;
  line-height: 1.25rem;
  font-weight: 500;
}
.profile__contact__social {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
.profile__contact__social__link {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}
.profile__contact__social__link:last-of-type {
  margin: 0 0 0 16px;
}
.profile__contact__social__link .social-icon {
  display: block;
  width: 20px;
  height: 20px;
  object-fit: contain;
}
.profile__awards {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  padding: 32px 0;
  flex-wrap: wrap;
}
.profile__awards__item {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.profile__awards__item .award-image {
  display: block;
  margin: 0 16px 16px 0;
  width: auto;
  height: auto;
}
.profile__image {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}
.profile__image .profile-image {
  display: block;
  margin: 0 0 40px 0;
  width: 100%;
  max-width: 100%;
  height: 100%;
}
@media only screen and (min-width: 1024px) {
  .profile {
    flex-direction: row;
    justify-content: space-between;
  }
  .profile__awards__item .award-image {
    margin: 0 24px 24px 0;
  }
  .profile__image {
    align-items: flex-end;
  }
  .profile__image .profile-image {
    margin: 0;
    max-width: 700px;
  }
}
@media only screen and (min-width: 1280px) {
  .profile {
    padding: 116px 0 0 0;
    background-image: url("/assets/svg/scroll-icon.svg");
    background-repeat: no-repeat;
    background-size: auto;
    background-position-x: 50px;
    background-position-y: bottom;
  }
}