.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-ter);
  text-transform: capitalize; }

.staff__list {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 20px;
  width: 100%; }

.staff__item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  aspect-ratio: 1 / 1;
  min-width: 270px;
  max-width: 384px;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 25%;
  flex: 1 1 25%;
  overflow: hidden; }
  .staff__item:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(31, 41, 55, 0)), to(#030303));
    background: -webkit-linear-gradient(rgba(31, 41, 55, 0) 0%, #030303 100%);
    background: -o-linear-gradient(rgba(31, 41, 55, 0) 0%, #030303 100%);
    background: linear-gradient(rgba(31, 41, 55, 0) 0%, #030303 100%);
    z-index: 1; }
  .staff__item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: ease 0.4s;
    -o-transition: ease 0.4s;
    transition: ease 0.4s; }
  .staff__item .button__link {
    opacity: 0;
    visibility: hidden;
    -webkit-transition: ease 0.4s;
    -o-transition: ease 0.4s;
    transition: ease 0.4s;
    cursor: pointer; }
    .staff__item .button__link > a,
    .staff__item .button__link > span {
      border-color: #fff; }
  .staff__item:focus-within img, .staff__item:hover img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1); }
  .staff__item:focus-within .button__link, .staff__item:hover .button__link {
    opacity: 1;
    visibility: visible; }
  .staff__item:focus-within .staff__item__content, .staff__item:hover .staff__item__content {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); }

.staff__item__content {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  text-align: left;
  z-index: 2;
  min-height: 330px;
  padding: 40px 20px;
  width: 100%;
  background: none;
  gap: 15px;
  overflow: hidden;
  -webkit-transition: ease 0.4s;
  -o-transition: ease 0.4s;
  transition: ease 0.4s;
  -webkit-transform: translateY(calc(100% - 250px));
  -ms-transform: translateY(calc(100% - 250px));
  transform: translateY(calc(100% - 250px)); }

.staff__item__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  font-size: 36px;
  font-weight: 700;
  color: var(--col-pri);
  margin: 0;
  -ms-flex-line-pack: end;
  align-content: end; }

.staff__item__role {
  color: #fff;
  font-size: 36px;
  font-weight: normal;
  margin: 0; }

@media (max-width: 1049px) {
  .staff__item__block {
    margin-bottom: 40px; }
  .staff__item__item {
    min-height: 300px; }
  .staff__item__role {
    font-size: 20px; } }

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

@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__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; } }

.staff__popout__item {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: ease 0.4s;
  -o-transition: ease 0.4s;
  transition: ease 0.4s;
  max-width: 1200px;
  width: 100%;
  background: transparent;
  z-index: 100;
  min-height: 580px;
  height: 66.5vh;
  display: none; }
  .staff__popout__item.active {
    opacity: 1;
    visibility: visible;
    display: block; }
  .staff__popout__item:before {
    content: '';
    position: fixed;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100vw;
    height: 100vh;
    background: #000;
    opacity: 0.7;
    z-index: -1; }

.staff__popout__item__close.js__popout__close {
  top: 32px;
  right: 36px; }

.staff__popout__item__inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 40px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background: #fff;
  width: 100%;
  height: 100%;
  z-index: 2;
  padding: 70px 80px; }

.staff__popout__item__image {
  height: 485px;
  width: 365px; }
  .staff__popout__item__image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover; }

.staff__popout__item__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  height: 100%;
  max-width: 586px;
  width: 100%; }

.staff__popout__item__content__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 10px; }
  .staff__popout__item__content__title h3 {
    margin: 0;
    font-size: 36px;
    font-weight: bold;
    color: var(--col-ter); }
  .staff__popout__item__content__title p {
    margin: 0;
    font-size: 26px;
    font-weight: 400;
    color: var(--col-ter); }

.staff__popout__item__region {
  margin-top: 30px;
  height: calc(100% - 100px);
  min-height: 300px;
  overflow-y: auto;
  color: var(--col-ter);
  width: 100%; }

@media (max-width: 1200px) {
  .staff__popout__item__inner {
    padding: 70px 40px; } }

@media (max-width: 1049px) {
  .staff__popout__item__close.js__popout__close {
    top: 20px;
    right: 20px; }
  .staff__popout__item {
    padding: 0 20px;
    min-height: 300px; }
  .staff__popout__item__inner {
    padding: 70px 20px;
    overflow-y: auto;
    gap: 20px; }
  .staff__popout__item__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    text-align: center; }
  .staff__popout__item__image {
    max-width: 280px;
    width: 100%;
    height: auto; }
  .staff__popout__item__content__title {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center; }
    .staff__popout__item__content__title h3 {
      font-size: 36px; }
    .staff__popout__item__content__title p {
      font-size: 20px; }
  .staff__popout__item__content {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    max-width: 100%;
    overflow: unset;
    height: unset; }
  .staff__popout__item__region {
    margin-top: 10px;
    overflow: unset; } }
