.house_wrapper {
  margin: 30px 0;	
  width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  grid-row-gap: 30px;
  grid-column-gap: 30px;
}

.house_wrapper .house_item {
  background: #FFFFFF;
  border: 1px solid #E4E0D9;
  padding: 30px;
}

.house_wrapper .house_item .house_head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.house_wrapper .house_item .house_head .house_title {
  font-style: normal;
  font-weight: 900;
  font-size: 20px;
  line-height: 23px;
  color: #171F46;
  margin:0;
}

.house_wrapper .house_item .house_head .download_project {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #000000;
}

.house_wrapper .house_item .house_head .download_project:hover {
  color: #F09D28;
}

.house_wrapper .house_item .house_head .download_project:hover svg path {
  fill: #F09D28;
}

.house_wrapper .house_item .house_head .download_project span {
  margin-left: 10px;
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  line-height: 14px;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
}

.house_wrapper .house_item .house_img {
  margin: 20px 0;
}

.house_wrapper .house_item .house_img img {
  width: 100%;
}

.house_wrapper .house_item .house_gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.house_wrapper .house_item .house_gallery .small_img {
  display: block;
  margin-right: 20px;
  width: 25%;
}

.house_wrapper .house_item .house_gallery .small_img:last-child {
  margin-right: 0;
}

.house_wrapper .house_item .house_gallery .small_img img {
  width: 100%;
}

@media all and (max-width: 767px) {
  .house_wrapper {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-column-gap: 0;
    grid-row-gap: 30px;
  }
}
@media all and (max-width: 1023px) {
.house_wrapper .house_item .house_head .house_title {
    font-size: 16px;
  }
}