.search-overlay{

    position:fixed;

    width: 100%;

    height: 100%;

    top:0;

    left:0;

   display: flex;

    align-items: center;

    justify-content: center;

    background-color: rgba(0,0,0,0.4);

}

.search-overlay img{

    height: 150px;

    animation: circle 6s linear infinite;

}

@keyframes circle{

    0%{

        transform:rotate(0deg)

        translate(-65px)

        rotate(0deg);



    }

    100%{

        transform:rotate(360deg)

        translate(-65px)

        rotate(-360deg);

    }


    /* @media screen and (max-width:992px)
     .nav-logo {
        width: 400px;
     } */
}

