body{
    margin: 0%;
    padding: 0%;
}
#container-box{
    width: 100%;
    height: 100vh;
    background-image: linear-gradient(rgba(0,0,0,0.3),transparent),url(images/background.png);
    background-size: cover;
    position: relative;
    background-position: center;
    padding: 0 8%;
}
#menu-nav{
    display: flex;
    width: 100%;
    /* justify-content: baseline; */
    align-items: center;
    flex-wrap: wrap;
    padding: 5px 0;
}
#menu-nav .logo{
    width: 120px;
    cursor: pointer;
}
#menu-nav .cart-icon{
    width: 30px;
    cursor: pointer;
}
#menu-nav ul{
    flex: 1;
    text-align: right;
    padding-right: 30px;
}
#menu-nav ul li{
    display: inline-block;
    list-style: none;
    margin: 10px 30px;
}
#menu-nav ul li a{
    position: relative;
    color: #fff;
    text-decoration: none;
}
#menu-nav ul li a::after{
    content: "";
width: 50%;
height: 3px;
position: absolute;
bottom: -5px;
left: 50%;
transform: translateX(-50%);
background: #fff;
transform-origin: width 0.3s;
}
#text-box{
    color: #fff;
    position: absolute;
    bottom: 8%;
}
#text-box p{
    font-size: 50px;
    font-weight: 600;
}
#text-box h1{
    font-size: 190px;
    line-height: 160px;
    margin-left: -10px;
    color: transparent;
    -webkit-text-stroke:1px #fff ;
    background: url(images/back.png);
    -webkit-background-clip: text;
    background-position: 0 0;
    animation:back 20s linear infinite ;

}
@keyframes back{
    100%{
        background-position: 2000px 0;
    }
}
#text-box h3{
    font-size: 40px;
    font-weight: 500;
}
#text-box .row{
    display: flex;
    align-items: center;
    /* justify-content: center; */
    flex-wrap: wrap;
    margin-top: 30px;
}
#text-box  a{
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    margin-right: 20px;
    border: 2px solid #fff;
    display: flex;
    align-items: center;
}
#text-box a span{
    font-size: 30px;
    line-height: 15px;
    margin-left: 5px;
}
#scl-icons{
    position: absolute;
    right: 5%;
    bottom: 8%;
}
#scl-icons img{
    width: 25px;
    display: block;
    margin: 25px 5px;
}