/* =====================================================
BUTTON SYSTEM
===================================================== */

.oreli-btn-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 32px 0;
    gap: 10px;
}

.oreli-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    padding: 10px 28px;
    border-radius: 999px;

    font-weight: 600;

    border: 2px solid #b51b75;
    color: #b51b75;
    background: transparent;

    transition: .25s ease;
    white-space: nowrap;
    margin-bottom: 25px;
}

.oreli-btn:hover {
    background: #b51b75;
    color: #fff;
}

.oreli-btn .arrow {
    display: inline-flex;
    align-items: center;
    transition: .25s;
    color: #b51b75;
}

.oreli-btn .arrow::after {
    content: "→";
    font-size: 16px;
}

.oreli-btn:hover .arrow {
    transform: translateX(4px);
    color: #fff;
}

@media(max-width:768px) {

    .oreli-btn {
        padding: 10px 18px;
        font-size: 14px;
    }

}


/* =====================================================
CALL BUTTON
===================================================== */

.oreli-btn-call {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    height: 48px;
    padding: 0 26px;

    background: #b51b75;
    color: #fff;

    font-weight: 600;
    font-size: 15px;

    border-radius: 999px;
    text-decoration: none;

    box-shadow: 0 8px 20px rgba(181, 27, 117, .25);
    transition: all .25s ease;
}

/* hover */

.oreli-btn-call:hover {
    background: #8e145c;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(181, 27, 117, .35);
    color: #f99e1c;
}



/**/

.oreli-btn-center {
    display: flex;
    justify-content: center;
    margin: 32px 0;
}


.oreli-btn-outline {
    display: inline-block;
    padding: 10px 20px;
    border: 2px solid #a1006b;
    color: #a1006b;
    border-radius: 999px;
    margin-top: 10px;
}

