*{
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  .roboto-thin {
    font-family: "Roboto", sans-serif;
    font-weight: 100;
    font-style: normal;
  }
  
  .roboto-medium {
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-style: normal;
  }
body{
  background: rgb(27,27,27);
}
body h1{
  text-align: center;
  justify-content: center;
}
}
.card-container{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
  margin-top: 100px;
}
.card{
  width: 325px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0px,5px,10px rgba(0,0,0,0.3);
  cursor:pointer;
}
.card-content{
  padding: 30px,30px;
  line-height: 1.3;
}
.card-content h1{
  font-size: 35px;
  margin-bottom: 10px;
  color: #000;
}
.card-content p{
  font-size: 17px;
  margin-bottom: 20px;
  color: #000;
}
.wrap{
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}
.wrapper .title{
  text-align: center;
}
.title h4{
  display: inline-block;
  padding: 20px;
  color:white;
  font-size: 50px;
  font-weight: 500;
  letter-spacing: 1.2px;
  word-spacing: 5px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 15px;
  text-transform: uppercase;
  backdrop-filter: blur(15px);
  box-shadow: 0,10px,10px,rgba(0,0,0,0.1);
  word-wrap: break-word;
}
.wrapper .team-container{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin: 40px , 0;
}
.team-container .team{
  position:relative;
  width: 300px;
  height: 300px;
  margin: 20px;
  overflow: hidden;
  box-shadow: 0 30px  30px -20px rgba(0,0,0,1);
              inset: 0 0 0 1000px rgba(67,52,109,.6) ;
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.team .imbBx, .imbBx img{
  width: 100%;
  height: 100%;

}
.team .content{
  position: absolute;
  bottom: -160px;
  width: 100%;
  height: 160px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  backdrop-filter: blur(15px);
  background: 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;

}
.team:hover .content{
  bottom: 0;
  transition-delay: 0s;
}
.content .contentBx h3{
  text-transform: uppercase;
  color: white;
  letter-spacing: 2px;
  font-weight: 500;
  font-size: 18px;
  text-align: center;
  margin: 20px 0 15px;
  line-height: 1.1em;
  transition: 0.5s;
  transition-delay: 0.6s;
  opacity: 0;
  transform: translateY(-20px);
}
.team:hover .content .contentBx h3{
   opacity: 1;
   transform: translateY(0);
}
.content .contentBx span{
  font-size:12px;
  font-weight:300;
  text-transform: initial;
}