.btn-finder {
    text-align: center;
    background: #fff;
    width: 150px;
    height: 150px;
    padding: 0px;
    cursor:pointer;
    display: flex;
    border-radius: 20px;
    justify-content:center;
    align-items:center;
    flex-direction: column;
    color: #633510;
    -webkit-transition: background-color 0.2s ease-in-out;  
    -moz-transition: background-color 0.2s ease-in-out;  
    -o-transition: background-color 0.2s ease-in-out;  
    transition: background-color 0.2s ease-in-out;  
}

.btn-finder:hover {
    background: #447e5f;
    color: #fff;
    
}

.btn-finder span{
    /* display: flex; */
    font-size: 0.8em;
    line-height: 1.2em;
    margin-top: 10px;
    text-transform: uppercase;
    font-family: "museo-sans";
}

.btn-finder i{
    font-size: 5em;
    width: 100%;

}

