/* normalize */


.container {
    width: 1340px;
    max-width: 100%;
    height: 100%;
    margin: 0 auto;
    padding: 0 15px;
}
.flex {
    display: flex;
}

.loans-row {
    gap: 25px;
}
.loan-item {
    position: relative;
    flex-basis: 0;
    flex-grow: 1;
    border-radius: 10px;
    color: #fff;
    padding: 25px;
    background-size: cover;
    background-position: top;
}
.loan-item:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30,33,50,0.75);
    border-radius: 10px;
}
.loan-item-inner {
    position: relative;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
}
.loan-item-title {
    text-transform: uppercase;
}
.loan-item-desc {
    font-size: 14px;
    margin: 10px 0 15px 0;
}
.loan-item-nums {
    gap: 20px;
    font-size: 13px;
    margin-bottom: 35px;
}
.loan-item-num {
    flex-basis: 0;
    flex-grow: 1;
}
.loan-item-num b {
    display: block;
    font-size: 20px;
}
.loan-item-inner > .btn {
    margin-top: auto;
}
.projects-row {
    flex-wrap: wrap;
    gap: 25px;
}
.project-item {
    width: calc((100% - 50px) / 3);
    border-radius: 10px;
    overflow: hidden;
}
.project-item.project-item-empty {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}
.project-item.project-item-empty .section-title {
    margin-bottom: 0;
}
.project-item.project-item-empty .btn {
    margin-top: 30px;
}
.project-item-img {
    display: block;
    height: 320px;
}
.project-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.project-item-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 15px;
    color: #fff;
}
.project-item-title {
    text-transform: uppercase;
}
.project-item-desc {
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
}
.project-item-desc__item {
    width: calc((100% - 20px) / 2);
    font-size: 14px;
}
.project-item-desc__item .flex {
    align-items: center;
    gap: 5px;
}
.project-item-desc__item b {
    display: block;
    font-size: 20px;
    padding-left: 3px;
}
.project-item-info .btn {
    margin-top: 25px;
    width: 100%;
    justify-content: center;
}
.pros-row {
    flex-wrap: wrap;
    gap: 25px;
}
.pros-item {
    align-items: center;
    gap: 15px;
    padding: 20px;
    width: calc((100% - 50px) / 3);
    background: #f7f8fa;
    border-radius: 10px;
}
.pros-item-icon svg {
    display: block;
}
.repair-wrap {
    gap: 50px;
}
.repair-slider {
    width: 50%;
  /*  flex-shrink: 0;*/
}
.repair-slider .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}
.repair-slider .swiper-button-next, 
.repair-slider .swiper-button-prev {
    width: 40px;
    height: 40px;
    top: auto;
    bottom: 20px;
}
.repair-slider .swiper-button-prev {
    left: auto;
    right: 60px;
}
.repair-slider .swiper-button-next:after, 
.repair-slider .swiper-button-prev:after {
    display: none;
}
.repair-info {
    flex-grow: 1;
}
.repair-info .section-title {
    margin-bottom: 0;
}
.repair-pros {
    list-style: none;
    padding: 0;
    flex-direction: column;
    gap: 15px;
    margin: 30px 0 0;
}
.repair-pros li {
    align-items: center;
    gap: 10px;
    line-height: 1;
}
.repair-pros li:before {
    content: '';
    display: block;
    width: 16px;
    height: 16px;
    background: url(../images/icons/icon-check-circle.svg) no-repeat;
    background-size: contain;
    background-position: center center;
    flex-shrink: 0;
}
.repair-info .video-link {
    margin-top: 35px;
    color: #fff;
    align-items: center;
    gap: 15px;
    line-height: 1;
    max-width: 300px;
    transition: 0.4s ease;
}
.repair-info .video-link svg {
    flex-shrink: 0;
}
.repair-info .video-link:hover {
    color: #00923d;
}
.section-about {
    position: relative;
    overflow: hidden;
}
.about-wrap-image {
    width: 60%;
    flex-shrink: 0;
}
.about-wrap-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px 0 0 10px;
}
.about-wrap-text {
    position: relative;
    background: #fff;
    box-shadow: 0 0 20px 5px rgba(0,0,0,0.15);
    padding: 40px;
    border-radius: 10px;
    margin: 50px -150px 50px 50px;
}
.reviews-row {
    flex-wrap: wrap;
    gap: 25px;
}
.review-item {
    width: calc((100% - 50px) / 3);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 2px 2px 10px 1px rgba(0,0,0,0.15);
}
.review-video .video-link {
    position: relative;
    display: block;
    height: 100%;    
}
.review-video .video-link img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}
.video-play {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: rgba(26,40,54,0.45);
    display: flex;
    align-items: center;
    justify-content: center;
}
.video-play svg {
    display: block;
    background: #fff;
    border-radius: 50%;
    transition: 0.45s ease;
}
.video-play:hover svg {
    fill: #fff;
    background: #00923d;
}
.review-item.review-text {
    background: #fff;
    padding: 20px;
    font-size: 14px;
}
.review-item-top {
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.review-rating {
    width: 60px;
    height: 10px;
    background: url(../images/icons/icon-rating.svg) repeat-x;
}
.review-item-top > img {
    height: 20px;
}
.review-text-content {
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-top: 15px;
}
.read-review {
    margin-top: 15px;
    color: #00923d;
    gap: 5px;
}
.section-link-wrap {
    margin-top: 30px;
    text-align: center;
}

.social-list {
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}
.social-list a {
    display: block;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    overflow: hidden;
    transition: 0.35s ease;
}
.social-list a:hover {
    transform: scale(1.15);
}
.footer-bottom {
    justify-content: space-between;
    align-items: center;
    gap: 20px;    
    font-size: 14px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}
.footer-bottom a {
    color: #2b2e3f;
}
footer a:hover {
    color: #00923d;
}
.modal {
    visibility: hidden;
    display: block;
    opacity: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    z-index: 9999;
    padding: 10% 30px 30px;
    overflow-y: auto;
    transition: opacity .4s;
}
.modal:before {
    content: '';
    display: none;
    background: rgba(0,0,0,0.6);
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}
.modal,
.modal:before {
    position: fixed;
    top: 0;
}
.modal-dialog {
    position: static;
    width: 550px;
    max-width: 95%;
    padding: 40px;
    margin: 0 auto;
    background: #fff;
    border-radius: 10px;
    z-index: 11;
    transform: translate(0,-500%);
    transition: transform .3s ease-out;
}
.modal-header {
    text-align: center;
}
.modal-title {
    font-weight: 700;
    font-size: 24px;
    font-family: 'Cormorant';
}
.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    padding: 0;
    width: 31px;
    height: 31px;
    line-height: 0;
    cursor: pointer;
}
.modal.opened {
    visibility: visible;
    opacity: 1;
    left: 0;
}
.modal.opened .modal-dialog {
    transform: translate(0,0);
}
.modal.opened:before {
    display: block;
}
.modal-body {
    margin-top: 30px;
}
.modal-form {
    flex-direction: column;
    gap: 15px;
}
.modal-form .btn {
    justify-content: center;
}
.modal-form .agreement {
    display: block;
    text-align: center;
    font-size: 12px;
}
.modal-form .agreement a {
    color: #2b2e3f;
    text-decoration: underline;
}
.field-item input,
.field-item textarea {
    width: 100%;
    border: 1px solid #eee;
    padding: 12px;
    border-radius: 10px;
    outline: none;
    transition: 0.35s ease;
}
.field-item input:focus,
.field-item textarea:focus {
    border-color: #2b2e3f;
}
.crumbs-wrap {
    margin-bottom: 10px;
}
.breadcrumb {
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 0.85rem;
}
.breadcrumb li a {
    color: #2b2e3f;
}
.breadcrumb li a:hover {
    color: #00923d;
}
.breadcrumb li.active {
    color: #818181;
}
.text-page-title {
    padding: 40px 0;
}
.text-page-title .section-title {
    margin-bottom: 0 !important;
}
.contacts-wrap {
    gap: 50px;
    justify-content: center;
}
.contacts-block {
    width: 550px;
    max-width: 100%;
}
.contacts-block-item {
    margin-bottom: 25px;
}
.contacts-block-item__title {
    align-items: center;
    gap: 5px;
    color: #818181;
}
.contacts-block-item__text {
    font-weight: 500;
    padding-left: 27px;
    font-size: 1.125rem;
    margin-top: 5px;
}
.contacts-block-item__text a {
    color: #2b2e3f;
}
.contacts-block-item__text a:hover {
    color: #00923d;
}
.contacts-block .social-list {
    margin-left: 27px;
}
.contacts-form-wrap {
    width: 30%;
    flex-shrink: 0;
    background: linear-gradient(0deg, #2b2e3f 10%, rgba(47, 128, 237, 0) 188.75%), url(../images/hero-1.jpg), rgba(43, 46, 63, 0.25);
    background-position: center bottom;
    background-size: cover;
    background-repeat: no-repeat;
    box-shadow: 0px 20px 30px rgba(0,0,0,0.25);
    border-radius: 10px;
    padding: 45px 40px 35px 40px;
}
.contacts-form .field-item {
    margin-bottom: 20px;
}
.contacts-form .btn {
    width: 100%;
    justify-content: center;
}
.contacts-form .agreement {
    font-size: 12px;
    text-align: center;
    display: block;
    margin-top: 5px;
    color: #eee;
}
.contacts-form .agreement a {
    color: #fff;
    text-decoration: underline;
}
.contacts-map {
    width: 100%;
    height: 480px;
    overflow: hidden;
    border-radius: 10px;
    margin-top: 50px;
}
.kp-top {
    position: relative;
    background-size: cover;
    background-position: center;
    color: #fff;
}
.kp-top:before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    background: linear-gradient(90deg, rgba(22,22,22,0.56), transparent);
    top: 0;
    left: 0;
}
.kp-top > .container {
    position: relative;
}
.kp-top .section-title {
    font-size: 66px;
    margin-bottom: 0;
}
.kp-top .section-title {
    margin-bottom: 0;
}
.kp-top .breadcrumb li a {
    color: #fff;
}
.kp-top .breadcrumb li.active {
    color: #eee;
}
.kp-about-wrap {
    align-items: flex-start;
    gap: 50px;
}
.kp-about-text {
    width: 60%;
    flex-shrink: 0;
}
.kp-pros-wrap {
    flex-wrap: wrap;
    gap: 20px;
}
.kp-pros {
    width: calc((100% - 20px) / 2);
    height: auto;
    padding: 20px;
    box-shadow: 2px 5px 10px 0 rgba(22,22,22,0.15);
    text-align: center;
    border-radius: 10px;
}
.kp-pros-text {
    font-weight: 300;
    margin-top: 10px;
}
.kp-left {
    margin-top: 40px;
    align-items: center;
    justify-content: center;
    gap: 40px;
}
.kp-left b {
    font-size: 1.5rem;
}
.kp-slider .swiper-slide {
    height: 320px;
    border-radius: 10px;
    overflow: hidden;
}
.kp-slider .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.kp-slider-nav,
.env-slider-nav {
    align-items: center;
    justify-content: flex-end;
    gap: 25px;
    margin-top: 20px;
}
.kp-slider .kp-slider-nav .swiper-btn,
.kp-slider .kp-slider-nav .swiper-pagination,
.env-slider .env-slider-nav .swiper-btn,
.env-slider .env-slider-nav .swiper-pagination {
    position: static;
    margin-top: 0;
}
.kp-slider .kp-slider-nav .swiper-pagination,
.env-slider .env-slider-nav .swiper-pagination {
    width: auto;
    font-size: 1.25rem;
}
.kp-slider .kp-slider-nav .swiper-btn,
.env-slider .env-slider-nav .swiper-btn {
    color: #fff;
}
.howto-wrap {
    gap: 50px;
    justify-content: center;
    align-items: flex-start;
}
.howto-text {
    width: 50%;
    flex-shrink: 0;
}
.contacts-form-wrap h3 {
    color: #fff;
    line-height: 1;
    margin-bottom: 25px;
    text-align: center;
}
.howto-row {
    flex-direction: column;
    gap: 40px;
}
.howto-item {
    position: relative;
    padding: 30px 0;
}
.howto-item-num {
    font-family: 'Adderley';
    font-size: 170px;
    line-height: 1;
    font-weight: 700;
    position: absolute;
    opacity: 0.3;
    top: -20px;
    left: 0;
    color: #00923d;
    z-index: -1;
}
.howto-item-text a {
    color: #00923d;
    text-decoration: underline;
}
.kp-map {
    position: relative;
    height: 420px;
    border-radius: 10px;
    overflow: hidden;
}
.kp-list {
    gap: 40px;
    flex-wrap: wrap;
}
.kp-item {
    width: calc((100% - 80px) / 3);
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    box-shadow: 2px 5px 10px 0 rgba(22,22,22,0.15);
}
.kp-item-image {
    display: block;
    height: 220px;
}
.kp-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}
.kp-item-info {
    padding: 20px;
}
.kp-item-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    margin: 15px 0 25px 0;    
}
.kp-item-top__block .flex {
    align-items: center;
    gap: 5px;
}
.kp-item-top__block > span {
    font-weight: 700;
    padding-left: 27px;
    display: block;
}
.kp-item-info > .btn {
    width: 100%;
    justify-content: center;
}
.house-wrap {
    align-items: flex-start;
    gap: 50px;    
}
.house-slider {
    width: 60%;
    flex-shrink: 0;
    margin: 0;
}
.house-slider .swiper-slide {
    height: auto;
}
.house-slider .swiper-slide img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 10px;
}
.house-slider .swiper-button-next,
.house-slider .swiper-button-prev {
    width: 40px;
    height: 40px;
    top: auto;
    bottom: 20px;
}
.house-slider .swiper-button-prev {
    left: auto;
    right: 60px;
}
.house-slider .swiper-button-next:after,
.house-slider .swiper-button-prev:after {
    display: none;
}
.house-info {
    flex-grow: 1;
}
.house-info .section-title {
    margin-bottom: 20px;
}
.house-opts-item {
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}
.house-opts-item:first-child {
    border-top: 1px solid #eee;
}
.house-opts-item .flex {
    align-items: center;
    gap: 5px;
    line-height: 1;
    font-weight: 500;
}
.house-opts-item b {
    font-size: 1.25rem;
    line-height: 1;
}
.house-info > .btn {
    margin-top: 20px;
    width: 100%;
    justify-content: center;
}
.house-desc {
    margin-top: 40px;
}
.project-page-title .crumbs-wrap {
    margin-bottom: 0;
}
.project-slide.swiper-slide {
    height: auto;
    display: flex;
    flex-direction: column;
}
.project-slide-img {
    height: 240px;
    display: block;
}
.project-slide-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px 10px 0 0;    
}
.project-slide-info {
    padding: 10px;
    background: #2b2e3f;
    color: #fff;
    border-radius: 0 0 10px 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.project-slide-info > span {
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
}
.project-slide-info .btn {
    width: 100%;
    justify-content: center;
    margin-top: auto;
}
.projects-slider.swiper-horizontal > .swiper-scrollbar {
    position: static;    
    margin-top: 20px;
}
.projects-slider .swiper-scrollbar-drag {
    background: #2b2e3f;
}
.video-wrap {
    aspect-ratio: 5 / 2;
    border-radius: 10px;
    overflow: hidden;
}
.house-cta {
    position: relative;
    background-size: cover;
    background-position: center;
}
.house-cta:before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(255,255,255,0.35);
}
.house-cta .container {
    position: relative;
}
.cta-wrap {
    width: 850px;
    max-width: 100%;
    margin: 0 auto;
    padding: 40px;
    background: rgba(255,255,255,0.8);
    border-radius: 10px;
}
.cta-wrap .section-title {
    margin-bottom: 0;
}
.cta-info {
    font-size: 1.25rem;
    font-weight: 500;
    margin: 0;
}
.house-form {
    gap: 20px;
    margin-top: 20px;
}
.house-form .field-item {
    width: calc((100% - 40px) / 3);
    flex-shrink: 0;
}
.house-form-action .btn {
    width: 100%;
    justify-content: center;
}
.house-form-action > span {
    display: block;
    font-size: 10px;
    margin-top: 5px;
}
.sales-row {
    gap: 30px;
    flex-wrap: wrap;
}
.sale-item {
    width: calc((100% - 30px) / 2);
    background: #fff;
    border-radius: 10px;
    box-shadow: 2px 5px 10px 0 rgba(22,22,22,0.15);
    overflow: hidden;
}
.sale-item-img {
    width: 100%;
    height: 270px;
}
.sale-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.sale-item-info {
    padding: 15px;
    font-size: 14px;
}
.about-wrap {
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    padding: 90px 0;
}
.about-wrap:before {
    content: '';
    display: block;
    background: url(../images/sd-icon.png) no-repeat;
    background-size: contain;
    width: 50%;
    height: 100%;
    position: absolute;
    top: 50px;
    right: 0;
    filter: grayscale(1);
    opacity: 0.1;
    z-index: -1;
}
.about-nums {
    flex-basis: 40%;
    flex-shrink: 0;
}
.about-nums-item {
    position: relative;
    max-width: 250px;
    padding: 25px;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0px 0px 5px 0 rgba(22,22,22,0.12);
}
.about-nums-item:first-child {
    margin-bottom: 40px;
}
.about-nums-item:last-child {
    margin-top: 40px;
}
.about-nums-item:after {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    background: #ebebeb;
    border-radius: 50%;
    position: absolute;
    top: 10px;
    right: 10px;
}
.about-nums-item > div {
    font-weight: 700;
    font-family: 'Adderley';
    font-size: 55px;
    color: #2b2e3f;
}
.about-img-wrap {
    position: absolute;
    bottom: 0;
    top: 50px;
    left: 250px;
    align-items: flex-end;
    gap: 5px;
    z-index: -1;
}
.about-img-wrap img {
    height: 100%;
}
.about-img-info {
    font-size: 13px;
    margin-bottom: 30px;
}
.about-img-info > p {
    margin: 0;
}
.about-img-info > span {
    color: #9f9f9f;
}
.about-content {
    flex-basis: 50%;
    flex-shrink: 0;
}
.about-content-actions {
    align-items: center;
    gap: 40px;
    margin-top: 40px;
}
.about-video-btn {
    align-items: center;
    gap: 10px;
    max-width: 180px;
    color: #333;
}
.about-video-btn:before {
    content: '';
    display: block;
    width: 50px;
    height: 50px;
    background: url(../images/icons/icon-play2.svg) no-repeat;
    background-size: contain;
    background-position: center center;
    flex-shrink: 0;
    transition: 0.3s ease;
}
.about-video-btn:hover:before {
    filter: drop-shadow(2px 4px 6px rgba(0,0,0,0.1));
}
.about-services-wrap {
    margin-top: 60px;
}
.services-row {
    gap: 20px;
    margin-top: 30px;
}
.service-item {
    flex-basis: 0;
    flex-grow: 1;
    padding: 40px;
    border-radius: 5px;
    background: #fff;
    border: 1px solid #ebebeb;
    box-shadow: -4px 4px 5px 0 rgba(22,22,22,0.12);
    transition: 0.3s ease;
}
.service-item-icon {
    height: 40px;
}
.service-item-icon img {
    display: block;
    width: auto;
    height: 100%;
}
.service-item-info {
    margin-top: 15px;
}
.service-item-info p {
    font-weight: 700;
    margin: 0 0 10px 0;
}
.includes-row {
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 20px;
}
.include-item {
    width: calc((100% - 50px) / 3);
    padding: 25px;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(35, 35, 35, 0.25);
}
.include-item-icon {
    margin-bottom: 10px;
}
.steps-wrap {
    margin-top: 60px;
}
.process-wrap {
    margin-top: 20px;
}
.swiper-pagination.process-steps {
    position: static;
    gap: 20px;
    margin-bottom: 30px;
}
.swiper-pagination-bullet.process-step-item {
    width: auto;
    height: auto;
    flex-basis: 0;
    flex-grow: 1;
    border-radius: 4px;
    font-weight: 700;
    color: #333;
    background: #d7d7d7;
    padding: 10px;
    margin: 0 !important;
    opacity: 1;
}
.swiper-pagination-bullet.process-step-item.swiper-pagination-bullet-active {
    background: #00923d;
    color: #fff;
}
.process-item-content {
    gap: 30px;
}
.process-item-img {
    flex-grow: 1;
    border-radius: 4px;
    overflow: hidden;
}
.process-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.process-item-info {
    width: 50%;
    flex-shrink: 0;
}
.process-item-info h4 {
    font-family: 'Raleway';
}
.process-item-top {
    align-items: center;
    gap: 50px;
    margin-bottom: 30px;
}
.step-num {
    padding: 7px 15px;
    background: #2b2e3f;
    border-radius: 4px;
    color: #fff;
}
.step-time {
    align-items: center;
    gap: 5px;
    font-size: 14px;
    line-height: 1;
}
.process-item-title {
    font-size: 23px;
    font-weight: 700;
    font-family: 'Adderley';
}
.process-item-includes-wrap {
    margin-top: 20px;
}
.process-item-includes {
    list-style: none;
    margin: 10px 0 0;
    padding: 0;
    flex-direction: column;
    gap: 12px;
}
.process-item-includes li {
    align-items: flex-start;
    gap: 8px;
    line-height: 1;
}
.process-item-includes li:before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    background: #00923d;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 4px;
}
.process-item-desc {
    align-items: center;
    gap: 10px;
    margin-top: 40px;
    background: #eee;
    padding: 25px;
    border-radius: 4px;
}
.process-item-desc > svg {
    flex-shrink: 0;
}
.notfound-wrap {
    position: relative;
    text-align: center;
}
.notfound-wrap .num {
    font-size: 270px;
    font-weight: 700;
    line-height: 1;
    position: relative;    
    opacity: 0.3;
}
.notfound-wrap-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-40%);
}
.notfound-wrap-text h3 {
    margin-bottom: 20px;
}
.env-slide {
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    width: 370px;
    height: 350px;
    border-radius: 10px;
    position: relative;
    background-size: cover;
    background-position: center center;
}
.env-slide:before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0,0,0,0.15);
    z-index: -1;
}
.env-mins {
    margin-top: 30px;
    align-items: center;
    gap: 5px;
    background: #00923d;
    padding: 6px 15px 6px 5px;
    border-radius: 0 10px 10px 0;
}
.env-title {
    padding: 30px 20px;
    font-weight: 700;
    font-size: 20px;
}
@media (max-width: 1200px) {
    .main-top-content .section-title {
        font-size: 48px;
        margin-bottom: 0;
    }
}
@media (max-width: 1100px) {
    .header-row > .btn {
        padding: 7px;
    }    
    .header-row > .btn svg {
        display: block;
    }
    .header-row > .btn span {
        display: none;
    }    
    .loan-item-nums {
        flex-wrap: wrap;
    }
    .kp-about-wrap {
        flex-wrap: wrap;
        gap: 30px;
    }
    .kp-about-text {
        width: 100%;
    }    
}
@media (max-width: 992px) {
    .house-wrap {
        gap: 40px;
        flex-wrap: wrap;
    }
    .house-slider {
        width: 100%;
    }    
    .include-item {
        width: calc((100% - 25px) / 2);
    }
    .howto-wrap {
        gap: 30px;
        flex-wrap: wrap;
    }
    .howto-text {
        width: 100%;
    }
    .kp-list {
        gap: 20px;
    }
    .kp-item {
        width: calc((100% - 20px) / 2);
    }
    .process-item-img {
        display: none;
    }
    .process-item-info {
        width: 100%;
    }
    .services-row {
        flex-wrap: wrap;
    }
    .service-item {
        flex-basis: 100%;
    }
    .about-wrap {
        flex-wrap: wrap;
        padding: 0;
    }
    .about-wrap:before {
        width: 80%;
    }
    .about-img-wrap {
        display: none;
    }
    .about-nums {
        flex-basis: 100%;
        display: flex;
        gap: 30px;
    }
    .about-nums-item:first-child {
        margin-bottom: 0;
    }
    .about-nums-item:last-child {
        margin-top: 0;
    }
    .about-content {
        flex-basis: 100%;
    }
    .about-content .section-title {
        margin-bottom: 20px;
    }
  
    .section {
        padding: 40px 0;
    }
    .section-title,
    .section-title-block {
        margin-bottom: 25px;
    }
    .section-title {
        font-size: 36px;
    }
    .project-item {
        width: calc((100% - 25px) / 2);
    }
    .repair-wrap {
        flex-wrap: wrap;
        gap: 25px;
    }
    .repair-slider {
        width: 100%;
        height: 460px;
    }
    .repair-info .section-title br {
        display: none;
    }
    .section-about {
        padding-top: 0;
    }
    .about-wrap-main {
        flex-wrap: wrap;
    }
    .about-wrap-image {
        width: 100%;
        height: 250px;
    }
    .about-wrap-image img {
        border-radius: 0;
    }
    .about-wrap-text {
        padding: 25px;
        margin: -50px 0 0;
        order: 2;
        width: 95%;
        left: 50%;
        transform: translateX(-50%);
    }
    .review-item {
        width: calc((100% - 25px) / 2);
    }
    .footer-top-item:first-child {
        flex-basis: 0;
    }
    .loans-row {
        flex-wrap: wrap;
    }
    .loan-item {
        flex-basis: 100%;
    }
    .footer-top {
        flex-wrap: wrap;
    }
    .contacts-wrap {
        flex-wrap: wrap;
        justify-content: flex-start;
    }
    .contacts-block {
        width: 100%;
    }
    .contacts-form-wrap {
        width: 350px;
        max-width: 100%;
    }
    .contacts-map {
        height: 320px;
    }
}
@media (max-width: 768px) {
    .house-form {
        flex-direction: column;
    }
    .house-form .field-item {
        width: 100%;
    }    
    .about-nums {
        gap: 15px;
    }
    .about-nums-item {
        flex-basis: 0;
        flex-grow: 1;
        padding: 10px;
        max-width: none;
    }
    .about-nums-item > div {
        font-size: 35px;
    }
    .kp-slider .swiper-slide {
        height: 250px;
    }
    .kp-left {
        gap: 15px;
        flex-direction: column;
    }
    .kp-map {
        height: 260px;
    }
    body {
        font-size: 14px;
    }
    .hero {
        height: 350px;
    }
    .main-top-content .section-title {
        font-size: 34px;
    }
    .main-top-actions .btn {
        flex-shrink: 0;
    }
    .project-item {
        width: 100%;
    }
    .project-item.project-item-empty .btn {
        margin-top: 10px;
    }
    .pros-row {
        gap: 15px;
    }
    .pros-item {
        gap: 10px;
        padding: 10px;
        width: calc((100% - 15px) / 2);
    }
    .footer-top {
        gap: 25px;
        flex-wrap: wrap;
    }
    .footer-logo img {
        margin: 0 auto;
    }
    .footer-top-item {
        width: 100%;
        flex-basis: 100%;
    }
    .footer-contacts {
        align-items: center;
        margin-top: 15px;
        text-align: center;
    }
    .footer-menu,
    .social-list {
        margin-top: 15px;
    }
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
    .swiper-pagination.process-steps {
        flex-wrap: wrap;
    }
    .sales-row {
        gap: 20px;
    }
    .sale-item {
        width: 100%;
    }
}
@media (max-width: 540px) {
    .house-slider .swiper-slide img {
        height: 350px;
    }

    .include-item {
        width: calc((100% - 15px) / 2);
        padding: 15px;
    }
    .about-nums {
        flex-wrap: wrap;
    }
    .notfound-wrap .num {
        font-size: 170px;
    }
    .kp-item {
        width: 100%;
    }
    .swiper-pagination.process-steps {
        gap: 10px;
    }
    .swiper-pagination-bullet.process-step-item {
        flex-basis: 25%;
    }
    .includes-row {
        gap: 15px;
    }
    .header-row {
        padding: 5px 0;
    }
    .logo {
        width: 100px;
    }
    .header-row > .btn {
        padding: 0;
        width: 28px;
        height: 28px;
        justify-content: center;
    }
    .header-row > .btn svg {
        width: 18px;
    }
    .burger-btn {
        width: 28px;
        height: 28px;
    }
    .burger-btn span {
        width: 18px;
    }
    .hero-pros {
        gap: 10px;
        padding: 0 10px;
        flex-direction: column;
    }
    .hero-pros-item {
        padding: 10px;
    }
    .main-top-content .section-title {
        font-size: 26px;
    }
    .main-top-actions {
        margin-top: 10px;
        gap: 10px;
    }
    .reviews-row {
        gap: 10px;
    }
    .review-item {
        width: 100%;
    }
    .review-item.review-video {
        height: 200px;
    }
    .about-content-actions {
        gap: 20px;
        margin-top: 25px;
        flex-wrap: wrap;
        justify-content: center;
    }
    .about-content-actions .btn {
        width: 100%;
        text-align: center;
    }
    .service-item {
        padding: 20px;
    }
}
@media (max-width: 440px) {
    .kp-pros {
        padding: 10px;
    }
    .kp-pros-icon svg {
        width: 35px;
    }
    .kp-pros-text {
        font-size: 10px;
    }
    .notfound-wrap-text h3 {
        font-size: 20px;
    }
    .main-top-actions {
        margin-top: 20px;
        flex-direction: column;
        align-items: flex-start;
    }
    .project-item-img {
        height: 200px;
    }
    .project-item-info {
        padding: 10px;
    }
    .project-item-title {
        font-size: 20px;
    }
    .project-item-desc {
        gap: 10px;
    }
    .project-item-desc__item {
        width: calc((100% - 10px) / 2);
        font-size: 12px;
    }
    .project-item-desc__item b {
        display: block;
        font-size: 18px;
    }
    .project-item-info .btn {
        width: 100%;
        justify-content: center;
        margin-top: 20px;
    }
    .pros-row {
        gap: 10px;
    }
    .pros-item {
        font-size: 12px;
        width: 100%;
    }
    .repair-slider {
        height: 240px;
    }
    .section-title {
        font-size: 24px;
    }
    .about-wrap-text {
        padding: 10px;
        width: calc(100% - 20px);
        font-size: 12px;
    }
    .footer-top-item-title {
        font-size: 16px;
    }
    .footer-menu,
    .social-list {
        margin-top: 10px;
        font-size: 12px;
    }
    .footer-menu > li:not(:last-child) {
        margin-bottom: 7px;
    }
    .footer-bottom {
        gap: 10px;
        font-size: 12px;
    }
    .contacts-form-wrap {
        width: 100%;
        padding: 25px;
    }
    .house-slider .swiper-slide img {
        height: 250px;
    }
    .project-slide-img {
        height: 160px;
    }
    .env-slide {
        width: 270px;
        height: 270px;
    }
}