/*****************************people page*************************************/
.people{
    min-height: 100vh;
  }
  
  
  
  
  .infocardContainer {
    display: flex;
    height: 350px;
    width: 233px;
    background: #ffffff;
    transition: all 200ms ease-in; 
    margin: auto;
    margin-top: 100px;
    --margin-top: 100px;
    overflow: hidden;
  
  }
  .infocardContainer:hover {
    width: 580px;
    /* transition: all .5s ease-out; */
  }
  
  .infocardContainer div {
    color: white;
    flex-shrink: 1;
    width: 100%;
    --background-color: green;
  }
  .infocardContainer div * {
    display: flex;
    --flex: inherit; 
    overflow: hidden;
    text-overflow: hidden;
    --background-color: yellow;
    color: white;
    width: 0;
    height: auto;
    /* transition: all 450ms ease-in;
    transition-delay: 1s;  */
  }
  .infocardContainer:hover div *{
    display: flex;
    visibility: visible;
    /* transition: all 1s ease-out;
    transition-delay: 1500ms;  */
    width: 100%;
    height: auto;
  }
  
  
  .infocardContainer #main, .infocardContainer #main img{
    height: 350px;
    width: 233px;
    padding-right: 10px;
    flex-shrink: 0;
    object-fit: cover;
  }
  .infocardContainer #main img{
    height: 350px;
    width: 233px;
    transition: none;
    display: float;
    position: relative;
    margin: 0 0 0 0; padding: 0 0 0 0;
  }
  .infocardContainer #textbois p {
    width: 100%;
    font-size: 15px;
    padding: 15px;
    font-weight: 300;
    color: #050505;
    transition: all 1s ease-out ; 
    transition-delay: 1s; 
  }
  .infocardContainer #textbois{
    position: relative;
  }
  
  
  .mobile-people{
    display: none;
  
  }
  
  @media(max-width:991px){
    .people{display: none !important;}
  
    .mobile-people{
    display: block;
  
  }
  .people-mob-content{
    font-size: 14px;
    min-height: 50vh;
  }
  
  .people-mob-img{
  
    height: 50vh;
    object-fit: cover;
    object-position: 0% 30%;
  }
  
  }
  