* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
  }
  
  body {
    font-family: 'Open Sans', Arial, sans-serif;
    background-color: #eee;
  }
  
  /* .container {
    width: 1100px;
    margin: 100px auto;
    display: flex;
    justify-content: space-between;
  } */
  
  .container .box {
    width: calc((100% / 3) - 20px);
    background-color: white;
    position: relative;
    border: 1px solid #e8e4e4;
    border-radius: 10px;
  }
  
  /* .container .box:first-of-type:before {
    content: "Featured";
    background-color: #ea723d;
    color: white;
    font-size: 13px;
    padding: 4px 10px;
    position: absolute;
    top: 0;
    left: 0;
    transform: translateY(-50%);
    z-index: 1;
  } */
  
  /* .container .box:first-of-type:after {
    content: "";
    border-width: 12px;
    border-style: solid;
    border-color: transparent transparent transparent #ea723d;
    position: absolute;
    left: 72px;
    top: 0;
    transform: translateY(-50%);
  } */
  
  .container .box .top {
    position: relative;
    /* background-color: red; */
  }
  
  .container .box .top:before {
    content: "";
    width: 100%;
    height: 100%;
    background-color: rgba(43, 187, 175, 0.829);
    position: absolute;
    left: 0;
    top: 0;
    transition: 0.3s;
    opacity: 0;
  }
  
  .container .box .top:hover:before {
    opacity: 1;
  }
  
  .container .box .top:after {
    content: "View Property";
    color: white;
    font-size: 12px;
    padding: 10px;
    border: 1px solid white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    transition: 0.3s;
    opacity: 0;
  }
  
  .container .box .top:hover:after {
    opacity: 1;
  }
  
  .container .box .top img {
    width: 100%;
    margin-bottom: -4px;
  }
  
  .container .box .top span {
    position: absolute;
    right: 20px;
    bottom: 15px;
    color: white;
    font-size: 20px;
  }
  
  .container .box .top span i {
    margin-left: 5px;
  }
  
  .container .box .bottom {
    padding: 20px 15px;
    position: relative;
  }
  
  .container .box:not(:last-of-type) .bottom:before {
    content: "Hot";
    background-color: #ea723d;
    color: white;
    font-size: 11px;
    padding: 4px 7px;
    position: absolute;
    left: 20px;
    top: -40px;
    z-index: 1;
  }
  
  .container .box .bottom h3 {
    font-size: 15px;
  }
  
  /* .container .box .bottom > p {
    margin: 15px 0;
    font-size: 13px;
    line-height: 1.4;
    color: #777;
  } */
  
  .container .box .bottom .advants {
    display: flex;
  }
  
  .container .box .bottom .advants > div {
    margin-right: 15px;
  }
  
  .container .box .bottom .advants > div > span {
    font-weight: bold;
    font-size: 12px;
  }
  
  .container .box .bottom .advants > div > div {
    margin-top: 10px;
    display: flex;
    align-items: center;
  }
  
  .container .box .bottom .advants > div > div i {
    color: #777;
    font-size: 22px;
  }
  
  .container .box .bottom .advants > div > div > span {
    font-size: 12px;
    font-weight: bold;
    margin-left: 10px;
  }
  
  .container .box .bottom .advants > div > div > span > span {
    color: #777;
    font-weight: normal;
    margin-left: 5px;
  }
  
  .container .box .bottom .price {
    margin-top: 20px;
  }
  
  .container .box .bottom .price span:first-of-type {
    display: block;
    font-size: 13px;
    font-weight: bold;
    margin-bottom: 5px;
  }
  
  .container .box .bottom .price span:last-of-type {
    color: #3eaba1;
    font-size: 22px;
  }
  
  .filter-section {
        background-color: white;
        border-radius: 8px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        /* margin-bottom: 20px; */
        margin-top: 20px;
        margin-bottom: 20px;
        position: sticky;
        top: 0;
        z-index: 999;
      }
  
      