

.preloader {
    background-color: #fff;
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 1000;
}

.preloader .loader {
    display: flex;
    gap: 1rem;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.preloader .loader-logo img{
    width: 330px; 
    height: auto;
    display: block;
    margin: 0 auto;
    position: relative;
    z-index: 10; 
}



.gears{
    width: auto;
    height: auto;
    position: relative;
    z-index: 10;
}

.preloader .two {
    left: 15px;
    width: 40px;
    height: 40px;
    animation: spin 5s infinite;
}

.preloader .three {
    top: 45px;
    left: 0px;
    width: 30px;
    height: 30px;
    animation: spin  5s infinite;
    
}


@keyframes spin {
    50% {
        transform: rotate(360deg);
    }
}

@keyframes spin-reverse {
    50% {
        transform: rotate(-360deg);
    }
}

.fade-out {
    opacity: 0;
    transition: opacity 1s ease;
}

@media (max-width: 768px) {
    .preloader .loader-logo img {
        width: 200px;
    }
    
    .preloader .two {
        left: 10px;
        width: 30px;
        height: 30px;
        animation: spin-reverse 5s infinite;
    }
    
    .preloader .three {
        top: 30px;
        left: 0px;
        width: 25px;
        height: 25px;
    }


}

