
.pricing{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
	margin-bottom: 40px;
}

.pricing h1{
    text-align: center;
	padding: 20px;
    color: #000;
	font-weight: bold;
    font-size: 34px;
	color: #fff;
	height: 80px;
}

.box del{
    font-size: 20px;
	margin-left: 20px;
	color: #cd9a30;
}
.box sup{
    font-size: 16px;
	padding: 5px;
}

.box{
    border: 1px solid #ddd;
    box-shadow:  0 0 4px rgba(0,0,0,0.2);
	background-color: #fff;
    color: #000;
    border-radius: 9px;
    padding: 0 12px;
}
.box .background{
	margin-top: -15px;
	background-color: #787676;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
}

.box .background li{
	color: #cd9a30;
	font-size: 17px;
}


.box h2{
    text-align: center;
	width: 200px;
	margin: 0 auto;
	background-color: #cd9a30;
    border-radius: 3px;
	color: #fff;
	font-weight: bold;
	margin-top: -20px;
	font-size: 30px;
}

.box ul{
	padding-top: 20px;
	padding-bottom: 10px;
	color: #000;
	font-size: 15px;
}

.box ul li:before {
  content: '✓';
  padding: 5px;
}

.accordion .accordion-item {
  border-bottom: 1px solid #ddd;
}

.accordion .accordion-item button[aria-expanded='true'] {
  border-bottom: 1px solid #cd9a30;
}

.accordion button {
  position: relative;
  display: block;
  text-align: left;
  width: 100%;
  padding: 1em 0;
  color: #777777;
  font-size: 1.15rem;
  font-weight: 400;
  border: none;
  background: none;
  outline: none;
}

.accordion button:hover,
.accordion button:focus {
  cursor: pointer;
  color: #cd9a30;
}

.accordion button:hover::after,
.accordion button:focus::after {
  cursor: pointer;
  color: #cd9a30;
  border: 1px solid #cd9a30;
}

.accordion button .accordion-title {
  padding: 1em 1.5em 1em 0;
}

.accordion button .icon {
  display: inline-block;
  position: absolute;
  top: 18px;
  right: 0;
  width: 22px;
  height: 22px;
  border: 1px solid;
  border-radius: 22px;
}

.accordion button .icon::before {
  display: block;
  position: absolute;
  content: '';
  top: 9px;
  left: 5px;
  width: 10px;
  height: 2px;
  background: currentColor;
}
.accordion button .icon::after {
  display: block;
  position: absolute;
  content: '';
  top: 5px;
  left: 9px;
  width: 2px;
  height: 10px;
  background: currentColor;
}

.accordion button[aria-expanded='true'] {
  color: #cd9a30;
}
.accordion button[aria-expanded='true'] .icon::after {
  width: 0;
}
.accordion button[aria-expanded='true'] + .accordion-content {
  opacity: 1;
  max-height: 80em;
  transition: all 200ms linear;
  will-change: opacity, max-height;
}
.accordion .accordion-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 200ms linear, max-height 200ms linear;
  will-change: opacity, max-height;
}
.accordion .accordion-content ul {
  font-size: 1rem;
  font-weight: 300;
  margin: 2em 0;
  padding-top: 5px;
}
.accordion-content  h6{
  padding: 10px 0;
}