.memlist_container {
  width: 950px;
  min-height: 500px;
  margin: auto;
  margin-top: 20px;
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  gap: 10px;
  background: rgb(81 88 153 / 21%);
  backdrop-filter: blur(5px);
  box-sizing: border-box;
  padding: 20px;
}

.memlist_wrap {
  width: 30%;
  height: 270px;
  display:flex;
  flex-wrap: wrap;
  background: #474e8e;
  gap: 0px;
}

.memlist_1top {
  height: 5px;
  width: 100%;
  background: #cb9fa2;
}

.memlist_1pic {
  width: 150px;
  height: 250px;
  background-size: cover;
  position:relative
}

.memlist_1pic img {
  position: absolute;
  transform: rotate(90deg);
  top: 20%;
  bottom: 0;
  left: -33%;

}

.memlist_1info {
  width: calc(100% - 150px);
  height: 250px;
  box-sizing: border-box;
  padding: 15px;
}

.memlist_1name {
  width: 100%;
  background: #cb9fa2;
  height: 15px;
  color: #222;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
}

.memlist_2pic {
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
  height: 230px;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hover2 {
  background: #cb9fa2;
  display:none;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  padding: 5px;
  transition: ease 1s;
}

.memlist_2pic:hover .hover2 {
  display: block;
  transition: ease 1s;
}

.memlist_2name {
  width: 100%;
  height: 15px;
  color: #222;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
}

.mem3 {
  position: relative;
  background-size: cover;
  overflow: hidden;
}

.mem3 .name3 {
  position: absolute;
  width: 100%;
  box-sizing: border-box;
  padding-right: 15px;
  bottom: 7px;
  color:#f1ecec;
  z-index: 1;
 font-size: 14px;
  text-align: right;
  text-transform: uppercase;
  font-weight: bold;
  transition: ease 1s;
}

.mem3 .infos3 {
  position: absolute;
  bottom: 0px;
  height: 15px;
  background: rgb(81 88 153 / 68%);
  width: 273px;
  z-index: 2;
  transition: ease 1s;
}

.mem3:hover .infos3 {
  height: 120px;
  transition: ease 1s;
}

.mem3:hover .name3 {
  bottom: 143px;
  transition: ease 1s;
}