
#membership {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  height: 70vh;
  font-family: sans-serif;  
}

#pricing { 
  display: grid;
  grid-template-columns: repeat(4, 230px);
  grid-auto-rows: 430px;
  grid-gap: 40px;
  align-items: stretch;
  margin: 60px auto;
}

.box {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  padding: 10px;
  box-sizing: border-box;
  text-align: center;
  background: linear-gradient(90deg, #ff00ff, #262626);
  border-radius: 50px 50px 150px 150px;
  border: 3px solid #ffc98e;
  box-shadow: 0 0 0 3px #323232, 0 0 0 5px #ffc98e, 0 0 0 10px #323232, 0 10px 150px rgba(0, 0, 0, 0.04);
  transition: 0.5s;
}


.box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  pointer-events: none;
}

.box .title .fa {
  margin-top: 20px;
  font-size: 40px;
  color: #ffc98e;
}

.box .title h2 {
  color: #fff;
  margin: 10px 0 0;
  padding: 0;
}

.box .price h4 {
  font-size: 30px;
  color: #ffc98e;
  margin: 10px 0;
  padding: 0;
}

.box .option ul {
  margin: 10px 0;
  padding: 0;
  list-style: none;
}

.box .option ul li {
  color: #fff;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 16px;
  font-weight: bold;
}

.box .option ul li:last-child {
  border-bottom: none;
}

.box .btn {
  display: inline-block;
  background: #ffc98e;
  color: #262626;
  font-weight: bold;
  padding: 5px 10px;
  margin-top: 20px;
  text-decoration: none;
  border-radius: 10px;
}

.box:hover {
    transform: scale(1.1);
  }

