/* Scss Document */
.property-nav__lists {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: calc(20 / 1920 * 100vw);
  max-width: 1140px;
}
@media only screen and (max-width: 640px) {
  .property-nav__lists {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    max-width: 500px;
    margin: 0 auto;
  }
}

.property-nav__list {
  background: #f9f8f5;
  border-radius: var(--Corner-Full, 1000px);
}

.property-nav__link {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 1px;
  padding: 15px 50px;
  position: relative;
}
@media only screen and (max-width: 640px) {
  .property-nav__link {
    font-size: 1.3rem;
    padding: 10px 17px;
  }
}
.property-nav__link::after {
  position: absolute;
  content: "";
  display: block;
  background-image: url("../images/property/arrow-1.png");
  background-repeat: no-repeat;
  width: 16px;
  height: 15px;
  background-size: contain;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
}
@media only screen and (max-width: 640px) {
  .property-nav__link::after {
    width: 9px;
    height: 8px;
    right: 8%;
  }
}

.section-heading {
  color: #0D7CCE;
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 3.6px;
  text-align: center;
  margin: 0 auto 60px;
  padding-bottom: 14px;
  text-align: center;
}
.section-heading::after {
  content: "";
  margin: 0.35em auto 0;
  display: block;
  background: url(../images/property/line_dot.png) repeat-x left top;
  width: 104px;
  height: 8px;
}
@media only screen and (max-width: 640px) {
  .section-heading::after {
    width: calc(120 / 640 * 100vw);
    height: calc(10 / 640 * 100vw);
    background-size: auto 100%;
  }
}
@media only screen and (max-width: 640px) {
  .section-heading {
    font-size: calc(36 / 640 * 100vw);
    margin: calc(30 / 640 * 100vw) auto calc(10 / 640 * 100vw);
  }
}

.recommended .recommended_list.property-lists {
  justify-content: center;
}/*# sourceMappingURL=property.css.map */