:root
{
    --main: #9B8774;
}
@import url('https://fonts.googleapis.com/css2?family=Space+Mono:ital,wght@0,400;0,700;1,400;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Space Mono', sans-serif;
    scroll-behavior: smooth;
    user-select: none;
}
*::-webkit-scrollbar
{
    width: 12px;
}
*::-webkit-scrollbar-track
{
    background: #111;
}
*::-webkit-scrollbar-thumb
{
    background: var(--main);
}
body
{
    background: #0b0b0e;
}
.container marquee
{
    background: var(--main);
    height: 40px;
    line-height: 40px;
    font-size: 14px;
    color: #fff;
    z-index: 100;
    font-family: 'Poppins', sans-serif;
}
.container #welcome
{
    height: 700px;
}
.container #welcome nav#desktop
{
    background: #131318;
    height: 80px;
    width: 100%;
    display: flex;
    justify-content: left;
    align-items: center;
    padding-left: 50px;
    gap: 50px;
}
.container #welcome nav#desktop ul
{
    display: flex;
    list-style: none;
    align-items: center;
    gap: 35px;
}
.container #welcome nav#desktop ul li a
{
    text-decoration: none;
    color: #999999;
    transition: 0.25s;
    font-size: 14px;
    position: relative;
    font-family: 'Poppins', sans-serif;
}
.container #welcome nav#desktop ul li a::after
{
    position: absolute;
    content: '';
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--main);
    border-radius: 30px;
    transition: 0.25s;
}
.container #welcome nav#desktop ul li a:hover::after,
.container #welcome nav#desktop ul li.active a::after
{
    width: 50%;
}
.container #welcome nav#desktop ul li a:hover,
.container #welcome nav#desktop ul li.active a
{
    color: #fff;
}
.container #welcome nav#mobile 
{
    display: none;
    justify-content: space-around;
    align-items: center;
    background: #131318;
    height: 80px;
}
.container #welcome nav#mobile i
{
    color: #efefef;
    font-size: 35px;
    cursor: pointer;
}
.container #welcome nav#mobile i.active
{
    color: var(--main);
}
.container #welcome #mpages
{
    position: fixed;
    top: 0;
    left: -50%;
    width: 50%;
    height: 100%;
    background: rgb(6,6,6,0.75);
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    flex-direction: column;
    gap: 25px;
    display: none;
    transition: 0.5s;
    z-index: 100;
}
.container #welcome #mpages li a
{
    text-decoration: none;
    color: #efefef;
    font-size: 18px;
    font-family: 'Poppins', sans-serif;
}
.container #welcome #mpages i
{
    color: #fff;
    font-size: 35px;
    cursor: pointer;
}
.container #welcome .about
{
    display: flex;
    justify-content: space-around;
    align-items: center;
    min-height: 600px;
}
.container #welcome .about .console
{
    width: 600px;
    height: 350px;
    display: flex;
    flex-direction: column;
}
.container #welcome .about .console .header
{
    height: 40px;
    width: 100%;
    background: #1E1E25;
    border-radius: 3px 3px 0 0;
    position: relative;
    gap: 5px;
}
.container #welcome .about .console .header .btns
{
    display: flex;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 15px;
    gap: 5px;
}
.container #welcome .about .console .header .btns .btn
{
    width: 11.5px;
    height: 11.5px;
    border-radius: 50%;
    background: #fff;
}
.container #welcome .about .console .header p
{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-family: "Poppins", sans-serif;
    opacity: 50%;
}
.container #welcome .about .console .header .btns .btn:nth-child(1)
{
    background: #E21316;
}
.container #welcome .about .console .header .btns .btn:nth-child(2)
{
    background: #12933D;
}
.container #welcome .about .console .header .btns .btn:nth-child(3)
{
    background: #E29313;
}
.container #welcome .about .console .body
{
    height: calc(100% - 40px);
    width: 100%;
    background: #131318;
    border-radius: 0 0 3px 3px;
    padding: 15px;
    display: flex;
    flex-direction: column;
}
.container #welcome .about .console .body p,
.container #welcome .about .console .body p span
{
    font-family: "Poppins", sans-serif;
}
.container #welcome .about .info
{
    max-width: 30%;
}
.container #welcome .about .info h1
{
    color: #fff;
    font-weight: 800;
    font-size: 50px;
    font-family: "Manrope", sans-serif;
    line-height: 50px;
}
.container #welcome .about .info h1 span
{
    color: var(--main);
    font-family: "Manrope", sans-serif;
}
.container #welcome .about .info p
{
    margin-top: 25px;
    color: #757575;
    font-family: "Poppins", sans-serif;
}
@media screen and (max-width: 800px)
{
    .container #welcome nav#desktop
    {
        display: none;
    }
    .container #welcome nav#mobile
    {
        display: flex;
    }
    .container #welcome #mpages
    {
        display: flex;
    }
}
@media screen and (max-width: 500px)
{
    .container #welcome .info h1,
    .container #welcome .info h1 span
    {
        font-size: 35px !important;
        line-height: 25px;
    }
}
@media screen and (max-width: 1100px)
{
    .container #welcome .about .console
    {
        display: none;
    }
    .container #welcome .about .info
    {
        max-width: 80%;
    }
}

