#subscriptionSection {
  padding: 3rem 0;
  background: #f5f5f5;
}

#subscriptionSection h1 {
  color: #022c5b;
}

.sub-service {
  max-width: 320px;
  margin: 0 auto;
}

.sub-circle {
  position: relative;
  border-radius: 50%;
  width: 100%;
  height: auto;
  padding-top: 100%;
  z-index: 10;
}

.sub-circle-classic {
  background: #FBC149;
  background: -webkit-linear-gradient(top right, #FBC149, #F85006);
  background: -moz-linear-gradient(top right, #FBC149, #F85006);
  background: linear-gradient(to bottom left, #FBC149, #F85006);
}

.sub-circle-smart {
  background: #BF2F95;
  background: -webkit-linear-gradient(top right, #BF2F95, #E61273);
  background: -moz-linear-gradient(top right, #BF2F95, #E61273);
  background: linear-gradient(to bottom left, #BF2F95, #E61273);
}

.sub-circle-deluxe {
  background: #3E699A;
  background: -webkit-linear-gradient(top left, #3E699A, #32475C);
  background: -moz-linear-gradient(top left, #3E699A, #32475C);
  background: linear-gradient(to bottom right, #3E699A, #32475C);
}

.sub-title-holder {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  width: 100%;
  height: auto;
}

.sub-title, .sub-price, .sub-terms {
  display: block;
  color: white;
  text-align: center;
}

.sub-title {
  font-weight: 400;
}

.sub-price {
  font-weight: bolder;
  font-size: 1.6rem;
}

.sub-benefits {
  position: relative;
  background: white;
  text-align: center;
  padding: 1rem;
  border: none;
  border-radius: 1.5rem;
  font-weight: bold;
  color: #022c5b;
  box-shadow: 0px 2px 8px rgba(0,0,0,0.2);
  margin-top: -2rem;
  margin-bottom: .5rem;
  z-index: 11;
}

.sub-cta {
  display: block;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
  color: white;
  box-shadow: 2px 2px 16px 0px rgba(0,0,0,0.30) inset;
  transition: all .3s ease;
  border-radius: 0.4rem;
}

.sub-cta-classic {
  background: #f88900;
}

.sub-cta-smart {
  background: #f00473;
}

.sub-cta-deluxe {
  background: #32516d;
}

