body{
    padding: 0;
    margin: 0;
    background: linear-gradient(to bottom, white, #707070)
}

.location_buttons {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 0;
    padding: 0;
    background-color: #000;
}

.location_btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30%;
    padding: 10px 18px;
    border: 2px solid #ff3131;
    background: #fff;
    color: #000;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: 0.25s ease;
}

.location_btn:hover {
    background: #000;
    color: #fff;
    border-color: #ff3131;
}

/* Active button (based on selected location) */
.location_btn.active {
    background: #000;   /* accent */
    border-color: #ff3131;
    color: #ff3131;
}


.page_image{
    padding: 0;
    margin: 0;
    z-index: 0;
    width: 100%;
    height: 100vh;
    background-image:url(https://53motorgroup.co.za/media/images/landing-page-image.png);
    background-repeat:no-repeat;
    background-size:cover;
    background-position: center center;
}

.image_overlay{
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.75),rgba(0,0,0,0.4),rgba(0,0,0,0));
}

  @media (max-width: 991px) {
    .page_image{
        background-size: contain;
        height: 300px;
    }  
    body{
        background: #000;
    }
  }