.wrapper .title {
    text-align: center;
    padding: 30px 25px;
  }
  .title article h4 {
    width: 500px;
    display: inline-block;
    padding: 20px;
    font-size: 50px;
    letter-spacing: 1.2px;
    word-spacing: 3px;
    text-transform: uppercase;
    word-wrap: break-word;
    border: 3px solid skyblue;
    border-radius: 15px;
    text-transform: uppercase;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  }
  
  .wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    flex-wrap: wrap;
    margin: 40px auto;
    /* background-color: skyblue; */
  }
  
  .card_Container {
    width: 85%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    justify-items: center;
    padding-inline: 1rem;
  }
  
  .card {
    position: relative;
    width: 280px;
    height: 400px;
    overflow: hidden;
    box-shadow: 0 30px 30px -20px rgba(0, 0, 0, 1),
      inset 0 0 0 1000px rgba(67, 52, 109, 0.6);
    border-radius: 15px;
  }
  
  .card .imbBx,
  .imbBx img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .card .content {
    position: absolute;
    bottom: -200px;
    width: 100%;
    height: calc(300px / 1.5);
    padding-inline: 0.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    backdrop-filter: blur(15px);
    box-shadow: 0 -10px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: bottom 0.5s;
    transition-delay: 0.65s;
  }
  
  .card:hover .content {
    bottom: 0;
    transition-delay: 0s;
  }
  
  .content .contentBx {
    text-align: center;
    transition: 0.5s;
    transition-delay: 0.6s;
    opacity: 0;
    transform: translateY(-20px);
    h3 {
      color: #fff;
      font-size: 1.25rem;
      margin-top: 1rem;
      margin-bottom: 0.25rem;
      line-height: 1.3rem;
      text-transform: uppercase;
      letter-spacing: 2px;
      font-weight: bold;
      span {
        font-size: 0.75rem;
        margin-bottom: 1.75rem;
        font-weight: 300;
        text-transform: initial;
      }
    }
    p {
      color: #eee;
      margin-top: 0.75rem;
      font-size: 0.75rem;
    }
  }
  
  .card:hover .content .contentBx {
    opacity: 1;
    transform: translateY(0);
  }
  
  .content .contentBx h3 span {
    font-size: 12px;
  }
  
  .content .sci {
    position: relative;
    bottom: 10px;
    display: flex;
  }
  
  .content .sci li {
    list-style: none;
    margin: 0 10px;
    transform: translateY(40px);
    transition: 0.5s;
    opacity: 0;
    transition-delay: calc(0.2s * var(--i));
  }
  
  .card:hover .content .sci li {
    transform: translateY(0);
    opacity: 1;
  }
  
  .content .sci li a {
    color: #fff;
    font-size: 24px;
  }
  
  @property --＠color-1 {
    syntax: "<color>";
    inherits: false;
    initial-value: hsl(98 100% 62%);
  }
  
  @property --＠color-2 {
    syntax: "<color>";
    inherits: false;
    initial-value: hsl(204 100% 59%);
  }
  /* colors */
  @keyframes gradient-change {
    to {
      --＠color-1: hsl(210 100% 59%);
      --＠color-2: hsl(310 100% 59%);
    }
  }
  
  article {
    animation: gradient-change 2s linear infinite alternate;
    background: linear-gradient(
      to right in oklch,
      var(--＠color-1),
      var(--＠color-2)
    );
  
    /* old browser support */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  
    /* modern browser version */
    background-clip: text;
    color: transparent;
  }
  .teammember {
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 2px;
    font-weight: 500;
    font-size: 18px;
    margin: 2rem 0;
    line-height: 1.1em;
    padding: 30px 150px;
    background-color: skyblue;
    border-radius: 1rem;
    border: 3px solid rgb(67, 167, 234);
  }
  