.ButtonDefault {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;

    background: rgba(247, 198, 47, 1.0);
    background: linear-gradient(225deg, rgba(247, 198, 47, 1.0), rgba(207, 169, 55, 1.0));
    border: unset;
    border-radius: 3px;

    outline: none;

    color: rgb(77, 77, 77);
    font-size: 18px;
    font-weight: 700;

    padding-top: 14px;
    padding-bottom: 14px;
    padding-left: 24px;
    padding-right: 24px;

    cursor: pointer;
    transition: 0.4s;
}

    .ButtonDefault:hover {
        transition: 0.2s;
        filter: drop-shadow(0px 0px 17px rgba(255, 237, 177, 0.3));
    }

.ButtonWhiteDefault {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;

    background: rgba(245, 245, 245, 1.0);
    background: linear-gradient(225deg, rgba(245, 245, 245, 1.0), rgba(235, 235, 235, 1.0));
    border: unset;
    border-radius: 3px;

    outline: none;

    color: rgb(77, 77, 77);
    font-size: 18px;
    font-weight: 700;

    padding-top: 14px;
    padding-bottom: 14px;
    padding-left: 24px;
    padding-right: 24px;

    cursor: pointer;
    transition: 0.4s;
}

    .ButtonWhiteDefault:hover {
        transition: 0.2s;
        filter: drop-shadow(0px 0px 17px rgba(255, 237, 177, 0.3));
    }

.ButtonBoxRoudDark {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;

    background: rgb(60, 64, 68);
    border: unset;
    border-radius: 3px;

    outline: none;

    width: 50px;
    height: 50px;

    color: rgb(97, 107, 117);
    font-size: 18px;
    font-weight: 700;

    cursor: pointer;
    transition: 0.4s;
}

    .ButtonBoxRoudDarkLeft {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
    
        background: rgb(60, 64, 68);
        border: unset;
        border-top-left-radius: 3px;
        border-bottom-left-radius: 17px;
        border-top-right-radius: 3px;
        border-bottom-right-radius: 3px;
    
        outline: none;
    
        width: 50px;
        height: 50px;
    
        color: rgb(97, 107, 117);
        font-size: 18px;
        font-weight: 700;
    
        cursor: pointer;
        transition: 0.4s;
    }

    .ButtonBoxRoudDarkRight {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;

        background: rgb(60, 64, 68);
        border: unset;
        border-top-left-radius: 3px;
        border-bottom-left-radius: 3px;
        border-top-right-radius: 3px;
        border-bottom-right-radius: 17px;

        outline: none;

        width: 50px;
        height: 50px;

        color: rgb(97, 107, 117);
        font-size: 18px;
        font-weight: 700;

        cursor: pointer;
        transition: 0.4s;
    }

    .ButtonBoxRoudDark:hover,
    .ButtonBoxRoudDarkLeft:hover,
    .ButtonBoxRoudDarkRight:hover {
        transition: 0.2s;
        color: rgb(107, 117, 127);
        box-shadow: -4px 4px 17px rgba(255, 237, 177, 0.3);
    }

.ButtonBoxDarkYollow {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;

    background: rgba(255, 237, 177, 0.1);
    border: unset;
    border-radius: 100%;

    outline: none;

    width: 50px;
    height: 50px;
    min-width: 40px;
    min-height: 40px;

    cursor: pointer;
    transition: 0.4s;
}

    .ButtonBoxDarkYollow:hover {
        transition: 0.2s;
        background: rgba(255, 237, 177, 0.3);
        color: rgb(107, 117, 127);
        box-shadow: 0px 0px 27px rgba(255, 237, 177, 0.4);
    }

    .ButtonBoxDarkYollow > i {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;

        background: rgb(60, 64, 68);
        border: unset;
        border-radius: 100%;

        outline: none;

        width: 40px;
        height: 40px;
        min-width: 40px;
        min-height: 40px;

        color: rgb(97, 107, 117);
        font-size: 18px;
        font-weight: 700;

        margin: unset;
        cursor: pointer;
        transition: 0.4s;
    }

.ButtonServices {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;

    background: unset;
    border: 1px solid rgb(62, 66, 70);
    border-radius: 3px;

    outline: none;

    color: rgb(247, 197, 47);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;

    padding-top: 14px;
    padding-bottom: 14px;
    padding-left: 24px;
    padding-right: 24px;

    cursor: pointer;
    transition: 0.4s;
}

    .ButtonServices:hover {
        transition: 0.2s;
        border: 1px solid rgba(60, 64, 68, 0.0);
        filter: drop-shadow(0px 0px 17px rgba(255, 237, 177, 0.7));
    }

        .ButtonServices > i {
            font-size: 14px;
            margin-right: 7px;
        }

.ButtonLink {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;

    background: unset;
    border: unset;
    outline: none;

    color: rgb(247, 197, 47);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;

    cursor: pointer;
    transition: 0.4s;
}

    .ButtonLink:hover {
        transition: 0.2s;
        filter: drop-shadow(0px 0px 17px rgba(255, 237, 177, 0.7));
    }

        .ButtonLink > i {
            font-size: 14px;
            margin-left: 7px;
        }