footer
{
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: #ddd;
}

#discord
{
    height: 150px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
#discord .discord-box
{
    height: 135px;
    width: 85%;
    background: rgba(20, 20, 25, 0.55);
    border-radius: 4px;
    backdrop-filter: blur(11.6px);
    -webkit-backdrop-filter: blur(11.6px);
    position: relative;
    border: 2px solid #63636321;
}
#discord .discord-box h1
{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 25px;
    font-size: 40px;
    color: #efefef;
    font-family: 'Poppins', sans-serif;
    font-weight: bolder;
}
#discord .discord-box h1 span
{
    font-size: 14px;
    margin-left: 5px;
    color: #636363;
    font-family: 'Poppins', sans-serif;
}
#discord .discord-box p
{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 150px;
    max-width: 350px;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
}
#discord .discord-box button
{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 25px;
    width: 175px;
    height: 40px;
    border: none;
    outline: none;
    font-family: 'Poppins', sans-serif;
    color: #fff;
    background: var(--main);
    font-size: 16.75px;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.3s;
}
#discord .discord-box button:hover
{
    transform: translateY(-50%) scale(1.035);
}
#us
{
    min-height: 700px;
    margin: 100px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
#us .box
{
    min-height: 650px;
    height: auto;
    background: rgba(20, 20, 25, 0.55);
    border-radius: 4px;
    backdrop-filter: blur(11.6px);
    -webkit-backdrop-filter: blur(11.6px);
    width: 85%;
    border: 2px solid #63636321;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px 0;
}
#us .box .label
{
    max-width: 40%;
    text-align: center;
}
#us .box .label h3
{
    color: #fff;
    font-size: 60px;
    font-family: 'Manrope', sans-serif;
    font-weight: bolder;
}
#us .box .label p
{
    margin-top: 10px;
    color: #636363;
    font-family: 'Poppins', sans-serif;
}
#us .box .items
{
    margin-top: 80px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 50px;
}
#us .box .items .item
{
    width: 300px;
    height: 300px;
    position: relative;
}
#us .box .items .item p
{
    position: absolute;
    top: 115px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 100%;
    font-family: 'Poppins', sans-serif;
    color: #636363;
}
#us .box .items .item i
{
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 45px;
    color: var(--main);
}
#us .box .items .item h5
{
    position: absolute;
    top: 70px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 25px;
    color: #fff;
    font-family: 'Manrope', sans-serif;
    font-weight: bold;
}
@media screen and (max-width: 880px)
{
    #discord
    {
        display: none;
    }
    #us
    {
        margin-top: 0;
    }
}
@media screen and (max-width: 950px)
{
    #us .box .label
    {
        max-width: 100%;
        padding: 0 5px;
    }
}

#recent
{
    min-height: 500px;
    width: 85%;
    margin-left: 7.5%;
}
#recent h3
{
    font-size: 55px;
    color: #fff;
    font-family: 'Manrope', sans-serif;
    font-weight: bold;
}
#recent p
{
    color: #636363;
    font-family: 'Poppins', sans-serif;
    margin-top: 5px;
}
#recent .products
{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 50px;
}
#recent .products .product
{
    min-width: 400px;
    height: 400px;
    background: rgba(20, 20, 25, 0.55);
    border-radius: 4px;
    backdrop-filter: blur(11.6px);
    -webkit-backdrop-filter: blur(11.6px);
    border: 2px solid #63636321;
    position: relative;
}
#recent .products .product:nth-child(1)
{
    width: 800px;
}
#recent .products .product i
{
    position: absolute;
    top: 25px;
    left: 25px;
    font-size: 30px;
    color: var(--main);
}
#recent .products .product:nth-child(1) i
{
    position: absolute;
    top: 35px;
    left: 35px;
    font-size: 45px;
    color: var(--main);
}
#recent .products .product h5
{
    position: absolute;
    left: 25px;
    top: 95px;
    color: #efefef;
    font-size: 25px;
    font-family: 'Manrope', sans-serif;
    font-weight: bold;
}
#recent .products .product:nth-child(1) h5
{
    left: 35px;
    font-size: 40px;
    top: 160px;
}
#recent .products .product .desc
{
    color: #636363;
    font-family: 'Poppins', sans-serif;
    max-width: 350px;
    padding-right: 10px;
    position: absolute;
    top: 125px;
    left: 25px;
}
#recent .products .product:nth-child(1) .desc
{
    left: 35px;
    top: 210px;
    max-width: 650px;
}
#recent .products .product .actions
{
    position: absolute;
    bottom: 25px;
    left: 25px;
    display: flex;
    align-items: center;
    gap: 25px;
}
#recent .products .product .actions #check button
{
    border: none;
    outline: none;
    width: 175px;
    height: 45px;
    background: var(--main);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    border-radius: 3px;
    cursor: pointer;
}
#recent .products .product .actions #store
{
    text-decoration: none;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: lighter;
}
@media screen and (max-width: 965px)
{
    #recent h3
    {
        text-align: center;
    }
    #recent p
    {
        text-align: center;
    }
    #recent .products
    {
        align-items: center;
        justify-content: center;
        gap: 25px;
    }
    #recent .products .product:nth-child(1)
    {
        width: 400px;
        height: 400px;
    }
    #recent .products .product:nth-child(1) h5
    {
        position: absolute;
        left: 25px;
        top: 95px;
        color: #efefef;
        font-size: 25px;
        font-family: 'Manrope', sans-serif;
        font-weight: bold;
    }
    #recent .products .product:nth-child(1) .desc
    {
        color: #636363;
        font-family: 'Poppins', sans-serif;
        max-width: 350px;
        padding-right: 10px;
        position: absolute;
        top: 125px;
        left: 25px;
    }
    #recent .products .product:nth-child(1) i
    {
        position: absolute;
        top: 25px;
        left: 25px;
        font-size: 30px;
        color: var(--main);
    }
}
@media screen and (max-width: 460px)
{
    #recent .products
    {
        gap: 0;
    }
    #recent .products .product
    {
        margin-top: -50px;
        transform: scale(0.8);
    }
}
#reviews
{
    margin-top: 100px;
    min-height: 500px;
    height: auto;
    width: 85%;
    margin-left: 7.5%;
    position: relative;
}
#reviews h3
{
    font-size: 55px;
    color: #fff;
    font-family: 'Manrope', sans-serif;
    font-weight: bold;
}
#reviews p
{
    color: #636363;
    font-family: 'Poppins', sans-serif;
    margin-top: 5px;
}
#reviews p#titlep
{
    text-shadow: 0 0 1px #fff;
}
#reviews .items::-webkit-scrollbar
{
    display: none;
}
#reviews .items
{
    position: absolute;
    left: 0;
    min-width: 100%;
    max-width: 100%;
    overflow-y: none;
    overflow-x: auto;
    display: flex;
    gap: 15px;
    align-items: center;
    height: 300px;
    top: 150px;
    touch-action: none;
}
#reviews .items .item
{
    height: 100%;
    min-width: 600px;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 5px 0;
}
#reviews .items .item .stars
{
    display: flex;
    gap: 8px;
}
#reviews .items .item .stars i
{
    font-size: 25px;
    color: #131318;
}
#reviews .items .item p#feedback
{
    max-width: 95%;
}
#reviews .items .item .stars i.active
{
    color: var(--main);
}
#reviews .items .item .author p,
#reviews .items .item .author strong
{
    font-family: 'Poppins', sans-serif !important;
}
@media screen and (max-width: 700px) 
{
    #reviews .items .item
    {
        min-width: 300px;
        max-width: 300px;
        min-height: 450px;
        max-height: 450px;
    }
    #reviews
    {
        min-height: 550px;
    }
    #reviews .items
    {
        height: 450px;
    }
    #reviews h3
    {
        text-align: center;
    }
    #reviews p#titlep
    {
        text-align: center;
    }
}
@media screen and (max-width: 500px)
{
    #us .box .label h3
    {
        font-size: 35px;
    }
}
footer
{
    background: #131318;
    height: 100px;
    margin-top: 75px;
}
footer img
{
    opacity: 15%;
}