.elementor-31626 .elementor-element.elementor-element-bc08308{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-a89061c */body{
  background-color: white;
  margin:0 auto;
}  
.team {
    margin: 50px auto;
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 400px;

  }
  .team .title {
    width: 10%;
    align-content: center;
  }
  .team .title h1 {
    font-size: 50px;
    font-family: Outfit;
    color: grey;
  }
  .team .membs {
    width: 80%;
    display: flex;
    justify-content: flex-end;
    
  }
  .membs .mem {
    width: 20%;
    height: 100%;
    overflow: hidden;
    border-radius: 10px;
    transition: width 0.6s ease; /* Smooth transition for hover effect */
    display: flex; /* Use flexbox to center the image */
    align-items: center; /* Vertically center the image */
    justify-content: center; /* Horizontally center the image */
    margin: 0 5px;
    position: relative;
  }

  .membs .mem img {
    height: 100%; /* Ensure the image takes full height */
    width: 100%; /* Maintain aspect ratio */
    object-fit: cover; /* Ensure the image covers the container */
    object-position: center; /* Center the image */
    display: block;
    filter: grayscale(100%); /* Apply black and white filter */
    transition: filter 0.3s ease; /* Smooth transition for filter effect */
  }

  .membs .mem:hover {
    width: 40%;
  }
  .membs .mem:hover img {
    filter: none; /* Remove the black and white filter on hover */
  }
  .membs .mem .disc {
    position: absolute;
    z-index: 10;
    bottom: 30px;
    width: 80%;
    padding: 10px;
    background: #27272a;
    backdrop-filter: blur(3.25px);
    border-radius: 10px;
    opacity: 0;
    transition: opacity 0.5s;
    color: white;
    font-family: Outfit;
    text-align: center;
    background: rgba(255, 255, 255, 0.04);
border: 2px solid rgba(10, 13, 23, 0.05);
backdrop-filter: blur(190px);

  }
  .membs .mem:hover .disc {
    display: block;
    opacity: 1;
  }/* End custom CSS */