body{
    box-sizing: border-box;
    margin: 0;
    max-width: 100vw;
    background-color: rgba(32,33,36,255);
    font-family: sans-serif;
    padding-top: 75px;
}

.banner{
    background-color: rgba(32,33,36,255);
    position: fixed;
    top: 0;
    height: 75px;
    width: 100vw;
    border-bottom: 1px solid rgba(236,152,38,255);
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo{
    height: 80%;
    margin-left: 5px;
    position: absolute;
    left: 0;
}

.icons{
    height: 40%;
    position: absolute;
    right: 0;
    margin-right: 30px;
}

footer{
    background-color: rgba(32,33,36,255);
    height: 75px;
    width: 100%;
    max-width: 100vw;
    border-top: 1px solid rgba(236,152,38,255);
}

.test{
    height: 200vh;
    margin: 0;
    background-color: rgba(32,33,36,255);
}

.tran{
    height: 60vh;
    background-color: transparent;
}

.hidden{
    width: 100%;
    height: calc(50% + 300px);
    position: fixed;
    bottom: 0;
    z-index: -1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
}

.hidden img{
    width: 50%;
    max-height: 50vh;
    margin-bottom: calc(76px + 10px);
}

.search{
    height: 20%;
    width: max-content;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px;
    border-radius: 28px;
    border: solid 1px rgba(236,152,38,255);
    background-color: rgba(32,33,36,255);
    transition: background 0.25s;
}

.search:focus-within{
    background: rgb(20, 20, 22);
    width: 40vw;
} 

.search-input{
    background-color: transparent;
    outline: none;
    border: none;
    width: 30vw;
    font-size: 16px;
    color: white;
    font-family: 'Lexend', sans-serif;
}

.search-input::placeholder,.search-icon{
    color: rgba(236,152,38,0.25);
}

html::-webkit-scrollbar,.news::-webkit-scrollbar{
    width: 10px;
}

html::-webkit-scrollbar-thumb,.news::-webkit-scrollbar-thumb{
    background-color: rgba(236, 153, 38, 0.5);
}

html::-webkit-scrollbar-thumb:hover,.news::-webkit-scrollbar-thumb:hover{
    background-color: rgba(236, 153, 38, 1);
}

html::-webkit-scrollbar-track,.news::-webkit-scrollbar-track{
    background-color: rgba(32,33,36);
}

html::-webkit-scrollbar-track,.news::-webkit-scrollbar-track:hover{
    background-color: rgba(32,33,36,255);
}

.main{
    padding-top: 18px;
    background-color: rgba(32,33,36,255);
    width: 95%;
    margin: auto;
    display: flex;
    gap: 18px
}

.content{
    width: 70%;
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.card{
    color: #f6f6f6;
    width: 29%;
    padding: 10px;
    border-radius: 14px;
    border: solid 1px rgba(236,152,38,255);
}

.card:hover{
    -moz-box-shadow: 0 0 50px black;
    -webkit-box-shadow: 0 0 50px black;
    box-shadow: 0 0 50px black;
    width: 31%;
}

.content::after{
    content: "";
    width: 35%;
}

.card img{
    width: 100%;
}

.card-top{
    display: flex;
    justify-content: space-between;
}

.card-title{
    width: max-content;
    margin: 0;
    margin-bottom: 5px;
}

.card-discription{
    margin: 0;
}

.card-price{
    margin: 0;
    width: max-content;
}

.news{
    color: #f6f6f6;
    width: 30%;
    height: 86vh;
    overflow: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.article{
    display: flex;
    flex-direction: column;
    gap: 5px
}

.article-title,.article-text,.article-date{
    margin: 0;
}

.scroller{
    padding-top: 30px;
    padding-bottom: 30px;
    background-color: rgba(32,33,36,255);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.scroller-text{
    color: rgba(236,152,38,255);
}

.scroller-icon{
    color: rgba(236,152,38,255);
}

/* .title{
    margin-top: 20px;
    display: flex;
}

.title-products{
    background-color: white;
    width: 
}

.title h2{
    margin: 0;
} */