a {
    color: #fff;
    text-decoration: none;
}
body {
    font-family: forma-djr-deck, sans-serif;
font-weight: 400;
font-style: normal;
    padding: 0;
    margin: 0;
    letter-spacing: .05em;
    text-transform: none;
}
.bold {font-weight: 600;}
footer {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: SPACE-AROUND;
    height: 100px;
    margin-top: 50px;
    background: darkgray;
}
.header-bar {
    width: calc(100% - 40px);
    height: 45px;
    display: flex;
    margin: 0 auto;
    padding: 20px;
    background-color: #ffc107;
}
.header-title {
    font-weight: 600;
    text-transform: none;
    line-height: 1.2em;
    letter-spacing: 0em;
    line-height: 1.4em;
    font-size: 30px;
    width: fit-content;
    display: inline-block;
    font-family: bigmoore, serif;
    font-weight: 400;
    font-style: normal;
    margin-top: 6px;
}
.header-bar img {
    width: 42px;
    height: 40px;
    margin-right: 10px;
}
.header-nav {
    text-align: right;
    margin-left: auto;
    padding-left: 1.8vw;
    display: inline-block;
    margin-top: 5px;
}
.header-nav-list {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}
.header-nav-current {
    border-bottom: 1px solid;
}
.header-nav-item {
    letter-spacing: 0em;
    line-height: 1.2em;
    letter-spacing: .05em;
    text-transform: none;
    line-height: 1.8em;
    font-size: 1.1rem;
    margin-left: 20px;
    font-family: forma-djr-deck, sans-serif;
    font-weight: 700;
    font-style: normal;
}
.holder {
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 30px;
}
.home_splash {
    width: 100%;
    height: calc(100vh - 185px);
    background-image: url(images/Home_Splash.jpg);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: end;
    justify-content: center;
    text-align: center;
    font-size: 50px;
    padding-bottom: 100px;
    color: #fff;
}
.material-symbols-outlined {
  font-variation-settings:
  'FILL' 0,
  'wght' 400,
  'GRAD' 0,
  'opsz' 48
}
.property_holder {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items:flex-start;
    flex-wrap: wrap;
}
.property {
    width: 24%;
    margin-bottom: 10px;
    vertical-align: top;
}
.property_image {
    width: 100%;
    height: 0;
    padding-bottom: 80%;
    background-size: cover;
    background-position: center;
    border-radius: 5px;
}
.property_tel {
    width: fit-content;
    background: green;
    padding: 5px 10px 5px 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 20px;
    text-transform: uppercase;
}
.property_tel span {
    margin-right: 5px;
}
.property_title {
    font-weight: 600;
    font-size: 16px;
    margin-top: 10px;
}
.shadow {
    box-shadow: 0 0 15px 0 #dfe0df;
}
.sml {font-size: 1.2em;}

#scroll-container {
    background-color: black;
    overflow: hidden;
    color: #dfe0df;
  }
  
  #scroll-text {
    /* animation properties */
    -moz-transform: translateX(100%);
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    padding: 10px;
    
    -moz-animation: my-animation 15s linear infinite;
    -webkit-animation: my-animation 15s linear infinite;
    animation: my-animation 15s linear infinite;
  }
  
  /* for Firefox */
  @-moz-keyframes my-animation {
    from { -moz-transform: translateX(100%); }
    to { -moz-transform: translateX(-100%); }
  }
  
  /* for Chrome */
  @-webkit-keyframes my-animation {
    from { -webkit-transform: translateX(100%); }
    to { -webkit-transform: translateX(-100%); }
  }
  
  @keyframes my-animation {
    from {
      -moz-transform: translateX(100%);
      -webkit-transform: translateX(100%);
      transform: translateX(100%);
    }
    to {
      -moz-transform: translateX(-100%);
      -webkit-transform: translateX(-100%);
      transform: translateX(-100%);
    }}

@media (max-width: 850px) {
    .property {
        width: 49.5%;
    }
}

@media (max-width: 530px) {
    .header-nav {display: none;}
    .home_splash {height: calc(100vh - 155px);
    width: 90%; padding: 0 5% 70px;font-size: 40px;}
    .property {
        width: 100%;
    }
    .property_title {
        font-size: 20px;
    }
}