 /* ---------------------- MAIN BUTTON STYLES ---------------------- */

.button-price {
   width: 170px;
height: 45px;
 

    opacity: 1;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 12px;
    background-color: #C8A648;
    outline: none;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.button-price a {
    font-family: DM Sans;
    font-weight: 600;
    font-size: 16px;
    color: #1A1A1A;
    text-decoration: none;
}


/* OUTLINE BUTTON */
.button-veiw {
   width: 135px;
height: 45px;
    background-color: transparent;
    opacity: 1;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 12px;
    border: 2px solid #C8A648;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.button-veiw a {
    font-family: DM Sans;
    font-weight: 600;
    font-size: 16px;
    color: #C8A648;
    text-decoration: none;
}


/* SMALL LABEL / TAG */
.values {
    opacity: 1;
    gap: 10px;
    padding: 4px 12px;
    border-radius: 116px;
    border: 1px solid #7C7C7C;
    font-family: DM Sans;
    font-weight: 400;
    font-size: 13px;
    color: #7C7C7C;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}


/* MULTIUSE BUTTON */
.mutlieuse {
    gap: 10px;
    padding: 12px 24px;
    border-radius: 12px;
    font-family: DM Sans;
    font-weight: 600;
    font-size: 16px;
    color: #1A1A1A;
    background-color: #C8A648;
    outline: none;
    border: none;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;

}

.mutlieuse a {
    color: #1A1A1A;
    text-decoration: none;
}


/* CENTER ALIGN CONTAINER */
.allproperty {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0 100px 0;
    gap: 20px;
    flex-wrap: wrap;
    a{
        text-decoration: none;
    }
}


@media (max-width: 900px) {

    .button-price,
    .button-veiw,
    .mutlieuse {
       
        padding: 5px 10px;
        font-size: 12px;
    }

    .button-price a,
    .button-veiw a,
    .mutlieuse a {
        font-size: 12px;
    }

    .allproperty {
        gap: 15px;
    }
}
@media (max-width: 600px) {

    .button-price,
    .button-veiw,
    .mutlieuse {
                  /* Full width buttons */
         
      width: 149px;
height: 42px;
 
opacity: 1;
gap: 10px;
padding-top: 12px;
padding-right: 16px;
padding-bottom: 12px;
padding-left: 16px;
border-radius: 12px;

    }

    .button-price a,
    .button-veiw a,
    .mutlieuse a {
        font-size: 12px;
    }

    .values {
        font-size: 12px;
        padding: 4px 10px;
    }

    .allproperty {
        padding-bottom: 60px;
        flex-direction: column;
        gap: 12px;
    }
}
