﻿.btn-slide {
    position: relative;
    padding: 0px 15px;
    font-size: 15px !important;
    font-weight: 600;
    font-family: "Outfit", sans-serif;
    color: #f39c12;
    background: transparent;
    border: none;
    cursor: pointer;
    overflow: hidden;
}

    .btn-slide::before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 3px;
        background: #f39c12;
        transition: left 0.3s ease;
    }

    .btn-slide::after {
        content: "";
        position: absolute;
        bottom: 0;
        right: -100%;
        width: 100%;
        height: 3px;
        background: #f39c12;
        transition: right 0.3s ease;
    }

    .btn-slide:hover::before {
        left: 0;
    }

    .btn-slide:hover::after {
        right: 0;
    }

    .btn-slide:hover {
        color: #fff;
    }
