.link-effect-2 {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.4s ease;
}

.link-effect-2 .text {
    position: relative;
    display: inline-block;
    overflow: hidden;
    transition: transform 0.4s ease;
}

.link-effect-2 .text1
{
    font-size: 14px;
    position: relative;
    display: inline-block;
    transition: transform 0.4s ease;
}

.link-effect-2:hover .text1 {
    transform: translateY(-100%);
}

.link-effect-2 .text2 {
    font-size: 14px;
    position: absolute;
    top: 0;
    left: 0;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.link-effect-2:hover .text2 {
    transform: translateY(0);
}

.search-btn {
    display: flex;
    align-items: center;
    gap: 2px;
    padding-right: 30px;
    position: relative;
    color: var(--tc-neutral-600);
    font-weight: 400;
    cursor: pointer;
}

.search-btn .text2:hover {
    color: #0e0e0f;
}

.text-grey
{
  color: #626568 !important;
}

.size-13 {
    font-size: 13px !important;
}

.color-626568 {
    color: #626568 !important;
}

.fw-500
{
    font-weight: 500 !important;
}

/*Popup Search*/
.popup-search {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) !important;
    opacity: 0;
    overflow-y: auto;
    visibility: hidden;
    z-index: 9999;
    transition: all 0.3s ease;
    width: 100%;
    overflow-y: auto;
    max-height: 90vh;
}

.popup-search.show {
    opacity: 1;
    visibility: visible;
}

.popup-search .popup-search-content {
    background-color: #f7f8f9;
    border-radius: 8px;
    z-index: 999;
    padding: 45px 54px;
}

.popup-search .close-popup {
    cursor: pointer;
    transition: transform 0.3s ease;
    display: inline-block;
    width: 24px;
    height: 24px;
}

.end-0 {
    right: 0 !important;
}

.top-0 {
    top: 0 !important;
}

.popup-search-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1050;

    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}

.popup-search.show ~ .popup-search-backdrop {
    opacity: 1;
    visibility: visible;
}

.popup-search .close-popup:hover {
    transform: rotate(90deg);
}

.search-title
{
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    line-height: clamp(1.625rem, 2.5vw, 1.5rem) !important;
    font-weight: 600;
}

.form-search {
    display: inline-block;
    width: 100%;
    padding: 17px 30px;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #626568;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: #ffffff;
    background-clip: padding-box;
    border: 1px solid #75787d;
    border-radius: 50px;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.gap-2 {
    gap: 0.5rem !important;
}

.button-effect-1 {
    position: relative;
    display: inline-block;
    transition: all 0.4s ease;
    line-height: 1.3;
    padding: 20px 56px;
    font-weight: 600;
    border-radius: 50px;
    background-color: #000;
}

.button-effect-1 .btn-text {
    position: relative;
    display: inline-block;
    overflow: hidden;
    transition: transform 0.4s ease;
}

.button-effect-1 .btn-text-1 {
    position: relative;
    display: inline-block;
    transition: transform 0.4s ease;
    color: #fff;
}

.button-effect-1 .btn-text-2 {
    position: absolute;
    top: 0;
    left: 0;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    color: #fff;
}

.button-effect-1:hover .btn-text-1 {
    transform: translateY(-100%);
}

.button-effect-1:hover .btn-text-2 {
    transform: translateY(0);
}

.collapse-item {
    display: block;
    padding: 5px 0;
    color: var(--tc-neutral-800);
    font-size: 16px;
    transition: color 0.2s ease;
}

@media (max-width: 576px) {
    .popup-search .popup-search-content {
        padding: 40px 30px !important;
    }

    .button-effect-1 {
        padding: 10px 16px !important;
        font-size: 0.8rem !important;
    }

    .sidebar-logo-graphie {
        position: absolute !important;
    }
}