#faculty  .carousel {
    position: relative;
    width: 23rem;
    height: 23rem;
    perspective: 500px;
    transform-style: preserve-3d;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
  }
  
  #faculty .card-container {
    position: absolute;
    width: 100%;
    height: 100%;
    transform: 
      rotateY(calc(var(--offset) * 50deg)) 
      scaleY(calc(1 + var(--abs-offset) * -0.4))
      translateZ(calc(var(--abs-offset) * -30rem))
      translateX(calc(var(--direction) * -5rem));
    filter: blur(calc(var(--abs-offset) * 1rem));
    transition: all 0.3s ease-out;
    opacity: var(--opacity);
  }
  
  #faculty .card {
    width: 100%;
    height: 100%;
    padding: 2rem;
    background-color: hsl(280deg, 40%, calc(100% - var(--abs-offset) * 50%));
    border-radius: 1rem;
    color: #9CA3AF;
    text-align: center;
    transition: all 0.3s ease-out;
  }
  
  #faculty .card h4 {
      text-align: center;
      padding-top: 5px;
      font-size: 2rem;
      font-weight: bold;
      margin: 0 0 0.7em;
      color: #e31837;
    }
  
  #faculty .card p, #faculty .card h4 {
    transition: all 0.3s ease-out;
    opacity: var(--active);
  }
  
  #faculty .nav {
    color: white;
    font-size: 3rem;
    position: absolute;
    top: calc(50% - 1.5rem);
    z-index: 2;
    cursor: pointer;
    user-select: none;
    background: none;
    border: none;
  }
  
  #faculty .nav i {
    vertical-align: middle;
  }
  #faculty .card-text{
        text-align: center;
  }
  
  #faculty .nav.left {
    left: 1rem;
    color: #e31837;
}

#faculty .nav.right {
    right: 1.5rem;
    color: #e31837;
  }



  .owl-nav button {
    position: absolute;
    top: 50%;
    background-color: #fff;
    color: #fff;
    margin: 0;
    transition: all 0.3s ease-in-out;
  }
  .owl-nav button.owl-prev {
    left: 0;
  }
  .owl-nav button.owl-next {
    right: 0;
  }
  
  .owl-dots {
    text-align: center;
    padding-top: 15px;
  }
  .owl-dots button.owl-dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    display: inline-block;
    background-color: #000 !important;
    margin: 0 3px;
  }
  .owl-dots button.owl-dot.active {
    background-color: #fff !important;
  }
  .owl-dots button.owl-dot:focus {
    outline: none;
  }
  .owl-nav button {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(255, 255, 255, 0.38) !important;
  }
  span {
      font-size: 70px;    
      position: relative;
      /* top: -5px; */
  }
  .owl-nav button:focus {
      outline: none;
  }

  #faculty h4{
    font-size: 18px;
    color: #fff;
    font-weight: 700;

  }
  #faculty p{
    font-size: 18px;
      color: #fff;
      text-align: center;
      font-weight: 300;
    }
