/* Pricing table */
.pricing-table {
  position: relative;
  display: block;
  width: 90%;
  margin: auto;
  background: #ffffff;
  font-family: 'Open Sans', sans-serif;
  text-align: center;
}
.basic {
  margin-top: 30px;
  margin-bottom: 30px;
  border-left: 5px solid #5EC6FD;
  -webkit-box-shadow: 0px 0px 9px 0px rgba(0,0,0,0.77);
-moz-box-shadow: 0px 0px 9px 0px rgba(0,0,0,0.77);
box-shadow: 0px 0px 9px 0px rgba(0,0,0,0.77);
}

.table-head {
  padding: 25px 0;
  font-size: 28px;
  font-weight: 900;
  font-color: black !important;
}

.price {
  padding: 8px 0;
  font-size: 32px;
  font-weight: bold;
  color: #ffffff;
}
.basic .price {
  background: #00679E;
}
.standard .price {
  background: #5EC6FD;
}
.premium .price {
  background: #0e83cd;
}
.table-row {
  padding: 10px 0;
  font-size: 14px;
  font-weight: 400;
  color: #888;
}
.table-row:nth-child(2n) {
  background: #f7f7f7;
}

 .title-black {
	font-family: 'Open Sans', sans-serif;
	font-weight: 900;
	font-size: 30px;
	text-align: center;
	margin: 30px;
	text-transform:uppercase;
	color: #000000;
}

/* Button 2 */

.mybtn {
	border: none;
	font-family: inherit;
	font-size: 22px;
	color: inherit;
	background: none;
	cursor: pointer;
	padding: 0px 15px;
	display: inline-block;
	margin: 15px 30px;
	text-transform: uppercase;
	font-weight: 900;
	font-family: 'Open Sans', sans-serif;
	outline: none;
	position: relative;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
	text-decoration: none;
}

.mybtn:after {
	content: '';
	position: absolute;
	z-index: -1;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
	text-decoration: none;
}

/* Button 1 */
.mybtn-1 {
	border: 5px solid #333333;
	color: #333333;
	text-decoration: none;
}

/* Button 1a */
.mybtn-1a:hover,
.mybtn-1a:active {
	color: #ffffff;
	background: #5EC6FB;
	text-decoration: none;
}


