
.single-pricing-estimate-section {
    background-color: var(--gray);
}
.single-pricing-estimate-section .price-content {
    background-color: var(--white);
    border-radius: 30px;
    padding: 38px 54px 54px;
    max-width: 1147px;
    margin-left: auto;
    margin-right: auto;
}
.single-pricing-estimate-section .price-heading {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}
.single-pricing-estimate-section .price-heading h6{
	margin-bottom: 0;
    color: var(--black);
}
.single-pricing-estimate-section .price-heading img{
	max-width: 100px;
}
.single-pricing-estimate-section .price-content h2{
	color: var(--blue);
}
.single-pricing-estimate-section .price-table {
    margin-top: 60px;
    border-top: 3px solid var(--black);
}
.single-pricing-estimate-section .price-row {
    border-bottom: 3px solid var(--black);
    padding: 22px 0;
    display: flex;
    justify-content: space-between;
    column-gap: 15px;
}
.single-pricing-estimate-section .price-row p {
    margin-bottom: 0;
}
.single-pricing-estimate-section .price-row p:last-child{
    font-weight: 600;
    text-align: right;
    flex-shrink: 0;
}
.single-pricing-estimate-section .bottom-content {
    text-align: center;
    margin-top: 78px;
}
.single-pricing-estimate-section .bottom-content .desc{
    max-width: 465px;
    margin: 25px auto 0 ;
}
@media only screen and (max-width: 991px) {
    .single-pricing-estimate-section .price-content {
        padding: 35px;
    }
    .single-pricing-estimate-section .bottom-content{
        margin-top: 35px;
    }
    .single-pricing-estimate-section .price-table{
        margin-top: 35px;
    }
}
@media only screen and (max-width: 767px) {
    .single-pricing-estimate-section .price-content {
        padding: 20px;
        border-radius: 15px;
    }
    .single-pricing-estimate-section .price-heading {
        margin-bottom: 22px;
        flex-direction: column;
    }
    .single-pricing-estimate-section .price-row {
        padding: 16px 0;
    }
}