.price_wrapper .price_top h2 {
	margin-bottom: 20px;
}

.price_wrapper .price_top {
	max-width: 90%;
	margin: 0 auto;
	text-align: center;
	margin-bottom: 48px;
}

.price_wrapper .price_top p {
	font-weight: 500;
	line-height: 2em;
	margin: 0;
}

.price_wrapper .price_flex {
	grid-template-columns: 1fr 1fr;
	grid-auto-columns: 1fr;
	display: grid;
	grid-column-gap: 3rem;
	grid-row-gap: 3rem;
	grid-template-rows: auto;
}

.price_wrapper .price_card {
	flex-flow: column;
	justify-content: space-between;
	align-items: flex-start;
	padding: 40px 25px 25px;
	display: flex;
	border: 1px solid #f0f1f5;
}

.price_wrapper .cad_title {
	font-size: 25px;
	font-weight: 700;
	line-height: 25px;
	display: inline-flex;
}

.price_wrapper .price_card_top {
	margin-bottom: 40px;
}

.price_wrapper .card_desc h6 {
	margin: 0;
	color: #0071b4;
	font-size: 16px;
	font-weight: 600;
	line-height: 26px;
	/* margin-top: 5px; */
}

.price_wrapper .card_desc {
	margin-top: 5px;
}

.price_wrapper .card_desc p {
	margin: 0;
	font-size: 13px;
	font-weight: 500;
	line-height: 24px;
	color: #222325;
	font-family: "Open Sans", sans-serif;
}

.price_wrapper .price_main {
	border-bottom: 1px solid #075380;
	margin-bottom: 20px;
}

.price_wrapper .p_flex {
	flex-flow: row;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: 10px;
	display: flex;
	width: 100%;
}

.price_wrapper .payment_type {
	display: flex;
}

.price_wrapper .payment_type .contract_icon {
	background-position: 50%;
	background-repeat: no-repeat;
	background-size: contain;
	width: 35px;
	height: 35px;
	margin-right: 10px;
}

.price_wrapper .payment_titles {
	font-size: 20px;
	font-weight: 600;
	line-height: 30px;
	color: #001822;
}

.price_wrapper .p_cost {
	font-size: 20px;
	font-weight: 700;
	line-height: 25px;
	color: #075380;
}

.price_wrapper .pricing_desc p {
	font-size: 14px;
	font-weight: 500;
	line-height: 24px;
	color: #001822;
	max-width: 33ch;
	margin-bottom: 10px;
}

.price_wrapper .price_content {
	width: 100%;
}

/* Make the button row a flex container and keep the vertical spacing here */
.price_wrapper .price_btn {
  display: flex;
  align-items: center;
  gap: 12px;           /* space between button and PayPal text */
  flex-wrap: wrap;     /* lets it wrap on mobile */
  margin-top: 40px;    /* was on the button — move to the row */
}

/* Keep all the button’s visual styles (minus margin-top) */
.price_wrapper .price_btn .hs-button {
  padding: 20px 35px;
  line-height: 2em;
  font-size: 16px;
  letter-spacing: .5px;
  border: 0;
}
/* PayPal inline block */
.price_wrapper .paypal-inline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #333;
}

.price_wrapper .paypal-inline img {
  height: 20px;
  width: auto;
}

.price_wrapper .price_main:last-child .pricing_desc p {
	max-width: unset;
}

@media (max-width: 991px){
	.price_wrapper .price_flex {
		grid-column-gap: 2rem;
	}

	.price_wrapper .price_top {
		max-width: 100%;
	}
}

@media (max-width: 767px){
	.price_wrapper .price_flex {
		display: flex;
		flex-flow: column;
	}

	.price_wrapper .cad_title {
		font-size: 20px;
	}

	.price_wrapper .price_top p {
		line-height: 26px;
	}
/* Make the button full-width and center the PayPal line under it on phones */
.price_wrapper .price_btn .hs-button {
  width: 100%;
  text-align: center;
  justify-content: center;
}

.price_wrapper .paypal-inline {
  width: 100%;
  margin-top: 8px;     /* sits under the button */
  justify-content: center;
}
@media (max-width: 479px){
	.price_wrapper .price_card {
		padding-top: 20px;
		padding-left: 10px;
		padding-right: 10px;
	}

	.price_wrapper .payment_titles {
		font-size: 16px;
		line-height: 26px;
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.price_wrapper .p_cost {
		font-size: 16px;
		line-height: 26px;
	}
}