@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
  --extralightpurple: #FCFCFE;
  --lightpurple: #F1F2FE;
  --purple: #4136FB;
  --red: #FE646F;
  --green: #AFDF36;
  --white: #fff;
  --black: #1E1E1E;
}

html, body{
  margin: 0;
  padding: 0 !important;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 1.1;
  overflow-x: hidden !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smooth: never;
  color: var(--black);
}
body {
  background: var(--extralightpurple);
}

a:hover {
  color: #000000;
}
/* section animations */
section, section .row {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
section.in-view, section .row.in-view {
  opacity: 1;
  transform: translateY(0);
}
section.nav, section.nav .row, section.header, section.header .row, section#section-ads, section#section-ads .row {
  opacity: 1 !important;
  transform: unset !important;
}
/* general */
.container-fluid {
  max-width: 85%;
  margin: 0 auto;
}
.underline {
  color: var(--purple);
  background: url('/img/underline.svg');
  background-size: 100%;
  background-position: center bottom;
  background-repeat: no-repeat;
}
.cta {
  min-width: 100px;
  padding: 0 15px;
  height: 45px;
  border-radius: 10px;
  background: var(--purple);
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  transition: all 0.6s ease;
}
.cta:hover {
  background: var(--green);
  color: var(--black);
}
.title {
  font-size: clamp(20px, 3vw, 45px);
  font-weight: 700;
  color: var(--black);
}
/* nav */
.nav {
  padding: 20px 0;
  margin-top: 20px;
}
.logo img {
  height: 60px;
}
.nav-menu ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0 20px;
  max-width: 90%;
  margin: 0 auto;
}
.nav-menu ul li {
  cursor: pointer;
  position: relative;
  transition: color 0.6s ease;
  font-size: 18px;
}
.nav-menu ul li::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: var(--purple);
  transition: width 0.6s ease;
}
.nav-menu ul li:hover::after {
  width: 100%;
}
.nav-menu ul li:hover {
  color: var(--purple);
}
.nav-menu ul li:last-of-type::after {
  content: none;
}
/* header */
.header {
  overflow: hidden;
  padding: 100px 0;
}
.widget {
  width: 330px;
  height: 40px;
  border-radius: 50px;
  background: var(--lightpurple);
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  font-size: clamp(12px, 2vw, 18px);  
  font-weight: 700;
  color: var(--purple);
  margin: 0 0 40px 0;
}
.header-content {
  position: relative;
  z-index: 22;
}
.header-content h1 {
  font-size: clamp(32px, 4vw, 75px);
  font-weight: 700;
  line-height: 1.1;
  width: 100%;
  max-width: 580px;
  margin: 0 0 40px 0;
}
.header-content p {
  font-size: clamp(16px, 3vw, 25px);
  width: 100%;
  max-width: 580px;
  line-height: 1.4;
}
.header-content p span {
  background: var(--green);
  padding: 3px 6px;
  font-weight: 700;
  border-radius: 10px;
}
.header-vants, .vant-box {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.header-vants .vant-box:hover {
  box-shadow: none;
}
.header-vants {
  gap: 0 20px;
  margin-top: 40px;
}
.vant-slider .slick-track {
  padding: 30px 0;
}
.vant-box {
  gap: 0 10px;
  transition: all 0.6s ease;
}
.vant-box:hover {
  transform: scale(1.05);
  box-shadow: 0 0 10px 2px rgba(65, 54, 251, 0.2);
}
.vant-icon {
  width: 50px;
  height: 50px;
  aspect-ratio: 1;
  background: var(--lightpurple);
  border-radius: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.vant-icon img {
  height: 30px;
}
.vant-txt h6 {
  font-size: 14px;
  line-height: 1.1;
  font-weight: 700;
  margin: 0 0 4px 0;
}
.vant-txt p {
  font-size: 14px;
  line-height: 1.1;
  margin: 0;
}
.form-content {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.form-content .mascot {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
}
.form-content .mascot img {
  width: 430px;
}
.blob {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -25%;
  z-index: 0;
  width: 900px;
}
/* form */
#contactform {
  width: 460px;
  margin: 0 0 0 auto;
  background: var(--white);
  border-radius: 30px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 60px 50px;
  position: relative;
  z-index: 99;
}
#contactform h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--black);
  line-height: 1.1;
  text-wrap: balance;
  margin-bottom: 15px;
}
.progress-bar {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  margin-bottom: 30px;
}
.progress-bar div {
  width: 18%;
  height: 8px;
  background: var(--lightpurple);
}
.progress-bar div:first-of-type {
  background: var(--purple);
  border-radius: 10px 0 0 10px;
}
.progress-bar div:last-of-type {
  border-radius: 0px 10px 10px 0px;
}
.form-step {
  display: none;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.form-step.active {
  display: flex;
}
.radio-opt {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
}
.radio-button {
  width: 100%;
  margin: 8px 0;
}
.radio-button input[type="radio"] {
  position: absolute; 
  opacity: 0; 
  width: 0;
  height: 0;
}
.radio-button label {
  background: var(--white);
  border: 1px solid var(--purple);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  max-width: 100%;
  height: 50px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0 10px;
  color: var(--purple);
  padding: 0 20px;
  font-size: 18px;
  font-weight: 400;
  position: relative;
}
.radio-button label span {
  width: 18px;
  height: 18px;
  border-radius: 50px;
  border: 0.5px solid var(--purple);
  aspect-ratio: 1;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}
.radio-opt-normal .radio-button label {
  width: 100%;
  margin: 0 auto;
  padding: 0 0 0 10px;
}
.radio-button label:hover, .radio-button input[type="radio"]:checked + label {
  background: var(--lightpurple);
}
.radio-button label:hover span, .radio-button input[type="radio"]:checked + label span {
  background: var(--purple);
}
.radio-button label:hover {
  transform: scale(1.02);
}
/* section1 */
.section1 {
  text-align: center;
  padding: 60px 0;
}
.section1 h5 {
  font-weight: 700;
  margin-bottom: 40px;
  font-size: clamp(16px, 2vw, 26px);
}
/* section2 */
.section2 {
  text-align: center;
  padding: 50px 0;
}
.section2 .title {
  margin-bottom: 30px;
}
.vant-outer {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}
.section2 .vant-box {
  width: 90%;
  min-height: 300px;
  margin: 0 auto;
  padding: 30px;
  border-radius: 20px;
  background: var(--lightpurple);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.vant-box-icon {
  background: #D8DAFD;
  width: 100px;
  height: 100px;
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}
.vant-box-icon img {
  height: 50px;
}
.vant-box-txt {
  text-wrap: balance;
}
.vant-box-txt h6 {
  font-size: clamp(14px, 2vw, 20px);
  color: var(--purple);
  font-weight: 700;
  margin: 0 0 10px 0;
}
.vant-box-txt p {
  margin: 0;
  line-height: 1.1;
  font-size: clamp(11px, 2vw, 16px);
}
/* section2 */
.section3 {
  text-align: center;
  padding: 60px 0;
}
.section3 .container-fluid {
  background: var(--lightpurple);
  padding: 50px 30px;
  border-radius: 30px;
}
.example-slider {
  margin-bottom: 20px;
}
.example-slider .slick-track {
  padding: 30px 0;
}
.section3 p {
  font-size: clamp(14px, 2vw, 18px);
}
.example {
  width: 95%;
  max-width: 450px;
  margin: 0 auto;
  padding: 50px 35px;
  border-radius: 20px;
  transition: all 0.6s ease;
}
.example:hover {
  transform: scale(1.02);
}
.selo {
  padding: 0 10px;
  height: 35px;
  border-radius: 50px;
  color: var(--white);
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  margin-bottom: 30px;
}
.example-house, .example-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  margin: 0 auto; 
}
.example-house div {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0 15px;
  width: 45%;
}
.example-house div p {
  margin: 0;
}
.example-price {
  text-align: left;
  margin: 30px auto;
}
.location {
  padding-left: 30px;
}
.line {
  width: 1px;
  height: 60px;
  background: var(--black);
}
.example-price h6 {
  font-size: 12px;
}
.example-price h6 span {
  font-size: 30px;
  font-weight: 700;
}
.example-price p {
  font-size: 12px;
  font-weight: 700;
}
.after-price h6 {
  color: #508D20;
}
.example-savings p {
  margin: 0 0 10px 0;
  font-size: 16px;
  font-weight: 700;
}
.example-savings h5 {
  font-size: 16px;
  color: #508D20;
}
.example-savings h5 span {
  font-weight: 700;
  font-size: 40px;
}
.example1 {
  background: var(--lightpurple);
  border: 1px solid var(--purple);
}
.example2 {
  background: #F9FAF8;
  border: 1px solid #508D20;
}
.example1 .selo {
  background: var(--purple);
  width: 115px;
}
.example2 .selo {
  background: #508D20;
  width: 115px;
}
.example3 {
  background: #FCFAF9;
  border: 1px solid #FE5D0C;
}
.example3 .selo {
  background: #FE5D0C;
  max-width: 170px;
}
.example button {
  padding: 0 20px;
  min-width: 70%;
  margin: 30px auto 0 auto;
}
.example1 button {
  background: #DDDFFD;
  border: 1px solid var(--purple);
  color: var(--purple);
}
.example1 button:hover {
  background: var(--purple);
  color: var(--white);
}
.example2 button {
  background: #E8EFE2;
  border: 1px solid #508D20;
  color: #508D20;
}
.example2 button:hover {
  background: #508D20;
  color: var(--white);
}
.example3 button {
  background: #FCEAE1;
  border: 1px solid #FE5D0C;
  color: #FE5D0C;
}
.example3 button:hover {
  background: #FE5D0C;
  color: var(--white);
}
/* section4 */
.section4 {
  padding: 30px 0;
  text-align: center;
}
.review-slider {
  margin-top: 50px;
}
.review {
  width: 85%;
  margin: 0 auto;
  padding: 30px;
  border-radius: 20px;
  border: 1px solid var(--purple);
  text-align: left;
}
.review img {
  margin: 0 0 20px 0;
}
.persona {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0 20px;
}
.persona img {
  width: 80px;
  height: 80px;
  margin: 0;
}
.persona h6 {
  font-size: clamp(14px, 2vw, 22px);
  color: var(--purple);
  line-height: 1;
  margin: 0 0 5px 0;
  font-weight: 700;
  font-style: italic;
}
.slider-arrow {
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 20px;
}
.slider-arrow img {
  transition: all 0.6s ease;
  cursor: pointer;
}
.slider-arrow .prev-slider {
  transform: rotate(180deg);
}
.slider-arrow img:hover {
  transform: scale(1.05);
}
.slider-arrow .prev-slider:hover {
  transform: rotate(180deg) scale(1.05);
}
.google {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 15px;
  width: 100%;
  max-width: 510px;
  padding: 10px 15px;
  background: var(--lightpurple);
  border-radius: 50px;
  margin: 50px auto 0 auto;
}
.google img {
  height: 30px;
}
.google p {
  margin: 0;
  font-size: 16px;
}
.google p span {
  font-weight: 700;
  color: var(--purple);
  font-size: 24px;
}
/* footer */
.footer .container-fluid {
  padding: 50px 70px;
  border-radius: 30px;
  background: linear-gradient(108deg, #08153C 1.28%, #0F2161 98.8%);
  margin-top: 60px;
}
.footer-txt {
  color: var(--white);
}
.footer-txt h3 {
  font-size: clamp(22px, 3vw, 55px);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 40px;
}
.footer-txt h3 span {
  color: var(--green);
}
.footer-txt ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  gap: 20px 0;
  margin-bottom: 40px;
}
.footer-txt ul li {
  font-size: clamp(14px, 2vw, 18px);
}
.footer-txt ul li img {
  width: 20px;
}
.footer-txt button {
  padding: 0 30px;
  background: var(--green);
  color: var(--black); 
}
.footer-txt button:hover {
  background: var(--white);
  color: var(--purple); 
}
.footer img {
  width: 100%;
}
/* message header */
.message-header .container {
  margin: 40px auto;
  background: var(--white);
  border-radius: 35px;
  background-image: url('/img/confeti.png');
  background-size: 100%;
  background-position: top center;
  background-repeat: no-repeat;
  overflow: hidden;
}
.message-header .container .row {
  padding: 50px 0px 0 0px;
}
.message-icon {
  width: 100px;
  height: 100px;
  aspect-ratio: 1;
  background: var(--lightpurple);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 30px auto;
}
.message-icon img {
  height: 70px;
}
.message-box {
  text-align: center;
  text-wrap: balance;
}
.message-box h3 {
  font-weight: 700;
  color: var(--purple);
  font-size: 70px;
}
.message-box h6 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 15px;
}
.message-box p {
  font-size: 18px;
}
.message-box h6 span {
  color: var(--purple);
}
.mascot img {
  width: 100%;
}
.message-header .header-vants {
  margin-top: 60px;
  padding: 40px 0;
  background: var(--lightpurple);
}
.message-header .vant-box {
  width: 33%;
  justify-content: center;
}
.message-header .vant-icon {
  width: 80px;
  height: 80px;
  background: var(--white);
}
.message-header .vant-icon img {
  height: 40px;
}
.message-header .vant-txt h6 {
  font-size: 24px;
  color: var(--purple);
}
/* Adstrategy */
#section-ads {
  text-align: center;
  padding: 30px 0;
}
#section-ads img {
  filter: brightness(0) saturate(100%) invert(0%) sepia(9%) saturate(3773%) hue-rotate(79deg) brightness(90%) contrast(76%);
}
/* Media Queries */
@media only screen and (max-width: 1620px) {
  #contactform {
    width: 420px;
  }
  .container-fluid {
    max-width: 95%;
  }
  .header-content h1 br {
    display: none;
  }
  .example-house p {
    font-size: 14px;
  }
  .blob {
    width: 780px;
    right: -15%; 
  }
  .section2 .vant-box {
    padding: 25px;
  }
  .header-vants {
    gap: 0 10px;
  }
}
@media only screen and (max-width: 1440px) {
  .vant-icon {
    width: 40px;
    height: 40px;
  }
  .vant-icon img {
    height: 20px;
  }
  .header-content p {
    font-size: 23px;
  }
   .vant-txt p {
    font-size: 12px;
  }
  .vant-box-txt h6 {
    font-size: 18px;
  }
  .section2 .vant-box {
    padding: 20px;
  }
  .example-house p {
    font-size: 12px;
  }
  .example {
    padding: 40px 25px;
  }
  .review {
    padding: 20px;
  }
  .review p {
    font-size: 14px;
  }
  .persona h6 {
    font-size: 18px;
  }
  .persona img {
    width: 60px;
    height: 60px;
  }
}
@media only screen and (max-width: 1200px) {
  .nav-menu ul li {
    font-size: 14px;
  }
  .blob {
    width: 720px;
    right: -25%; 
  }
  .form-content .mascot img {
    width: 360px;
  }
  .header-vants .vant-txt h6, .header-vants .vant-txt p {
    font-size: 11px;
  }
  .vant-box-txt p {
    font-size: 14px;
  }
  .vant-box-icon {
    width: 80px;
    height: 80px;
  }
  .vant-box-icon img {
    height: 40px;
  }
  .example-house img {
    height: 20px;
  }
  .example-house div {
    gap: 0 5px;
  }
  .persona h6 {
    font-size: 15px;
  }
  .persona {
    gap: 0 10px;
  }
  .review {
    width: 95%;
  }
  .review p {
    font-size: 12px;
  }
}
@media only screen and (max-width: 1080px) {
  .footer-txt ul li {
    font-size: 16px;
  }
  .nav-menu ul {
    max-width: 100%;
    gap: 0 10px;
  }
  .nav-menu ul li {
    font-size: 13px;
  }
  .nav-menu ul li .cta {
    font-size: 17px;
  }
  .form-content .mascot img {
    width: 250px;
  }
  .example {
    padding: 30px 15px;
  }
  .example-price p {
    font-size: 10px;
  }
}
@media only screen and (max-width: 991px) {
  .form-content .mascot {
    display: none;
  }
  .blob {
    width: 680px;
    right: -30%;
  }
  .logo img {
    height: 50px;
  }
  .section3 .slider-arrow {
    margin-bottom: 30px;
  }
  .google, .section4 .slider-arrow {
    margin-top: 30px;
  }
  .header-content p {
    text-wrap: balance;
  }
  .message-header .container {
    max-width: 90%;
    margin: 0 auto;
  }
  .message-header .vant-txt h6 {
    font-size: 18px;
  }
}
@media only screen and (max-width: 840px) {
  .nav-menu ul li .cta {
    font-size: 13px;
  }
}
@media only screen and (max-width: 768px) {
  .nav-menu ul {
    justify-content: flex-end;
  }
  .nav-menu ul li {
    display: none;
  }
  .nav-menu ul li:last-of-type {
    display: flex;
  }
  .header {
    text-align: center;
    padding: 20px 0 60px 0;
  }
  .widget {
    transform: scale(0.8);
    margin: 0 auto 20px auto;
  }
  .header-content h1 {
    font-size: 40px;
    text-wrap: balance;
    margin: 0 auto 40px auto;
  }
  #contactform {
    margin: 0 auto;
    width: 440px;
  }
  .blob {
    width: 800px;
    height: 500px;
    right: -10%;
  }
  .google p span {
    font-size: 20px;
  }
  .google p {
    font-size: 14px;
  }
  .footer {
    text-align: center;
  }
  .footer-txt h3 {
    font-size: 36px;
  }
  .footer-txt ul {
    max-width: 75%;
    margin: 0 auto 40px auto;
  }
  .footer-txt button {
    margin: 20px auto;
  }
  .header-subtitle {
    position: relative;
    z-index: 33;
    margin-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: left;
  }
  .header-subtitle img {
    width: 50%;
  }
  .header-subtitle p {
    font-size: clamp(16px, 3vw, 25px);
    width: 100%;
    max-width: 580px;
    line-height: 1.4;
  }
  .header-subtitle p span {
    background: var(--green);
    padding: 3px 6px;
    font-weight: 700;
    border-radius: 10px;
  }
  .message-header {
    text-align: center;
  }
  .message-header .row {
    flex-direction: row-reverse;
  }
  .mascot img {
    max-width: 260px;
    margin: 0 auto;
  }
  .message-header .header-vants {
    text-align: left;
    flex-wrap: wrap;
    gap: 30px 0;
  }
  .message-header .vant-box {
    width: 100%;
  }
  .message-box h3 {
    font-size: 55px;
  }
  .message-header .container {
    max-width: 80%;
  }
}
@media only screen and (max-width: 620px) {
  .footer-txt ul {
    max-width: 85%;
  }
  .blob {
    width: 800px;
    right: -25%;
  }
  .title, .section3 p, .section1 h5 {
    text-wrap: balance;
  }
}
@media only screen and (max-width: 550px) {
  .footer-txt ul {
    max-width: 100%;
  }
  .blob {
    width: 800px;
    right: -25%;
  }
  .review {
    width: 70%;
  }
  .google p {
    font-size: 13px;
  }
}
@media only screen and (max-width: 500px) {
  .footer .container-fluid {
    padding: 50px;
  }
  .header-subtitle img {
    width: 50%;
    padding: 0 20px;
  }
}
@media only screen and (max-width: 475px) {
  .footer-txt ul li {
    font-size: 14px;
  }
  .footer .container-fluid {
    padding: 50px 30px;
  }
  .google img {
    height: 20px;
  }
  .google p span {
    font-size: 18px;
  }
  .review {
    width: 80%;
  }
  .title {
    font-size: 24px;
  }
  .partner img {
    max-width: 80%;
  }
}
@media only screen and (max-width: 435px) {
  .logo img {
    height: 40px;
  }
  .header-subtitle p {
    text-wrap: balance;
  }
  #contactform {
    padding: 50px 30px;
  }
  .message-box h3 {
    font-size: 38px;
  }
  .message-box h6 {
    font-size: 20px;
  }
  .message-box p {
    font-size: 16px;
  }
}
@media only screen and (max-width: 390px) {
  .footer-txt h3 {
    font-size: 28px;
  }
  .google img {
    height: 20px;
  }
  .google p span {
    font-size: 16px;
  }
  .google p {
    font-size: 10px;
  }
}
@media only screen and (max-width: 375px) {
  .header-content h1 {
    font-size: 33px;
  }
  .example-house img {
    height: 15px;
  }
  .example-price h6 span {
    font-size: 23px;
  }
  .example-house div p {
    font-size: 9px;
  }
  .example-price p {
    font-size: 8px;
  }
  .selo {
    font-size: 13px;
  }
  .example1 .selo, .example2 .selo {
    width: 100px;
  }
  .example3 .selo {
    width: 140px;
  }
  .example-price h6 {
    font-size: 10px;
  }
  .example {
    width: 98%;
  }
  .footer-txt ul li {
    text-align: left;
    font-size: 12px;
  }
  .blob {
    width: 500px;
  }
  .section1, .section2 {
    padding: 40px 0;
  }
}
@media only screen and (max-width: 335px) {
  .example:hover {
    transform: none;
  }
  .example  {
    width: 95%;
  }
  .review {
    width: 90%;
  }
  .google p span {
    font-size: 14px;
  }
  .google p {
    font-size: 8px;
  }
  .widget {
    width: 100%;
  }
  .nav-menu ul li .cta {
    padding: 0 10px;
    font-size: 12px;
  }
  .logo img {
    height: 30px;
  }
  .example-price h6 {
    font-size: 9px;
  }
  .example-price p {
    font-size: 7px;
  }
  .example-house img {
    height: 12px;
  }
}