.house {
    padding-top: 50px;
    padding-bottom: 60px;
}
.house.--bt {
    border-top: 1px solid #e6e6e6;
}
.house__title {
    margin-bottom: 40px;
}
.house__wrap {
    grid: none/1.5fr 1fr;
    gap: 30px;
}
.house__img-wrap {
    position: relative;
}
.house__discount {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 252px;
    height: 256px;
    color: #fff;
    margin-left: -5px;
    transform: translate(-50%, -50%);
}
.house__discount-title {
    font-weight: 500;
    margin-bottom: 5px;
}
.house__discount-count {
    font-size: 35px;
    font-weight: 700;
}
.house__discount-bg {
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute;
}
.house__subtitle {
    font-size: 20px;
    line-height: 26px;
    font-weight: 500;
    margin-bottom: 41px;
}
.house__subtitle sup {
    font-size: 0.6em;
}
.house__range {
    margin-bottom: 55px;
}
.house__range .noUi-tooltip sup:before {
    font-size: 9px;
    content: "2";
}
.house__range.noUi-horizontal .noUi-tooltip {
    bottom: -25px;
}
.house__selects {
    display: grid;
    grid: none/repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 27px;
}
.house__text {
    margin-bottom: 25px;
}
.house__total {
    display: flex;
    align-items: center;
    padding: 30px 30px 30px 22px;
    border-radius: 4px;
    color: #fff;
    background-color: var(--primary-color);
}
.house__value-head {
    display: flex;
    align-items: center;
    margin-bottom: 3px;
}
.house__value-title {
    padding-left: 14px;
    font-size: 14px;
    padding-top: 2px;
}
.house__value-body {
    padding-left: 33px;
}
.house__value-count {
    font-size: 28px;
}
.house__value-count var {
    font-weight: 700;
}
.house__value-count u {
    margin-left: 6px;
}
.house__btn {
    width: 100%;
    max-width: 175px;
    margin-left: auto;
}
@media screen and (min-width: 1576px) {
	.house__wrap {
		grid: none/1.2fr 1.04fr;
	}
}
@media screen and (max-width: 1220px) {
    .house__wrap {
        grid: none/repeat(2, 1fr);
    }
    .house__discount {
        margin-top: -100px;
    }
	.house__img-wrap img {
		width: auto ;
		height: auto;
		image-rendering: -moz-crisp-edges;
		image-rendering: -o-crisp-edges;
		image-rendering: -webkit-optimize-contrast;
		image-rendering: crisp-edges;
		-ms-interpolation-mode: nearest-neighbor;
	}
}
@media screen and (max-width: 992px) {
    .house__wrap {
        grid: none/1fr;
    }
    .house__discount {
        margin-top: 0;
    }
}
@media screen and (max-width: 767px) {
    .house {
        padding-top: 35px;
        padding-bottom: 45px;
    }
    .house__title {
        text-align: center;
        margin-bottom: 25px;
    }
    .house__calc {
        z-index: 5;
        margin-top: -20px;
        position: relative;
    }
}
@media screen and (max-width: 480px) {
    .house__subtitle {
        margin-bottom: 15px;
    }
    .house__range {
        margin-bottom: 45px;
    }
    .house__selects {
        grid: none/1fr;
        margin-bottom: 20px;
    }
    .house__text {
        margin-bottom: 22px;
    }
    .house__total {
        flex-wrap: wrap;
        padding: 25px;
    }
    .house__value {
        width: 100%;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    .house__value-icon {
        display: none;
    }
    .house__value-title {
        padding-left: 0;
        text-align: center;
    }
    .house__value-head {
        display: block;
    }
    .house__value-body {
        display: block;
        padding-left: 0;
    }
    .house__btn {
        margin-right: auto;
        margin-top: 8px;
    }
}