.custom__edit--info {
  position: fixed;
  width: 40px;
  height: 40px;
  bottom: 1em;
  right: 1em;
  z-index: 3000;
  border-radius: 50%;
  padding: 0;
  text-align: center;
  margin: 1em;
  background: #745B99;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.35);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.35); }
  .custom__edit--info svg {
    line-height: 40px;
    height: 40px;
    width: 40px;
    cursor: pointer; }
  .custom__edit--info div {
    position: absolute;
    display: block;
    white-space: nowrap;
    bottom: 0;
    right: 100%;
    border-radius: 4px;
    padding: 0 2em;
    -webkit-box-shadow: inherit;
    box-shadow: inherit;
    background: inherit;
    opacity: 0;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    visibility: hidden;
    -webkit-transition: opacity .2s ease, visibility 0s ease .2s, -webkit-transform .2s ease;
    transition: opacity .2s ease, visibility 0s ease .2s, -webkit-transform .2s ease;
    -o-transition: transform .2s ease, opacity .2s ease, visibility 0s ease .2s;
    transition: transform .2s ease, opacity .2s ease, visibility 0s ease .2s;
    transition: transform .2s ease, opacity .2s ease, visibility 0s ease .2s, -webkit-transform .2s ease; }
  .custom__edit--info p {
    white-space: nowrap;
    line-height: 1.8;
    text-align: left;
    text-transform: none; }
  .custom__edit--info small {
    margin-right: 5px;
    opacity: .75;
    text-transform: uppercase;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
  .custom__edit--info:hover div {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(-1em);
    -ms-transform: translateX(-1em);
    transform: translateX(-1em);
    -webkit-transition-delay: 0s;
    -o-transition-delay: 0s;
    transition-delay: 0s; }

@-webkit-keyframes marquee {
  0% {
    -webkit-transform: translateX(100vw);
    transform: translateX(100vw); }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%); } }

@keyframes marquee {
  0% {
    -webkit-transform: translateX(100vw);
    transform: translateX(100vw); }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%); } }

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

.staff__heading {
  font-size: 1.35em;
  margin: 1em 0;
  color: var(--col-pri);
  text-transform: capitalize; }

.staff__list {
  text-align: center;
  margin: 0 -1em 2em;
  list-style: none;
  padding: 0;
  width: 100%; }

.staff__item {
  width: 100%;
  margin: 0 2em 2em 0;
  text-align: left;
  padding: 0 1em; }

.staff__item__image {
  position: relative;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 6/7; }

.staff__item__content {
  position: relative;
  overflow: hidden; }

.staff__item__content__title {
  padding-top: 1.5em; }
  .staff__item__content__title:after {
    content: "";
    width: 50px;
    height: 3px;
    display: inline-block;
    margin-top: 1em;
    margin-bottom: 1em;
    background: var(--col-pri); }
  .staff__item__content__title h3 {
    margin: 0;
    text-transform: none; }
  .staff__item__content__title p {
    margin: 0;
    opacity: .6;
    font-size: .95em; }

.staff__item__content__intro {
  text-transform: none;
  max-height: 205px;
  overflow: auto;
  font-family: var(--font-body);
  width: 100%;
  padding-right: 1.5em;
  -webkit-transition: width .2s ease, padding .2s ease;
  -o-transition: width .2s ease, padding .2s ease;
  transition: width .2s ease, padding .2s ease;
  scrollbar-width: thin;
  scrollbar-color: var(--col-pri) rgba(0, 0, 0, 0.25);
  -ms-overflow-style: -ms-autohiding-scrollbar; }
  .staff__item__content__intro::-webkit-scrollbar-track {
    background-color: rgba(0, 0, 0, 0.25);
    border-radius: 0px;
    -webkit-transition: background-color .2s ease;
    -o-transition: background-color .2s ease;
    transition: background-color .2s ease; }
  .staff__item__content__intro::-webkit-scrollbar-thumb {
    border-radius: 0px;
    background-color: var(--col-pri);
    -webkit-transition: background-color .2s ease;
    -o-transition: background-color .2s ease;
    transition: background-color .2s ease; }
  .staff__item__content__intro::-webkit-scrollbar {
    width: 6px; }
  .staff__item__content__intro:hover {
    width: 100%;
    padding-right: 1em; }

@media all and (min-width: 600px) {
  .staff__heading {
    font-size: 1.55em; }
  .staff__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start; }
  .staff__item {
    width: 50%;
    margin: 0 0 2em; } }

@media all and (min-width: 1025px) {
  .staff__heading {
    font-size: 1.85em; } }

@media all and (min-width: 1301px) {
  .staff__heading {
    font-size: 2.25em; }
  .staff__item {
    width: 33.3333%;
    margin: 0 0 4em; } }

.staff__item__flex {
  width: 100%; }

@media all and (min-width: 600px) {
  .staff__item__flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0 0 3em; }
    .staff__item__flex .staff__item__image {
      max-width: 450px;
      width: 35%;
      -ms-flex-negative: 0;
      flex-shrink: 0;
      margin-right: 5%; }
    .staff__item__flex .staff__item__content__title h3 {
      font-size: 2em; } }
