.page.page-people h2,
.page.page-people h3 {
    margin-bottom: 30px;
    margin-top: 0px;
    font-style: italic;
    font-weight: lighter !important;
    padding-bottom: 0px;
    padding-top: 0px;
    color:#000000;
    font-family: 'HeldanetText RegularItalic' !important;
}

.page.page-people h3 {
  border-bottom: 1px solid #676868;
  border-top: 1px solid #676868;
  padding:10px 0px;
  margin-bottom: 20px !important;

}

.page.page-people .row div .requiem-project-header {
    margin-bottom: 30px;
    margin-top: 10px;
}

.page.page-people .row div .requiem-project-header {
    font-size: 25px;
}

@media screen and (min-width: 768px) {
    .page.page-people .row div .requiem-project-header {
        font-size: 19px;
    }
}

@media screen and (min-width: 1200px) {
    .page.page-people .row div .requiem-project-header {
        font-size: 25px;
    }
}

.page.page-people h1{
    margin-bottom: 0px !important;
    padding-top: 10px;
}

.page-menu-people{
    padding: 10px 0px;
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    background-color: white;
}

.page-menu-people a{
    background-color: white;
    text-transform: uppercase;
    margin: 0px;
    text-align: center;
    font-family: 'ABCDiatype-Regular' !important;
    font-weight: 400;
    font-size: 12px;
    color:#666666 !important;
    letter-spacing: 0.7px;
}
.page-menu-people a h5{
  font-family: 'ABCDiatype-Regular' !important;
  color:#666666 !important;
  font-size: 12px!important;
  letter-spacing: 2px !important;
}
.page-menu-people a.active{
  color:#D24F39 !important;
}
.page-menu-people a.active h5{
  color:#D24F39 !important;
}



.page-menu-people a:hover{
    /* border-bottom: 1px solid #000; */
}

.scroll-people{
    height: auto;
    overflow: unset;
    overflow-y: unset;
    margin-top: 30px;
    position: relative;
    z-index: 1;
    background-color: white;
}

.scroll-people .people-img{
  display: block;
  position: relative;
  width: 100%;
  padding-top: 66.67%;
  overflow: hidden;
}
.scroll-people .people-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
}

.scroll-people .people-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #cccccc;
  z-index: 1;
}
.scroll-people .people-name{
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #515151;
  font-family: 'ABCDiatype-Regular' !important;
}

.scroll-people.active{
    height: 100vh;
    overflow: scroll;
    overflow-y: auto;
}

#peopleonChange{
    display: none;
    width: 100%;
    /* height: 40px; */
    border: none;
    text-transform: uppercase;
    font-family: 'ABCDiatype-Regular' !important;
    color: #666666;
    font-size: 12px;
}
#peopleonChange p,
#peopleonChange ul li label{
  font-family: 'ABCDiatype-Regular' !important;
  color: #666666!important;
  font-size: 12px!important;
  padding: 10px 25px;
}
#peopleonChange .select-box__icon{
  right: auto;
  left: 0;
  width: 12px;
  height: 12px;
}
#peopleonChange .select-box__current{
  box-shadow: none!important;
}

.page-menu-people a{
    display: block;
}

@media screen and (max-width: 1200px) {
    #peopleonChange{
        display: block;
    }

    .page-menu-people{
        padding-top:0px;
        text-align: left;
        display: flex;
        flex-direction: column;
        align-items: baseline;
        margin-top: 10px;
    }

    .page-menu-people a{
        display: none;
    }
}

.page-fixed{
    position: sticky;
    background-color: white;
    width: 100%;
    top:85px;
    left: 0;
    z-index: 2;
    @media (min-width: 1200px) {
      top: 60px;
    }

    &:before {
      @media (min-width: 1200px) {
        background: #fff;
        bottom: 0;
        content: '';
        left: 50%;
        margin-left: -50vw;
        margin-right: -50vw;
        position: absolute;
        right: 50%;
        top: 0;
        width: 100vw;
        z-index: -1;
      }
    }
}

.select-box {
    position: relative;
    display: block;
    width: 100%;
    margin: 0 auto;
  }
  @media (min-width: 768px) {
    .select-box {
      width: 70%;
    }
  }
  @media (min-width: 992px) {
    .select-box {
      width: 50%;
    }
  }
  @media (min-width: 1200px) {
    .select-box {
      width: 30%;
    }
  }
  .select-box__current {
    position: relative;
    box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    outline: none;
  }
  .select-box__current:focus + .select-box__list {
    opacity: 1;
    -webkit-animation-name: none;
            animation-name: none;
  }
  .select-box__current:focus + .select-box__list .select-box__option {
    cursor: pointer;
  }
  .select-box__current:focus .select-box__icon {
    transform: translateY(-50%) rotate(180deg);
  }
  .select-box__icon {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    width: 20px;
    opacity: 1;
    transition: 0.2s ease;
  }
  .select-box__value {
    display: flex;
  }
  .select-box__input {
    display: none;
  }
  .select-box__input:checked + .select-box__input-text {
    display: block;
  }
  .select-box__input-text {
    display: none;
    width: 100%;
    margin: 0;
    padding: 15px;
    background-color: #fff;
    color: black !important;
    font-size: 16px !important;
  }
  .select-box__list {
    position: absolute;
    width: 100%;
    padding: 0;
    list-style: none;
    opacity: 0;
    -webkit-animation-name: HideList;
            animation-name: HideList;
    -webkit-animation-duration: 0.5s;
            animation-duration: 0.5s;
    -webkit-animation-delay: 0.5s;
            animation-delay: 0.5s;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
    -webkit-animation-timing-function: step-start;
            animation-timing-function: step-start;
    box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.1);
  }
  .select-box__option {
    display: block;
    padding: 15px;
    background-color: #fff;
    margin-bottom:0px;
    font-size: 16px !important;
  }
  .select-box__option:hover, .select-box__option:focus {
    color: #546c84;
    background-color: #fbfbfb;
  }

  @-webkit-keyframes HideList {
    from {
      transform: scaleY(1);
    }
    to {
      transform: scaleY(0);
    }
  }

  @keyframes HideList {
    from {
      transform: scaleY(1);
    }
    to {
      transform: scaleY(0);
    }
  }

@media screen and (min-width: 768px) {
}
@media screen and (min-width:992px) {
}
@media screen and (min-width: 1200px) {
  .page-menu-people {
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
    width: 100%;
  }
}

.scroll-people .people-accreditation {
  color: #515151;
  font-family: 'ABCDiatype-Regular' !important;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-top: 2px;
  text-transform: uppercase;
}

[data-title="Lisa M. Matkovic"] {
  order: -2;
}

[data-title="Nune Dzhunelova"] {
  order: -1;
}
