#club {
  height: 100%;
  display: block;
  padding: 20px;
  margin-bottom: 50px;
  box-shadow: 5px 5px 10px 10px #ccc;
}
#club .title {
  position: relative;
  width: 100%;
  height: 140px;
}
#club .title span {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 20px;
  left: -60px;
  width: 600px;
  height: 80px;
  background-color: #c9bc99;
  box-shadow: 15px 5px 10px 0px rgba(0, 0, 0, 0.2);
  border-radius: 100px;
}
#club .title span::before {
  content: "";
  position: absolute;
  top: 80px;
  left: 0;
  width: 40px;
  height: 60px;
  background-color: #b8ab89;
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
}
#club .title span::after {
  content: "";
  position: absolute;
  top: 35px;
  left: 0;
  width: 35px;
  height: 80px;
  z-index: -1;
  background-color: #c9bc99;
}
#club .title span i {
  font-weight: 700;
  font-size: 32px;
  letter-spacing: 30px;
  color: #eee;
  text-shadow: 3px 3px 1px #ccc;
  transform: scale(1);
  transition: 0.5s;
}
#club .title span i:hover {
  transform: scale(1.2);
  letter-spacing: 40px;
  transition: 0.5s;
}
.club-item {
  display: flex;
  align-items: center;
  margin-bottom: 70px;
}
.club-item .pic {
  width: 55%;
}
.club-item .pic img {
  width: 100%;
  border-radius: 50px;
  box-shadow: 0 0 3px 3px #aaa;
  transform: scale(1);
  transition: 0.5s;
}
.club-item .pic img:hover {
  transform: scale(1.05);
  transition: 0.5s;
  border-radius: 50px;
  box-shadow: 0 0 5px 5px #aaa;
}
.club-text {
  width: 55%;
  background-color: rgba(232, 223, 202, 0.6);
  padding: 50px 30px;
  text-align: center;
  z-index: 1;
  border-radius: 30px;
  transform: scale(1);
  transition: 0.5s;
}
.club-text:hover {
  transform: scale(1.05);
  background-color: rgba(232, 223, 202, 1);
  border: 1px solid #333;
  transition: 0.5s;
}
.club-item h2 {
  font-weight: 700;
  font-size: 28px;
  padding-bottom: 20px;
  letter-spacing: 10px;
  border-bottom: 1px solid #333;
  margin-bottom: 20px;
  transform: scale(1);
  transition: 0.5s;
}
.club-text:hover h2 {
  font-size: 32px;
  transform: scale(1.05);
  transition: 0.5s;
}
.club-item p {
  text-align: justify;
  transform: scale(1);
  transition: 0.5s;
}
.club-text:hover P {
  transform: scale(1.05);
  transition: 0.5s;
}
.club-item > :first-child {
  margin-right: -10%;
}

@media (max-width: 768px) {
  #club .title span {
    left: 0;
    width: 100%;
    border-radius: 0;
  }
  #club .title span::before,
  #club .title span::after {
    display: none;
  }
  .club-item {
    flex-direction: column;
    margin-bottom: 40px;
  }
  .club-item .pic,
  .club-item .club-text {
    width: 100%;
  }
  .club-item > :first-child {
    margin-right: 0;
  }
  .club-item .pic {
    margin-bottom: 20px;
  }
  .club-item:nth-child(3) {
    flex-direction: column-reverse;
  }
  .club-item:nth-child(5) {
    flex-direction: column-reverse;
  }
}
