html::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	background-color: #282828;
	border-radius: 10px;
}

html::-webkit-scrollbar
{
	width: 10px;
	background-color: #282828;
}

html::-webkit-scrollbar-thumb
{
	border-radius: 10px;
	background-color: rgba(113,113,113,0.5);
}

html, body {
	scroll-snap-type: y mandatory;
}

.scroll-section {
    scroll-snap-align: start;
}

@media screen and (max-width: 1300px) {
	html, body {
		scroll-snap-type: none;
	}

	.scroll-section {
	    scroll-snap-align: none;
	}
}