/* Add custom CSS styles below */ 

        /* intro */
        @keyframes pupup {
            0% {
                transform: scale(1)
            }

            18% {
                transform: scale(1)
            }

            80% {
                transform: scale(1)
            }

            100% {
                transform: scale(0)
            }
        }

        @keyframes pupup_logo {
            0% {
                transform: scale(1)rotate(0deg)
            }

            40% {
                transform: scale(1)rotate(0deg)
            }

            80% {
                transform: scale(1)rotate(0deg)
            }

            100% {
                transform: scale(0)rotate(0deg)
            }
        }




        body.index:before {
            content: "";
            width: 100%;
            height: 100%;
            background: #fff;
            position: fixed;
            z-index: 99999;
            transform: scale(0);
            animation-name: pupup;

            animation-duration: 2.5s;
            background-size: 95px;
            background-repeat: no-repeat;
            background-position: center 3rem
        }

        body.index:after {
            content: "";
            width: 100%;
            height: 100%;
            top: 0;
            position: fixed;
            z-index: 999999;
            background: url("https://cdn.salla.sa/cdn-cgi/image/fit=scale-down,width=400,height=400,onerror=redirect,format=auto/EZDzjq/stores/logos/T8ZZf4uWorjPtaMO2XKenp39U3BuUEIjAySBGGG7.jpg");
            left: 0;
            background-repeat: no-repeat;
            background-position: center;
            background-size: 45%;
            animation-name: pupup_logo;
            transform: scale(0);
            animation-duration: 2.5s;

        }

        @media (min-width: 480px) {
            body.index:after {
                background-size: 25%;
            }
        }

/*  style */
 .store-footer{
  background:rgb(79 12 38);
}
 .store-footer p{
   color:white !important;
}
.store-footer__inner  {
  background:rgb(123, 30, 67);
}