.pricing {
    padding: 100px 0;
    text-align: center;
}

.pricing h2 {
    margin: 0 auto;
    width: 700px;
}

.pricing .subheading {
    margin: 0 auto;
    margin-bottom: 15px;
}

.pricing_wrapper {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: stretch;
}

.price_tier {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: left;
	width: calc((100% - 70px) / 2);
    background-color: var(--white);
    border-radius: 15px;
    padding: 25px;
    margin-top: 32px;
    box-sizing: border-box;
    box-shadow: 0px 3px 19px #0000000D;
}

.price_top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.price_tier .item_icon {
    display: flex !important;
    justify-content: center;
    align-items: center;
    width: 46px;
    height: 46px;
    border-radius: 10px;
    background-color: var(--hour7-light-blue);
    color: var(--white);
    margin-right: 20px;
}

.price_tier .panel_heading {
    display: flex;
    align-items: flex-start;
    margin-right: 25px;
}

.price_tier .item_heading h3 {
    margin: -4px 0 2px;
    line-height: 1.0;
}

.price_tier .item_heading p {
    margin: 0;
    opacity: 0.7;
}

.price_tier .item_summary {
    margin-top: 25px;
}

.price_tier .fa-check-circle {
    color: var(--hour7-gold);
    margin-top: 4px;
    margin-right: 15px;
}

.price h2 {
    color: var(--hour7-gold);
    margin: -16px 0 -10px;
    width: max-content;
}

.price p {
    font-weight: 700;
    margin: 0 0 0 auto;
    width: max-content;
}

.membership_details h4 {
    margin: 25px 0 15px;
}

.membership_detail {
    display: flex;
    align-items: start;
    margin-bottom: 10px;
}

.membership_detail p {
    margin: 0;
}

.price_tier .button {
    margin-top: 20px;
}

.perform_tier {
    background-color: var(--hour7-light-blue);
    color: var(--white);
}

.perform_tier .membership_details h4 {
    color: var(--hour7-gold);
}

.perform_tier .item_icon {
    background-color: var(--hour7-gold);
    color: var(--hour7-blue);
}

.perform_tier .item_heading h3 {
    color: var(--white);
}

@media (max-width: 1100px) {
	.price_tier {
		width: calc((100% - 46px) / 2);
	}
}

@media (max-width: 990px) {
	.pricing_wrapper {
        flex-direction: column;
    }

    .price_tier {
        width: 100%;
    }
}