@media (min-width: 1200px) {
::-webkit-scrollbar {
 background: transparent;
 width: 5px;
}
::-webkit-scrollbar-thumb {
 border-radius: 5px;
 background-color: #ffe0bc;
}
::-webkit-scrollbar-track-piece {
 background-color: #0b3b3b;
}
::-webkit-scrollbar-corner {
 background: transparent;
}

body {
 overflow-x: hidden;
}

@media (max-width: 1200px) {
::-webkit-scrollbar {
width: 0;
}