.btn {
    display: flex;
    align-items: center;
    width: fit-content;
    height: 59px;
    border: none;
    font-size: 18px;
    font-weight: 500;
    color: $color-secondary;
    // background: #fff;
    background: linear-gradient(90deg,
            #c98a2e 0%,
            #e6b65c 25%,
            #f6dd86 50%,
            #e6b65c 75%,
            #c98a2e 100%);
    font-family: $sans-serif;
    font-weight: 400;
    letter-spacing: 0.01em;
    line-height: 2.35;
    border-radius: 40px;
    padding: 5px 25px;
    text-indent: 0px;
    min-width: 150px;
    position: relative;
    text-transform: capitalize;
    cursor: pointer;
    box-shadow: 0px 0px 0px rgba(#000, 0.10);
    @include transition;

    @include breakpoint(desktop) {
        font-size: rem(16px);
    }

    @include breakpoint(ipad) {
        font-size: rem(15px);
        height: 50px;
    }

    &:hover,
    &:focus {
        outline: none;
        box-shadow: none;
        background-color: rgba(255, 255, 255, 0.8);
        // box-shadow: 5px 0px 10px rgba(#000, 0.10);
    }

    span {
        display: block;
        height: auto;
        text-align: left;
        line-height: 1.3;
        padding-left: 8px;
        font-family: $sans-serif;
        font-weight: 600;

        em {
            font-size: 13px;
            display: block;
            font-style: normal;
        }
    }

    i {
        border: 2px solid;
        width: 50px;
        height: 50px;
        border-radius: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: $color-secondary;
        font-size: 20px;
        @include transition;

        @include breakpoint (ipad) {
            width: 44px;
            height: 44px;
        }
    }

    // &.btn-call {
    //     padding: 5px 20px 5px 5px;
    //     @include transition;
    // }

    &.btn-arow {
        padding: 5px 5px 5px 20px;
        @include transition;

        span {
            padding-right: 15px;
        }

        i {
            transform: rotate(-45deg);
            border-color: $color-secondary;
            color: #fff;
            background-color: $color-secondary;
        }

        &:hover i {
            transform: rotate(0deg);
        }

        &.white-arrow {
            background-color: $color-secondary;
            color: $color-secondary;

            i {
                transform: rotate(-45deg);
                border-color: $color-secondary;
                background-color: $color-secondary;
            }

            &:hover {

                i {
                    transform: rotate(0deg);
                }
            }

        }

    }

}


.btn-grid {
    padding-top: 15px;

    @include breakpoint(mobile) {
        flex-direction: column;
    }

    .btn {
        &.btn-blk {
            text-align: center;
            color: #fff;
            background: $color-secondary;
            justify-content: center;
            text-transform: uppercase;
        }
    }

}

.txt-btn-arrow {
    text-decoration: none;

    @include breakpoint(desktop) {
        font-size: rem(15px);
    }

    i {
        transform: rotate(-45deg);
        @include transition;
    }

    &:hover {
        i {
            transform: rotate(0deg);
        }
    }
}