/* 3/5/2023 */
/* 31/8/2023 */
.btn-squareup{
    margin: 0 auto;
    width: 100%;
    max-width: 700px;
    margin-top: 30px;
    margin-bottom: 5px;
    background: #000;
    border-color: #000;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
    font-size: 18px;
    color: #fff;
    font-family: "Mulish-Bold";
    border: 1px solid #000;
}

.btn-squareup img{
    max-height: 30px;
    margin-right: 7px;
    transition: 1s;
    border-radius: 5px;
    overflow: hidden;
}

.btn-squareup:hover{
    background: #fff;
    color: #000;
}

.btn-squareup:hover img{ 
    filter: invert(1);
}