/**
 * Pricing Estimates Section
 */

.pricing-estimates-section {
	background: var(--white);
}
.pricing-estimates-section .row {
	align-items: stretch;
}
.pricing-estimates-section .col {
	width: 50%;
	display: flex;
}
.pricing-estimates-section .description {
    text-align: center;
    margin-top: 50px;
    margin-left: auto;
    margin-right: auto;
    max-width: 675px;
}
.pricing-estimates-section .card-block {
	width: 100%;
	background: var(--gray);
	border-radius: 30px;
	padding: 40px 40px 70px;
}
.pricing-estimates-section .illustration {
	margin-bottom: 24px;
	padding-top: 80%;
	position: relative;
}
.pricing-estimates-section .illustration img {
    width: 100%;
    object-fit: contain;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    position: absolute;
    height: 100%;
    max-height: 430px;
    max-width: 480px;
    left: 0;
    right: 0;
    margin: 0 auto;
}
.pricing-estimates-section .card-block h3.h2 {
	margin-bottom: 15px;
}
.pricing-estimates-section .card-block p {
	margin-bottom: 30px;
	max-width: 400px;
}
.pricing-estimates-section .price:not(.price-note) {
	display: block;
	font-weight: 600;
	color: var(--blue);
	margin-bottom: 8px;
}
.pricing-estimates-section .card-block .subtitle {
    margin-bottom: 20px;
    font-size: 20px;
    text-transform: inherit;
}
.pricing-estimates-section .breakdown-list {
	list-style: none;
	margin: 0;
	padding: 0;
}
.pricing-estimates-section .breakdown-list li {
	display: flex;
	align-items: center;
	justify-content: space-between;
	column-gap: 20px;
	padding: 21px 0;
	border-top: 3px solid var(--black);
	margin-bottom: 0 !important;
}
.pricing-estimates-section .breakdown-list li:last-child {
	border-bottom: 3px solid var(--black);
}
.pricing-estimates-section .breakdown-list .value {
	font-weight: 600;
	text-align: right;
	flex-shrink: 0;
}
.pricing-estimates-section .listing-wrap {
    margin-top: 55px;
}
@media only screen and (max-width: 1199px) {
	.pricing-estimates-section .card-block h3.h2 {
		font-size: 44px;
	}
}
@media only screen and (max-width: 991px) {
	.pricing-estimates-section .card-block {
		padding: 30px;
	}
	.pricing-estimates-section .card-block h3.h2 {
		font-size: 38px;
	}
}
@media only screen and (max-width: 767px) {
	.pricing-estimates-section .description {
		margin-top: 30px;
	}
	.pricing-estimates-section .col {
		width: 100%;
	}
	.pricing-estimates-section .card-block {
		padding: 24px;
		border-radius: 18px;
	}
	.pricing-estimates-section .illustration img {
		max-width: 240px;
	}
	.pricing-estimates-section .breakdown-list li {
		padding: 12px 0;
	}
}
