.preloader-close {
    position: fixed;
    z-index: 99999999;
    font-size: 26px;
    background: #fff;
    width: 40px;
    height: 40px;
    line-height: 36px;
    text-align: center;
    border-radius: 50%;
    cursor: pointer;
    right: 30px;
    top: 30px;
}


.handle-preloader {
    align-items: center;
    -webkit-align-items: center;
    display: flex;
    display: -ms-flexbox;
    height: 100%;
    justify-content: center;
    -webkit-justify-content: center;
    position: fixed;
    /* background: #be4406; */
    background: rgb(2,0,36);
    background: linear-gradient(90deg, rgba(2,0,36,1) 0%, rgba(32,16,35,1) 26%, rgba(119,62,33,1) 61%, rgba(184,97,31,1) 81%, rgba(197,104,31,1) 94%, rgba(246,130,29,1) 100%);
    left: 0;
    top: 0;
    width: 100%;
    z-index: 9999999;
}
.handle-preloader .animation-preloader {
    position: absolute;
    z-index: 100;
}
.handle-preloader .animation-preloader .spinner {
    border: 3px solid #ffffff;
    border-top-color: rgba(255, 255, 255, 0.5);
}

.handle-preloader .animation-preloader .spinner {
    animation: spinner 1s infinite linear;
    border-radius: 50%;
    height: 150px;
    margin: 0 auto 45px auto;
    width: 150px;
}
.handle-preloader .animation-preloader .txt-loading {
    text-align: center;
    user-select: none;
}
.txt-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 2rem;
    font-family: Arial, sans-serif;
    text-align: center;
    margin-top: 20px;
}
.line {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.handle-preloader .animation-preloader .txt-loading .letters-loading {
    color: #ffffff;
}
.handle-preloader .animation-preloader .txt-loading .letters-loading {
    font-family: 'Monda', sans-serif;
    font-weight: 500;
    letter-spacing: 15px;
    display: inline-block;
    position: relative;
    font-size: 70px;
    line-height: 70px;
    text-transform: uppercase;
}
@media (max-width: 768px) {
    .handle-preloader .animation-preloader .txt-loading .letters-loading {
        font-family: 'Monda', sans-serif;
        font-weight: 500;
        letter-spacing: 8px; /* Reduce spacing for mobile */
        display: inline-block;
        position: relative;
        font-size: 40px; /* Adjust font size for smaller screens */
        line-height: 40px; /* Adjust line height accordingly */
        text-transform: uppercase;
    }
}






/* Spinner animation duration set to 0.5s */
.handle-preloader .animation-preloader .spinner {
    animation: spinner 0.5s infinite linear; /* 0.5-second rotation */
}

@keyframes spinner {
    to {
        transform: rotate(360deg);
    }
}

/* Text fade-in animation duration set to 0.5s */
.letters-loading {
    opacity: 0;
    animation: fadeIn 0.5s forwards; /* 0.5-second fade-in */
    animation-delay: calc(var(--delay) * 0.05s); /* Adjust delay based on letters */
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}
