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

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

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

.staff__list {
  width: 100%; }

.staff__item {
  width: 100%;
  margin: 0 0 1.5em;
  cursor: pointer; }
  .staff__item:hover .staff__item__image {
    border-width: 6px;
    -webkit-box-shadow: 0 0 0 18px rgba(35, 122, 191, 0.5);
    box-shadow: 0 0 0 18px rgba(35, 122, 191, 0.5); }
  .staff__item:hover .staff__item__hover {
    opacity: 1; }
    .staff__item:hover .staff__item__hover p {
      -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
      transform: translateY(0); }

.staff__item__image {
  position: relative;
  width: 100%;
  max-width: 200px;
  margin: 0 auto 2em;
  border-radius: 50%;
  border: 8px solid #fff;
  -webkit-box-shadow: 0 0 0 10px rgba(35, 122, 191, 0.15);
  box-shadow: 0 0 0 10px rgba(35, 122, 191, 0.15);
  -webkit-transition: border-width .3s ease, -webkit-box-shadow .3s ease;
  transition: border-width .3s ease, -webkit-box-shadow .3s ease;
  -o-transition: box-shadow .3s ease, border-width .3s ease;
  transition: box-shadow .3s ease, border-width .3s ease;
  transition: box-shadow .3s ease, border-width .3s ease, -webkit-box-shadow .3s ease; }
  .staff__item__image:before {
    content: '';
    display: block;
    visibility: hidden;
    padding-bottom: 100%; }
  .staff__item__image * {
    border-radius: 50%; }

.staff__item__title h3 {
  margin: 0; }

.staff__item__title p {
  color: #ABB2B9;
  margin: 0 auto;
  max-width: 200px; }

.staff__item__hover {
  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: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  opacity: 0;
  -webkit-transition: opacity .3s ease;
  -o-transition: opacity .3s ease;
  transition: opacity .3s ease; }
  .staff__item__hover p {
    position: relative;
    z-index: 3;
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
    -webkit-transition: -webkit-transform .3s ease;
    transition: -webkit-transform .3s ease;
    -o-transition: transform .3s ease;
    transition: transform .3s ease;
    transition: transform .3s ease, -webkit-transform .3s ease; }
  .staff__item__hover .bg__ter {
    opacity: .8; }

@media all and (min-width: 550px) {
  .staff__item {
    width: 50%;
    margin-bottom: 3em; } }

@media all and (min-width: 769px) {
  .staff__item {
    width: 33.333%; } }

.lte-ie8 .staff__item {
  width: 33.333%; }

@media all and (min-width: 1025px) {
  .staff__item {
    width: 25%; } }

.staff__pop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 70;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: visibility 0s ease .3s, opacity .3s ease;
  -o-transition: visibility 0s ease .3s, opacity .3s ease;
  transition: visibility 0s ease .3s, opacity .3s ease; }
  .staff__pop.active {
    visibility: visible;
    opacity: 1;
    -webkit-transition-delay: 0s;
    -o-transition-delay: 0s;
    transition-delay: 0s; }

.staff__pop__bg {
  background: #D8D8D8;
  opacity: .6; }

.staff__pop__inner {
  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: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  pointer-events: none; }

.staff__bio {
  position: relative;
  width: 80%;
  max-width: 940px;
  max-height: 80vh;
  padding: 2em;
  pointer-events: auto;
  background: #fff;
  -webkit-box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.2);
  -webkit-transform: translateY(10%);
  -ms-transform: translateY(10%);
  transform: translateY(10%);
  -webkit-transition: -webkit-transform .3s ease;
  transition: -webkit-transform .3s ease;
  -o-transition: transform .3s ease;
  transition: transform .3s ease;
  transition: transform .3s ease, -webkit-transform .3s ease; }
  .active .staff__bio {
    -webkit-transform: translateY(0%);
    -ms-transform: translateY(0%);
    transform: translateY(0%); }

.staff__bio__image {
  position: relative;
  width: 100%;
  max-width: 200px;
  margin: 0 auto 2em;
  border-radius: 50%;
  border: 6px solid #fff;
  -webkit-box-shadow: 0 0 0 18px rgba(35, 122, 191, 0.5);
  box-shadow: 0 0 0 18px rgba(35, 122, 191, 0.5);
  -webkit-transition: border-width .3s ease, -webkit-box-shadow .3s ease;
  transition: border-width .3s ease, -webkit-box-shadow .3s ease;
  -o-transition: box-shadow .3s ease, border-width .3s ease;
  transition: box-shadow .3s ease, border-width .3s ease;
  transition: box-shadow .3s ease, border-width .3s ease, -webkit-box-shadow .3s ease;
  display: none; }
  .staff__bio__image:before {
    content: '';
    display: block;
    visibility: hidden;
    padding-bottom: 100%; }
  .staff__bio__image * {
    border-radius: 50%; }
  .staff__bio__image [data-img=""] {
    border-radius: 50%; }

.staff__bio__title h3 {
  margin: 0; }

.staff__bio__title p {
  color: #ABB2B9;
  margin: 0 auto;
  max-width: 200px; }

.staff__bio__text {
  max-height: 200px;
  overflow: auto;
  margin: 1em 0;
  scrollbar-width: thin;
  scrollbar-color: #D8D8D8 rgba(216, 216, 216, 0.2);
  -ms-overflow-style: -ms-autohiding-scrollbar;
  line-height: 1.76em;
  font-size: 0.9375em; }
  .staff__bio__text::-webkit-scrollbar {
    width: 10px; }
  .staff__bio__text::-webkit-scrollbar-track {
    background-color: rgba(216, 216, 216, 0.2);
    border-radius: 10px; }
  .staff__bio__text::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #D8D8D8; }
  .staff__bio__text p {
    padding-right: 5px;
    text-align: left; }

.staff__bio__close {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  z-index: 12;
  background: #ccb830;
  color: #fff;
  font-size: 2.25em;
  -webkit-transition: background .3s ease, -webkit-transform .3s ease;
  transition: background .3s ease, -webkit-transform .3s ease;
  -o-transition: background .3s ease, transform .3s ease;
  transition: background .3s ease, transform .3s ease;
  transition: background .3s ease, transform .3s ease, -webkit-transform .3s ease; }
  .staff__bio__close:hover {
    background: #D8D8D8;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg); }

.staff__right {
  text-align: center; }
  .staff__right .button__link--blue a {
    background: #307dcc;
    color: #fff;
    margin-top: 2em; }
    .staff__right .button__link--blue a:hover {
      background: #D8D8D8; }
  .staff__right a[href=""], .staff__right a[href="mailto:"] {
    display: none; }

@media all and (min-width: 769px) {
  .staff__bio__image {
    display: block; }
  .staff__bio {
    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: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 3em; }
  .staff__left {
    width: 40%;
    margin-right: 10%;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    max-width: 230px; }
  .staff__right {
    text-align: left; } }

.lte-ie8 .staff__bio__image {
  display: block; }

.lte-ie8 .staff__bio {
  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: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 3em; }

.lte-ie8 .staff__left {
  width: 40%;
  margin-right: 10%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  max-width: 230px; }

.lte-ie8 .staff__right {
  text-align: left; }

@media all and (min-width: 1025px) {
  .staff__bio {
    padding: 3.75em; }
  .staff__bio__text {
    max-height: 270px; } }
