/*----------------------------------------
Project:	System Masar Marketing

Devloper:	Hady Rabie - Mohamed Salah
----------------------------------------*/
/*----------------------------------------
[Table of contents]

1. Welcome Page


/*==============================
Welcome page
==============================*/
.welcome {
    width: 100%;
    height: 100vh;
    background: var(--dark-light);
    padding: 0;
    margin: 0;
    position: fixed;
    top: 0;
    left: 0;
}

.welcome .boxLogo img{
    width: 600px;
    filter: var(--imgLight);
}

.welcome #loop {
    height: 100px;
    width: 100px;
    border: var(--light-dark) solid 6px;
    border-radius: 200px;
    position: relative;
    margin-bottom: 30px;
    box-shadow: 3px 3px 13px #eee6;
}
.welcome #loop:before {
    content: "GR";
    position: absolute;
    top: 40%;
    left: -180px;
    font-size: 100px;
    transform: translateY(-50%);
    font-weight: bold;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    background-image: var(--backgroundText);
    background-size: contain;
    animation: flicker 1.5s infinite alternate;
  }

.welcome #loop::after {
    content: "UP";
    position: absolute;
    top: 40%;
    left: 120%;
    transform: translateY(-50%);
    font-size: 100px;
    color: white;
    font-weight: bold;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    background-image: var(--backgroundText);
    background-size: contain;
    animation: flicker 1.5s infinite alternate;
}

.welcome .lineStreet {
    background: linear-gradient(to left, rgba(187, 95, 39, 0) 0%, var(--light-dark) 30%, var(--light-dark) 70%, rgba(187, 95, 39, 0) 100%);
    display: block;
    height: 6px;
    left: 0;
    position: relative;
    top: -31px;
    width: 555px;
  }
