  /* LEADERSHIP HEADER */
  .leadership {
    display: flex;
    flex-direction: column;
    padding: 50px 0;
  }
  .breadcrumb {
    display: flex;
    padding-left: 25px;
    color: #D61F29;
    text-transform: uppercase;
    font-weight: 700;
  }
  .heading {
    font-weight: 600;
    font-size: 2em;
    line-height: 2rem;
    padding: 0 25px ;
  }
  /* LEADERSHIP HEADER END */

  /* GRID */
  .photoGrid {
    display: flex;
    flex-direction: column;
    padding: 50px 0;
  }
  .photoGrid .photoRow {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
  }
  .photoRow .photo {
    display: flex;
    flex-direction: column;
    width: calc(100vw - 50px);
    padding: 25px;
  }
  .photoRow .photo img {
/*    width: 100%;*/
    aspect-ratio: 1/1.4;
    border-radius: 25px;
    box-shadow: 5px 5px 10px 5px rgba(0, 0, 0, 0.2);
  }
  .photoRow .photo .name {
    display: flex;
    text-transform: uppercase;
    color: #D61F29;
    font-size: 1.2em;
    font-weight: 600;
    padding: 20px 0 0;
  }
  .photoRow .photo .designation {
    display: flex;
    font-size: 0.9em;
    font-weight: 600;
    padding: 0 0 20px; 
  }
  .photoRow .photo .longNote {
    display: flex;
    justify-content: center;
    border-radius: 20px;
    padding: 5px 0;
    margin: 10px 0 0;
    background: #D61F29;
    width: 160px;
  }
  .photoRow .photo .longNote:hover {
    background: black;
  }
  .photoRow .photo .longNote a {
    border-radius: 20px;
    width: 100px;
    padding: 2px 20px 2px 0px;
    color: white;
    text-decoration: none;
    background: url(../icons/white-arrow.svg);
    background-repeat: no-repeat;
    background-position: center right;
    background-size: 20px 50px;
    transition: all 1s;
  }

  @keyframes ctaAnim {
    from { background-position: center left; }
    to { background-position: center right; }
  }
    .photoRow .photo .longNote a:hover {
      animation-name: ctaAnim;
      animation-duration: 0.6s;
    }

  .loader {
    height: 5px;
    display: flex;
    background: #D61F29;
  }
  span.loadIndicator {
      display: inline-block;
      background: black;
      height: 5px;
      width: 1px;
      transition: all 5s ease-out;
  }
/*  .scaleWidth {
    width: 100% !important;
  }*/
/*  span.loadIndicator:hover {
    animation-name: loadIndicatorAnim;
    animation-duration: 7s;
  }
  @keyframes loadIndicatorAnim {
    from { transform: scaleX(0, 0); }
    to { transform: scaleX(1, 0); }
  }*/

  .photoFrame {
    display: flex;
    width: 100%;
    flex-direction: column;
  }
  .photoFrame img {
    width: 100%;
    transition: all 1s;
  }
 /* .photoFrame img:first-child {
    position: absolute;
    z-index: 3;
  }

  .photoFrame img:last-child {
    position: absolute;
  }*/

@media only screen and (min-width: 768px) {

  .leadership {
    width: 80%;
    margin: 0 auto;
  }

  .photoGrid {
    width: 80%;
    margin: 0 auto;
  }
  .photoGrid .photoRow {
    flex-direction: row;
    justify-content: space-between;
    padding-bottom: 25px;
  }
  span.shortNote {
    min-height: 150px;
  }
  .photoRow .photo {
    width: 25%;
    position: relative;
    padding: 25px 25px 75px;
    border: 1px solid #efefef;
    border-radius: 25px;
  }

  .photoRow .photoempty {
    width: 25%;
    position: relative;
    padding: 25px 25px 75px;
    /* border: 1px solid #efefef; */
    border-radius: 25px;
  }

  span.longNote {
    bottom: 25px;
    position: absolute;
  }

} 

  /* GRID END */